
*,
*: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: auto;
	
	/*
	background: #eeeeee;
	opacity: 0.5;
	*/
	
	/*
	overflow-y: scroll;
	background: #f3efe0;
	*/
}

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

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


.st-trigger-effects {
	float: left;
	padding-left: 0.2em;
}

.st-control-slides {
	float: right;
	padding-right: 0.2em;
}


.st-btn-hamburger {
	background-color: #AA0000;
}

.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.0); /*how much darken orig 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;
	left: 0;
	z-index: 100;
	visibility: hidden;
	/*width: 300px;*/
	width: auto;
	height: 100%;
	opacity: 0.6; /*orig:1 (not transparent at all)*/
	background: #232323;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;

	overflow:auto;
}

.ob-visible-yes {
	visibility: hidden;
}

.ob-visible-no {
	visibility: visible;
}

button.st-btn-toggle {
	opacity: 0.3;
}

button.st-btn-toggle:hover {
	opacity: 1;
}

a.st-toggle {
	font-size: 1em; 
	color: #EEE;
}

.st-menu::after {
	position: absolute;
	top: 0;
	right: 0;
	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: 0;
	list-style: none;
}

.st-menu ul li.st-divider {
	border-top: 1px dotted #616161;
}

.st-menu h2 {
	margin: 0;
	padding: 1.7rem 1rem 1.5rem 1.4rem;
	/*color: rgba(0,0,0,0.4);*/
	/*color: rgba(1,1,1,0.2);*/
	color: #FFFFFF;
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 300;
	font-size: 2em;
	line-height: 0.8em;
}

.st-menu h2 > span {
	text-transform: uppercase;
	font-size: 0.5em;
	letter-spacing: 4.7px;
}

.st-menu ul li a {
	display: block;
	padding: 0.8em 1em 0.8em 1.4rem;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	/*color: #f3efe0;*/
	color: #FFFFFF;
	text-transform: uppercase;
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	letter-spacing: 1px;
	font-weight: 400;
	-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-menu ul li.active {
	border-right: 6px solid #EEEEEE;
}

.st-menu ul li:hover {
	border-right: 6px solid #AA0000;
}

.st-menu p {
	margin: 0;
	padding: 1rem 1rem 1rem 1.4rem;
	color: #CCCCCC;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
}


/* Individual effects */

/* Effect 1: Slide in on top */
.st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.st-effect-1.st-menu-open .st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.st-effect-1.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;
}
