/*
Written by Ulf Milanese, umi@informatik.uni-kiel.de
Changes:
17.07.2000: Inserting comments
18.09.2000: Correcting some errors
11.10.2000: Tags for DL, DT, B inserted
13.10.2000: Generic Fonts included
15.05.2001: Links are not underlined (Requested by Thomas Wilke)
20.06.2001: Tag for TH inserted
21.06.2001: All tags are now collected in one line
11.07.2001: Tag DIV inserted
13.07.2001: Tag ADDRESS inserted
03.09.2001: Tags for typewriter fonts included
02.11.2001: Font arial deleted, because arial for Unix sucks
07.11.2001: Classes headline, footer, headings, odd and even inserted
*/

/* All fonts must be Helvetica */
a, address, b, body, div, dl, dt, em, h1, h2, h3, i, li, ol, p, td, th, ul {
  font-family: helvetica, sans-serif
}

/* All typewriter fonts should be printed as typewriter */
pre, tt, code, kbd, samp
{
  font-family: monospace
}

/* Use always a white background */
body {
  background: white;
  color: black;
}

/* All links are shown without underscore */
a:visited, a:link, a:active {
  text-decoration: none;
}

/* Headlines: Large, white font on blue background */
.headline {
  font-size: large;
  font-weight: bold;
  color: white;
  background-color: blue;
}

/* Footer: Large, black font on red background */
.footer {
  font-size: x-large;
  font-weight: bold;
  color: black;
  background-color: red;
}

/* Heading: lightblue background */
.heading {
  font-size: 150%;
  font-weight: bold;
  background-color: #d9d9ff;
  color: black;
}

/* In tables: all odd rows with lightyellow background */
.odd {
  background-color: #ffffcc;
  color: black;
}

/* In tables: all even rows with white background */
.even {
  background-color: white;
  color: black;
}


