html 
{
    overflow-y: scroll;
}

.nav {
	background: #30305a;	
	background: -webkit-gradient(linear, left top, left bottom, from(#30305a), to(#202035));
	background: -webkit-linear-gradient(#30305a, #202035);
	background: -moz-linear-gradient(top, #30305a, #202035);
	background: -ms-linear-gradient(#30305a, #202035);
	background: -o-linear-gradient(#30305a, #202035);
	background: linear-gradient(#30305a, #202035);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30305a', endColorstr='#202035');
	zoom: 1;
	
	margin: auto; 
	text-align: center;
	font-family: Helvetica, sans-serif; font-size: 12px; line-height: 20px;
	width: 100%;
}

.nav ul ul {
	display: none;
}

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


.nav ul {
	list-style: none;
	position: relative;
	display: inline-table;
	z-index: 10000;
}
	.nav ul:after {
		content: ""; clear: both; display: block;
	}

	.nav ul li {
		float: left;
	}
		.nav ul li:hover {
			background: #456;
		}
			.nav ul li:hover a {
				color: #fff;
			}
		
		.nav ul li a {
			display: block; padding: 10px 22px;
			color: #99CCFF; text-decoration: none;
		}
			
		
	.nav ul ul {
		padding: 0;
		position: absolute;
	}
		.nav ul ul li {
			float: none;
			background: #567;
			border-top: 1px solid #678;
			border-bottom: 1px solid #456;
			position: relative;
			text-align: left;
		}
			/*.nav ul ul li a {
				padding: 10px 30px;
				color: #fff;
			}*/	
			.nav ul ul li:hover {
				background: #456;
			}
		.nav ul ul li.red {
			background: #856;
			border-top: 1px solid #967;
			border-bottom: 1px solid #745;
		}
			.nav ul ul li.red:hover {
				background: #745;
			}
		.nav ul ul li.green {
			background: #586;
			border-top: 1px solid #697;
			border-bottom: 1px solid #475;
		}
			.nav ul ul li.green:hover {
				background: #475;
			}
		
	.nav ul ul ul {
		white-space:nowrap;
		position: absolute; left: 90%; top:-1px;
	}
		.nav ul ul ul li{
			padding: 5px 5px;
			background: #516172;
			border-top: 1px solid #678;
			border-bottom: 1px solid #456;	
		}


#wrapper #content #leftContent #subnavlist ul ul li a {
	font-size:80%;
	padding-left: 24px;
	width: 126px;
}

