/*! responsive-nav.js v1.0 by @viljamis */

.js #nav {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  margin-top: 10px;
}

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

#nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 959px) {
  .js #nav {
    position: relative;
    max-height: none;
  }
  #nav-toggle {
    display: none;
  }
}

#nav-toggle {
	margin-top: 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 30px;
  height: 30px;
  float: right;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/bars.png) no-repeat 50% 50%;
}