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

#nav{
	padding-top:30px;
}
#nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

#nav li {
  width: 100%;
  display: block;
}

.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 screen and (min-width: 40em) {
  .js #nav {
    position: relative;
  }
  .js #nav.closed {
    max-height: none;
  }
  #nav-toggle {
    display: none;
  }
}

#nav-toggle{
	margin-top:6px;
	width:38px;
	height:28px;
	background:url(menu.png);
	display:block;
	overflow:hidden;
	float:right;
	
	text-indent:-9999px;
	font-size:0px;
	line-height:0px;
	color:#f4f4f4;
	margin-right:7px;
}


