/* das ist der CSS für das Inhaltsverzeichnis: */

body
{ background-color:silver; } 

/* Listen Format: */
ul,ol 
{ list-style-type:disc; 
  font-size:8pt; 
  font-family:"arial"; 
  color:darkred; 
  font-weight:bold; }
/* list-style-type:circle; font-family:"times new roman"; */

/* Absatz */
p
{ text-align:justify;
  alignment:justify; }

/* i
{ color:black; } */

/* Aufzählungen, Tabellen Formate: */ 
li,td,th /* ,b,i */
{ font-size:10pt;
  font-family:"arial";
  color:black;
  font-weight:normal; }
/* font-family:"times new roman"; */

/* font-family = Schriftart fuer Textelemente */
/* font-size = Schriftgroesse */
/* 10pt = 10 Punkt, Wert aenderbar */


/* Link Formate: */
a:link 
{ color:darkblue;
  text-decoration:underline;
  font-weight:bold; }

a:visited 
{ color:darkblue;
  text-decoration:none;}
/*  font-weight:bold; */

a:active 
{ color:green;
  text-decoration:none;
  font-weight:bold; }
/* color:darkred; */

/* a:link { color:#AA5522; text-decoration:underline; } */
/* a:link { color:#434ECD; text-decoration:underline; } */
/* a:visited { color:#772200; text-decoration:none; } */
/* a:visited { color:inactiveborder; text-decoration:none; } */
/* a:visited { color:#787898; text-decoration:none; } */

/* a:link = Verweise zu noch nicht besuchten Seiten */
/* a:visited = Verweise zu bereits besuchten Seiten */
/* a:active = Verweise, die gerade angeklickt werden */
/* color = Farbe */
/* #AA5522 = kotzbeige, Wert aenderbar */
/* #772200 = scheissbraun, Wert aenderbar */
/* #000000 = schwarz, Wert aenderbar */
/* text-decoration = Tesxtstil */
/* underline = unterstrichen, Default-Wert, Wert aenderbar */
/* none = nicht unterstrichen, Wert aenderbar */

/* LINK="#0000ff" VLINK="#800080" */
