@charset "utf-8";
/* CSS Document */

#nav {
	margin: 0;
	padding: 3px 2px 0;
	background: #666;
	background: -moz-linear-gradient(top, #666, #333);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#666), to(#333));
	line-height: 100%;

	
}
#nav li {
	margin: 0 3px;
	padding: 0 0 7px;
	float: left;
	position: relative;
	list-style: none;
}


/* main level link */
#nav a {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	display: block;
	padding:  8px 18px;
	margin: 0;

	
}
#nav a:hover {
	background: #000;
	color: #fff;
}

/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: #e0db2e;
	background: -moz-linear-gradient(top, #fffdbc, #e0db2e);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fffdbc), to(#e0db2e));
	color: #000;
	}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #666;

	
}
#nav ul a:hover {
	background: #0078ff url(img/gradient.png) repeat-x 0 -100px !important;
	color: #fff !important;

	
}

/* dropdown */
#nav li:hover > ul {
	display: block;
}

/* level 2 list */
#nav ul {
	display: none;

	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 25px;
	left: 0;
	background: #135229;
	border: solid 1px #b4b4b4;
	z-index:10;
	

	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;

	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}

#nav ul a {
	font-weight:bold;
	color:#FFF;
}

/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: -10px;
}

/* rounded corners of first and last link */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 0px;
	-moz-border-radius-topleft: 0px;

	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topright: 0px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-bottomleft: 0px;

	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius-bottomright: 0px;
}

/* 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%;
}









