

/* Container, der alle nav-Elemente enthält*/

/* Die am obersten liegende Listenstruktur */
nav{
	z-index: 100000 !important;
	width: 100%;
	margin-top: -14px;
}

nav ul{
	background: #43a286;
	color: white;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
		
	-webkit-transition: max-height 0.4s;
	-ms-transition: max-height 0.4s;
	-moz-transition: max-height 0.4s;
	-o-transition: max-height 0.4s;
	transition: max-height 0.4s;
}

/* Erste Listenelemente, sichtbares Hauptmenü */

nav ul li{
	font-size: 16px;
	padding: 10px 0;
	display: inline-block;
	width: 140px;
	list-style-type: none;
}


nav ul li:hover{
	background-color: #399077;
}

nav a:link {
	color: white;
}

a {
    color: #242a2e;
    font-weight: bold;
    text-decoration: none;
}

td a:visited {
    color: #2a5764;
    text-decoration: none;
}

a:hover, a:active {
    color: #3e575e;
    text-decoration: none;
}

nav a{
	text-decoration: none;
	color: white;	
}

nav a:visited{
	color: #fff;
}

nav ul li ul{
	z-index: 10000;
	margin-top: 10px;
	width: 140px;
	display: block;
	visibility: hidden;
	position: absolute;
}


nav ul li:hover ul {
    visibility: visible;
}

nav ul li ul li{
	padding: 10px 0;
	position: relative;
	clear: both;
	text-align: center;
}

.handle{
	background: #005c48;
	width: 100%;
	text-align: left;
	box-sizing: border-box;
	padding: 15px 10px; 
	cursor: pointer;
	font-size: 1.5em;
	color: white;
	display: none;
}



@media screen and (max-width: 1280px){

nav {
	margin-top: -15px;
	width: 100%;
	}
	
nav ul li{
	width: 110px !important;
}

nav ul li ul{
	z-index: 10000;
	margin-top: 10px;
	width: 110px;
	display: block;
	visibility: hidden;
	position: absolute;
}


}

@media screen and (max-width: 1010px){
		

		
nav ul li{

	font-size: 16px;
	padding: 10px 0;
	width: 110px !important;
	display: inline-block;
	}
	
nav ul li ul{
	z-index: 10000;
	margin-top: 10px;
	width: 110px;

}}


@media only screen and (max-width: 740px){

nav ul {
	background: #43a286; 
	max-height: 0px;
}
	
nav ul li{
	font-size: 14px;
	padding: 10px 0;
	width: 100%;
	display: inline-block;
}

	
.show{
	max-height: 50em;
}


nav ul li{
	margin-left: 20px;
	width: 100%;
	padding: 10px 0;
	text-align: left;
	display: block;
}
	
nav ul li:hover{
	background-color: #43a286;
}	

.handle{
	display: block;
}
	
		
}



