*,
*:after,
*::before {
-moz-box-sizing: border-box;
box-sizing: border-box;
}

html,
body,
.st-container,
.st-pusher,
.st-content {
height: 100%;
}

.st-content {
 overflow-y: scroll;
}

.st-content,
.st-content-inner {
position: relative;
}

.st-container {
position: relative;
overflow: hidden;
}

.st-pusher {
position: relative;
left: 0;
z-index: 99;
height: 100%;
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
}

.st-pusher::after {
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
background: rgba(0,0,0,0.2);
content: '';
opacity: 0;
-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-menu-open .st-pusher::after {
width: 100%;
height: 100%;
opacity: 1;
-webkit-transition: opacity 0.5s;
transition: opacity 0.5s;
}

.st-menu {
position: absolute;
top: 0;
right: 0px;
z-index: 10000;
visibility: hidden;
width: 300px;
height: 100%;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}

.st-menu::after {
position: absolute;
top: 0;
right: 0px;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.2);
content: '';
opacity: 1;
-webkit-transition: opacity 0.5s;
transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
width: 0;
height: 0;
opacity: 0;
-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

.st-menu ul {
    margin: 0;
    padding-left: 20px;
}

 

.st-menu ul li a {
    display: block;
    padding: 3px 0px 3px 0px;
    box-shadow: inset 0 -1px rgba(0,0,0,0.2);
    color: #f3efe0;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
}

.st-menu ul li:first-child a {
box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.st-menu ul li a:hover {
background: rgba(0,0,0,0.2);
box-shadow: inset 0 -1px rgba(0,0,0,0);
color: #fff;
}
 
.st-effect-9.st-container {
-webkit-perspective: 1500px;
perspective: 1500px;
}

.st-effect-9 .st-pusher {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}

.st-effect-9.st-menu-open .st-pusher {
    -webkit-transform: translate3d(-100px, 0, -600px) rotateY(10deg);
	transform: translate3d(-100px, 0, -600px) rotateY(10deg);
}

.st-effect-9.st-menu {
opacity: 1;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}

.st-effect-9.st-menu-open .st-effect-9.st-menu {
visibility: visible;
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}

.st-effect-9.st-menu::after {
display: none;
}
 
/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
padding-left: 300px;
}

@media print {
    .st-content {
        overflow-y:inherit;
    }

    .st-container {
        overflow:inherit;
    }
}
