@charset "UTF-8";

/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */

.nav-collapse,
.nav-collapse * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-collapse a {
  text-decoration: none;
  width: 100%;
  float: left;
  color:#666666;
}

.nav-collapse a:hover, .selected a {color:#76b4cf;}

.nav-collapse,
.nav-collapse ul {
  list-style: none;
  width: 100%;
  float: left;
  font-size: 12px;
  }
  
  
.nav-collapse
  { border-top:1px solid #666; 
}

.nav-collapse li {
  	float: left;
  	display: block;
	text-transform:uppercase;
 	border-bottom: 1px solid white;
}

.nav-collapse ul ul a {
  padding-left: 2em;
}

@media screen and (min-width: 40em) {
  .nav-collapse li {
    float: left;
  	display: block;
  	font-size: 16px;
  	padding:25px 13px 25px 0;
  }
  .nav-collapse a {
    margin:0;
    float: left;
    text-align: center;
    border-bottom: 0;
  }
}

@media handheld, only screen and (max-width: 40em) {
  .nav-collapse {
  border-top: none; 
  }
	.nav-collapse li {
	width: 100%;
	padding: 10px;
	background: #e8e8e8;
	}
		.nav-collapse li.navDivider {
	display: none;
	}
}



/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */


.nav-toggle {
  position: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-indent: -999px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 55px;
  background: #e8e8e8;
  float: right;
}

.nav-toggle:before {
  color: #76b4cf; /* Edit this to change the icon color */
  font-size: 28px;
  text-transform: none;
  position: absolute;
  content: "≡";
  text-indent: 0;
  text-align: center;
  line-height: 55px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-toggle.active::before {
  font-size: 24px;
  content:"x";
}





