/*-------------navigation start--------------*/

#nav {
	margin:98px 15px 0 0;
	padding: 5px 5px 0;
	line-height: 100%;
	float:right;
}
#nav li {
	margin: 0 2px;
	padding: 0 2px;
	float: left;
	position: relative;
	list-style: none;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:12px;
	text-transform:uppercase;
	font-weight:bold;
}


/* main level link */
#nav a {
	color:#014e62;
	text-decoration: none;
	display: block;
	padding:  12px 4px;
	margin: 0;
}
#nav a:hover {
	color: #000;
}

/* main level link hover */
#nav .current a, #nav li:hover > a {
	color: #3f270d;
}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
background-image:none;
	border: none;
	color:#3f270d;
}
#nav ul a:hover {
	color:#3f270d !important;
}

/* dropdown */
#nav li:hover > ul {
	display: block;
	background:#fcba02;/* dropdown background */
}

/* level 2 list */
#nav ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 220px;
	position: absolute;
	top: 35px;
	left: 0;
	background:#66502b;
	z-index:+999;
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
	border-bottom:1px solid #dbd090;
}

#nav ul a {
	font-weight: normal;
	line-height:10px;
	font-size:12px;
}
#nav ul a:hover {
	font-weight: normal;
	line-height:10px;
	background:#fee600;/* dropdown background Hover */
}

/* level 3+ list */
#nav ul ul {
	left: 220px;
	top: 0px;
}

/* rounded corners of first and last link */


/* clearfix */
#nav:after {
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
} 
html[xmlns] #nav {
	display: block;
}
 
* html #nav {
	height: 1%;
}

/*-------------navigation end--------------*/

