@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	background-color: #FFF;
	margin: 0;
}
 #container {
	width: 95%; /* this overrides the text-align: center on the body element. */
	height: 150%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-attachment: scroll;
	background-image: url(Images/wood.jpg);
	border: thick groove #800000;
	vertical-align: 100%;
}
 #header {
	height: 47px;
}
 #navigation {
	text-align: center;
	height: 20px;
	font-family: Verdana, Geneva, sans-serif;
	margin: 0px;
}

 #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
	font-size: xx-small;
}
 #mainContent {
	text-align: center;
	top: 0px;
	height: 100%;
	padding-right: 2px;
	padding-bottom: 0;
	padding-left: 2px;
	font-size: x-small;
	font-weight: normal;
}
 #footer {
	padding: 0 10px;
} 
 #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
 #container #mainContent h2 a {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
 #container #mainContent h2 a strong {
	font-family: Verdana, Geneva, sans-serif;
}

