/* General styles for all menus */
.cbp-spmenu {
	background: #fff;
	position: fixed;
	overflow:auto;
	text-align:center;
	width:240px;
	border-right:solid 1px #D9AEAE;
}

.cbp-spmenu h3 {
	color: #000;
	font-size: 18px;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #f5f5f5;
	font-weight:bold;
}

.cbp-spmenu a {
	display: block;
	color: #666;
	font-size:1rem;
	font-weight: 300;
	width: 200px;
	height:2rem;
	background: url(/images/listsarrow.png) 98% center no-repeat;
	text-align:left;
	vertical-align:middle;
	
	margin-top:5px;
	line-height:2rem;
	margin-left:10px;
}

.cbp-spmenu a:hover {
	background: #DFDFDF;
}

.cbp-spmenu a:active {
	background: #DFDFDF;
	color: #47a3da;
}

/* 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 #DFDFDF;
	padding: 5PX;
	
}


/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
}



.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}



/* Horizontal menu that slides from the top or bottom */



/* 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: -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;
	}
}