/* ----------------------------------------------------- */

/* -- GLOBALES DOKUMENT STYLE               -- */
/* -- (in einer tabelle und außerhalb) -- */

/* schriftformatierung des kompletten dokuments (außerhalb von tabellen) */
body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* schriftformatierung innerhalb von tabellen */
td {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size  : 12px;
  LINE-HEIGHT: 14px;
}

/* ----------------------------------------------------- */

/* -- DETAILIERTERE FORMATIERUNGSSTYLES               -- */
/* -- (textblöckt, mouseover, imagebordercolor, etc.) -- */


      /* Formatierung fürs Menü */
      .menutext  {
                font-family: Verdana, Arial, Helvetica, sans-serif;
                font-size  : 15px;
                LINE-HEIGHT: 18px;
                text-align: center;
                color: black;
                font-weight: bold;
      }

      /* Formatierung fürs den Haupttext */
      .haupttext {
                font-family: Verdana, Arial, Helvetica, sans-serif;
                font-size  : 10px;
                LINE-HEIGHT: 14px;
                padding-right: 30px;
                padding-left:30px;
                padding-bottom: 26px;
                padding-top: 26px;
      }

      /* Formatierung fürs den Haupttext */
      .haupttext2 {
                font-family: Verdana, Arial, Helvetica, sans-serif;
                font-size  : 10px;
                LINE-HEIGHT: 14px;
      }      
      
      /* Mouseoverformatierung für Menüpunkte (wenn nicht mouseover!! ) */
      .mouseover {
                text-decoration: none;
                color: black;
      }
      /* Mouseoverformatierung für Menüpunkte (wenn mouseover!! ) */
      .mouseover:hover {
                color: #D49B00;
                text-decoration: underline;
      }

      /* Schwarzer Rahmen für Bilder */
      .blackimgborder  {
                border-color: #000000;
      }

      /* Schwarzerlink */
      .blacklink {
                color: #000000;
      }

      /* Überschriftenformatierung */
      .headline  {
                font-family: Verdana, Arial, Helvetica, sans-serif;
                font-size  : 14px;
                LINE-HEIGHT: 25px;
      }

      /* Tabellenrahmen */
      .tableborder {
                border-bottom: 1px solid  black;
                border-top: 1px solid  black;
                border-left: 1px solid  black;
                border-right: 1px solid  black;
      }

/* ------------------------------------------------------ */

/* -- "mousover" MENÜPUNKT MIT KASTEN UM DEN MENÜPUNKT -- */
/* -- (kasten und schriftstyle)                        -- */

/* standart style */
A.menue {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size  : 16px;
    font-weight: bold;
    border-bottom: 1px dashed black;
    padding-right: 16px;
    padding-left:16px;
    padding-bottom: 6px;
    display: block;
    color: white;
    padding-top: 6px;
    white-space: nowrap;
    background-color: #0000ff;
    text-decoration: none;
}
/* link style */
A.menue:link {
    padding-right: 16px;
    padding-left:16px;
    padding-bottom: 6px;
    display: block;
    color: white;
    padding-top: 6px;
    white-space: nowrap;
    background-color: #0000ff;
    text-decoration: none;
}
/* "wenn drauf geklickt wurde" style */
A.menue:active {
    padding-right: 16px;
    padding-left:16px;
    padding-bottom: 6px;
    display: block;
    color: white;
    padding-top: 6px;
    white-space: nowrap;
    background-color: #0000ff;
    text-decoration: none;
}
/* "wenn schon mal geklickt" style */
A.menue:visited {
    padding-right: 16px;
    padding-left:16px;
    padding-bottom: 6px;
    display: block;
    color: white;
    padding-top: 6px;
    white-space: nowrap;
    background-color: #0000ff;
    text-decoration: none;
}
/* "mouseover" style */
A.menue:hover {
    color: red;
    background-color: yellow;
    border-bottom: 1px solid yellow;
}

/* ----------------------------------------------------- */