/*! responsive-nav.js v1.0.20 by @viljamis */
#nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

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

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

@media (min-width:767px) {
  .js #nav {
    position: relative;
  }
  .js #nav.closed {
    max-height: none;
  }
  #nav-toggle {
    display: none;
  }
}
#nav-toggle {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  text-align:center;
  line-height:58px;
  text-decoration:none;
  color:#FFF;
  height: 58px;
  float: right;
  margin-bottom:15px;
  overflow: hidden;
  background: #256514;
  font-weight:bold;
  font-size:15px;
}

