ul#topnav {
	margin: 0; 
	padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
}
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: 42px;
}

ul#topnav li:hover a, ul#topnav li a:hover { 
	background-position: left center; 
} /*--Hover State--*/

ul#topnav a.home {
	background: url('../images/nav-home.png') no-repeat;
	width: 54px;
	margin: 0 28px 0 28px;
	background-position: left center;
}
ul#topnav a.news {
	background: url('../images/nav-news.png') no-repeat;
	width: 43px;
	margin: 0 28px 0 28px;
	background-position: left center;
}
ul#topnav a.products {
	background: url('../images/nav-products.png') no-repeat;
	width: 65px;
	margin: 0 28px 0 28px;
	background-position: left center;
}
ul#topnav a.resources {
	background: url('../images/nav-resources.png') no-repeat;
	width: 72px;
	margin: 0 28px 0 28px;
	background-position: left center;
}
ul#topnav a.online-store {
	background: url('../images/nav-online-store.png') no-repeat;
	width: 84px;
	margin: 0 28px 0 28px;
	background-position: left center;
}
ul#topnav a.request-a-quote {
	background: url('../images/nav-request-a-quote.png') no-repeat;
	width: 110px;
	margin: 0 28px 0 28px;
	background-position: left center;
}
ul#topnav a.contact {
	background: url('../images/nav-contact.png') no-repeat;
	width: 57px;
	margin: 0 28px 0 28px;
	background-position: left center;
}

ul#topnav .sep {
	background: url('../images/vertical-nav-bar.png') no-repeat;
	width: 2px;
	height: 42px;
}

ul#topnav li .sub {
	position: absolute; /*--Important--*/
	top: 42px; left: -200px;
	z-index: 99999;
	background: #1b6a1e url('../images/sub-bg.png') repeat-x; /*--Background gradient--*/
	padding: 20px 20px 20px;
	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: 5px;
}
ul#topnav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 200px;
	float: left;
}
ul#topnav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: #fff;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
}
ul#topnav .sub ul li h2 { /*--Sub nav heading style--*/
	padding: 0;  margin: 0;
	font-size: 12px;
	font-weight: normal;
	line-height: 15px;
}
ul#topnav .sub ul li h2 a { /*--Sub nav heading link style--*/
	padding: 5px 0;
	background-image: none;
	color: #e8e000;
}
ul#topnav .sub ul li a {
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	background: url('../images/nav-arrow.png') no-repeat 2px 4px;
	padding: 0px 5px 0 15px;
	display: block;
	text-decoration: none;
	color: #fff;
}
ul#topnav .sub ul li a:hover {
	color: #ddd;
	background-position: 4px 4px;/*--Override background position--*/
}
