@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
}

h1, h2, h3, h4
{
	text-align: center;
}

.nav {
	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. */
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #505050; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	color: #FFFFFF;
}

#mainContent { 
	background: #FFFFFF;
	padding: 15px 60px 15px 60px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/******************************************/
/*NAVIGATION-RELATED CSS:  DO NOT TOUCH!!!*/
/******************************************/
#centerlinks
{
	text-align: center;
}
#leftnav ul 
{
	list-style: none;
	margin: 0;
	padding: 0;
}
#leftnav 
{
	width: 170px;
}
#leftnav li a 
{
	height: 32px;
	voice-family: "\"}\"";
	voice-family: inherit;
	height: 24px;
	text-decoration: none;
}
#leftnav li a:link, #leftnav li a:visited 
{
	color: #ccc;
	display: block;
	background:  url('leftnav.gif');
	padding-left:25px; padding-right:0; padding-top:8px; padding-bottom:0
}
#leftnav li a:hover, #leftnav li #current 
{
	color: #fff;
	background:  url('leftnav.gif') 0 -32px;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	padding-left:40px; padding-right:0; padding-top:8px; padding-bottom:0
}