body {                                                                               
  font-family: Verdana, Arial, Helvetica, sans-serif;                                /* Schriftart im gesamten Dokument */
  }
p, div, table, li, form {                                                            /* Absätze, DIVs, Tabellen, Listen, Formulare in 10 Punkt */
  font-size: 10pt;
}       
h1 {                                                                                 /* Hintergrundfarbe grau mit weißer Schrift */
background-color: gray;
color: white;
}          
h2, h3 {                                                                             /* Überschrift 2 und 3 blau färben */
color: rgb(0,0,153);
}
b {                                                                                   /* fette Passagen rot färben */
color: red;
}
i {                                                                                   /* kursive Passagen blau färben */
color: rgb(0,0,153);
}
a:link {                                                                              /* Link-Stile für Hover-Links */
color: rgb(0,0,153)
}
a:visited {
color: gray;
}
a:hover {
text-decoration: none;
color: red;
} 
a: active {
color: black;
}