ul#topnav {
	margin: 0;
	padding: 0;
	float: right;
	width: 697px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/	
	
}
ul#topnav li {
	float: right;
	background: url(images/bk_menu_off.jpg) ;
	width:116px;
	height:51px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000;
	text-align: center;
	
}
ul#topnav li a {
	padding: 18px 20px;
	display: block;
	text-decoration: none;
	color:#000;	
	
}
ul#topnav li:hover { 
	background: url();
	width:116px;
	height:51px;
	 }
/*--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 {
	float: left;
	padding: 5px 0;
	position: absolute;
	left: 0; top:51px;
	display: none; /*--Hide by default--*/
	width: 697px;
	background: #cf0c0b;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size: 12px;
	color: #FFF;
	
	
	/*--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;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFF;
 } /*--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: underline;
	}
