/* General styles for all menus */
.cbp-spmenu {
	background: #8A8482;
	position: fixed;
}

.cbp-spmenu h3 {
	color: #958f8c;
	font-size: 1.5em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #706b6a;
}

.cbp-spmenu span {
	display: block;
	color: #ffffff;
	font-size: 1.1em;
	font-weight: 300;
}

.cbp-spmenu a {
	color: #f0ede8;
}

.cbp-spmenu span:hover {
	background: #7b7674;
}

.cbp-spmenu span:active {
	background: #7b7674;
}

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

.cbp-spmenu-vertical {
	width: 255px;
	height: 100%;
	top: 0;
	z-index: 1400;
}

.cbp-spmenu-vertical span {
	border-bottom: 1px solid #7b7674;
	padding: 1em;
}

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

.cbp-spmenu-left {
	left: -255px;
}

.cbp-spmenu-right {
	right: -255px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

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


/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 255px;
}

.cbp-spmenu-push-toleft {
	left: -255px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Example media queries */

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

	.cbp-spmenu-vertical {
		font-size: 90%;
		width: 245px;
	}

	.cbp-spmenu-left,
	.cbp-spmenu-push-toleft {
		left: -245px;
	}

	.cbp-spmenu-right {
		right: -245px;
	}

	.cbp-spmenu-push-toright {
		left: 245px;
	}
}