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




.navcontainer { width:100%; height:30px; background-color:#CCC; margin-top:0; }


.nav {
	font: normal 15px Arial, Helvetica, sans-serif;
	/*background:url(../images/navbg.png) repeat-x;*/
	position:relative; z-index:10000;
	padding:5px 0 0 0;
	margin:0 0 0 10px;

	
	
	}

.nav li {
	margin: 0 10px 0 2px;
	padding: 0 0 0 0;
	float: left;
	position: relative;
	list-style: none;
	font-size:15px;
	border:none;
	z-index:9999; 
	
}


/* main level link */
.nav li a {
	font-weight: bold;
	color: #000;
	text-decoration: none;
	display: block;
	padding:0;
	margin: 0;
	
    
}
.nav li a:hover {
	background: #000;
	color: #fff;
}

/* main level link hover */
.nav .current a, .nav li:hover > a {
	background: none;
	color: #000;
	list-style:none;
}

.nav .current a:hover { color:#fff; }



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

	list-style:none;
}
.nav ul a:hover {
	
	color: #fff !important;

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

}

/* dropdown */
.nav li:hover > ul {
	display: block;
	list-style:none;
	
	
}

/* level 2 list */
.nav ul {
	display: none;
    text-align:left;
	margin: 0;
	padding: 4px;
	width: 200px;
	position: absolute;
	z-index:999;
	top: 16px;
	left: 0;
	background: #ddd;
	border: solid 1px #b4b4b4;

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

	-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);
	list-style:none;
}
.nav ul li {
	float: none;
	margin: 0;
	padding: 0;
	list-style:none;
	border-bottom:1px dotted #999;
	
}

.nav ul a {
	font-weight: normal;
	text-shadow: 0 1px 0 #fff;
	padding: 2px 0 2px 0;
	list-style:none;
}

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