/* 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:blue;
     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; }

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

.navhead { font-family:Helvetica,Arial;
           font-size:14px;
           font-weight:bold;
           background-color:#FFFFFF; }

.linkbg { font-family:Helvetica,Arial;
           font-size:14px;
           font-weight:bold;
           background:'pics/backgd.jpg'; }

.navheadyellow { font-family:Helvetica,Arial;
                 font-size:14px;
                 font-weight:bold;
                 background-color:#FFFF00; }

.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:black; text-decoration:none;
         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 */
