body {
	color: #1A1A1A;
	background: #fff4a5;
	font-family: Arial, sans-serif;
	font-size: 14px;
	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 */
}
body a{
	color: #309617;
	text-decoration: none;
}
body a:hover{
	color: #309617;
	text-decoration: underline;
}
.body #container {
	width: 811px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.body #header {
	background: url(../images/header.jpg) no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 182px;
}
.body #mainnav {
	color: #FF6600;
	font-weight:bold;
	position: relative;
	font-size: 12px;
	top: 127px;
	
}
.body #mainnav td{
	text-align:center;
	
}
.body #mainnav a:hover{
	text-decoration: none;
}
.body #mainContent {
	padding:0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
}
.body #bottom {
	background: url(../images/footer.jpg) no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	height: 60px;
	
}
.body #footer {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	font-size: 11px;
	font-weight:bold;
}
.body #footer a{
	color: #ffffff;
}
.body #copy {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 11px;
	
}

