/* DATEI: style.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 */
/******************************************************************************/

p,h1,h2,h3,h4,ul,ol,li,div,td,th,address,blockquote,nobr,b,i { font-family:Verdana, Arial, helvetica, sans-serif; color:#202090; }
h1                                                           { font-size:16px; }
h2                                                           { font-size:15px; }
h3                                                           { font-size:14px; }
h4                                                           { font-size:13px; }
p,ul,ol,li,div,td,th,address,nobr,b,i                        { font-size:12px; }

/******************************************************************************/

pre { font-family:Courier New,Courier; font-size:10pt; color:#000000; }
/* Quelltext-Beispiele */

/******************************************************************************/

tt { font-family:Courier New,Courier; font-size:10pt; color:#000000; }
/* Quelltext-Befehle im normalen Fliesstext */

/******************************************************************************/

pre.normal { color:#000000; }
/* normale praeformatierte Bereiche, nicht fuer Quelltexte */

/******************************************************************************/

a:link    { color:#202090; text-decoration:underline;      font-weight:bold;}
a:visited { color:#202090; text-decoration:underline;      font-weight:bold;}
a:active  { color:#202090; text-decoration:underline bold; font-weight:bold;}
a:hover   { color:#202090; text-decoration: underline;     font-weight:bold; background-color: #D0D0F0;}

/* a:link = Verweise zu noch nicht besuchten Seiten */
/* a:visited = Verweise zu bereits besuchten Seiten */
/* a:active = Verweise, die gerade angeklickt werden */

/******************************************************************************/