/* DATEI: formats.css */

body { margin-top:10px; margin-bottom:10px;}

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

h1 {color:red;
    font-family:Helvetica,Arial;
           font-size:24px;
           font-weight:bold;}

h2 {font-family:Helvetica,Arial;
           font-size:20px;
           font-weight:bold;}

h3 {font-family:Helvetica,Arial;
           font-size:16px;
           font-weight:bold;}

p,td,tr,ul {font-family:Helvetica,Arial;
           font-size:12px;
           font-weight:normal;}

.nav {font-family:Helvetica,Arial;
           font-size:12px;
           font-weight:normal;
           text-align:center;
           background-color:#FFFFFF;}

.last {font-family:Helvetica,Arial;
           font-size:10px;
           font-weight:normal;
           background-color:#FFFFFF;}

.normal {font-family:Helvetica,Arial;
           font-size:12px;
           font-weight:normal;}

#headline2 {color:blue;
            font-family:Helvetica,Arial;
            font-size:24px;
            font-weight:bold;}

#names {color:#00A000;
            font-family:Helvetica,Arial;
            font-size:14px;
            font-weight:bold;}

a:link { color:blue; text-decoration:none; }
a:visited { color:blue;  text-decoration:none;}
a:hover{ color:red; text-decoration:none;
         font-weight:bold; background-color:#FFFF00; }
a:active { color:#FFFF00; 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 = Textstil */
/* underline = unterstrichen, Default-Wert */
/* none = nicht unterstrichen */
