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

.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

.nav-collapse li {
  width: 100%;
  display: block;
}

.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;
}

.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;
}

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





/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */



#toggle {
    position: absolute;
    right: 17px;
    top: 0px;
    width: 50px;
    
    border: 0px solid black;
    background: transparent;
 
	/*
background-color: #FFF;
    background-image: linear-gradient(to bottom, #FFF, #FFF);
    background-repeat: repeat-x;
*/
    /* border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); */
    /*
border-radius: 4px 4px 4px 4px;
    border-style: solid;
    border-width: 1px;
    color: #FFFFFF;
*/
    /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.075); */
    /* padding: 7px 10px; */
    /* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); */
    /*
cursor: pointer;
    font-size: 14px;
    text-align: center;

    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
*/


}
#toggle .icon-bar {
    background-color: #000;
    border-radius: 1px 1px 1px 1px;
    /* box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); */
    display: block;
    height: 5px;
    width: 50px;
    margin: 6px 0;
}





#navigation{
/* 	position: fixed; */
position: relative;
	text-align: left;
	top:-20px;
	left: 0px;
	z-index:99999999;
}

#navigation2{
/* 	position: fixed; */
position: relative;
	text-align: left;
	top:-60px;
	left: 0px;
	z-index:99999999;
}


.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}


.nav-collapse,
.nav-collapse ul {
  list-style: none;
  width: 100%;
  float: left;
  background: #FFF;
  padding-top: 0px;
  padding-bottom: 10px;
}


.nav-collapse li {
	position: relative;
    width: 100%;
    border: 0px solid black;
	border-bottom: 1px solid #8e9191;
	margin: 0px;
	padding: 20px 0px 20px 0px;
  }
  
  
.nav-collapse ul a {
  color: #000;
  text-decoration: none;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid white;
/*   float: left; */
  font-size: 16px;
  padding-left: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  
}

.nav-collapse li a{
/*
	background: url(../img/icn_smtmenu.png); 
	background-repeat: no-repeat;
  	background-size:21px 21px;
  	background-position: 20px 20px;
*/
}






@media screen and (min-width: 750px) {

  
}




/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */

@font-face {
  font-family: "responsivenav";
  src:url("../icons/responsivenav.eot");
  src:url("../icons/responsivenav.eot?#iefix") format("embedded-opentype"),
    url("../icons/responsivenav.ttf") format("truetype"),
    url("../icons/responsivenav.woff") format("woff"),
    url("../icons/responsivenav.svg#responsivenav") format("svg");
  font-weight: normal;
  font-style: normal;
}

.nav-toggle {
  position: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-indent: -999px;
  position: relative;
  overflow: hidden;
  width: 70px;
  height: 55px;
  float: right;
}

.nav-toggle:before {
  color: #f4421a; /* Edit this to change the icon color */
  font-family: "responsivenav", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 28px;
  text-transform: none;
  position: absolute;
  content: "≡";
  text-indent: 0;
  text-align: center;
  line-height: 55px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-toggle.active::before {
  font-size: 24px;
  content:"x";
}

