/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/
body {   behavior:url(css/csshover.htc); }
ul#nav {
	  height: 56px;
    margin: 0;
    padding: 4px 10px 0;
    width: 940px;
	background:url(../images/nav-bg.jpg) no-repeat 0 0px;
 float:left;
 position:relative;
}


ul#nav li a {
	color: #ffbb45;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 17px 20px;
    text-decoration: none;
    text-transform: uppercase;
}

ul#nav li a:hover{
	/*background:#888;*/
	color:#fff;
	}
	
ul#nav li {
	float: left;
	position: relative;
	text-align: center;
	margin-right:0px;

}

ul#nav li.current a{
/*	background:#ddd;*/
	}

ul#nav li.current a:hover{
/*	background:#888;*/
	}

li ul {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: normal;
	padding: 1px 0 10px 0;
	width: 220px; padding:0px; margin:0px; z-index:10001;
}



ul#nav li ul.sub li 					{ font-weight: bold; background: #f3942a; color: #ffffff; 
									  border-bottom: 1px solid #a80209; float: none;  z-index:10001; }
ul#nav li ul.sub li a					{ border-right: none; background:none; width:180px;color: #ffffff; 
    padding:8px 20px; display:block; margin:0px; text-align:left; font-weight:bold;  z-index:10001;} 
ul#nav li ul.sub li a:hover{background:#f58100; width:180px;color: #ffffff;}	



ul#nav li ul.sub li{
	border-width:0 1px 1px 1px!important;
}

ul#nav li ul.sub li a{
	font-weight: normal!important;	
}
li>ul {
	top: auto;
	left: auto;
	z-index:10001;
}

li:hover ul, li.over ul {
	display: block;
}
