/* General styles for all menus */
.cbp-spmenu {
	position: fixed;
	border: 0px solid #cccccc;
	/*background-position:600px 0px;*/

}


/* Orientation-dependent styles for the content of the menu */


.cbp-spmenu-horizontal {
	width: 35%;
	height: 1000px;
	/*border: 1px solid #cccccc;*/
	right:110px;
	z-index: 0px;
/*overflow: hidden;*/
}




/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: 0px;
}

.cbp-spmenu-bottom {
	bottom: -730px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: -80px;
}


/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.7s ease;
	transition: all 0.7s 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: 126.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;
	}
}