/* button menu */
.btn_menu{
	width:35px;
	height:35px;
	text-indent:-9999px;
	background:url(img/menu.png) no-repeat 0 0;
	background-size:35px 35px;
	cursor:pointer;
	float:right;
}

/* General styles for all menus */
.cbp-spmenu{
	position:fixed;
}

.cbp-spmenu ul{
}

.cbp-spmenu ul li{
	border-bottom:1px dotted #444;
}

.cbp-spmenu ul li a{
	color:#fff;
	font-size:75%;
	padding:10px;
	display:block;
	text-decoration:none;
	background:url(img/arrow2.png) no-repeat 98% 50%;
	background-size:7px 11px;
}

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical{
	width:240px;
	height:100%;
	background:#292929;
	top:65px;
	z-index:1000;
}

/* 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;
}

/* 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;
	}
}