/*! 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 Button */
@media screen and (min-width: 800px){
    div.menu-btn{
        display: none;
    }
}
@media screen and (max-width: 799px){
    div.menu-btn:after, div.menu-btn:before{
        content: "";
        position: absolute;
        left: 15px;
        display: block;
        width: 16px;
        top: 5px;
        height: 0;
        -webkit-box-shadow: 1px 10px 1px 1px #fff,1px 16px 1px 1px #fff,1px 22px 1px 1px #fff;
        -moz-box-shadow: 0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff;
        -o-box-shadow: 0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff;
        box-shadow: 0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff;
        
    }
    div.menu-btn{
        position: absolute;
        top: 5px;
        z-index: 0;
        width: 27px;
        height: 11px;
        padding: 17px 10px ;
        background: #000;
        color: #FFF;
        cursor: pointer;
        text-align: center;
    }

    div.menu-btn:hover{
        background: #3097BF;
        color: #FFF;
    }
}

/* Menu Appearance */

.pushy{
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 0.9em;
    position: fixed;
    width: 200px;
    height: 100%;
    top: 0;
    z-index: 9999;
    background: #232323;
    -webkit-box-shadow: inset -10px 0 6px -10px rgba(0, 0, 0, .7);
    -moz-box-shadow: inset -10px 0 6px -10px rgba(0, 0, 0, .7);
    -o-box-shadow: inset -10px 0 6px -10px rgba(0, 0, 0, .7);
    box-shadow: inset -10px 0 6px -10px rgba(0, 0, 0, .7);
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

.pushy a{
    display: block;
    color: #b3b3b1;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none;
}

.pushy a:hover{
    background: #3097BF;
    color: #FFF;
}

/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(-200px,0,0);
    -moz-transform: translate3d(-200px,0,0);
    -ms-transform: translate3d(-200px,0,0);
    -o-transform: translate3d(-200px,0,0);
    transform: translate3d(-200px,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(200px,0,0);
    -moz-transform: translate3d(200px,0,0);
    -ms-transform: translate3d(200px,0,0);
    -o-transform: translate3d(200px,0,0);
    transform: translate3d(200px,0,0);
}

/* Menu Transitions */

@media screen and (max-width: 799px){
    .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);
        /* improves performance issues on mobile*/
        /*-webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;*/
    }
}

/* Site Overlay */

.site-overlay{
    display: none;
}

.pushy-active .site-overlay{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 200px;
    z-index: 9999;
}

/* Example Media Query */

@media screen and (max-width: 768px){
    .pushy{
        font-size: 1.0em;
    }
}