#nav {
	position:absolute;
	top:-15px;
	left:0px;
	margin:0;
	padding:0;
	background: url(../images/background/menu.png) 0 0 no-repeat;
	height:45px;
	width:1000px;
}
#nav li {
	margin:0 0 0 9px;
	padding:0 0 0 0;
	float: left;
	position: relative;
	list-style: none;
}

/* main level link */
#nav a {
	font:bold 13px Arial;
	color:#fff;
	text-decoration: none;
	display:block;
	height:30px;
	padding:15px 10px 0 10px;
	margin:0;
	text-transform: uppercase;
}
#nav a:hover {
	background:#000;
	color:#000;
}

/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: url(../images/background/menu-hover.png) 0 0 repeat-x;
	color:#664c1f;
}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background:#f9b728;
	border:none;
	color:#58421b;
	text-decoration:none;
}

#nav ul a:hover {
	color:#58421b !important;
	text-decoration:none;
}

/* dropdown */
#nav li:hover > ul {
	display: block;
}

/* level 2 list */
#nav ul {
	display:none;
	margin:0;
	padding:5px 0 0 0;
	width:185px;
	position:absolute;
	top:42px;
	left:0;
	background:#f9b728;
	-webkit-border-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	border-radius: 5px;
}
#nav ul li {
	float: none;
	margin: 0px 5px 0 0;
	padding: 0;
	border-bottom:1px dashed #c79220;
}

#nav ul li:last-child {
	bordeR:none;
}

#nav ul a {
	font:normal 12px Verdana;
	text-transform: none;
	height:20px;
	padding:5px 10px 0 10px;
}

/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: -3px;
}

/* rounded corners of first and last link */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;

	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;

	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
}

/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
} 
html[xmlns] #nav {
	display: block;
}
 
* html #nav {
	height: 1%;
}
