ul.topnav {
	list-style: none;
	padding: 0 0px;
	margin: 0px 0;
	float: left;
	width: 100%;	
	background: url(images/menu-bg.jpg) repeat-x;
	height:77px;
	font-weight:bold;
}
ul.topnav li {
	float: left;
	margin: 0;
	padding: 0 0 0 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
	background:url(images/menu-sep.jpg) no-repeat right top;
	height:77px;
}
ul.topnav li a{
	padding: 0 43px 0 43px;
	color: #fff;
	display: block;
	text-decoration: none;
	float: left;	
	line-height:77px;
}
ul.topnav li a:hover, ul.topnav li a.sel{
	background: url(images/menu-sel.jpg) repeat-x center top;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 35px;
	float: left;
	background: url(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: 77px;
	background: green;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 302px;
	border:solid 1px #368a0e;
	border-bottom:0px;
	border-top:dotted 1px #368a0e;
	
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	/*border-top: 1px solid #252525; *//*--Create bevel effect--*/
	border-bottom: 1px dotted #368a0e; /*--Create bevel effect--*/
	clear: both;
	width: 240px;
	height:35px;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 240px;
	background: green url(images/menu-bg.jpg) repeat-x  bottom left;
	padding-left: 20px;
	line-height:35px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background: green url(images/menu-sel.jpg) repeat-x top center;
}
