/* DATEI: formats.css */

body { margin-top:10px; margin-bottom:10px; 
       scrollbar-face-color:blue;
       scrollbar-arrow-color:blue;
       scrollbar-track-color :grey }

/* margin-top = Abstand zwischen Fensterrand und Inhalt oben */
/* margin-bottom = Abstand zwischen Fensterrand und Inhalt unten */
/* 10px = 10 Pixel, Wert aenderbar */

h1 {color:#B84747;
    font-family:Helvetica,Arial;
           font-size:24pt;
           font-weight:bold;}

#headline {color:#B84747;
           font-family:Helvetica,Arial;
           font-size:24pt;
           font-weight:bold;
           background-color:lightyellow;padding:8px;}

a:link { color:#B84747; text-decoration:underline; }
a:visited { color:darkblue; text-decoration:underline; }
a:active { color:#000000; 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 */
/* #B84747 = rot */
/* #000000 = schwarz */
/* text-decoration = Tesxtstil */
/* underline = unterstrichen, Default-Wert */
/* none = nicht unterstrichen */

