/* General styles for all menus */
.cbp-spmenu {
	/*background: #d9d9d9;*/
	/*position: fixed;*/
	position: absolute;
	z-index: 10;
}

.cbp-spmenu h3 {
	color: rgb(51, 51, 51);
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #AEAEAE;
}
.cbp-spmenu-horizontal {	
	}
.cbp-spmenu div {
	display: block;
	color: #444444;
	font-size: 16px;
	font-weight: normal;
	background-color: #EBEBEB;
	border-right: 1px solid #ffffff;
	text-align: left;
	font-family: open-Sans, Helvetica, Arial, sans-serif;
}

.cbp-spmenu div:hover {
	background: #d9d9d9;
	color: #4b2e83;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	cursor: pointer;
}

.cbp-spmenu div:active {
	color: #4b2e83;
	background: #d9d9d9;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}
.cbp-spmenu a{
	display: block !important;
}
.cbp-spmenu a{
	display: block;
	color: #444444;
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	font-family: open-Sans, Helvetica, Arial, sans-serif;
	width: 100%;
	text-decoration: none;
}

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

.cbp-spmenu a div:active {
	color: #4b2e83;
	background: #d9d9d9;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

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

.cbp-spmenu-vertical {
	width: 150%;
	height: auto;
	top: 50;
	z-index: 1000 !important;
	overflow: hidden;
	margin-top: 34px;
}

.cbp-spmenu-vertical div {
	padding-left:3%;
	height:40px;
	padding-top: 10px;
	font-size:17px;
	color: #4b2e83;
	border-top: 1px solid #ffffff;
	
}

.cbp-spmenu-horizontal {
	width: 100%;
	/*min-height: 72%;*/
	height:auto;
	left: 0;
	z-index: 1000 !important;
	overflow: hidden;
	
}
.cbp-spmenu-horizontal div {
	padding-left:3%;
	height:40px;
	padding-top: 10px;
	font-size:17px;
	color: #4b2e83;
	border-top: 1px solid #ffffff;
}
.cbp-spmenu-vertical a div{
	font-size:17px;
	color: #4b2e83;
}
.cbp-spmenu-vertical a div:hover{
	text-decoration: none;
	border: none;
}
.cbp-spmenu-vertical h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.cbp-spmenu-vertical a {
	float: left;
	text-decoration: none;
}

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

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

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

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

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

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: 132px;
	opacity:0;
	display: none;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 129px;
    transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
   	opacity:1;
	display: block;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 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: -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: 100%;
	}

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