#menu {
	width: 100%;
	float: left;
	height: 20px;
}

#menu ul {
  list-style: none;
  margin: 0; padding: 0;
  width: 144px;
  float: left;
}

#menu a, #menu h2, #menu h3 /*schriftart des Hauptbuttons*/
{
	font: 11px/16px Arial, Helvetica, sans-serif;
	display: block;
	margin: 0;
	padding: 2px 2px; /*freibleibender Raum links und rechts der Schrift*/
	text-align: center;
	letter-spacing: 0.01em;
	font-weight: bold;
}


#menu h2 /*schriftfarbe des Hauptbuttons*/
{
	color: #ffffff;
	background: #006ab3;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E6E6E6;
}
#menu h3 {
	color: #ffffff;
	background: #E2001A;
	text-transform: uppercase;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E6E6E6;
}
/*Untermenüpunkte 1. Unterebene*/
#menu a {
	display: block;
	color: #ffffff;
	background: #006ab3;
	text-decoration: none;
	text-align: center;
	width: 139px; /*Breite des Kästchens. Obacht es wird breiter, als die Zahl hier angibt*/
	vertical-align: middle;
	border: 1px solid #E6E6E6;
}
/*Untermenüpunkte ROLLOVER 1. Unterebene*/
#menu a:hover {
	color: #ffffff;
	background: #0099FF;
}

#menu li {
	position: relative;
	width: 144px;
	float: left;
	height: auto;
	left: auto;
}
#menu li li {width: 144px; float: none; }

#menu ul ul {
	position: absolute;
	z-index: 500;
	width: 144px;
	background: yellow;
	margin-bottom: 0px;
	padding: 0;
}

#menu ul ul ul { position: absolute; top: 0; left: 144px; }

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul li.over ul ul,
div#menu ul ul li:hover ul ul,
div#menu ul ul li.over ul ul
  {display: none;}

div#menu ul li:hover ul,
div#menu ul li.over ul,
div#menu ul ul li:hover ul,
div#menu ul ul li.over ul,
div#menu ul ul ul li:hover ul
  {display: block;}
