

/* Menu Appearance */

.pushy{
    position: fixed;
    width: 300px;
    height: 100%;
    margin-top: 13px;
    top: 0px;
    right: 0%;
    z-index: 9;
    background: url(../imgs/bgMenuLateral.png);
    font-size: 0.9em;
    font-weight: bold;
    -webkit-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    -moz-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

@import url(http://fonts.googleapis.com/css?family=Alegreya+Sans:300);

nav h1{
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 26px;
    color: #FFF;
    font-weight: 300;
    padding: 80px 20px 20px;
    margin-top: 0px;
    margin-bottom: 0px;
}

nav h2{
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 17px;
    color: #FFF;
    font-weight: 300;
    padding: 0px 20px 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

nav p{
    padding: 0px 20px 20px 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: 'Alegreya Sans', sans-serif;
    color: #FFF;
    font-weight: normal;
    letter-spacing: 1px;
}

nav img{
    cursor: pointer;
    padding-bottom: 4px;
}

.menuLateral{
    position: fixed;
    width: 200px;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 40px;
    z-index: 9999;
    background: url(../imgs/bgMenuLateral.png);
    font-size: 0.9em;
    font-weight: bold;
    overflow: auto;
}

.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: #e9e9e9;
    color: #333;
}

/* Menu Movement */

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

/* Menu Transitions */

#container{
    height: 100%;
    min-height: 100%;
    -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;
    overflow: hidden;
    padding-top: 60px;
}

.pushy, .push{
    margin-left: 300px;
    -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: 99;
}

/* Example Media Query */

@media screen and (max-width: 768px){
    .pushy{
        font-size: 1.0em;
        width: 220px;
    }
    .container-push, .push-push{
        -webkit-transform: translate3d(-220px,0,0);
        -moz-transform: translate3d(-220px,0,0);
        -ms-transform: translate3d(-220px,0,0);
        -o-transform: translate3d(-220px,0,0);
        transform: translate3d(-220px,0,0);
    }
}

