/* Schriftart für die Dokumentinhalte */

body {
font-family: Arial;
margin: 0px;
}

/* Absätze, Tabellen, Auflistungen, Formulare in 10 Punkt */

p, div, table, li, form  {
font-size: 10pt;
 font-family: Arial;
}

/* Überschrift 1, 30 Punkte */
h1 {
font-family: Arial;
color: gray;
font-size: 30pt;
} 

/* Überschrift 2 und 3 blau, 12 Punkte */
h2, h3 {
font-family: Arial;
color: #000066;
font-size: 12pt;
} 

/* Fette Abschnitte rot */
b {
color: red; 
} 

/* Kursive Abschnitte blau */
i {
color:  #000099; 
} 

/* Link-Stile  */
a:link {
color: #000099; 
} 

a:hover {
text-decoration : none; 
color: red; 
} 

a:active {
color: black; 
} 

a:visited {
color: gray; 
}

/* DIV Abschnitt */
div.rand {
width: 700px; 
padding: 10px; 
border-left-width: 8px;
background-color: white;
text-align: justify;
}
