body {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #999999;
}

#container {
	width: 980px; /* 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. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFFFFF;
	background-image: url(images/bg_container.jpg);
}
#header {
	background-color: #DDDDDD;
	background-image: url(images/header.jpg);
	height: 213px;
	width: 980px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-repeat: no-repeat;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: italic;
	color: #3399CC;
}
#menu {
	width: 980px;   /* top lists */
	position: absolute;
	top: 184px;
	list-style: none;
	z-index: 9;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-decoration: none;
	text-align: left;
	right: inherit;
	margin: 0;
	height: 30px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
} 
	
	
#menu ul { /* top lists */
	position: absolute;
	list-style: none;
	text-align: left;
	vertical-align: middle;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	width: 980px;
	height: 23px;
	margin-left: 0px;
	top: 1px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	} 
	

#menu ul a {
	color: #FFFFFF;
	
	font-size: 14px;
	text-decoration: none;
	font-weight:400;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-variant: normal;
	text-transform: none;
	text-align: left;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 20px;
	}
	
	#menu ul a:hover {
	color: #CC0000;
	font-size: 14px;
	text-decoration: none;
	font-weight:400;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-variant: normal;
	text-transform: none;
	text-align: left;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 20px;
	}

#mainContent {
	width: 980px
	min-height:850px; 
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFFFFF;
	background-image: url(images/bg_container.jpg);
	background-repeat: repeat-y;
	color: #FFFFFF;
}
#mainContent h1{
	font-size: 18px;
	font-style: italic;
	color: #FFFFFF;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 5px;
	}

#mainContent h2{
	font-size: 14px;
	font-style: italic;
	color: #FFFFFF;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	}

#mainContent p{
	font-size: 12px;
	font-style: normal;
	color: #FFFFFF;
	text-align: justify;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 5px;
	}
	
#mainContent a{
	font-size: 12px;
	font-style: normal;
	color: #999999;
	text-decoration: none;
	}
	
#mainContent a:hover{
	font-size: 12px;
	font-style: normal;
	color: #CC0000;
	text-decoration: none;
	}


#footer {
	height: 67px;
	width: 980px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #DDDDDD;
	background-image: url(images/footer.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-decoration: none;
	text-align: center;
	
}

#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 30px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align: center;
	color: #666666;
}

#footer a {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 35px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align: center;
	color: #666666;
}
