/* General styles for all menus */
.cbp-spmenu {
	position: absolute;
	z-index: 10;
}
.cbp-spmenu a {
	display: block;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
}

.cbp-spmenu a:hover {
	background: #258ecd;
}

.cbp-spmenu a:active {
	background: #afdefa;
	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 {
	padding: .7em;
	color: #6f9ba5;
	text-decoration: none;	
}
.cbp-spmenu-vertical a:hover {
	color: #ee9129;
	text-decoration: none;
	background-color:hsla(0,3%,94%,0.70);
}
.cbp-spmenu div {
	display: block;
	color: #444444;
	font-size: 18px;
	font-weight: normal;
	text-align: left;
	font-family: open-Sans, Helvetica, Arial, sans-serif;
}

.cbp-spmenu div:hover {
	color: #ee9129;
	cursor: pointer;
}

.cbp-spmenu div:active {
	color: #4b2e83;
	background: #d9d9d9;
}

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

.cbp-spmenu-vertical {
	background-color: #FFFFFF;
	width: 380px;
	height: auto;
	top: 0;
	z-index: 1000 !important;
	position: absolute;
	margin-top: 0px;
	padding: 3%;
}

.cbp-spmenu-vertical div {
	padding-left: 0.2em;
}

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

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

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

.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;
}
.closeMenu{
	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-toright {
	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;
	}
}