@charset "UTF-8";
/* CSS Document */

ul.topnav {
	list-style: none;
	padding: 0 20px 0 0;
	margin: 0;
	float: left;
	width: 930px;
	background: #f00;
	font-size: 80%;
	font-weight: 200;
	text-transform: uppercase;
	background: url(../img/navbg.png) repeat-x;
	height: 32px;
	border-top: #b11 solid 1px;
	border-bottom: #000 solid 1px;
	color: #fff;
}
ul.topnav li {
	line-height: 32px;
	float: left;
	margin: 0 0 0 44px;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
	height: 32px;
	color: #fff;
}
ul.topnav li a{
	display: block;
	text-decoration: none;
	float: left;
	color: #fff;
}

ul.topnav li.one a:hover{
	background: url(../img/glow1.png) no-repeat center;
}

ul.topnav li.two a:hover{
	background: url(../img/glow2.png) no-repeat center;	
}

ul.topnav li.three a:hover{
	background: url(../img/glow3.png) no-repeat center;
}

ul.topnav li a:hover{
	color: #000;
}

ul.topnav li.current{
	background: url(../img/pnt.png) no-repeat bottom center;
}

ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 35px;
	float: left;
	background: url(../img/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: #fff;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 130px;
	border: 1px solid #000;
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	border-right: 1px solid #000; /*--Create bevel effect--*/
	clear: both;
	width: 130px;
	height: 25px;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 125px;
	font-weight: 400;
	background: #800 no-repeat 10px center;
	line-height: 25px;
	padding-left: 5px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background-image: none;
	font-weight: 400;
}

