
nav {
	margin: 0px auto;
	text-align: center;
	z-index: 999;
	position: absolute;
}

nav ul ul {
	display: none;

}

	nav ul li:hover > ul {
		display: block;
	}


nav ul {
	background: #ffffff;
	background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
	background: -moz-linear-gradient(top, #fff 0%, #fff  100%);
	background: -webkit-linear-gradient(top, #fff  0%,#fff  100%);
	padding: 0 10px;
	border-radius: 0px;
	list-style: none;
	display: inline-table;
	color: #999999;
}
	nav ul:after {
		content: ""; clear: both; display: block;
	}

	nav ul li {
		float: left;
	}
		nav ul li:hover {
			background: #dadada;
			background: linear-gradient(top, #000 0%, #dadada 40%);
			background: -moz-linear-gradient(top, #e5e5e5 0%, #e5e5e5 40%);
			background: -webkit-linear-gradient(top, #e5e5e5 0%,#e5e5e5 40%);
		}

			nav ul li:hover a {				color: #fff;
			}
		
		nav ul li a {
	display: block;
	padding: 14px 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #96979b;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
		}
			
		
	nav ul ul {
	border-radius: 0px;
	padding: 0;
	position: absolute;
	top: 100%;
	color: #333333;
	}
		nav ul ul li {
	float: none;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #d9d9d9;
	position: relative;
	color: #333333;
	background-color: #e5e5e5;
		}
			nav ul ul li a {
			padding: 10px 30px;
			color: #96979b;
			}	
				nav ul ul li a:hover {
					background: #cacaca;
				}
		
	nav ul ul ul {
		position: absolute; left: 100%; top:0;
	}
		
