/* DATEI: doccformate.css */

p,h1,h2,h3,h4,ul,ol,li,div,td,th,address,blockquote,nobr,b,i
     { font-family:Arial,Helvetica; }

/* font-family = Schriftart fuer Textelemente auf Arial gesetzt, 
wenn nicht vorhanden dann Helvetica */

p { font-size:22px; }

/* Schriftgroesse fuer normale Absaetze auf 24px */

.white { color:#ffffff; font-size:27px; }
.black { color:#000000; }

/* Schriftfarbe der class "or" auf orange */

.mittel2 { font-size:18px; }

.mittel,ul,li { font-size:14px; }

/* Schriftgroesse der class "mittel2" auf 18px und "mittel", "ul" und "li" auf 14px */

.klein { font-size:12px; }

/* Schriftgroesse der class "klein" auf 12px */

a:link { color:#000000; text-decoration:none; }
a:visited { color:#000000; text-decoration:none; }
a:active { color:#000000; text-decoration:none; }
a:hover { color:#f76617; text-decoration:none; }

/* a:link = Verweise zu noch nicht besuchten Seiten */
/* a:visited = Verweise zu bereits besuchten Seiten */
/* a:active = Verweise, die gerade angeklickt werden */
/* color = Farbe */
/* text-decoration = Tesxtstil */
/* none = nicht unterstrichen, Wert aenderbar */
/* font-weight = Schriftgewicht, hier fett */
