@charset "UTF-8";
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: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFF;
	background-image: url(../nav_images/backgrounds/background.gif);
	background-repeat: repeat-x;
	background-position: left top;
}
#container {
	width: 965px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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;
} 
#header {
	height: 84px;
	padding: 0px;
	background-color: #DDDDDD;
	background-image: url(../nav_images/backgrounds/header.gif);
	background-repeat: no-repeat;
	background-position: left top;
} 
#header a {
	height: 75px;
	width: 200px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	display: block;
	margin: 0;
	text-indent: -9000px;
}
#sidebar1 h1,#sidebar1 h2 {
	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 */
	font-size: 21px;
	color: #008812;
}
#mainContent h1,#mainContent h2 {
	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 */
	font-size: 21px;
	color: #008812;
}
#nav {
	height: 28px;
	background-color: #03BB5F;
	padding: 0;
	background-image: url(../nav_images/backgrounds/nav-skin.gif);
	background-repeat: repeat-x;
	background-position: left top;
} 
#banner {
	background-color: #008812;
	height: 198px;
	padding: 0;
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 400px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}
#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 440px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
} 
#logos {
	background-color: #00C375;
	height: 133px;
	padding: 0;
}
#footer {
	background-color: #03BC5F;
	height: 92px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	color: #FFF;
}
#footer p a {
	color: #FFF;
	text-decoration: none;
}
.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;
}

/*Main Navigation---------------------------------------------------------------*/

/*-------nav--------*/
ul.topnav {
	list-style: none;
	padding: 0 20px;
	margin: 0;
	float: right;
	font-size: 12px;
}  
ul.topnav li {
	float: left;
	margin: 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
}  
ul.topnav li a{
	color: #fff;
	display: block;
	text-decoration: none;
	float: left;
	height: 24px;
	width: auto;
	padding-top: 5px;
	padding-right: 2px;
	padding-left: 2px;
}

ul.topnav li  a:hover{
	background-color:  #00A133;
}

/*----hover subs-------*/
.topnav .subnav  a:hover {
	background-color: #005E0D;
	color: #08D86F;
}


  
ul.topnav li ul.subnav {
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0;
	top: 29px;
	margin: 0;
	padding: 0;
	display: none;
	float: left;
	height: 29px;
	width: 200px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	background-color: #03BB5F;
}  
ul.topnav li ul.subnav li{
	margin: 0;
	padding: 0;
	clear: both;
	width: 200px;
}  
html ul.topnav li ul.subnav li a {
	float: left;
	width: 200px;
	background-color: #00A133;
	background-position: 10px center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #00C376;
	font-size: 12px;
	padding-top: 12px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #019D50;
	border-right-color: #03B95E;
	border-left-color: #03BE60;
}  
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/  
    
} 
