/*! responsive-nav.js 1.0.32 by @viljamis */

.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none; 
  height:auto;
  float:left; 
}

.nav-collapse li {
  width: 100%;
  display: block;
  float:left;
  height:100%;
}

.nav-collapse li a {
  color:#E1E1E1;
	font-family:'lato';
	font-size:1em;
	font-weight:700;
	text-transform:uppercase;  
	width:100%;
	height:90%;
	display:block;
	padding:1em;
  background-color:#014757;
  border-bottom:1px solid #E1E1E1;	
  text-decoration:none;
}

.nav-collapse li a:hover {
  color:#E1E1E1;
}

@media screen and (min-width: 40em) {
  .nav-collapse li {
    width:auto;
    background-color:transparent;
    padding:0 1em;
  }
  
.nav-collapse li a {
  color:#E1E1E1;
	font-family:'lato';
	font-size:1.650em;
	font-weight:700;
	text-transform:uppercase;
	background-color:transparent;
	padding:0;
	padding-top:5px;
	display:block;
	width:auto; 
	height:auto;
	border:0;
}

.nav-collapse li a:hover, #Hcurrent {
  color:#014757;
  border-top:1px solid #014757;
  padding-top:4px;  
}
  
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
}

.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

@media screen and (min-width: 40em) {
  .js .nav-collapse {
    position: relative;
    margin-top:7.8em;
    float:right;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
  
  .js .nav-2 {
    margin-top:0;
    margin-left:auto;
    margin-right:auto;
    width:100%;
    max-width:870px;
    float:none;
  }  
}

.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: 70px;
  height: 55px;
  float: right;
}

.nav-toggle:before {
  color: #000; /* Edit this to change the icon color */
  font-family: "responsivenav", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  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";
}