@charset "UTF-8";
/* CSS Document */


.large {
	font-size: 24px;
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
}
nav ul ul {
	display: none;
	z-index:999;
}

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

	padding: 0 20px;
	border-radius: 10px;
	list-style: none;
	position: relative;
	display: inline-table;
}
	nav ul:after {
		content: ""; clear: both; display: block;
	}
	
	nav ul li {
	float: left;
}
	nav ul li:hover {
		background: #8f9bc3;
		background: linear-gradient(top, #8f9bc3 0%, #808bb1 40%);
		background: -moz-linear-gradient(top, #8f9bc3 0%, #808bb1 40%);
		background: -webkit-linear-gradient(top, #8f9bc3 0%,#808bb1 40%);
	}
		nav ul li:hover a {
			color: #fff;
		}
	
	nav ul li a {
		display: block; padding:10px 25px;
		color: #757575; text-decoration: none;
	}
	
	nav ul ul {
	background: #8c98c0; border-radius: 0px; padding: 0;
	position: absolute; top: 100%;
}
	nav ul ul li {
	font-size: 15px;
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
	float: none;
	border-top: 1px solid #7c86ab;
	border-bottom: 1px solid #8f9bc3;
	position: relative;
	font-weight: lighter;
	}
		nav ul ul li a {
			padding: 15px 20px;
			color: #fff;
		}	
			nav ul ul li a:hover {
				background: #808bb1;
			}
			
			
			nav ul ul ul {
	position: absolute;
	top: 0;
	right: 100px;
}