/* DATEI: styles.css */

body { margin-top:10px; margin-bottom:10px; }
/* margin-top = Abstand zwischen Fensterrand und Inhalt oben */
/* margin-bottom = Abstand zwischen Fensterrand und Inhalt unten */

p,h1,h2,h3,h4,h5,ul,ol,li,div,td,th,address,blockquote,nobr,b,i
     {font-family: Arial, Helvetica, sans-serif;}
/* font-family = Schriftart fuer Textelemente */

h1 { font-size:18pt; }
/* font-size = Schriftgroesse */

h2 { font-size:16pt; }
/* font-size = Schriftgroesse */

h3 {  font-size:14pt;}
/* font-size = Schriftgroesse */

h4 { font-size:12pt; }
/* font-size = Schriftgroesse */

h5 { font-size:10pt; }
/* font-size = Schriftgroesse */

p,ul,ol,li,div,td,th,address,nobr,b,i {	font-size:10pt;	color:000000;}
/* normaler Text */
/* font-size = Schriftgroesse */

pre { font-family:Arial, Helvetica, sans-serif; font-size:10pt; color:#0000FF; }
/* Spezial-Text */
/* font-family = Schriftart */
/* font-size = Schriftgroesse */
/* color = Farbe */

a:link { color:#000000; text-decoration:underline; }
a:visited { color:#000000; text-decoration:underline; }
a:active { color:#000000; text-decoration:underline; }
/* a:link = Verweise zu noch nicht besuchten Seiten */
/* a:visited = Verweise zu bereits besuchten Seiten */
/* a:active = Verweise, die gerade angeklickt werden */
/* color = Farbe */
/* text-decoration = Tesxtstil */
