/* JS disabled styles */
.no-js nav li:hover ul { display:block; }

/* base nav styles */
/* nav { display:block; margin:0 auto 20px; border:1px solid #222; position:relative; background-color:#6a6a6a; font:16px Tahoma, Sans-serif; } */

nav{
	z-index: 5;
	position: absolute;
	top: 70px;
	left: 110px;
	width: 690px;
	height: 40px;
	display: block;
	border-radius: 5px;
	background-color: rgba(98,106,110,1);
}

nav a:link, nav a:visited, nav a:hover, nav a:active{
	color: #FFF;
}

nav ul {
	padding:0;
	margin:0;
}

nav li {
	z-index: 1;
	position: relative;
	float: left;
	font-family: Verdana, sans-serif;
	font-size: 14px;
	font-weight: normal;
	list-style-type:none;
}

nav li:last-child {
	float: right;
}

nav li a {
	width: auto;
	height: 20px;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	display: block;
}

nav li a:focus, nav li a:hover, nav li a:active {
	background-color: rgba(231,38,20,1);
}

nav li:first-child, nav li:first-child a {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

nav li:last-child, nav li:last-child a {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

nav li.active  {
	background-color: rgba(231,38,20,1);
}

nav ul ul {
	display:none;
	min-width: 100%;
	width: 150px;
	overflow: visible;
	position:absolute;
	left:0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: rgba(98,106,110,.7);
}

nav ul ul li {
	float:none;
	white-space: nowrap;
}

nav ul ul li:last-child {
	float:none;
}

nav ul ul a {
	padding: 5px;
	padding-left: 20px;
	padding-right: 20px;
	display: block;
}
nav ul ul a:hover {
	background-color: rgba(231,38,20,1);
}

nav ul ul li:first-child a {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

nav ul ul li:last-child a {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 0px;
}












