

#menu {
	width: 100%;
	height: 50px;
	margin: 5px auto;
	
	background: #8fa5ba;
	box-shadow: 0 0 10px #aaa;
    z-index: 100;
}

#menu a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	-ms-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
display:inline-block;	
}

#menu .inhalt {
	width: 1050px;
	margin: 0 auto;
    z-index: 100;
}

#menu .inhalt ul {
	position: absolute;
	margin: 0 auto;
	list-style: none;
     z-index: 100;
}

#menu .inhalt ul li {
	float: left;
	margin: 0 0 0 2px;
	padding: 0 5px;
	font-size: 11px;
	font-weight: bold;
	line-height: 50px;
}

#menu .inhalt>ul>li:hover {
	height: 50px;
	margin-top: -5px;
	background: #eee;
	border-top: 5px solid #003466;
	box-shadow: 0 0 5px #aaa;
    z-index: 100;
}

#menu .inhalt ul li img {
	float: left;
	width: 16px;
	height: 16px;
	margin: 11px 5px ;
	padding: 6px;
	background: #000;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

#menu .inhalt ul li ul {
	top: -9999px;
	min-width: 200px;
	background: #eeeeee;
	background: -moz-linear-gradient(top,  #eeeeee 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top,  #eeeeee 0%,#ffffff 100%);
	background: -o-linear-gradient(top,  #eeeeee 0%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #eeeeee 0%,#ffffff 100%);
	background: linear-gradient(top,  #eeeeee 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
	padding: 0;
	margin: 0 0 0 -10px;
	box-shadow: 0 0px 5px #aaa;
}

#menu .inhalt ul li:hover ul {
	top: 50px;
}

#menu .inhalt ul ul li {
	float: none;
	font-size: 11px;
	padding: 10px 20px;
	text-align: left;
	margin: 0;
	border-bottom: 1px solid #ddd;
	line-height: 20px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

#menu .inhalt ul ul li:hover {
	background: #224e7b;
	color: #fff;
}

#menu .inhalt ul ul li a {
	display: block;
    
}

#menu .inhalt ul ul li a:hover {
	color: #fff;
}

#menu li ul li ul {
	position: absolute;
	left: -9999px;
}

#menu .inhalt ul ul li:hover ul {
	left: 100%;
	top: auto;
	margin-top: -20px;
}
