/* style the outer div to give it width */
.menu {
	width:760px;
	font-size:0.85em;/*padding-bottom:200px;*/
	/*margin-bottom:31px;*/
	padding-bottom:5px;
	height:30px;
	
}
/* remove all the bullets, borders and padding from the default list styling */

.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width:108px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:108px; /*Firefox BOX Normal Link kleiner*/
	position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#818181;
	width:108px; /*von 139 auf 125 angepasst*/
	height:30px;
	border:1px solid #fff;
	border-width:1px 1px 0 0;
	background:#ffffff;
	padding-left:10px;
	line-height:29px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:108px; /*von 150 auf 125 angepasst*/
	w\idth:97px; /*von 139 auf 104 (differenz 11) angepasst*/
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#adafb4;
}
/* style the second level hover */
.menu ul ul a.drop:hover {
	background:#adafb4;
}
.menu ul ul :hover > a.drop {
	background:#adafb4;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:31px;
	left:0;
	width:108px; /* angepasst von 150 auf 108*/
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:30px;
	t\op:31px;
}
/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0;
	left:0;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#adafb4;
	color:#fff;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:87px; /* von 129 auf 104 angepasst*//* yet another hack for IE5.5 */
}
* html .menu ul ul a {
	width:108px; /*von 150 auf 125 angepasst*/
	w\idth:87px; /*von 129 auf 125  (21 differzenz)angepasst*/
}
/* style the top level hover */
.menu a:hover {
	color:#000;
	background:#fff;
}
.menu ul a:hover {
	color:#000000;
	background:ffffff;
}
.menu ul ul li a:hover {
	color:#000000;
	background:adafb4;
}
.menu :hover > a {
	color:#000;
	background:#fff;
}
.menu ul ul :hover > a {
	color:#fff;
	background:#adafb4;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible;
}
