/*  global style used on all elements */
div.pagebody {
	background-color: orange;
	font-size: medium;
	color: white;
}
/* We are not using H1, H2, H3 headers but classes instead */
/* This is equivilent to an H1                                              */
 div.header {
	font-size: medium;
	font-weight: bold;
	background-color: black;
	color: white;
}
/* We are not using H1, H2, H3 headers but classes instead */
/* This is equivilent to an H1                                              */
div.footer {
	font-size: medium;
	font-weight: bold;
	color: black;
}
/*  Make author info stand out.                                          */
.author {
	background-color: #FADFC9;
	font-size: large;
	font-weight: bold;
	color: red;
}
/*  link style  */
A {
	background-color: transparent;
	color: gray;
	}
A:Hover {
	background-color: white;
	color: black;
	}




