/*CSS für Menü*/

/*Schriftart Reihenfolge definieren
  body       = body Text
  a          = Links
  table, td, tr = Tabelle
  ul, li     = Aufzählung, Liste
  p          = Textabsätze
  div        = Allgemeines Block Element mit Ausrichtung
  span       = Inneres Element
  h1, h2, h3 = Überschriften*/

/*Schriftart definieren*/
body, a, table, td, tr, ul, li, p, div, span, h1, h2, h3 {font-family: Verdana, Arial, Helvetica, sans-serif}

/*Schrift Grössen definieren*/
body, a, table, td, tr, ul, li, p, div, span {font-size: 14px}
h1 {font-size: 25px}
h2 {font-size: 22px}
h3 {font-size: 18px}

/*Schriftfarbe definieren*/
body, table, td, tr, ul, li, p, div, span, h1, h2, h3 {color: #FFFFFF}

/*Hintergrundfarbe definieren*/
body {background-color: #336699}

/*Ersatzfarben
body {background-color: #93BEE2}
body {background-color: #336699}*/

/*Farbe der Links definieren*/
a:link  {color: #FFFFFF; text-decoration: none}
a:hover {color: #FF7F00; text-decoration: none}
a:visited {color: #FF7F00; text-decoration: none}
