nav ul ul
{
	display: none;
}

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

nav ul
{
	background: #9999ff;
	background: -ms-linear-gradient(top, #9999ff 35%,#c9f5ff 100%);
	background: -moz-linear-gradient(top, #9999ff 35%,#c9f5ff 100%);
	background: -o-linear-gradient(top, #9999ff 35%, #c9f5ff 100%);
	background: -webkit-gradient(linear, top, bottom, color-stop(0.35, #9999ff), color-stop(1, #c9f5ff));
	background: -webkit-linear-gradient(top, #9999ff 35%, #c9f5ff 100%);
	background: linear-gradient(to bottom, #9999ff 35%, #c9f5ff 100%);
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	padding: 0 20px;
	border-radius: 10px;
	list-style: none;
	position: relative;
	display: inline-table;
	z-index:1;
}
	nav ul:after
	{
		content: ""; clear: both; display: block;
	}

nav ul li
{
	float: left;
}
	nav ul li:hover
	{
		background: #5f6990;
	}
		nav ul li:hover a
		{
			color: #fff;
		}
	
	nav ul li a
	{
		display: block;
		padding: 25px 0px;
		color: #000099;
		text-decoration: none;
		width:150px;
	}

nav ul ul
{
	background: #5f6990;
	border-radius: 0px;
	padding: 0;
	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: 25px 0px;
			width:200px;
			color: #fff;
		}	
			nav ul ul li a:hover {
				background: #4a5a90;
			}
		
		nav ul ul li a.disable {
			padding: 25px 0px;
			width:200px;
			color: #ccc;
			background: #777;
			cursor:default;
		}

nav ul ul ul {
	position: absolute; left: 100%; top:-1px;
}

.nonButton
{
	cursor:default;
}
