.nav {
	margin: 0px auto; 
	text-align: center;
	float:right
}

.nav ul ul {
	display: none;
}

	.nav ul li:hover > ul {
		display: block;
	}


.nav ul {
	
	list-style: none;
	position: relative;
	display: inline-table;
}
	.nav ul:after {
		content: ""; clear: both; display: block;
	}

	.nav ul li {
		float: left;
		line-height:80px
	}
		.nav ul li:hover {
			background:url(../images/huang.jpg) bottom repeat-x
	
		}
			.nav ul li:hover a {
				color: #fff;
			}
		
		.nav ul li a {
			display: block; padding: 0px 40px;
			color: #fff; text-decoration: none; font-size:18px;
		}
			
		
	.nav ul ul {
		background: #262626; border-radius: 0px; padding: 0;
		position: absolute; top: 100%;
	}
		.nav ul ul li {
			float: none; 
			line-height:50px;
			border-bottom: 1px solid #303030; position: relative;
		}
			.nav ul ul li a {
				padding: 0px 34px;
				color: #fff;
				font-size:16px;
				min-width:85px;
			}	
				.nav ul ul li a:hover {
					background: #333;
				}
		
	.nav ul ul ul {
		position: absolute; left: 100%; top:0;
	}
		
