@charset "utf-8";
/* CSS Document */

/* *********************************************************************** */


/* *********************************************************************** */

#nav {
	margin: 0;
	padding: 0;
	line-height: 100%;
        font-size:14px;
}
#nav li {
	height:35px;
	margin: 5px 5px 0px 0px;
	padding: 0;
	float: left;
	position: relative;
	list-style: none;
        background: transparent;
}

#nav li._on a
{color:#BF7A52;}


/* main level link */
#nav a {
	font-weight: normal;
	color:#BF7A52;
	text-decoration: none;
	display: block;
	padding:  10px 20px 9px 20px;
	margin: 0;

}

#nav a:hover {	
	background: #f8f9dc;
	color:#BF7A52;
text-decoration:underline;
}

/* main level link hover */
#nav li:hover > a {
	color:#BF7A52;
	background: #f8f9dc;
}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	border: none;
	color:#BF7A52;
}
#nav ul a:hover {
	color:#BF7A52;
}

/* dropdown */
#nav li:hover > ul {
	display: block;
}

/* level 2 list */
#nav ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 250px;
	position: absolute;
	top: 34px;
	left: 0;
	background: #f8f9dc;
        box-shadow: 6px 6px 6px #7b795e;
	z-index: 21;

}
#nav ul li {

	text-align:left;
	float: none;
	margin: 0;
	padding: 0;
	min-height: 21px;
	height: auto;
	padding: 0px 0px;
	border-bottom: solid 1px #fff;

}

#nav ul li:hover {
	background-image: none;
	background: #f1edc7;
}

#nav ul a {
	color:#BF7A52;
	text-align:left;	
	font-weight: normal;
}

#nav ul a:hover {
	text-decoration:underline;	
}

/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: 0px;
}

/* rounded corners of first and last link 
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 9px;
	-moz-border-radius-topleft: 9px;

	-webkit-border-top-right-radius: 9px;
	-moz-border-radius-topright: 9px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 9px;
	-moz-border-radius-bottomleft: 9px;

	-webkit-border-bottom-right-radius: 9px;
	-moz-border-radius-bottomright: 9px;
}
*/

/* 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%;
}