@charset "utf-8";
*{
	font-family:Arial, Helvetica, sans-serif;
	margin:0px;padding:0px;

}
a,a:hover,a:visited,a:active{
    text-decoration: none;
    color:#3e3e3e;
}

a:active{
   text-decoration: underline;

}

ul,li{
  padding:0px;
  margin:0px;
   list-style:none
}
body,html{
    width:100%;margin:0px auto;


}
.nav {
  padding:3px 0px 20px 0px;
  color:#fff;
  width:100%;margin:0px auto;
  height:71%;
  position: absolute;
  z-index: 100;
  opacity: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 300ms;
   transition-duration: 300ms;

}

.nav a,.nav a:visited,.nav a:active,.nav a:hover{
  color:#fff;
}



.nav h1{
  clear: both;
  padding:10px 0px 10px 40px;
  margin: 0px;
  font-weight:normal;


}
.nav h1,.nav h1 a{
  font-size: 16px; line-height:35px; width:100%; display:block;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:normal;
}
.nav--active .nav {
  opacity: 1;
  background-color: #333;
}




/* Default navigation icon */
.nav__trigger {
  display: block;
  position: absolute;
  width: 30px;
  height: 20px;
  right: 10px;
  top: 5px;
  z-index: 999;

}
.nav--active .nav__trigger {
  opacity: 0.5;
}
.nav__icon {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 3px;
  background-color: #004098;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
.nav__icon:before,
.nav__icon:after {
  content: '';
  display: block;
  width: 25px;
  height: 3px;
  position: absolute;
  background: #004098;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 1500ms;
          transition-duration: 150ms;
}
.nav__icon:before {
  margin-top: -6px;
}
.nav__icon:after {
  margin-top: 6px;
}
/* Don't nest if you don't have to. */
/**
* Style #1
*/
.nav {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 100%;

}

.nav--active .nav {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.nav--active .nav__icon {
  background: rgba(0, 0, 0, 0);
}
.nav--active .nav__icon:before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav--active .nav__icon:after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}