/* General styles for all menus */

button#cover {
	position: fixed;
	z-index: 1000 !important;
	width: 100%;
	height: 100%;
	border: 0;
	display: none;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0;
	cursor: pointer;
}

.showme {
	display: block !important;
	opacity: 0.6 !important;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.push-menu {
	background: #fff;
	position: fixed;
	z-index: 5000 !important;
}

.push-menu a {
	display: block;
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
}

.push-menu a:hover {
	background: #258ecd;
}

.push-menu a:active {
	background: #afdefa;
	color: #47a3da;
}

/* Orientation-dependent styles for the content of the menu */

.push-menu-vertical {
	width: 33%;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.push-menu-vertical a {
	border-bottom: 1px solid #258ecd;
	padding: 1em;
}

.push-menu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.push-menu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.push-menu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */

.push-menu-left {
	left: -33%;
}

.push-menu-right {
	right: -240px;
}

.push-menu-left.push-menu-open {
	left: 0px;
}

.push-menu-right.push-menu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.push-menu-top {
	top: -150px;
}

.push-menu-bottom {
	bottom: -150px;
}

.push-menu-top.push-menu-open {
	top: 0px;
}

.push-menu-bottom.push-menu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.push {
	overflow-x: hidden;
	position: relative;
	left: 0;
	z-index: 1;
}

.push nav {
	overflow-y: scroll;
}

.push-toright {
	left: 33%;
}

.push-toleft {
	left: -33%;
}

/* Transitions */

.push-menu, .push {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

/* Example media queries */

@media screen and (max-width: 55.1875em){

	.push-menu-horizontal {
		font-size: 75%;
		height: 110px;
	}

	.push-menu-top {
		top: -110px;
	}

	.push-menu-bottom {
		bottom: -110px;
	}

}

@media screen and (max-height: 26.375em){

	.push-menu-vertical {
		font-size: 90%;
		width: 190px;
	}

	.push-menu-left,
	.push-toleft {
		left: -190px;
	}

	.push-menu-right {
		right: -190px;
	}

	.push-toright {
		left: 190px;
	}
}