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

.cbp-spmenu  hr {
	margin-top: 0px;
}

.cbp-spmenu h5 {
	color: white;
}

.cbp-spmenu h3 {
	color: white;
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #c36d22;
	border-bottom: 1px solid white;
}

.cbp-spmenu a {
	font-size: 11px;
	color:white;
}

.cbp-spmenu a:hover {
	
}

.cbp-spmenu a:active {

}

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 99;
}

.cbp-spmenu-horizontal {
	width: 100%;
	height: 240px;
	top: 0;
	z-index: 99;
}

.cbp-spmenu-horizontal h1 {
	color:white;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
	color:white;
}

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

/* 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 {
	
}

.cbp-spmenu-right.cbp-spmenu-open {
	
}

/* Horizontal menu that slides from the top or bottom */
.cbp-spmenu-top {
	top: -240px;
}

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

.cbp-spmenu-top.cbp-spmenu-open {
	
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	
}

/* Push classes applied to the body */
.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	transform: translateX(240px);
	-webkit-transform: translateX(240px);
	-ms-transform: translateX(240px);
}

.cbp-spmenu-push-toleft {
	transform: translateX(-240px);
	-webkit-transform: translateX(-240px);
	-ms-transform: translateX(-240px);
}

.cbp-spmenu-push-tobottom {
	transform: translateY(240px);
	-webkit-transform: translateY(240px);
	-ms-transform: translateY(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-width: 55.1875em) {
	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: -240px;
	}
	.cbp-spmenu-top {
		top: -240px;
	}
	.cbp-spmenu-bottom {
		bottom: -240px;
	}
}

@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;
	}
	.cbp-spmenu-push-toright {
		left: 190px;
	}
}