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

@media screen and (max-width: 768px) {	
	.js .nav-collapse {
	  clip: rect(0 0 0 0);
	  max-height: 0;
	  position: absolute;
	  display: block;
	  overflow: hidden;
	  zoom: 1;
	}
	
	.nav-collapse.opened, .js .nav-collapse.opened, .js .nav-collapse-0.opened {
	  max-height: 9999px !important;
	  position: static !important;
	}
	
	.disable-pointer-events {
	  pointer-events: none !important;
	}
	
	#menu a.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;
	  width: 50px;
	  height: 30px;
	  float: right;
	  text-indent: 999px;
	  overflow: hidden;
	  display: block;
	  background: url("../images/hamburger.png") no-repeat center right;
	  margin-top: 30px;
	}
	
	#menu a.nav-toggle:hover {
		background: url("../images/hamburger.png") no-repeat center right !important;
	}
	
	#menu a {
		padding: 5px !important;
		border: none !important;
	}
}

@media screen and (min-width: 40em) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  #menu a.nav-toggle {
    display: none;
  }
}
