ul.topnav {
	list-style: none;
	padding: 0 ;
	margin: 0;
	float: left;
	width: 980px;
	background: #222;
	font-size: 1em;
	background: url(topnav_bg.gif) repeat-x;
}
ul.topnav li {
	float: left;
	margin: 0 0 0 10px;
	padding: 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
  z-index:10;
}
ul.topnav li a {
	padding: 10px 5px;
	color: #fff;
	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: 16px;
	height: 35px;
	float: left;
	background:transparent 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--*/
  z-index:20;
	left: 0; top: 35px;
	background: #333;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 300px;
	border: 1px solid #111;
border-width:0 2px 2px;
/*
  width: 400px;

*/
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	width: 300px;
/*
	border-top: 1px solid #252525;
	border-bottom: 1px solid #444;
width:200px;
*/
}
html ul.topnav li ul.subnav li a {
  display:block;
  padding:4px 8px;
  float:none;
	background:#1a1a1a;  /* url(dropdown_linkbg.gif) no-repeat 10px center; */
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
background:#ddd; /* url(dropdown_linkbg.gif) no-repeat 10px center; */
color:#000;
}

