@charset "iso-8859-1";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #e0dbd1;
	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;
}
#container { 
	width: 940px; 
	/*
	background:url(image/bg.png) #FFF no-repeat;
	*/
	margin: 0 auto; 
	text-align: left; 

} 



#header {
	height:179px;
	border:0px solid red;	
	background:url(image/bgheader.png) /*#FFF*/ no-repeat;
}

#logo {
	float:left;
	height:170px;
	width:272px;
	border:0px solid black;
}
#logo img {
	margin-top:7px;
	margin-left:72px;
}


#nav {
	height:170px;
	width:600px;
	float:left;
	border:0px solid green;
}

#nav p {
	display:block;
	margin-top:135px;
	margin-left:20px;
	color:#99ccff;
	font-size:24px;
	border:0px solid blue;
}

#nav a {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	color:#444;
	margin-right:15px;
}
#nav a:hover {
	color:#666;
	/*color:#2d3841;*/
	text-decoration:none;
}



#body {
	background:url(image/bg.png) /*#FFF*/ bottom no-repeat;
	padding-bottom:40px;
}
html>body #body {margin-top:-12px;}

#mainContent { 
	width: 765px;
	margin:0 30px 0 75px;
	border:0px solid black;	
} 

#mainContent h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:normal;
	margin: 10px 0 10px 0;
	color:#427931;
} 

#mainContent h2 {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	margin: 15px 0 5px 0;
	color:#333;
} 

#mainContent h3 {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:12px;
	margin: 15px 0 5px 0;
	color:#333;
}

#mainContent p, #mainContent li {
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#333;
	line-height:140%;
}

#mainContent a{
	color:#427931;
	text-decoration:none;
}

#mainContent a:hover{
	color:#5da646;
	text-decoration:underline;
}

li {
margin-left:-20px;
}

#mainContent table td {
vertical-align:top;
}

#footer { 
	width: 765px;
	height:30px;
	margin:30px 30px 0 75px;
	border:0px solid black;
	text-align:center;
} 

#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: 10px 0; */
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	color:#666;
}



#footer a {
	text-decoration:none;
	color:#666;
}
#footer a:hover {
	color:#333;
	text-decoration:none;
}

#footer p span {color:#AAA}
#footer p span a {color:#AAA}
#footer p span a:hover {color:#666}










.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
