/* Opera 6 kennt nur text-color (statt color), kein CSS-Standard, daher von allen anderen nicht angezeigt. 

   Zu viel Aerger und veraltete Version -> Fehler ignoriert */



body { 

	background-color: #EAEAFF; font-family: Arial, Helvetica, sans-serif; font-size: 12pt; 

}

body.navi {

	background-color: #D2D2FF; font-family: Arial, Helvetica, sans-serif; font-size: 12pt;

	text-align: left;

}





a:link {  color: #5353FF;}

a:visited { color: teal;}

/* hovering (Mouseover): swap fore- and background color 

   at least IE cannot compute the difference between link & visited, so use JS instead?? */ 

a:visited:hover { background-color: teal; color: #EAEAFF;}

a:link:hover { background-color: #5353FF; color: #EAEAFF;}



/* For links that shall be as big as h1 -- only used in nav for "www.schoschi.de" */ 

a.h1:link { font-size: 16pt; font-weight:600; font-stretch:expanded; color:teal; }

a.h1:visited { font-size: 16pt; font-weight:600; font-stretch:expanded; color:teal; }

a.h1:hover { font-size: 16pt; font-weight:600; font-stretch:expanded; background-color: teal; color: #EAEAFF; }





h1 { font-size: 150%; font-weight:600; font-stretch:expanded; color:teal; }

h2 { font-size: 115%; font-stretch:expanded; color:teal; }

h3 { font-size: 100%; color:teal; }





.marked {

	background-color:#C6C6C6;

	font-size: 110%;

	font-stretch:expanded;

	color: green;

	border-left:0px;

	padding-left:0px; 

}



acronym { 

	border-bottom:1px dashed #5353FF; 

	/* Mache Besuchern klar, dass sie mit Maus drueber fahren sollten, 

	   indem die Untersteichung dieselbe Farbe wie ein Link hat, aber gestrichelt ist */

}

