/* allg. Linkfarben (Inhaltsbereich + angezeigte Untermenues) */
a:link { color: #0000aa; text-decoration: none; } /* unbesuchter Link: blau, nicht unterstrichen */
a:visited { color: #0000aa; text-decoration: none; }  /* besuchter Link: blau, nicht unterstrichen */
a:hover   { text-decoration: underline;}        /* bei MouseOver: unterstrichen */
a:active  { text-decoration: none; } /* Link, wenn er angeklickt wird: nicht unterstrichen */

/* Farbe (der Unterstreichungen) von Haupt- und Untermenues
   wenn keine Angabe, wuerden diese blau unterstrichen werden */
a.aktmenueover:hover        /* aktives Menue */
{
        text-decoration: underline;
        color : #ccccff;        /* helles Blau = Farbe des aktiven Menues */
}
a.menueover:hover                /* nicht aktive Menues */
{
        text-decoration: underline;
        color : #ffffff;
}

/* Haupt-, Untermenues: u.a. weisser Text */
.menue { color: #ffffff; font-size: 15pt; line-height: 16pt;}
.aktmenue { color: #ccccff; font-size: 13pt; line-height: 16pt; }
.aktuntermenue { color: #000066; font-size: 13pt; line-height: 14pt; font-weight: bold;}

body, td, textarea, p
{
        font-family: "Verdana", "Arial", "Helvetica", sans-serif;
        font-size: 11pt;
        color: #000000;
        scrollbar-arrow-color: #ffffff;         /* farbige Scrollbars unter IE > 5, Win */
        scrollbar-base-color: #6666cc;
}

body        /* Hintergrundfarbe: helles Blau */
{
        background-color: #ccccff;
}

.fett  { font-weight: bold; }                        /* z.B. fuer Datum, Hervorhebungen etc. */
.titel { font-weight: bold; font-size: 14pt; line-height: 18pt; }        /* Ueberschrift auf Inhaltsseites */
.fusszeile { font-size: 8pt; line-height: 12pt;  }
.hierarchie { font-size: 9pt; line-height: 10pt; }
.hidden {color: #ccccff; font-size: small; text-decoration: none; }