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

ul.topnav {
	list-style: none;
	padding: 0 20px 0 0;
	margin: 0;
	float: left;
	width: 928px;
	background: #222;
	font-size: 1em;
	background: url(/images/navbg.png) repeat-x;
	height: 32px;
	border-top: #3f3f3f solid 1px;
	border-left: #3f3f3f solid 1px;
	border-right: #000 solid 1px;
	border-bottom: #000 solid 1px;
}
ul.topnav li {
	line-height: 32px;
	float: left;
	margin: 0 0 0 57px;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
}
ul.topnav li a{
	color: #F00;
	display: block;
	text-decoration: none;
	float: left;
}
ul.topnav li a:hover{
	background: url(../img/topnav_hover.gif) no-repeat center top;
	color: #fff;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 35px;
	float: left;
	background: url(/images/subnav_btn.gif) no-repeat center top;
}
ul.topnav li span.subhover {
	background-position: center bottom; 
	cursor: pointer;} /*--Hover effect for trigger--*/
	
ul.topnav li ul.subnav {
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0; top: 32px;
	background: #333;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 110px;
	border: 1px solid #000;
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	border-top: 1px solid #000; /*--Create bevel effect--*/
	border-bottom: 1px solid #252525; /*--Create bevel effect--*/
	border-right: 1px solid #000; /*--Create bevel effect--*/
	clear: both;
	width: 110px;
	height: 25px;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 105px;
	line-height: 25px;
	background: #111 no-repeat 10px center;
	padding-left: 5px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	color: #fff;
}
