#menu, #menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
		text-align:left !important;
	}
	
	#menu {
		float:right;
		display:block;			
		z-index:999999;
		margin-left: 30px;
	}
	
	#menu:before,
	#menu:after {
		content: "";
		display: table;
	}
	
	#menu:after {
		clear: both;
	}
	
	#menu {
		zoom:1;
	}
	
	#menu li {
		float: left;
		position: relative;
	}
	
	#menu a {
		float: left;
		padding: 5px 7px;
		color: #A7A7A7;
		text-transform: uppercase;
		font-family: 'Open Sans', sans-serif;
		font-size:16px;			
		text-decoration: none;
		letter-spacing: normal;		
	}
	
	/* 1st Level Menu Background */
	#menu li:hover > a {
		color: #fff;
		background: #121370;
		border-radius: 4px;
	}
	
	*html #menu li a:hover { /* IE6 only */
		color: #162472;
	}	
	
	#menu ul:after {
	  display:none;
	}
	
        /* 2nd level */
	#menu ul {
		margin: 20px 0 0 0;
		_margin: 0; /*IE6 only*/
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 35px;		
		left: 0;
		z-index: 10;    
		background: #fff;
		-moz-box-shadow: 0 -1px rgba(255,255,255,.3);
		-webkit-box-shadow: 0 -1px 0 rgba(255,255,255,.3);
		box-shadow: 0 -1px 0 rgba(255,255,255,.3);	
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;  
	}

	#menu li:hover > ul {
		opacity: 1;
		visibility: visible;
		margin: 0;
		color: #a7a7a7;
	}
	
	#menu ul ul {
		top: 10px;
		left: 240px;
		margin: 0 0 0 20px;
		_margin: 0; /*IE6 only*/
		-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
		-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
		box-shadow: -1px 0 0 rgba(255,255,255,.3);		
	}
	
	#menu ul li {
		float: none;
		display: block;
		border: 0;
		_line-height: 0; /*IE6 only*/
		/*-moz-box-shadow: 0 1px 0 #111, 0 2px 0 #304096;
		-webkit-box-shadow: 0 1px 0 #111, 0 2px 0 #304096;
		box-shadow: 0 1px 0 #111, 0 2px 0 #304096;*/
	}
	
	
	#menu ul li:after {  
	  display:none;
	}
	
	#menu ul li:last-child {   
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none; 
		border-bottom: solid 2px #121370;   
	}
	
	/* 2nd Level Font */
	#menu ul a {    
		padding: 8px;
		width: auto;
		_height: 10px; /*IE6 only*/
		display: block;
		white-space: nowrap;
		float: none;
		text-transform: uppercase;
		color:#a7a7a7;
		font-size:16px;	
		/*
		text-shadow: 1px 1px 1px #000;
		*/
		width:280px;
		border: solid 1px #dadada;
	}
	
	/* RED ACTIVE HOVER - 2nd Level Item */
	#menu ul a:hover {
		color: #121370 !important;
		background:#fff;
		/*
		background-image: -moz-linear-gradient(#d00537,  #600018);	
		background-image: -webkit-gradient(linear, left top, left bottom, from(#d00537), to(#600018));
		background-image: -webkit-linear-gradient(#d00537, #600018);
		background-image: -o-linear-gradient(#d00537, #600018);
		background-image: -ms-linear-gradient(#d00537, #600018);
		background-image: linear-gradient(#d00537, #600018);
		*/
	}
	
	

	#menu ul li:first-child > a {
		-moz-border-radius: 3px 3px 0 0;
		-webkit-border-radius: 3px 3px 0 0;
		border-radius: 3px 3px 0 0;
	}
/*	
	#menu ul li:first-child > a:after {
		content: '';
		position: absolute;
		left: 40px;
		top: -6px;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid #FF9900;
	}
	
	#menu ul ul li:first-child a:after {
		left: -6px;
		top: 50%;
		margin-top: -6px;
		border-left: 0;	
		border-bottom: 6px solid transparent;
		border-top: 6px solid transparent;
		border-right: 6px solid #dadada;
	}
	

	#menu ul li:first-child a:hover:after {
		border-bottom-color: #d00537; 
	}
	
	#menu ul ul li:first-child a:hover:after {
		border-right-color: #048f82; 
		border-bottom-color: transparent; 	
	}
	
	#menu ul li:last-child > a {
		-moz-border-radius: 0 0 3px 3px;
		-webkit-border-radius: 0 0 3px 3px;
		border-radius: 0 0 3px 3px;
	}
	*/
	/* Mobile */
	#menu-trigger {
		display: none;
	}
	
	
	@media screen and (max-width: 1200px) {
	
		#menu a {
			float: left;
			padding: 5px 5px;
			font-size:15px;		
		}	
	}	
	
	
	
	@media screen and (max-width: 1025px) {
	
		#menu a {
			float: left;
			padding: 5px 5px;
			font-size:15px;		
		}
	}
	

	
	