/* Schriftfarbe */
Body {color: #000000}

/* Schriftfamilie und Größe */
Body {font-family: Arial; font-size: 12px}


/* Überschriften - Schriftgröße und Schriftfamilie und Farbe*/
h1{
	font-size: 22px; 
	font-family: Arial;
	color: #003366;
} 

/* Hyperlink Farbe - Schriftgröße und Schriftfamilie */
A {
	font-size: 12px; 
	font-family: Arial;
	color: #990000;
} 
a:hover {
	font-size: 12px; 
	text-decoration: none;
	color: #003366;
}
a:link {
	font-size: 12px;
	text-decoration: none;
	color: #990000;
}
a:visited {
	font-size: 12px;
	text-decoration: none;
	color: #990000;
}
a:active {
	font-size: 12px;
	text-decoration: none;
	color: #003366;
}
