@charset "utf-8";
* { padding:0; margin:0;}
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: #000000;
	background-color: #002900;
}
#container {
	width: 780px;  /* this will create a container 80% of the browser width */
	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: #d5e0be;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header2 {
	background-color: #D5E0BE;
	padding-top: 25px;
	padding-bottom: 25px;
}
h1 {
	color: #A3B97B;
	display: none;
}
#mainContent {
	background-color: #A3B97B;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 19px;
}
#footer {
	padding: 0 10px;
	background-color: #A3B97B;
} 
#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 */
	text-align: center;
	font-size: 10px;
}
.center_image {
	text-align: center;
	vertical-align: middle;
}

