div#menubar {
	/*min-width: 600px;*/
	width: 750px;
	margin: 0 175px 0 0;
   /*padding: 0.8em;*/
   padding: 0.6em 0;
   /*background-color: silver;*/
   background-image:url(pix/bg2.jpg);
	z-index: 100;
}

div#menubar * {
	z-index: 100;
}

/* Korrektur fuer IE 5.x */
/** html div#menubar {  
    width: 48.7em;
    w\idth: 47.1em;
}*/

div#menubar div {
    clear: left;
}

ul#menu {
    margin: 0;
    padding: 0.2em 0;
    text-align: left;
}

ul#menu li {
    list-style: none;
    float: left;  /* ohne width - nach CSS 2.1 erlaubt */
    position: relative;
    margin: 0;
    margin-top: -0.8em;
    padding: 0 0 0.7em 0;
	white-space: nowrap;
	/*overflow: hidden;*/
}

/* Korrektur fuer den IE 5 und 6 */
/** html ul#menu li {  
    margin-bottom: -0.4em;
}*/

/* Korrektur fuer den IE 7 */
/**:first-child+html ul#menu li {  
    margin-bottom: -0.1em;
}*/

ul#menu li ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 1.8em;
    left: 0;
    display: none;  /* Unternavigation ausblenden */
    /*border: 2px ridge #a8bad2;*/
    border: 2px outset #a8bad2;
}

/* Korrektur fuer IE 5.x */
/** html ul#menu li ul {  
    left: -1.5em;
    lef\t: -0.4em;
}*/

/* Workaround fuer den IE 7 */
/**:first-child+html ul#menu ul {  
    background-color:silver;
    padding-bottom:0.4em;
}*/

ul#menu li:hover ul {
    display: block;  /* Unternavigation in modernen Browsern einblenden */
}

ul#menu li ul li {
    float: none;
    display: block;
    /*margin-top: -0.2em;
    margin-bottom: 0.2em;
    margin-bottom: 0;*/
    margin: -0.2em 0 0 0;
    padding: 0;
	overflow: hidden;
}

ul#menu li ul li a {
	font-weight: normal;
	padding: 0.5em;
}

ul#menu a, ul#menu span {
    display: block;
    width: 175px;  /* Breite den in li enthaltenen Elementen zuweisen */
    padding: 0.2em 0.5em;
    text-decoration: none;
    font-weight: bold;
    border: 0;
    color: #000077;
    /*background-color: silver;*/
    background-image:url(pix/bg2.jpg);
}

/* 1. Wert: Breite nach altem MS-Boxmodell fuer IE 5.x */
/* 2. Wert: korrekte Breite fuer den IE 6 im standardkompatiblen Modus */
/** html ul#menu a, * html ul#menu span {
    width: 8.6em;
    w\idth: 6.4em;
}*/

ul#menu a:hover, ul#menu span, li a#current {
    color: white;
    background-color: silver;
}

li a#current {  /* aktuelle Rubrik kennzeichnen */
    color: white;
    background-color: silver;
}

ul#menu li ul span {  /* aktuelle Unterseite kennzeichnen */
    background-color: white;
    color: black;
}

