/* Schriftart im gesamten Dokument */
body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* Absätze, DIVs, Tabellen, Listen, Formulare in 10 Punkt */
p, div, table, li, form  {
  font-size: 10pt; 
}

/* Hintergrundfarbe grau mit weißer Schrift */
h1 {
  background-color: gray;
  color: white;
} 

/* Überschrift 2 und 3 weiß färben */
h2, h3 {
  color: #FFFFFF; 
} 

/* fette Passagen weiß einfärben */
b {
  color: #FFFFFF; 
} 

/* kursive Passagen weiß färben */
i {
  color:  #FFFFFF; 
} 

/* Link-Stile für Hover-Links  */
a:link {
	color: #009900;
	text-decoration: none;
} 

a:visited {
	color: #009900;
	text-decoration: none;
}

a:hover {
  text-decoration : none; 
  color: #FF6600; 
} 

a:active {
  color: #CCCCCC; 
}