/* Cascading Style Sheets für Rechenaufgaben (RÜPEL) */
/* Letzte Änderung: 2010-03-31                       */

body {                                 /* Gesamte Seite */
  background-color:white;              /* Hintergrund weiß */
  }

h1 {                                   /* Überschrift */
  background-color:yellow;             /* Hintergrund gelb */
  border-style:solid;                  /* Rand durchgezogen */
  border-width:8pt;                    /* Randbreite 8 pt */
  border-color:blue;                   /* Rand blau */
  padding:5pt;                         /* Innenabstand 5 pt */
  text-align:center;                   /* Text zentriert */
  font-family:Arial,Helvetica,sans-serif; /* Zeichensatz  */
  font-size:18pt;                      /* Schrifthöhe 18 pt */
  font-weight:bold;                    /* Fettdruck */                
  }
  
h2 {
  font-family:Arial,Helvetica,sans-serif;
  }

p {                                    /* Absatz */
  font-family:Arial,Helvetica,sans-serif;   /* Zeichensatz */
  font-size:12pt;                      /* Schrifthöhe 12 pt */
  font-weight:normal;                 
  }

ul {                                   /* Ungeordnete Liste */
  font-family:Arial,Helvetica,sans-serif;
  font-size:12pt;
  font-weight:normal;
  }

ol {                                   /* Geordnete Liste */
  font-family:Arial,Helvetica,sans-serif;
  font-size:12pt;
  font-weight:bold;
  }

div.Abstand {                          /* Vertikaler Zwischenraum */
  height:10pt;                         /* Höhe 10 pt */
  }

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 */
  }

/* Tabellen */

table.normal {
  font-family:Arial,Helvetica,sans-serif;
  font-weight:normal
  }

table.Beschreibung {
  width:80%;
  background-color:#000000;
  }

tr.Beschreibung {
  background-color:#80ff00;
  }

td.Beschreibung {
  font-family:Arial,Helvetica,sans-serif;
  font-weight:normal;
  vertical-align:top;
  padding:2pt;
  }

table.Anweisung {
  width:80%;
  background-color:#ffff00;
  border-style:solid;
  border-width:5pt;
  border-color:#ff0000;
  padding:2pt;
  }

tr.Anweisung {
  background-color:#ffff00;
  }

td.Anweisung {
  font-family:Arial,Helvetica,sans-serif;
  font-size:12pt;
  font-weight:normal;
  }

table.Uebersicht {
  background-color:#000000;
  }

tr.Uebersicht {
  background-color:#80ff00;
  }

td.Uebersicht {
  font-weight:normal;
  vertical-align:top;
  padding:2pt;
  }

td.zurueck {
  font-weight:normal;
  text-align:center;
  }

table.Download {
  width:100pt;
  background-color:#ffff00;
  border: solid 4pt #ff0000;
  }

td.Download {
  font-family:Arial,Helvetica,sans-serif;
  font-weight:bold;
  padding:4pt;
  text-align:center;
  }

hr.Trennlinie {                        /* Trennlinie */
  width:40%;
  border-bottom:solid thin blue;
  }
