ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: .75em;
	
}
ul#topnav li {
	float: right;
	margin: 0; padding: 0;
	border-right: 1px dotted #994F10; /*--Divider for each parent level links--*/
}

ul#topnav li.contactUS {border-right:none;}

ul#topnav li a {
	padding: 10px 10px;
	display: block;
	color:#C24F16;
	text-decoration: none;
	
}

ul#topnav li:hover {background:url(../images/topNavHover30x30.png);}
ul#topnav li a:hover {background:url(../images/topNavHover30x30.png);
	font-weight:bold;	
}

/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/


ul#topnav li span {
	width: 100%;
	background:url(../images/spanColor30x30.png);
	float: left;
	text-align:center;
	padding: 12px 0;
	position: absolute;
	left:0px; top:35px;
	display: none; /*--Hide by default--*/
	
	
	/*--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;
}
ul#topnav li:hover span { display: block; } /*--Show subnav on hover--*/
ul#topnav li span a { display: inline;color:#C24F16;} /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav li span a:hover {text-decoration:none;font-weight:bold;background:url(../images/spanColor30x30.png);}
