/* General styles for all menus */
.cbp-spmenu {
	background: #fff;
	position: fixed;
}

.cbp-spmenu a {
	display: block;
	width: 400px;
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #314c50;
	font-size: 1em;
	line-height: 1.6em;
	font-weight: 700;
}

.cbp-spmenu i{
	display: inline-block;
	width: 20px;
	text-align: center;
}

.cbp-spmenu a:hover {
	color: #fff;
	background: #94ddf5;
}

.cbp-spmenu a:active {
	color: #fff;
	background: #d0d0d0;
}



.menu-navicon { 
	display: block;
	border: none;
	background: none;
	color: #4884b0;
	width: 90%;
	cursor: pointer;
	margin: 10px 0;
	padding: 0;
	font-size: 1.5em;
	line-height: 1em;
	text-align: right;
}

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

.cbp-spmenu-vertical {
	width: 340px;
	border-left: 14px solid #4884b0;
	height: 100%;
	top: 0;
	z-index: 100000;
	-moz-box-shadow:4px 4px 8px 4px rgba(20%,20%,40%,0.5);
	-webkit-box-shadow:4px 4px 8px 4px rgba(20%,20%,40%,0.5);
	box-shadow:4px 4px 8px 4px rgba(20%,20%,40%,0.5);
}

.cbp-spmenu-vertical > a {
	border-top: 1px dotted #4884b0;
	padding: 10px;
}

.submenu { width: 268px; margin: 0 auto; border-bottom: 0px dotted #4884b0; }
.submenu >  a { color: #314c50; font-size: 0.9em; font-weight: normal; padding: 5px 0 5px 0; }
.thirdmenu { width: 268px; margin: 0 auto 10px auto; }
.thirdmenu >  a { color: #898989; font-size: 0.8em; font-weight: normal; padding: 0.2em 0 0.2em 1.8em; }


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


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

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