<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
.nav {
	height:40px;
	float:right;
	margin: 0px auto; 
	text-align: center;
	font-size: 13px;
	text-transform:uppercase;
	text-decoration: none;
}
.nav ul ul {
	display: none;
	z-index:2;	
}

/*Start Teds ..*/
.nav ul li a:link  {
	color:#3E658B;
	/*font-weight:bold;*/
	text-shadow: 0px 1px 0px #E1E3E5;
}
.nav ul li a:visited  {
	color: #3E658B;
}
/* End Teds   */
.nav ul li:hover &gt; ul {
		display: block;
	}


.nav ul { 
	list-style: none;
	position: relative;
	top: -18px;
	display: inline-table;
	padding-right: 5px;
}
	.nav ul:after {
		content: ""; clear: both; display: block;
	}

	.nav 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%);
			
		}
			.nav ul li:hover a {
				color: #fff;
				text-decoration: none;
				text-shadow: none;
				font-weight:normal;
			}
		
		.nav ul li a {
			display: block; 
			padding: 17px 20px;
			color: #757575; 
			text-decoration: none;
		}

		
	.nav ul ul {
		background: #5f6975;
		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;
			font-size: 10px;
			text-align:left;
		}	
			.nav ul ul li a {
				padding: 10px 30px;
			}	
				.nav ul ul li a:hover {
					background: #4b545f;	
				}
		
	.nav ul ul ul {
		position: absolute; 
		left: 100%; 
		top:0;
	}
	
/*NAV ENDS HERE    */
</pre></body></html>