/*Drop Down*/

ul.topnav {
	list-style: none;
	padding: 0 20px;
	margin: 0;
	float: left;
	width: 100%;

	background: #ff9f00;
	font-size: 1.2em;
	background:#ff9f00 url('../images/BTN_back2.png') repeat-x;
}
ul.topnav li {
	float: left;
	margin: 0 37px;
	padding: 0 15px 0 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
	list-style: none;
}
ul.topnav li a{
	padding: 0px 5px;
	color: black;
	display: block;
	text-decoration: none;
	float: left;
}
ul.topnav li a:hover{
	background: url(topnav_hover.gif) no-repeat center top;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 20px;
	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: 22px;
	background:url('../images/menu-drop_bak.png') repeat-y;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 270px;
	border: 1px solid gray;
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	/*border-top: 1px solid #252525; *//*--Create bevel effect--*/
	/*border-bottom: 1px solid gray; *//*--Create bevel effect--*/
	clear: both;
	width: 270px;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 245px;
	/*background: white url(dropdown_linkbg.gif) no-repeat 10px center;*/
	padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	/*background: #222 url(dropdown_linkbg.gif) no-repeat 10px center;*/
	font-weight:bold;
}
