#menu {
}
/* menu icon */
#menu-icon {
	display: none; /* hide menu icon initially */
}
#nav, #nav li {
	position: relative;
	margin: 0;
	padding: 0;
	z-index:110;
}
#nav li {
	list-style: none;
	float: left;
}
/* nav link */
#nav a {
	display: block;
	height: 70px;
	line-height: 70px;	
	text-align:left;
	color:#bcd4e1;
	font-size:20px;		
	font-weight:500;	
	text-transform:uppercase;
	margin-right:25px;	
}
#nav a:hover, #nav a.selected, #nav a.selected:hover {
	display: block;
	height: 70px;
	line-height: 70px;	
	text-align:left;
	color:white;
	font-size:20px;	
	font-weight:500;		
	text-transform:uppercase;
	margin-right:25px;			
	text-shadow:2px 2px black;		
}


/************************************************************************************
MOBILE
*************************************************************************************/
@media only screen and (max-width: 1199px) {

	/* nav-wrap */
	#menu {
		position: relative;
	}
	/* menu icon */
	#menu-icon {
		font-size:24px;		
		color: white;
		width: 100%;
		height: 70px;
		line-height: 70px;
		background: url(images/menu-icon.png) no-repeat center left;
		cursor: pointer;
		text-align:left;
		font-weight:400;	
		padding-left:60px;
		display: block; /* show menu icon */
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;   
		text-shadow:2px 2px black;				
	}
	#menu-icon:hover {
		color: white;
	}
	#menu-icon.active {
		color: white;
	}	
	/* main nav */
	#nav {
		clear: both;
		position: absolute;
		top: 70px;
		width: 100%;
		z-index: 10001;
		background:url(images/menu.png);
		display: none; /* visibility will be toggled with jquery */
		padding-bottom: 10px;	
	}
	#nav li {
		clear: both;
		float: none;
	}
	#nav a, #nav ul a, #nav a.selected, #nav ul a.selected {		
		padding-left:35px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;    
		color: white;
		font-size:18px;		
		border: none;
		width: 100%;
		height: 34px;
		line-height: 34px;		
	}
	#nav a:hover, #nav ul a:hover, #nav a.selected:hover, #nav ul a.selected:hover {		
		color: white;
		font-size:18px;		
		padding-left:35px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;    
		width: 100%;
		height: 34px;
		line-height: 34px;
		background: #66afda;
	}	



}


@media screen and (min-width: 1200px) {

	/* ensure #nav is visible on desktop version */
	#nav {
		display: block !important;
	}

}