/*! Pushy - v0.9.1 - 2013-9-16
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */

/* Menu Appearance */

.pushy{
  position: fixed;
  width: 250px;
  height: 100%;
  top: 0;
  z-index: 99999;
  background: #d6b469;
  font-size: 0.9em;
  font-weight: bold;
  -webkit-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .2);
  -moz-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .2);
  box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .2);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.pushy .header-greeting{
  background: #d6b469;
  line-height: 50px;
  max-width: 100%;
  padding: 0 20px;
  font-size: 13px;
  color: white;
}
.pushy a{
  text-decoration: none;
  color: white;
  padding: 15px;
  font-weight: 400;
  display: block;
  font-size: 14px;
  border-bottom: solid 1px #D7C59F;
}
.pushy a:hover,
.pushy a:active{
  background: rgba(255, 255, 255, 0.1);
}

.pushy div span{
  color: white;
  padding: 15px 15px 0;
  font-weight: 400;
  display: block;
  font-size: 14px;
}
.pushy div ul li a{
  padding: 8px 25px;
  font-weight: 300;
}

/* Menu Movement */

.pushy-left{
  -webkit-transform: translate3d(-250px,0,0);
  -moz-transform: translate3d(-250px,0,0);
  -ms-transform: translate3d(-250px,0,0);
  -o-transform: translate3d(-250px,0,0);
  transform: translate3d(-250px,0,0);
}

.pushy-open{
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.container-push, .push-push{
  -webkit-transform: translate3d(250px,0,0);
  -moz-transform: translate3d(250px,0,0);
  -ms-transform: translate3d(250px,0,0);
  -o-transform: translate3d(250px,0,0);
  transform: translate3d(250px,0,0);
}

/* Menu Transitions */

.pushy, #container, .push{
  -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
  -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
  -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
  transition: transform .2s cubic-bezier(.16, .68, .43, .99);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

/* Site Overlay */

.site-overlay{
  display: none;
}

.pushy-active .site-overlay{
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 250px;
  z-index: 9999;
}
