body {
	font:100% Geneva, Arial, Helvetica, sans-serif;
	background: #303030;
	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;
}
.main #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #f9f9e3;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #999966;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.main #headerlogo {
	background: #f9f9e3;
	border: 0px solid #999966; 
	padding: 0px 0px 0 0px;
	color: #000000;  /* 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. */
}
.main #header {
	background: #999966; 
	padding: 0px 0px 0 0px;
	height: 30px;
	color: #000000;  /* 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. */
}
.main #subheader {
	background: #c7c784; 
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	height: 20px;
	color: #ffffff;
	text-align:center;  /* 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. */
}
.main #mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #303030;
	border: 0px solid #c7c784;
	height: 525px;
}
.main #footer {
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#c7c784;
	color: #ffffff;
	text-align:center;
}
.main #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: 0px 0px 0px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
img { 
     border-width: 0; 
}
