@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666 url(images/backgroundtile.jpg) repeat;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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: #000000;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: url(images/header.gif) no-repeat;
	height: 100px;

}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#mainContent h1 {
	font: 24px "Helvetica Neue", Arial, "generic sans-serif";
	color: #000000;
	border-bottom: thin solid #314723;
	margin: 20px 0px 0px;
	padding: 0px;
}
#mainContent h2 {
	font: 18px Arial, Helvetica, sans-serif;
	color: #314723;
	text-align: left;
	margin-bottom: 0px;
	padding-bottom: 0px;
	margin-top: 10px;
	padding-top: 10px;
}
#mainContent p {
	font: 14px/1.3em "Helvetica Neue", Arial, "generic sans-serif";
	color: #000000;
	text-align: left;
	margin: 0px;
	padding: 8px 0px 0px;
}
#mainContent ul {
	margin: 0px 0px 0px 20px;
	padding: 0px;
}
#mainContent li {
	font: 14px Arial, Helvetica, sans-serif;
}


#footer {
	padding: 0 10px;
}

#footer hr {
	color: #314723;
}

#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;
	text-align: center;
	font: 14px "Helvetica Neue", Arial, "generic sans-serif";
}
#footer a {
	font: 14px "Helvetica Neue", Arial, "generic sans-serif";
	color: #314723;
	text-decoration: underline;
}
