
/* Calender Design Einstellungen */

  /* das div Tag, das den Kalender umschliesst */
  .calender {
    border-style:outset;
    border-width:1px;
    color:black;
    background:white;  /* Achtung: wenn kein Background angegeben ist, wird der Kalender durchsichtig dargestellt */
  }

  /* die komplette Kalender Tabelle */
  .caltable {
    font-size:10pt;
  }

  /* die Darstellung der Navigationzeile im Kalender */
  .calnavy {
    background:silver;
    text-decoration:none;
    color:black;
  }

  .calnavy a:visited {
    text-decoration:none;
    color:black;
  }

  .calnavy a:hover {
    text-decoration:underline;
    color:black;
  }

  .calnavy a:link {
    text-decoration:none;
    color:black;
  }

  .calnavy a:active {
    text-decoration:none;
    color:black;
  }

  /* Wochentagsnamen, die im kopf des Kalenders stehen */
  .caldayname {
    background:silver;
    text-decoration:none;
    color:black;
  }

  /* Samstag und Sonntag und Feiertage */
  .calweekend {
    color:orange;
    text-decoration:none;
  }

  .calweekend a:visited {
    color:red;
    text-decoration:none;
  }

  .calweekend a:hover {
    color:red;
    text-decoration:underline;
  }

  .calweekend a:link {
    color:red;
    text-decoration:none;
  }

  .calweekend a:active {
    color:red;
    text-decoration:none;
  }

  /* Betriebsferien */
  .calholiday {
    color:orange;
    text-decoration:none;
  }

  /* Tag liegt nicht im aktuellen Monat */
  .calothermonth {
    color:silver;
    text-decoration:none;
  }

  .calothermonth a:visited {
    color:silver;
    text-decoration:none;
  }

  .calothermonth a:hover {
    color:silver;
    text-decoration:underline;
  }

  .calothermonth a:link {
    color:silver;
    text-decoration:none;
  }

  .calothermonth a:active {
    color:silver;
    text-decoration:none;
  }

  /* Normaler Tag */
  .calnormalday {
    text-decoration:none;
    color:black;
  }

  .calnormalday a:visited {
    text-decoration:none;
    color:blue;
  }

  .calnormalday a:hover {
    text-decoration:underline;
    color:blue;
  }

  .calnormalday a:link {
    text-decoration:none;
    color:blue;
  }

  .calnormalday a:active {
    text-decoration:none;
    color:blue;
  }