.nav {
	margin: 5px auto; 
	/* text-align: center; */
	z-index:20;
	padding-bottom:25px;
}

.nav ul ul {
	display: none;
	z-index:20;
}

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


.nav ul {
	background: #efefef; 
	background: linear-gradient(top, honeydew 0%, #bbbbbb 100%);  
	background: -moz-linear-gradient(top, honeydew 0%, #bbbbbb 100%); 
	background: -webkit-linear-gradient(top, honeydew 0%,#bbbbbb 100%); 
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	/*padding: 0 3px;*/
	font-family: "Arial Narrow", Arial, 'Open Sans Condensed', serif;
	border-radius: 10px;  
	list-style: none;
	position: relative;
	display: inline-table;
	z-index:20;
	font-size:14px;
}
	.nav ul:after {
		content: ""; clear: both; display: block;
	}

	.nav ul li {
		float: left; white-space: nowrap;
	}
		.nav ul li:hover {
			background: teal;
			/*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;
			}
			.nav ul li:hover a:visited {
				color: #fff;
			}
		
		.nav ul li a {
			display: block; padding: 4px 12px;
			color: #000; text-decoration: none;
		}
		.nav ul li a:visited {
			color: #000; text-decoration: none;
		}
			
		
	.nav ul ul {
		background: #5f6975; border-radius: 0px; padding: 0;
		position: absolute; top: 100%; text-align:left;
	}
		.nav ul ul li {
			float: none; 
			border-top: 1px solid #6b727c;
			border-bottom: 1px solid #575f6a; position: relative;
		}
			.nav ul ul li a {
				padding: 4px 12px;
				color: #fff;
			}	
				.nav ul ul li a:hover {
					background: teal;
				}
				.nav ul ul li a:visited {
					color:white;
				}
		
	.nav ul ul ul {
		position: absolute; left: 100%; top:0; z-index:20;
	}
		

