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

.cbp-spmenu a {
	color: #FFFFFF;
	background-color: #008AC4;
	font-size: 36px;
	text-decoration: none;
	text-align: center;
	padding: 10px 30px;
}

.cbp-spmenu a:hover {
	color: #008AC4;
	background-color: #FFFFFF;
}

.cbp-spmenu a:active {
	color: #008AC4;
	background-color: #FFFFFF;
}

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

.cbp-spmenu-horizontal {
	width: 80%;
	margin-left: 10%;
	height: 50px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal a {
	float: left;
}

.cbp-spmenu-horizontal a:hover {
	color: #008AC4;
	background-color: #FFFFFF;
}

/* Horizontal menu that slides from the top */

.cbp-spmenu-top {
	top: -61px;
}

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

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	top: 0;
}

.cbp-spmenu-push-fromtop {
	top: 61px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}