@charset "UTF-8";
/*Strip the ul of padding and list styling*/
#subnavbox #menu {
	width: 100%;
	-ms-transition: all 1s ease 1s;
	-o-transition: all 1s ease 1s;
}
#subnavbox ul {
	list-style-type:none;
	margin:0;
	padding:0;
	/*position: absolute;*/
}

/*horizontale Liste
li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}*/
/*vertikale Liste*/
#subnavbox li {
	display: inline-block;
	float: left;
	margin-bottom: 1px;
	width: 100%;
	background-color: #E2E2E3;

}

/*Style menu links*/
#subnavbox li a {
	display: block;
	min-width: 140px;
	height: 38px;
	text-align: left;
	line-height: 38px;
	color: #36414C;
	text-decoration: none;
	padding-left: 2%;
	width: 98%;
}

/*Hover state for top level links*/
#subnavbox li:hover a {
	background-color: #41C6BA;
	color: #FFF;
		width: 98%;

}

/*Style for dropdown links*/
#subnavbox li:hover ul a {
	color: #2f3036;
	height: 38px;
	line-height: 38px;
	background-color: #E2E2E3;
}

/*Hover state for dropdown links*/
#subnavbox li:hover ul a:hover {
	color: #fff;
	background-color: #41C6BA;
}

/*Hide dropdown links until they are needed*/
#subnavbox li ul {
	display: none;
}

/*Make dropdown links vertical*/
#subnavbox li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
#subnavbox li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
#subnavbox ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
#subnavbox .show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	text-align: left;
	display: none;
	background-color: #41C6BA;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 10px;
	margin: 0px;
	-ms-transition: all 2s ease 2s;
	-o-transition: all 2s ease 2s;
}

/*Hide checkbox*/
#subnavbox input[type=checkbox]{
	display: none;
	-ms-transition: all 0.2s ease 0.2s;
	-o-transition: all 0.2s ease 0.2s;
}

/*Show menu when invisible checkbox is checked*/
#subnavbox input[type=checkbox]:checked ~ #menu{
	display: block;
	-ms-transition: all 0.2s ease 0.2s;
	-o-transition: all 0.2s ease 0.2s;
}
#hambox {
	float: right;
	width: 42px;
	display: inline;
	margin: 0px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#hambox .ham {
	float: left;
	height: 2px;
	width: 50%;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: 25%;
	display: inline;
	background-color: #FFF;
	padding: 0px;
	line-height: 1px;
}

/*Responsive Styles*/

@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 768px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 768px), only screen and (min-device-pixel-ratio: 2) and (max-width: 768px), only screen and (min-resolution: 192dpi) and (max-width: 768px), only screen and (min-resolution: 2dppx) and (max-width: 768px) {
	/*Make dropdown links appear inline*/
	#subnavbox ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#subnavbox li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	#subnavbox ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	#subnavbox .show-menu {
	display: block;
	margin-bottom: 1px;
	}
}
