
* {
margin: 0;
padding: 0;
}

#menu {
width: 140%;
padding: 1px;
font-family: Verdana;
font-size: 0.8em;
line-height: 1.5;
float: left;
}

#menu ul {
float: left;
width: 120px;
list-style-type: none;
padding: 1px;
}

/*--definiert die Blocküberschriften--*/
#menu h3 {
font-size: 	.9em; 			/*--  1em; 14px;--*/
text-align: center;
color: #000;
border: 1px solid white;
border-radius: 15px;
background: #ff8080;
}

/*--definiert die "Drop-Down-Links" im Normalzustand--*/
#menu a {
text-decoration: none;
display: block;
border: 1px solid white;
border-radius: 10px; 
text-align: center;
background: #FD9568;				/*  ???? #ff9224;*/
color: #003366;
}

/* Farbe besuchter Links */
#menu a:visited {
	background: lightpink;  /*  light coral  */
}


/*--definiert die "Drop-Down-Links" im Hoverzustand--*/
#menu a:hover {
color: #ff9224;
background: #003366;	
}

/*verhindert im Zusammenhang mit position absolute bei ul ul
*eine Höhenvergrößerung von #menu beim Hovern--
*/

#menu li {
position: relative;
}

/*--versteckt die "Drop-Down-Links", solange nicht gehovert wird--*/
#menu ul ul {
position: absolute;
z-index: 2;
display: none;
font-size: 0.85em;			/*  >>>>   downsizing dropdown links */
}

/*--lässt die Dropdown-Links beim Hovern erscheinen--*/
#menu ul li:hover ul {
display: block;
}

/*--nur für IE-Versionen kleiner gleich 6 erkennbar--*/
* html #menu ul li{
float: left;
width: 100%;
}

/*--nur für IE 7 erkennbar--*/
*+ html #menu ul li {
float: left;
width: 100%;
}

/*--bewirkt Hover-Effekt für IE kleiner 7 auch für ul- und li-Elemente--*/
*html body {
behavior: url(csshover3-source.htc);
font-size: 100%;
}

*html #menu ul li a {
height: 1%;
}

/*--definiert einen Einzellink im Normalzustand, wenn kein Drop-Down erforderlich--*/

#menu a.direkt:link {
font-size: 0.9em;
font-weight: bold;
text-align: center;
color: #000;
border: 1px solid #003366;
border-radius: 15px;					/*  new  */
background: #ff8080;					/*  #ff9224;  */
}

/*--definiert einen Einzellink im Hoverzustand, wenn kein Drop-Down erforderlich--*/

#menu a.direkt:hover {
color: #ff9224;
background: #003366;
border: 1px solid #ccc;
}
