/* als letzte Schriftfamilien sollte immer serif, sans-serif, monospace, fantasy oder cursive angegeben werden */
/* Gross- und Kleinschreibung ist in CSS nicht egal d.h. box <> BOX */
/* Keine Anführungszeichen in Style-Deklarationen von Farben , aber z.B. "Times New Roman" da Lehrzeichen enthalten*/
BODY,TD {
	font-family : Arial, Verdana,sans-serif ;
	font-size : 12px;;
	color : navy;
}

ul {	/* Damit die Listen am rechten Rand beginnen */
	position: relative; 
	margin-top: 0;
	left:-40;
}

li {	/* Einruecken der einzelnen Listenelemente */
	position: relative; 
	left:20;
	margin : 4px;	/* Abstand zwischen den einzelnen Punkten */
}

STRONG {	/* Für Überschriften */
	font-size : large;
}

SMALL {	/* Für Überschriften */
	font-size : xx-small;
}

.green {
	color : green;
}

.red {
	color : red;
}

.underline {
	text-decoration:underline;
}

.small {
	font-size : xx-small;
}

.bigger {
	font-size : small;
}

.bold {
	font-weight : bold;
}

.font_medium {
	font-size : medium;
}

.autobreite {		
	width : auto;
}

.maxbreite {		/* Diese Klasse ist für das Table-Tag gedacht (als Ersatz für width="100%") */
	width : 100%;
}

.picture {		/*Auf allen Titelauswahl-Seiten fuer den Layer mit dem grossen Bild*/
	position: absolute;
	background-color:#ffffff;
	left: 450;
	z-index: 3;
	visibility: hide;
	visibility: hidden;
}

A:LINK {		/* noch nicht besuchter Link */
	color : green;
	font-weight : bold;
}
A:VISITED {		/* schon besuchter Link */
	color : green;
	font-weight : bold;
}
A:HOVER {		/* Die Maus ist über dem Link */
	color : green;
	font-weight : bold;
}
A:ACTIVE {		/* Link wird ausgewählt (Die rechte Maustaste gedrückt)*/
	color : green;
	font-weight : bold;
}

A.red:LINK {	
	color : red;
	font-weight : bold;
}
A.red:VISITED {		
	color : red;
	font-weight : bold;
}
A.red:HOVER {		
	color : red;
	font-weight : bold;
}
A.red:ACTIVE {	
	color : red;
	font-weight : bold;
}

A.blue:ACTIVE {	
	color : navy;
	font-weight : bold;
}
A.blue:LINK {
	color : navy;
	font-weight : bold;
}
A.blue:VISITED {
	color : navy;
	font-weight : bold;
}
A.blue:HOVER {
	color : navy;
	font-weight : bold;
}
A.blue:ACTIVE {	
	color : navy;
	font-weight : bold;
}

A.unbold:LINK {	
	font-weight : normal;
}
A.unbold:VISITED {		
	font-weight : normal;
}
A.unbold:HOVER {		
	font-weight : normal;
}
A.unbold:ACTIVE {	
	font-weight : normal;
}

A.txtr:LINK {
	color : red;
	text-decoration : none;
	background : transparent;
	font-weight : normal;
}
A.txtr:VISITED {		
	color : red;
	text-decoration : none;
	background : transparent;
	font-weight : normal;
}
A.txtr:HOVER {		
	color : red;
	text-decoration : none;
	background : transparent;
	font-weight : normal;
}
A.txtr:ACTIVE {		
	color : red;
	text-decoration : none;
	background : transparent;
	font-weight : normal;
}

A.txtb:LINK {	
	color : navy;
	text-decoration : none;
	background : transparent;
	font-weight : normal;
}
A.txtb:VISITED {		
	color : navy;
	text-decoration : none;
	background : transparent;
	font-weight : normal;
}
A.txtb:HOVER {		
	color : navy;
	text-decoration : none;
	background : transparent;
	font-weight : normal;
}
A.txtb:ACTIVE {		
	color : navy;
	text-decoration : none;
	background : transparent;
	font-weight : normal;
}


