@charset "utf-8";
/* CSS Document */

/* *********************************************************************** */


/* *********************************************************************** */

#nav {
	margin: 0;
	padding: 0;
	line-height: 100%;
}
#nav li {
	height:47px;
	margin: 0px 5px 0px 0px;
	padding: 0;
	float: left;
	position: relative;
	list-style: none;
         background: #304441;
	box-shadow: 0px -2px 3px rgba(0,0,0, .1);
	
}

#nav li._on a
{color:#FFF;}


/* main level link */
#nav a {
	font-weight: normal;
	color:#fff;
	text-decoration: none;
	display: block;
	padding:  20px 20px 10px 20px;
	margin: 0;

}


#nav a:hover {	
	background: transparent;
	color:#FFF;	
}

/* main level link hover */
#nav .current a, #nav li:hover > a {
	color:#00516E;
	background: #769c94;
}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	border: none;
	color: #666;
}
#nav ul a:hover {
	color:white;
}

/* dropdown */
#nav li:hover > ul {
	display: block;
}

/* level 2 list */
#nav ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 300px;
	position: absolute;
	top: 47px;
	left: 0;
	background: #efedef;
	box-shadow: 7px 7px 5px rgba(0,0,0, .1);
	z-index: 9999;

}
#nav ul li {
	text-align:left;
	float: none;
	margin: 0;
	padding: 0;
	min-height: 28px;
	height: auto;
	padding: 5px 0px;
	border-bottom: solid 1px #fff;

}

#nav ul li:hover {
	background-image: none;
	background: #f1f1f1;
}


#nav ul a {
	color:#00516E;
	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%;
}