/*
 * Navigation vertical
 */

ul#Navigation {
    width: 15em;
    margin: 0; padding: 0.2em 0.2em 0.2em;
    border: 0px solid black;
    background-color: white;
    font-size: 14px;
}
* html ul#Navigation {  /* Korrekturen fuer IE 5.x */
    width: 11.6em;
    width: 10em;
    padding-left: 0;
    padding-left: 0.2em;
}
ul#Navigation li {
    list-style: none;
    margin: 0.4em; padding: 0;
}

ul#Navigation a, ul#Navigation span {
    display:block;
    padding: 0.2em;
    text-decoration: none; font-weight: bold;
    border: 1px solid black;
    border-left-color: white; border-top-color: white;
    color: navy; background-color: white;
}
* html ul#Navigation a, * html ul#Navigation span {
    width: 100%;    /* Breitenangabe fuer IE 5.x */
    width: 8.2em;  /* Breitenangabe fuer IE 6 */
}
ul#Navigation a:hover, ul#Navigation span {
    border-color: white;
    border-left-color: black; border-top-color: black;
    color: white; background-color: #0057b9;
}


/*
 * Navigation horisontal
 */

ul#Navigation_h {
    margin: 0; padding: 0.8em;
    text-align: center;
    border: 0px solid black;
    background-color: white;
    font-size: 13px;
}
ul#Navigation_h li {
    list-style: none;
    display: inline;
    margin: 0.1em; padding: 0;
}

ul#Navigation_h a, ul#Navigation_h span {
    padding: 0.2em 1em;
    text-decoration: none; font-weight: bold;
    border: 1px solid black;
    border-left-color: white; border-top-color: white;
    color: navy; background-color: white;
}
  * html ul#Navigation_h a, * html ul#Navigation_h span {
    width: 1em;   /* nur fuer IE 5.0x erforderlich */
    width: auto;  /* sicherheitshalber fuer IE 6 zurueckgesetzt */
}
ul#Navigation_h a:hover, ul#Navigation_h span {
    border-color: white;
    border-left-color: black; border-top-color: black;
    color: white; background-color: #0057b9;
}





