@import url(http://fonts.googleapis.com/css?family=Oswald:400,700,300);
body {
	font: normal .8em/1.5em Arial, Helvetica, sans-serif;
	background: #fff;
	width: 900px;
	margin: 10px auto;
	color: #666;
}

a {
	color: #333;
}

#nav {
	margin: 0;
	padding: 5px 2px 0px;
	background: #5c5c5c;
	line-height: 100%;
	height:40px;
        font-family: 'Oswald';  font-style: normal;font-weight: 200;
}
#nav li {
	margin: 10px 5px;
	padding: 0 0 8px;
	float: left;
	position: relative;
	list-style: none;
color: #fff;
}


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

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

/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: #5D6564;
	color: #fff;	
}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #fff;
        border-bottom: solid 1px #b4b4b4;
}
#nav ul a:hover {
	background: #535353 !important;
	color: #fff !important;
}

/* dropdown */
#nav li:hover > ul {
	display: block;
        z-index:5;
}

/* level 2 list */
#nav ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 35px;
	left: 0;
	background: #5D6564;
	border: solid 1px #b4b4b4;
}
#nav ul li {
	float: none;
	margin: -4px 0 0 0;
	padding: 0;
}

#nav ul a {
	font-weight: normal;
}

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


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