/*--gew&auml;hrleistet einheitliche Abst&auml;nde in unterschiedlichen Browsern--*/
#adminmenu * {
margin: 0;
padding: 0;
z-index: 99999;
}

/*--definiert den Hintergrundbalken der Navi und einige allgem. Angaben--*/
#adminmenu {
position: fixed;
left: 50%;
z-index: 99999;
top: 2px;
margin-left: -490px;
width: 540px;
padding: 0;
background: #ff6600;
font-family: Verdana;
font-size: 1em;
line-height: 1.4; /*--bewirkt eine vertikale Textzentrierung--*/
float: left; /*--nimmt die Navileiste aus dem "Fluss", verhindert float-/clear-Probleme der ul--*/
}

/*--definiert die einzelnen Navigationsbl&ouml;cke--*/
#adminmenu ul {
float: left;
width: 180px;
list-style-type: none;
}

/*--definiert die Block&uuml;berschriften--*/
#adminmenu h3 a {
font-size: 0.6em;
text-align: center;
color: #ffffff;
border: 0;
border-right: 1px solid #000000;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
background: #ff6600;
height: 1.6em;
padding-top: 3px;
}

#adminmenu h3 a.first {
border-left: 1px solid #000000;
}

/*--definiert die "Drop-Down-Links" im Normalzustand--*/
#adminmenu a, #adminbundle a {
font-size: 0.7em;
text-decoration: none;
display: block;
border: 1px solid #000000;
text-align: left;
background: #dddddd;
color: #000000;
}

#adminmenu ul li ul li a, #adminbundle a  {
padding: 5px 6px 5px 6px;
}

/*--definiert die "Drop-Down-Links" im Hoverzustand--*/
#adminmenu a:hover {
font-weight: bold;
}

/*--versteckt die "Drop-Down-Links", solange nicht gehovert wird--*/
#adminmenu ul ul {
position: absolute;
width: 180px;
z-index: 2;
display: none;
}

#adminmenu li {
position: relative; /*verhindert im Zusammenhang mit pos. absolute bei ul ul eine H&ouml;henvergr&ouml;&szlig;erung von #menu beim Hovern--*/
}

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

/*--definiert einen Einzellink im Normalzustand, wenn kein Drop-Down erforderlich--*/
#adminmenu a.direkt:link {
font-size: 1em;
font-weight: bold;
text-align: center;
color: #000;
border: 1px solid #003366;
background: #ff8000;
}

/*--definiert einen Einzellink im Hoverzustand, wenn kein Drop-Down erforderlich--*/
#adminmenu a.direkt:hover {
color: #ff9224;
background: #003366;
border: 1px solid #ccc;
}

/*--nur f&uuml;r IE-Versionen &lt;=6 erkennbar--*/
* html #adminmenu ul li {
float: left;
width: 100%;
}

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

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

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

#adminbundle {
  font-size: 100%;
  width: 11em;
  float: right;
  margin: 0 0 2em 0;
}
#adminbundle a {
  font-size: 0.9em;
}