html, body {
	overflow-x: hidden; /* prevents horizontal scroll bars */
	-webkit-tap-highlight-color: rgba(0,0,0,0); /* disable webkit tap highlight */
	height: 100%; /* fixes focus scrolling in Safari (OS X) */
}
/* Lists */

ul {
/*	margin: 0;
	padding: 0;*/
}
/* Container */

#container {
	position: relative;
}
/* Menu Button */

.menu-btn {
	width: 92%;
	color: #000;
	text-align: left;
	cursor: pointer;
	padding-top: 4px;
	font-size: 18px;
	height: 21px;
	padding-left: 5px;
	margin: 0 auto;
}
.pushy {
	position: fixed;
	width: 200px;
	height: 100%;
	top: 0;
	z-index: 9999;
	background: #333332;
	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 */
}
.pushy a {
	display: block;
	color: #b3b3b1;
	padding: 12px 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: #b6044a;
	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 */

.pushy, #container, .push {
 
}
/* 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;
}
}
