@charset "UTF-8";
html {
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

/* Smart Drawer
   ========================================================================== */
#sd {
  width: 350px!important;
  height: 100%;
  color: white;
  overflow: auto;
  position: fixed;
  right: -370px!important;
  top: 0;
  z-index: 999999999;
  padding: 20px 0;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  background: #333;
  font-size: 14px;
}

#gnav-ul { padding-left: 0; }
@media screen and (max-width: 400px) {
  #sd {
    width: 300px;
    right: -300px;
  }
}
#sd li {
  border-top: 1px solid #404040;
  border-bottom: 1px solid #262626;
}
#sd li a {
	padding: 10px;
	display:block;
	overflow:hidden;
}
#sd li a:hover {
	background-color: #67583B!important;
	display:block;
	text-decoration:none;
}
#sd li:first-child {
  border-top: 0;
}
#sd li:last-child {
  border-bottom: 0;
}
#sd.block {
  -webkit-transform: translate3d(350px, 0, 0);
  transform: translate3d(-350px, 0, 0);
}
@media screen and (max-width: -400px) {
  #sd.block {
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
  }
}
#sd.block:not(:target) {
  right: 0\9;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #sd.block-ie10 {
    -webkit-transform: translate3d(-350px, 0, 0) !important;
    transform: translate3d(-350px, 0, 0) !important;
  }
}
#sd .close {
  display: block;
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #262626;
}
#sd .close:hover {
  cursor: pointer;
  background: #404040;
}
#sd .close:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #404040;
}
/*
.sd-trigger {
  width: 200px;
  color: white;
  text-decoration: none;
  text-align: center;
  margin-bottom: 30px;
  padding: 10px 20px;
  display: inline-block;
  background: #333;
}
*/
.sd-trigger:hover {
  cursor: pointer;
/*
  text-decoration: underline;
  background: #4d4d4d;
*/
}

#sd-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.5);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
#sd-overlay.block {
  z-index: 999999998;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

#sd-overlay-android {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}


#sd h3,
#sd a{
	color: #fff!important;
}
#sd h3:before {
    content: "\f249";
    font-family: FontAwesome;
    margin-right: 5px;
}
#sd li a:before {
    content: "\f104";
    font-family: FontAwesome;
    margin-right: 5px;
}