@charset "UTF-8";
body {
	font: 12px Arial, Helvetica, Verdana, sans-serif;
	background: #0d5820;
	background-image: url(images/bg-trees.jpg);
	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;
	background-position: top center;
	background-repeat: no-repeat;
}

.oneColFixCtrHdr #container {
	width: 960px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #header {
	background: #DDDDDD; 
	padding: 0;  
}

.oneColFixCtrHdr #mainContent {
	padding: 20px 100px 50px 50px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: arial;
	font-size: 12px;
	color:#000000;
	background-repeat: no-repeat;
	background-color: #e2e9d4;
}

.oneColFixCtrHdr h1 {
	font-family: times, palatino, garamond, serif;
	font-size: 22px;
	color:#095c0d;
	padding-top: 12px;
}

.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}

.oneColFixCtrHdr #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 0px 60px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 8pt;
	color: white;
	font-family: arial,helvetica,verdana,sans-serif;
}

