/* General styles for all menus */
.cbp-spmenu {
	background: #fff;
	position: fixed;
	overflow:scroll;
	border-left:2px solid #ff3300;	
}
.cbp-spmenu h3 {
	color: #fff;
	padding: 10px 20px;
	margin: 0;
	font-weight: 300;
	background: #0d77b6;
}
.spmenu a {
	display: block;
	color: #000;
	font-size: 1.1em;
	font-weight: 300;
	padding:10px 20px;
	transition:all 0.2s linear;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	font-weight:bold;
}
.spmenu .sub-menu li a
{
	color:#333;
	font-weight:normal;
}
.spmenu a:hover,
.spmenu .sub-menu li a:hover,
.spmenu .sub-menu .sub-menu li a:hover,
.spmenu li.current_page_item > a
{
	color:#fff !important;
}
.spmenu .sub-menu
{
	background:#fff;
}

.spmenu .sub-menu li a
{
	padding:8px 0 8px 40px;
}

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

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 1000;
}
.cbp-spmenu-vertical a {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}

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

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

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

.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 */

.cbp-spmenu-top {
	top: -150px;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

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

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

/* Push classes applied to the body */

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

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

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

/* 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-right {
		right: -190px;
	}
}