
.nav {
	background:url(../images/menu-bg.png);
	margin: auto; 
	text-align: center;
	height:37px;
}

.nav ul ul {
	display: none;
}

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


.nav ul {
	background:url(../images/menu-bg.png);
	background-position:top;
	background-repeat:repeat-x;
	box-shadow: 0px 1px 1px rgba(0,0,0,0.35);
	padding: 0 0px; 
	list-style: none;
	position: relative;
	display: inline-table;

	z-index:80;
}
	.nav ul:after {
		content: ""; clear: both; display: block;
	}

	.nav ul li {
		
	border-left: 1px solid rgb(27, 28, 97); /* default color */
	border-left: 1px solid rgba(27, 28, 97, 0.7); /* rgba for transparency */
	border-right: 1px solid rgb(78, 79, 158); /* default color */
	border-right: 1px solid rgba(78, 79, 158, 0.7); /* rgba for transparency */
		float: left;
	}
		.nav ul li:hover {
			background:url(../images/menu-hvr.png);
		}
			.nav ul li:hover a {

				text-align:left;
				color: #fff;
			}
		
		.nav ul li a {
			text-transform:uppercase;
			font: 13px/20px 'AurulentSansRegular', Arial, sans-serif;letter-spacing: 0;
			-webkit-font-smoothing: subpixel-antialiased;
			display: block; 
			padding: 8px 31px;
			color: #ffffff; text-decoration: none;
			text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
			
		}
			
		
	.nav ul ul {

		background: #1173ac; 
		border:0px;	
		-webkit-border-radius:.0em .0em .0em .0em;
		-moz-border-radius:.0em .0em .0em .0em;
		border-radius: .0em .0em .0em .0em;
		padding: 0;
		position: absolute; top: 100%;
	}
		.nav ul ul li {
			
			float: none; 
			border-top: 1px solid #4d91bf;
			border-bottom: 1px solid #155c8c; position: relative;
			border-left:0px;
			border-right:0px;
			width:220px;
		}
			.nav ul ul li a {
				font: 13px/21px 'GudeaRegular', Arial, sans-serif;letter-spacing: 0;
				padding: 6px 20px;
				color: #fff;
				
			}	
				.nav ul ul li a:hover {
					background: #5093bf;
				}
		
	.nav ul ul ul {
		position: absolute; left: 100%; top:0;
	}
