nav ul ul {
	display: none;
}

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

nav ul {
	z-index: 100;
	background: #424242;
	background: linear-gradient(top, #424242 0%, #2E2E2E 100%);
	background: -moz-linear-gradient(top, #424242 0%, #2E2E2E 100%);
	background: -webkit-linear-gradient(top, #424242 0%,#2E2E2E 100%);
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	border-radius: 10px;
	list-style: none;
	position: relative;
	display: inline-table;
	 line-height: 60%;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
	nav ul:after {
		content: ""; clear: both; display: block;
}

nav ul li {
	float: left;
}
	nav ul li:hover {
		background: #4b545f;
		background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
		background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
		background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
	}

		nav ul li:hover a {
			color: #fff;
			font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
			font-size: 15px;
		}
	
	nav ul li a {
		display: block; padding: 25px 13px;
		color: #fff; text-decoration: none;
		font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
		font-size: 15px;
}

#current a{
	background: #5f6975;
}

nav ul ul {
	background: #5f6975; border-radius: 0px; padding: 0;
	position: absolute; top: 80%;
	z-index: 101
}
	nav ul ul li {
		float: none; 
		border-top: 1px solid #6b727c;
		border-bottom: 1px solid #575f6a;
		position: relative;
}
		nav ul ul li a {
			padding: 15px 40px;
			color: #fff;
}	
			nav ul ul li a:hover {
				background: #4b545f;
}

nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
			
