/* Datei: Elke1.CSS */


/* Grundeinstellung: */
/* Textfarbe navy: */
/* Schrift: Arial, 12 pt: */
/* Textausrichtung: Blocksatz: */
BODY,  P, TD {
        color: Navy;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        text-align: justify;
        vertical-align: text-top;
        background-color: Silver;
        scrollbar-face-color: Silver;
        scrollbar-highlight-color: navy;
        scrollbar-3dlight-color: blue;
        scrollbar-darkshadow-color: navy;
        scrollbar-track-color: navy;
        scrollbar-arrow-color: navy;
}
/* Textausrichtung: centriert: */

re {
        text-align: right;
        /* Textausrichtung: rechts: */
}

/* Textausrichtung: centriert: */
ce {
        text-align:center;
}


li {
        text-align : left;
}

.mid {
        vertical-align: middle;
}




.top {
        vertical-align: top;
}

/* Links */
/* Schrift: kurisv, fett: */
A {
        font-style: italic;
        font-weight: bold;
        text-align: left;
        text-decoration: none;
        background-color: transparent;
        color: Navy;
}
/* Links beim Überfahren mit der Maus */
A:Hover {
        color: silver;
        font-style: italic;
        font-weight: bold;
        background-color: Navy;
}


/* Wie Grundeinstellung nur fett und zentriert */
H1 {
        font-size: 12pt;
        font-weight : bold;
        text-align: center;
        padding : 3px 3px 3px 3px;
}

/* wie Grundeinstellung nur fett, linksbündig */
H2 {
        font-size: 12pt;
        font-weight : bold;
        text-align : left;
}
/* Größe 16 pt, zentriert */
H3 {
        font-size: 16pt;
        text-align: center
}
/* Größe 24 pt, zentriert */
H4 {
        font-size: 25pt;
        text-align: center
}

/* Linien, Farbe: navy */
HR {
        height: 3pt;
        color: navy;
}