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

.cbp-spmenu h3 {
	color: #fff;
    font-size: 1.9em;
    padding: 30px 0;
    margin: 0;
    font-weight: 300;
    background: #407F8E;
	border-bottom: 1px solid #fff;
}

.cbp-spmenu a {
	display: block;
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
	text-decoration: none;
}

.cbp-spmenu a:hover {
	background:#407F8E;
}
.cbp-spmenu a:active {
	background: #407F8E;
}

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

.cbp-spmenu-vertical {
	width: 200px;
   text-align: left;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
	border-bottom:1px solid #4B5D61;
	padding: 0.5em;
}

/* Vertical menu that slides from the left or right */
.cbp-spmenu-left {
	left: -240px;
}

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

.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-toleft {
	left:-200px;
}

/* 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 (max-height:480px) and (orientation:landscape) {
	.cbp-spmenu-vertical a {
		padding: 0;
	}
}


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

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

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

	.cbp-spmenu-right {
		right: -190px;
	}
}
@media (max-width:320px){
	.cbp-spmenu a {
		font-size: 14px;
	}
	.cbp-spmenu h3 {
		font-size: 1.5em;
		padding: 23px 0;
	}
}