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

}

.cbp-spmenu h3 {
	color: #7d4f25;
	padding: 5px;
	margin: 0;
	font-weight: 300;
	background: #FFFFFF;
	font-family:'Open Sans', "Times New Roman", Times, serif; font-size:20px; font-weight:700;
}

.cbp-spmenu a {
	display: block;
	color: #fff;	
	font-weight: 300;
	font-family:'Open Sans', "Times New Roman", Times, serif; font-size:16px; font-weight:700;
	text-decoration:none;
}

.cbp-spmenu a:hover {
	background: #e8d5b8;

}

.cbp-spmenu a:active {
	background: #e8d5b8;
	color: #FFFFFF;
}

/* 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 #FFFFFF;
	border-bottom-style:dotted;
	padding: 1em;
}


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


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


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



/* Push classes applied to the body */

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

.cbp-spmenu-push-toright {
	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-width: 55.1875em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}

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

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

}

@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;
	}
}