@charset "UTF-8";
/* CSS Document */

ul#topnav {
	margin: 0;
	padding: 0;
	float: left;
	width: 650px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 1.2em;
	background: url(topnav_stretch.gif) repeat-x;
}
ul#topnav li {
	font-family: Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight: bold;
	text-decoration:none;
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #f8a600; /*--Divider for each parent level links--*/
}
ul#topnav li a {
	padding: 10px 15px;
	display: block;
	text-decoration: none;
	color: #000;
}
ul#topnav li a:hover { background: #f8a600; text-decoration:none; color:#FFF; 
     filter: alpha(opacity=90);
	 -moz-opacity: .9;
	 KhtmlOpacity: .9;
	 opacity: .9;
	 color: #fff;
	 }
/*--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 {
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight: bold;
	float: left;
	padding-left: 3px;
	padding-bottom: 10px;
	padding-top:10px;
	padding-right:0px;
	position: absolute;
	left: 0; top:35px;
	display: none; /*--Hide by default--*/
	width: 642px;
	background: #f8a600;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 6px;
	-khtml-border-radius-bottomright: 6px;
	-webkit-border-bottom-right-radius: 6px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 6px;
	-khtml-border-radius-bottomleft: 6px;
	-webkit-border-bottom-left-radius: 6px;
	filter: alpha(opacity=90);
	 -moz-opacity: .9;
	 KhtmlOpacity: .9;
	 opacity: .9;
}
ul#topnav li:hover span { display: block;} /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; } /*--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; color:#fff;
    padding-bottom: 9px;
	padding-top:9px; 
/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 6px;
	-khtml-border-radius-bottomright: 6px;
	-webkit-border-bottom-right-radius: 6px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 6px;
	-khtml-border-radius-bottomleft: 6px;
	-webkit-border-bottom-left-radius: 6px;


}