/* TOP LEVEL MENU STYLES */

ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
	background:#fff url(/images/menu-top-bg.jpg);
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	position: relative; /*--Important--*/
}
ul#topnav li a {
	float: left;
	text-indent: -9999px; /*--Push text off of page--*/
	height: 30px;
}
ul#topnav li:hover a, ul#topnav li a:hover { background-position: left bottom; outline:none; } /*--Hover State--*/

ul#topnav a.capabilities {
	background: url(/images/menu2_1.png) no-repeat;
	width: 90px;
}
ul#topnav a.design {
	background: url(/images/menu2_2.png) no-repeat;
	width: 150px;
}
ul#topnav a.guides {
	background: url(/images/menu2_3.png) no-repeat;
	width: 100px;
}
ul#topnav a.quality {
	background: url(/images/menu2_4.png) no-repeat;
	width: 125px;
}
ul#topnav a.about {
	background: url(/images/menu2_5.png) no-repeat;
	width: 69px;
}
ul#topnav a.employment {
	background: url(/images/menu2_6.png) no-repeat;
	width: 87px;
}
ul#topnav a.contact {
	background: url(/images/menu2_7.png) no-repeat;
	width: 82px;
}
ul#topnav a.sitemap {
	background: url(/images/menu2_8.png) no-repeat;
	width: 67px;
}
/* POPUP MENU STYLES */

ul#topnav li .sub {
	position: absolute; /*--Important--*/
	top: 30px; left: 0;
	z-index: 99999;
	background: #e9e9e9 url(/images/menu_bg.png) repeat-x; /*--Background gradient--*/
	padding: 10px 10px 10px;
	float: left;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	display: none; /*--Hidden for those with js turned off--*/
}
ul#topnav li .row { /*--If needed to break out into rows--*/
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
ul#topnav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 350px;
	float: left;
}
ul#topnav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: #000;
}
ul#topnav .sub ul li h2 { /*--Sub nav heading style--*/
	padding: 0;  margin: 0;
	font-size: 1.3em;
	font-weight: normal;
}
ul#topnav .sub ul li h2 a { /*--Sub nav heading link style--*/
	padding: 5px 0;
	background-image: none;
	color: #000;
}
ul#topnav .sub ul li a {
	font:13px/16px Arial;
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	background: url(/images/navlist_arrow.png) no-repeat 4px 7px;
	padding: 4px 5px 4px 19px;
	display: block;
	text-decoration: none;
	color: #000;
	border-bottom:1px solid #a2a2a2;
	outline:none;
}
ul#topnav .sub ul li a:hover {
	color: #666;
	background-position: 5px 7px ;/*--Override background position--*/
}

