.nav-collapse ul {
	margin: 0;
	padding: 0;
	width: auto;
	display: block;
	list-style: none;
	float: right;
  
}

.nav-collapse li {
	width: auto;
	display: block;
	color: #fff;
	font-family: 'oswald';
	font-size:18px;
	line-height: 20px;
  
}
.nav-collapse a{
	color: #fff;
	font-family: 'oswald';
	font-size:18px;
	line-height: 20px;
	background:url(images/navi-bg.jpg) repeat-x;
	width: auto;
	height:auto;
	padding: 8px 10px;
	margin: 5px;
	display:block;
	list-style: none;
}
.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;
  font-size:18px;
  font-family:'oswald';
}

.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;
  color: #fff;
  padding: 0 10px;
  font-size:18px;
  font-family:'oswald';
  background:url(/images/navi-bg.jpg) repeat-x;
}

@media screen and (min-width: 2001px) {
  .js .nav-collapse {
    position: relative;
}

  .js .nav-collapse.closed {
    max-height: none;
}
  .nav-toggle {
    display: none;
  }
}

var nav = responsiveNav(".nav-collapse", { // Selector
  animate: true, // Boolean: Use CSS3 transitions, true or false
  transition: 284, // Integer: Speed of the transition, in milliseconds
  label: "Menu", // String: Label for the navigation toggle
  insert: "before", // String: Insert the toggle before or after the navigation
  customToggle: "nav", // Selector: Specify the ID of a custom toggle
  closeOnNavClick: false, // Boolean: Close the navigation when one of the links are clicked
  openPos: "relative", // String: Position of the opened nav, relative or static
  navClass: "nav-collapse", // String: Default CSS class. If changed, you need to edit the CSS too!
  navActiveClass: "js-nav-active", // String: Class that is added to  element when nav is active
  jsClass: "js", // String: 'JS enabled' class which is added to  element
  init: function(){}, // Function: Init callback
  open: function(){}, // Function: Open callback
  close: function(){} // Function: Close callback
});
