ul.topnav {
	list-style: none;
	padding: 19px 0 0 20px;	
	margin: 0;
	float: right;
	width: 500px;
	/*background: #222;*/
	font-size: 1em;
	/*background: url(../images/topnav_bg.gif) repeat-x;*/
}
ul.topnav li {
	float: right;
	margin: 0;	
	padding: 0 13px 0 0;
	position: relative; /*--Declare X and Y axis base--*/
}
ul.topnav li a{
	padding: 10px 5px;
	color: #fff;
	display: block;
	text-decoration: none;
	float: left;
	outline: 0;
}
ul.topnav li a:hover{
	background: url(../../images/topnav_hover.png) no-repeat center top;
}
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: 35px;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 170px;
	border: 2px solid #00ccff;
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	border-top: 1px solid #00ccff; /*--Create bevel effect--*/
	/*border-bottom: 1px solid #00ccff; /*--Create bevel effect--*/
	clear: both;
	width: 170px;
	text-align:left;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 145px;
	background-image: url(../../images/nav_bg_hover.png);
	padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background: #222 url(../../images/nav_bg_hover.png) no-repeat 10px center; 
}
