nav ul ul {
	display: none;
}

	nav ul li:hover > ul {
		display: block;
	}

	nav ul {
	background: #0099AB; 
	/* background: linear-gradient(top, #0099AB 0%, #00ADAB 100%);  
	background: -moz-linear-gradient(top, #0099AB 0%, #00ADAB 100%); 
	background: -webkit-linear-gradient(top, #0099AB 0%,#00ADAB 100%); 
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	padding: 0 0px;
	border-radius: 5px; */  
	list-style: none;
	position: relative;
	display: inline-table;
	color: #FFFFFF;
	z-index: 99;
}
	nav ul:after {
		content: ""; clear: both; display: block;
	}
	
	 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%);
		/* border-radius: 5px; */
	}
		nav ul li:hover a {
			color: #fff;
		}
	
	nav ul li a {
		/* Change the second padding setting here to change the spacing of the main top level nav buttons (started at 30 px) */
		display: block; padding: 20px 18px;
        min-width: 100px;  /*Width of Top level menu items*/
		color: #FFFFFF; text-decoration: none; font:bold 13px/100% Arial, Helvetica, sans-serif;
	}
	
	nav ul ul {
	background: #5F6975; border-radius: 0px; padding: 0; text-align:Left;
	position: absolute; top: 100%;
  }
	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;
}		