#menu, #menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
		text-align:left !important;
	}
	
	#menu {
		float:right;
		display:block;			
		z-index:999999;
		/*margin-right:-18px;*/
	}
	
	#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: 0px 11px;
		color: #fff;
		text-transform: uppercase;
		font-family: 'Montserrat', sans-serif;
		font-size:14px;			
		text-decoration: none;
		font-weight:600;
		letter-spacing:normal;	
		text-shadow: 0px 0px 3px #000;
	}
	
	#menu li:hover > a {
		color: #203c48;
		text-shadow: none;
	}
	
	*html #menu li a:hover { /* IE6 only */
		color: #203c48;
	}
	
	.selected {
		color: #203c48;
		text-shadow: 0px 0px 3px #fff;
	}
	
	
	/* Sticky */
	
	.top-section.sticky #menu a {
		float: left;
		padding: 0px 11px;
		color: #000;
		text-transform: uppercase;
		font-family: 'Montserrat', sans-serif;
		font-size:14px;			
		text-decoration: none;
		font-weight:600;
		letter-spacing:normal;	
		text-shadow: none;
	}
	
	.top-section.sticky #menu li:hover > a {
		color: #2a6984;
	}
	
	.top-section.sticky *html #menu li a:hover { /* IE6 only */
		color: #2a6984;
	}
	
	.top-section.sticky .selected {
		color: #2a6984;
	}
	

	#menu ul {
		margin: 20px 0 0 0;
		_margin: 0; /*IE6 only*/
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 30px;		
		left: 0;
		z-index: 10; 
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-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; 
		-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); 
	}
	

	#menu li:hover > ul {
		opacity: 1;
		visibility: visible;
		margin: 0;
		color: #fff;
		background-color: rgba(18,83,122,.97);
	}
	
	#menu ul ul {
		top: 0;
		left: 280px;
		margin: 0 0 0 20px;
		_margin: 0; /*IE6 only*/		
	}
	
	#menu ul li {
		float: none;
		display: block;
		border: 0;
		_line-height: 0; /*IE6 only*/
		-moz-box-shadow: 0 1px 0 #0c344c, 0 2px 0 #1c6ea0;
		-webkit-box-shadow: 0 1px 0 #0c344c, 0 2px 0 #1c6ea0;
		box-shadow: 0 1px 0 #0c344c, 0 2px 0 #1c6ea0;
	}
	
	
	#menu ul li:after {  
	  display:none;
	}
	
	#menu ul li:last-child {   
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;    
	}
	
	#menu ul a {    
		padding: 10px;
		width: auto;
		_height: 10px; /*IE6 only*/
		display: block;
		white-space: nowrap;
		float: none;
		text-transform: none;
		font-size:15px;	
		text-shadow: 1px 1px 1px #000;
		color:#fff;
		font-family: 'Montserrat', sans-serif;
		font-weight:400;
		min-width:200px;		
	}
	
	#menu ul a:hover {
		color:#ccc;
	}
	
	#menu ul span {
		margin-left:0px;
		-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 ul span:hover {
		margin-left:6px;
	}
	
	#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 #1b5733;
	}
	
	#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 #12537a;
	}
	
	#menu ul li:first-child a:hover:after {
		border-bottom-color: #12537a; 
	}
	
	#menu ul ul li:first-child a:hover:after {
		border-right-color: #12537a; 
		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 {
			font-size:12px;
			font-weight:700;
		}	
	}
	
   
	@media screen and (max-width: 991px) {
	
		#menu a {
			display:none;
		}	
	}	
	
	
	