/*
 * This is a minimalistic CSS stylesheet that only contains
 * very basic stylesheet definitions that are even understood by
 * Netscape 4, Internet Explorer 4 and other old browsers with
 * basic CSS support.
 * All the more sophisticated style definitions are contained in
 * additional .css files loaded lateron by browsers which support them.
 *
 */

.bold      { font-weight:      bold; }
.center    { text-align:       center; }
.right     { text-align:       right; }
.justify   { text-align:       justify; }
.italic    { font-style:       italic; }
.large     { font-size:        larger; }
.small     { font-size:        smaller; }
.strike    { text-decoration:  line-through; }
.underline { text-decoration:  underline; }
.caps      { font-variant:     small-caps; }

.error     { color:            #FF0000;
           }

.progversion {
       font-weight:            bold;
       font-style:             italic;
     }

body {
       background-color:       #D0D0D0;
       color:                  #FFFFFF;
       font-family:            'Helvetica', 'Arial', 'Verdana', sans-serif;
     }

a    { color:                  #4020A0; }

a:visited {
       color:                  #301090; }

img {  border:                 0px; }
