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

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
   NAVAGATION
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
 
.navbar {
	float: left;
	position: relative;
	left: 0px;
	top: 0px;
	height: auto;
	width: 99%;
	display: block;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-right: 0%;
	padding-left: 1%;
	z-index: 5000;
	background-color: rgba(5,56,124,1);
}

#nav-wrap {
	margin-top: 0px;
	z-index: 1000;
}

/* menu icon */
#menu-icon {
	display: none; /* hide menu icon initially */
	z-index: 1000;
}

#nav, 
#nav li {
	margin: 0;
	padding: 0;
	z-index: 1000;
}

#nav li {
	list-style: none;
	float: left;
	margin-right: 5px;
	z-index: 1000;
}

/* nav link */
#nav a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-align: center;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	transition-property: background;
	transition-duration: 1.0s;
	letter-spacing: 0.1em;
}

	
#nav li a:visited {
	color: #fff;
	text-decoration: none;
}
	
#nav li a.active {
color : #66CC66;
}

#nav a:hover {
	text-decoration: underline;
	color: #66CC66;
}

/* nav dropdown */
#nav ul {
	position: absolute;
	display: none; /* hide dropdown */
	width: 300px;
	z-index: 5000;
	height: auto;
	background-color: rgba(5,104,57,0.9);
	padding-top: 20px;
	padding-right: 2px;
	padding-bottom: 10px;
	padding-left: 2px;
}
#nav ul li {
	float: none;
	margin: 0;
	text-align: left;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	font-size: 13px;
	line-height: 15px;
	padding-top: 7px;
	padding-bottom: 7px;
}
#nav li:hover > ul {
	display: block; /* show dropdown on hover */
}
/*******************************************************************************
	-	RESPONSIVE SETTINGS 	-
*******************************************************************************/

/* *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
     Screen Size 1024px  screen
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* */	

@media only screen and (max-width: 1024px) {
	
 NAV {
	height: 45px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
 }

/* nav-wrap */
#nav-wrap {
	position: relative;
	z-index: 10000;
	}

/* menu icon */
#menu-icon {
	color: #FFF;
	width: 42px;
	height: 30px;
	cursor: pointer;
	border: solid 1px #666;
	display: block; /* show menu icon */
	background-color: #052111;
	background-image: url(../_images/menubar.png);
	background-repeat: no-repeat;
	background-position: 2px center;
	margin-left: 10px;
	padding: 8px 10px 0 40px;
	}
	
#menu-icon:hover {
	background-color: #152413;
	color: #FFF;
	}
	
#menu-icon.active { background-color: #CCCCCC; }
	
/* main Drop Down Menu */
#nav {
	clear: both;
	position: absolute;
	top: 50px;
	width: 300px;
	z-index: 10000;
	border: solid 1px #999;
	display: none; /* visibility will be toggled with jquery */
	left: -1px;
	background-color: #056839;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 5px;
	}
	
#nav li {
	clear: both;
	float: none;
	margin: 5px 0 5px 10px;
	list-style-type: none;
	}

/* Drop down menu buttons  */
#nav a, 
#nav ul a {
	margin-left: 10px;
	width: 90%;
	display: block;
	float: left;
	background-color: #000000;
	border: thin solid #333;
	margin-top: 3px;
	margin-bottom: 3px;
	color: #FFF;
	border-radius: 5px 5px 5px 5px; /* IE9, Safari 5 & Chrome */
	-webkit-border-radius: 5px 5px 5px 5px; /* Safari 3 & 4 */
	-moz-border-radius: 5px 5px 5px 5px;
	text-align: left;
	padding: 10px;
	height: 30px;
	transition-property: background;
	transition-duration: 1.0s;
	}
	
	#nav a:visited, 
#nav ul a:visited {
	color: #ffffff;
	}   

	
#nav a:hover, 
#nav ul a:hover {
	color: #333333;
	background-color: #999999;
	background-image: none;
	}   
	
	
/* dropdown */
#nav ul {
		width: auto;
		position: static;
		display: block;
		border: none;
		background: inherit;
	}
	
#nav ul li {
		margin: 3px 0 3px 15px;
	}
	
}



 @media screen and (min-width: 1024px) {

	/* ensure #nav is visible on desktop version */
	#nav {
		display: block !important;
	}

} 
