/* Cascading Style Sheets für Download-Seiten */
/* Letzte Änderung: 2012-08-24                */

body {                                      /* Gesamte Seite */
  background-color:white;                   /* Hintergrund weiß */
  font-family:Arial,Helvetica,sans-serif;   /* Serifenlose Schrift */
  font-size:12pt;                           /* Schrifthöhe 12 pt */
  font-weight:normal;                       /* Schrift normal */
  }
  
h2 {
  font-family:Arial,Helvetica,sans-serif;   /* Serifenlose Schrift */
  font-size:14pt;                           /* Schrifthöhe 14 pt */
  font-weight:bold;                         /* Fettdruck */
  padding:10pt;                             /* Innenabstand 10 pt */
  }

p {                                         /* Absatz */
  font-family:Arial,Helvetica,sans-serif;   /* Serifenlose Schrift */
  font-size:12pt;                           /* Schrifthöhe 12 pt */
  font-weight:normal;                       /* Schrift normal */
  }

a:link {                                    /* Link (noch nicht besucht) */
  color:blue;                               /* Farbe blau */
  }

a:visited {                                 /* Link (schon besucht) */
  color:blue;                               /* Farbe blau */
  }

a:hover {                                   /* Mauszeiger über dem Link */
  color:#ff0000;                            /* Farbe rot */
  text-decoration:underline;                /* Text unterstrichen */
  }

td.TitelLinks {
  background-color:#ffff00;                 /* Hintergrund gelb */
  padding:10pt;                             /* Innenabstand 10 pt */
  }

td.TitelRechts {
  background-color:#0000ff;                 /* Hintergrund blau */
  color:#ffffff;                            /* Schriftfarbe weiß */
  font-size:16pt;                           /* Schrifthöhe 16 pt */
  font-weight:bold;                         /* Fettdruck */
  }
  
table.Liste {
  background-color:#ffff00;                 /* Hintergrundfarbe gelb */
  border-collapse:collapse;                 /* Zusammenfallende Ränder */
  }
  
tr.Kopfzeile {
  font-weight:bold;                         /* Fettdruck */
  background-color:#80ff40;                 /* Hintergrundfarbe hellgrün */
  }
  
 
td.Liste {
  border-style:solid;                       /* Rand durchgezogen */
  border-width:2px;                         /* Randdicke 2 px */
  border-color:#000000;                     /* Randfarbe schwarz */
  padding:5px;                              /* Innenabstand 5 px */
  }

