ul.topnav {
	list-style: none;
	padding: 0 20px;
	margin: 0px auto 0px auto;
	float: left; 
 	width: 950px; 
	background: transparent;
	/* background: url(../images/jquery_horisontalmenu/main-menu-inner.png) repeat-x; */
}
ul.topnav li {
	float: left;
	margin: 0;
	padding: 0 0 0 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
	/* height: 30px; */
}

ul.topnav li a, ul.topnav li a:visited{
	padding: 7px 5px;
	color: #AA5D33;
	display: block;
	text-decoration: none;
	float: left;
	font: 18px Georgia, Times, serif;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 35px;
	float: left;
	background: url(../images/jquery_horisontalmenu/subnav_btn.png) no-repeat center center; 
}
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;
	background: #feeddd;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 230px;
	border-left: 1px solid #edd0bb; 
	border-right: 1px solid #edd0bb;
}


#spec_subnav {
	width: 250px;
	height: 500px;
	overflow: auto;
}

ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	border-top: 1px solid #edd0bb; /*--Create bevel effect--*/
	border-bottom: 1px solid #edd0bb; /*--Create bevel effect--*/
	clear: both;
	width: 230px;
	height: 25px;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 220px;
	color: #aa5d33;
	font-size: 14px;
	background: #feeddd; /* url(../images/jquery_horisontalmenu/dropdown_linkbg.gif) no-repeat 10px center; */
	/* padding-left: 10px; */
	padding-top: 3px; 
	padding-bottom:3px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background-color: #009ee1; /* url(../images/jquery_horisontalmenu/dropdown_linkbg.gif) no-repeat 10px center; */
	color: white;
	padding-top: 3px; 
	padding-bottom:3px;
}


ul.topnav, ul.topnav li, ul.topnav li a {
	z-index: 10;
}
ul.topnav li ul.subnav, ul.topnav li ul.subnav li, ul.topnav li ul.subnav a {
	z-index: 30;
}
