/* General styles for all menus */
.mainMenu {
	position: fixed;
}

.mainMenu a {
	display: block;
	color: #696969;
	font-size: 1.1em;
	font-weight: 300;

	/* kästen enden nach textlänge
	float: left; */
}

.mainMenu a:hover {
	background: #d3d3d3;
}

.mainMenu a:active {
	color: black;
}
.mainMenu a.active {
	color: #228B22;
	background-color: lightgrey;
}

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

.mainMenu-vertical {
	width: 230px;
	top: 0;
	z-index: 1000;
}

.mainMenu-vertical a {
	padding: 5px 15px 5px 15px;
	background: #F0F8FF;
	margin-bottom: 5px;
}

.mainMenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.mainMenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.mainMenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left */

.mainMenu-left {
	left: -215px;
	top: 250px;
}

.mainMenu-left.mainMenu-open {
	left: 0px;
}

.mainMenu-right.mainMenu-open {
	right: 0px;
}

/* Transitions */

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

/* trigger */
#showLeft {
	left: 230px;
	width: 20px;
	height: 140px;
}
#showLeftBottom{
	width: 250px;
	height: 20px;
	bottom: -15px;
}
#showLeftTop{
	width: 250px;
	height: 20px;
	top: -20px;
}