/* General styles for all menus */
.cbp-spmenu {
	/*background: #47a3da;*/
	position: fixed;
	width: 240px;
	top:36px;
	font-size:0.8em;
}

.cbp-spmenu h3 {
	color: #000;
	font-size: 1.4em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
}

.cbp-spmenu a {
	display: block;
	color: #ccc;
	font-size: 1.1em;
	font-weight: 300;
	line-height: 1.8em;
	padding: 20px;
	display: block;
	border-bottom: solid 1px #555;
	word-wrap: break-word;
}

.cbp-spmenu a:hover {
	text-decoration: none;
}

/* 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;
}


/* Push classes applied to the body */

.cbp-spmenu-push {
	position: relative;
	/*left: 0;*/
	right:0;
}

.cbp-spmenu-push-toright {
	right: 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;
}

