@charset "utf-8";
/* CSS Document */

#headcontainer {
	height:auto;
	width: 980px;
	vertical-align:top;
	position: static;
	margin-top: auto;
	margin-bottom: auto;
}
#logo {
	width: auto;
	height: auto;
	float: left;
	vertical-align: bottom;
	position: relative;
	margin-left: 30px;
	margin-top:25px;
	margin-bottom:15px;
}
#top-banner{
	width: 200px;
	height: 40px;
	float: right;
	margin-right:20px;
	margin-top: 35px;
	position: relative;
	vertical-align: top;
	}
#top-banner img{
	float:left;
	margin-right:10px;
}
.top-nav-links{
	width:980px;
	height:auto;
	background-image: url(/images/top-nav-bar.gif);
	background-repeat: no-repeat;
	border:none;
	border:0px;
	clear: left;
	vertical-align: top;
}
.top-nav-links ul{
	height:35px;
	list-style:none;
	width: 100%;
	margin: 0;
	padding: 0;
}
.top-nav-links ul li{
	float:left;
	width: 25%; /*this cab be set locally for a differnt amount of links*/
}
.top-nav-links ul li a { /*all child links*/
	font-weight:normal;
	color:#FFFFFF;
	display:block;
	text-align:center;
	text-decoration: none;
	line-height: 35px;
}
.top-nav-links ul li a:hover { /*all child hovered links*/
	text-decoration: underline;
	color: #FFFFFF;
}
/*sub menu*/
.top-nav-links ul li ul{/*drop box*/
	display:none;
	height:auto;
	position:absolute;
	width:202px;
	z-index:200;
	background-color: #0F7BC4;
	margin: 0px; /*keeps box tight to top and left*/
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #094B8D;
	border-right-color: #094B8D;
	border-bottom-color: #094B8D;
	border-left-color: #094B8D;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
.top-nav-links li:hover ul { /*drop box while hovered*/
	display:block;
	z-index: 1000;

}			
.top-nav-links ul li ul li {
	width: 100%;
	text-align: left;
}
.top-nav-links ul li ul li a { /*sub menu links*/
	font-weight:normal;
	text-align: left;
	line-height: 2em;
}

