@charset "utf-8";
/* CSS Document */

ul.topnav {
	list-style: none;
	padding: 0 20px;	
	margin: 0;
	float: left;
	width: 700px;
	background: #222;
	font-size: 12px;
	font-weight: normal;
	background: none;
}
ul.topnav li {
	float: left;
	margin: 0;	
	padding: 0 15px 0 0;
	position: relative; /*--Declare X and Y axis base--*/
	
}
ul.topnav li a{
	padding: 0 10px;
	line-height: 40px;
	color: #2e2004;
	display: block;
	text-decoration: none;
	float: left;
	font-weight: normal;
	font-size: 12px;
}
ul.subnav li a{
	height: 22px;
	padding: 5px;
	line-height: 22px;
	color: #fff;
	display: block;
	text-decoration: none;
	float: left;
	font-weight: normal;
	font-size: 12px;
}
ul.topnav li a:hover{
	background: none;
	color: #b7b2a9;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 20px;
	height: 40px;
	float: left;
	background: url(../top-nav/subnav_btn.png) no-repeat center top;
}
ul.topnav li span.subhover {background-position: center bottom; cursor: pointer;} /*--Hover effect for trigger--*/

ul.topnav li ul.subnav {
	z-index:999;
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0; top: 40px;
	background: #29251e;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 175px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border: 1px solid #111;
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	border-top: 1px solid #252525; /*--Create bevel effect--*/
	border-bottom: 1px solid #b7b2a9; /*--Create bevel effect--*/
	background: #29251e;
	clear: both;
	width: 175px;

}
ul.topnav li ul.subnav li a {
	float: left;
	width: 150px;
	background: #333 url(../top-nav/dropdown_linkbg.gif) no-repeat 10px center;
	padding-left: 20px;
	font-weight: normal;
	font-size: 12px;
}
ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background: #222 url(../top-nav/dropdown_linkbg.gif) no-repeat 10px center; 
}

ul ul ul li a {
	top: 0;
	left: 100%;
}