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

.cbp-spmenu a {
	display: block;
	color: #000000;
	font-size: 1.3em;
	font-family: 'Karla', sans-serif;
	text-decoration: none;
	border: solid;
	letter-spacing: -0.05em;
}

.cbp-spmenu a:hover {
	opacity: 0.9;
}

.cbp-spmenu a:active {
	background: #000000;
	color: #444444;
}

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

.cbp-spmenu-horizontal {
	width: 100%;
	height: 64px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
	margin-top: -0.13em;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 18%;
	float: left;
}

.cbp-spmenu-horizontal a {
	float: left;
	width: 16.1%;
	padding: 0.6em 0.3em 0.6em 0.3em;
	margin-left: -0.11em;
}

.cbp-spmenu-horizontal a:first-child {
	margin-left:10%;
}

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

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

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

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

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