/* General styles for all menus */
@media screen and (min-width: 0px) and (max-width: 768px){
.cbp-spmenu {
	background: #7A4E1A;
	position: fixed;
	text-align: center;
			margin-top:0px;
}

.cbp-spmenu h3 {
	display: block;
	color: #D4C383;
	font-size: 1.5em;
	padding: 10px;
	margin: 0;
	font-weight: 500;
	background: #7A4E1A;

}

.cbp-spmenu a {
	display: block;
	color: #D4C383;
	font-size: 14px;
	font-weight: 300;
	margin:-0px 0px 0px -25px;
	text-align: left;
	width:140px;

	
}


.cbp-spmenu a:hover {
	background: #7A4E1A;
}

.cbp-spmenu a:active {
	background: #7A4E1A;
	color: #D4C383;
}

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

.cbp-spmenu-vertical {
	width: 200px;
	height: 100%;
	top: 0;


}

.cbp-spmenu-vertical a {
	border-bottom: 1px solid #D4C383;

	padding: 1em;
	text-align: left;

}


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

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

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

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

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

.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 screen and (max-width: 55.1875em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 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;
	}
}

}