/*!
 * jquery-drawer v3.2.1
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-nav {
	position: fixed;
	z-index: 101;
	top: 0;
	width: 100vw;
	color: #222;
	background-color: #fff;
	-webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.05);
	-moz-box-shadow   : 0px 10px 10px 0px rgba(0,0,0,0.05);
	-ms-box-shadow    : 0px 10px 10px 0px rgba(0,0,0,0.05);
	-o-box-shadow     : 0px 10px 10px 0px rgba(0,0,0,0.05);
	box-shadow        : 0px 10px 10px 0px rgba(0,0,0,0.05);
	-webkit-transition: all 0.4s ease-in-out ;
	-moz-transition   : all 0.4s ease-in-out ;
	-ms-transition    : all 0.4s ease-in-out ;
	-o-transition     : all 0.4s ease-in-out ;
	transition        : all 0.4s ease-in-out ;	
	margin: 0;
}


#siteHeader .drawer-menu .inner{
	width:100%;
	height: auto;
	position: relative;
	margin: 0;
	padding: 0 0 100px 0;
	background: #ffffff;

}
.drawer-menu .inner div{
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}



.drawer-menu .inner div h5{
	text-align: left;
	color: #c98f69;
	border-bottom: 1px solid #c98f69;
	letter-spacing: normal;
	padding: 0 40px 0 20px;
	line-height: 50px;
}
.drawer-menu .inner div ul{
	overflow: hidden;
	position: relative;
	height: 0;
}
.drawer-menu .inner div.active ul{
	height: auto;
	display: block;
}


.drawer-menu .inner div ul li{
	padding: 15px 0;
	letter-spacing: normal;
	line-height: 15px;
	min-height: 15px;
	margin: 0 auto;
	display: block;
	
}
.drawer-menu .inner div ul li a{
	text-decoration: none;
	color: #666666;
	position:relative;
	display: block;
	padding: 0 30px 0 20px;
	-webkit-transition: all 0.2s linear ;
	-moz-transition   : all 0.2s linear ;
	-ms-transition    : all 0.2s linear ;
	-o-transition     : all 0.2s linear ;
	transition        : all 0.2s linear ;
}
.drawer-menu .inner div ul li.current a{
	color: #c98f69;
}

.drawer-menu .inner div ul li a:before{
	content:"";
	width:8px;
	height:8px;
	border-right:1px solid #c98f69;
	border-top:1px solid #c98f69;
	position:absolute;
	z-index:100;
	right:15px;
	top:50%;
	margin:-5px 0 0 0;
	-webkit-transition: all 0.2s linear ;
	-moz-transition   : all 0.2s linear ;
	-ms-transition    : all 0.2s linear ;
	-o-transition     : all 0.2s linear ;
	transition        : all 0.2s linear ;
	-webkit-transform : rotate(45deg);
	-moz-transform    : rotate(45deg);
	-ms-transform     : rotate(45deg);
	-o-transform      : rotate(45deg);
	transform         : rotate(45deg);
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
	background-color: rgba(153,142,120,0.50);
	-webkit-transition: all 0.6s linear ;
	-moz-transition   : all 0.6s linear ;
	-ms-transition    : all 0.6s linear ;
	-o-transition     : all 0.6s linear ;
	transition        : all 0.6s linear ;
}

.drawer-open .drawer-overlay {
  display: block;
}
/*!------------------------------------*\
    Top
\*!------------------------------------*/
#siteHeader .drawer-nav {
	top:-100vh;
	left: 0;
	width: 100%;
	height: auto;
	height: -webkit-calc(100vh - 55px) ;
	height: calc(100vh - 55px) ;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.4s ease-in-out ;
	-moz-transition   : all 0.4s ease-in-out ;
	-ms-transition    : all 0.4s ease-in-out ;
	-o-transition     : all 0.4s ease-in-out ;
	transition        : all 0.4s ease-in-out ;
}

.drawer--top.drawer-open #siteHeader .drawer-nav {
	top: 55px;
	opacity: 1;
	height: -webkit-calc(100vh - 55px) ;
	height: calc(100vh - 55px) ;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-transition: all 0.4s ease-in-out ;
	-moz-transition   : all 0.4s ease-in-out ;
	-ms-transition    : all 0.4s ease-in-out ;
	-o-transition     : all 0.4s ease-in-out ;
	transition        : all 0.4s ease-in-out ;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
	outline: none;
	z-index: 999999;
	position: relative;
	display: block;
	box-sizing: content-box;
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding-top: 0;
	-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	border: 0;
	outline: 0;
	background-color: transparent;
	text-align: left;
}


.drawer-hamburger:hover {
  cursor: pointer;
	outline: none;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 0px;
	outline: none;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
	width: 18px;
	height: 2px;
	-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	background-color: #c98f69;
	-webkit-transition: all 0.4s ease-in-out ;
	-moz-transition   : all 0.4s ease-in-out ;
	-ms-transition    : all 0.4s ease-in-out ;
	-o-transition     : all 0.4s ease-in-out ;
	transition        : all 0.4s ease-in-out ;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -7px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 7px;
}

.drawer-open .drawer-hamburger-icon {
	position: relative;
	 z-index: 999999;
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
	background-color: #c98f69;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
	background-color: #c98f69;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}


/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
}

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 .75rem;
  text-align: center;
}

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}



  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }

  .drawer-navbar .drawer-menu--right {
    float: right;
  }

  .drawer-navbar .drawer-menu li {
    float: left;
  }

  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .drawer-navbar .drawer-hamburger {
    display: none;
  }

  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
	  background-color: #990000;
    padding-top: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  .drawer-navbar .drawer-menu {
    padding: 0;
  }


/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}





