/*
 * TML generic look - use this as a basis for the other
 * css pages. To add a background picture, new properties or
 * override existing properties, use one of the other css files
 * in this directory, for example:
 *
 * <LINK REL="STYLESHEET" HREF="/Css/tml.css">
 * <LINK REL="STYLESHEET" HREF="/Css/course.css">
 *
 * original by Miika Komu / Olli Rantapuska
 *
 * remember to validate this at http://jigsaw.w3.org/css-validator/
 * after each change!
 *
 * compatibility buglist (netscape refers to the non-mozilla version):
 * - font-size with BODY doesn't work out so good with netscape;
 *   netscape makes other tags (H1, CODE, ..) also smaller, so they
 *   would have to be declared later again
 * - browsers can render fonts at arbitrary sizes - forcing font sizes
 *   doesn't necessarily work, so we trust that the default font sizes
 *   are somewhat reasonable
 * - table font size doesn't work with netscape
 * - IMG { border-style: none } isn't included here because it doesn't
 *   work in netscape
 *
 * ChangeLog:
 * - 19.11.2000 initial version //mk
 */

A:link {
  color: #663399;
  background-color: transparent;
}

A:visited {
  color: #666666;
  background-color: transparent;
}

BODY {
  color: #000000;
  background-color: white;

  font-family: arial, geneva, helvetica, sans-serif;

  margin-top: 0px;
  margin-right: 150px;
  margin-bottom: 20px;
  margin-left: 140px;
}


