/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/basic_dd.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
	width: auto;
	margin-left: 0px;
	margin: 50px 5px 0 0;
	height: 41px;
	background: #386F1B;
}

/* remove the bullets, padding and margins from the lists */
.menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li {
	float: left;
	position: relative;
	z-index: 100;
	text-align: left;
	margin: 0;
}

.menu li ul {
	margin-top: 0px;
}

.menu li li {
	margin-left: 0px;
	margin: 0;
}

/* use the table to position the dropdown list */
.menu table {
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: -1px;
	top: 25px;
}

/* style all the top links */
.menu ul a, .menu ul a :visited {
  color: #fff;
	display: block;
	padding: 11px 10px 9px 10px;
  white-space: nowrap;
  text-align: left;
  font-size: 135%;
  background: #386F1B;
}

.menu ul a.active {
	background: #50a125; 
}

/* style the top links hover */
.menu ul a:hover {
	background: #50a125; 
}

/* style the sub links */
.menu ul ul a, .menu ul ul a :visited, .menu .mnu_zt {
	width: 200px;
	font-size: 110%;
	padding: 4px 10px 4px 10px;
	background: #73b451;
}

.menu .mnu_zt {
	color: #fff;
  background: #386F1B;
	text-transform: uppercase;
	font-size: 100%;
}

/* style the sub links */
.menu ul ul a:hover {
	background: #50a125;
}

/* hide the sub level links */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
}

/* make the sub level visible on hover list or link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility: visible;
}

/* CSS Aufklapp-Menu -------------------- */
/* -------------------------------------- */
