@charset "utf-8";
html{
background: #EFEFEF;
}
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 5px 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: #333333;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
}
#mainContent {
background: #FFFFFF;
	border: 1px solid #E4E4E4;
	font-size:12px;

	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#container #mainContent h2,  #container #mainContent h3,  a {
	color: #323130;
}
a:hover{
text-decoration:underline;
color:#FCC03E;
}

#container #mainContent h1 {
	background-image: url(logo.gif);
	margin: 0px;
	padding: 0px;
	height: 112px;
	width: 300px;
	margin-bottom:10px;
	margin-top:10px;
}
#container #mainContent h1 span {
	display: none;
}

#nav ul, #nav ul li{
margin:0;
padding:0;
}
#nav{
border-top:1px solid #E4E4E4;
border-bottom:1px solid #E4E4E4;
margin-bottom:10px;
}

#nav ul li{
list-style:none;
float:left;
padding:5px;
}
#nav ul li a{
font-size:11px;
font-weight:bold;
text-decoration:none;
color: #323130;
}
#nav ul li a:hover{
text-decoration:underline;
color:#FCC03E;
}


#nav br{
clear:both;
}
#footer{
margin-top:20px;
color:#888888;
font-size:11px;
text-align:center;
}
