/* Schriftart & Schriftgröße für Text*/
.normal {
		font-family: Arial;
		font-size: 12px;
		color: #000000;
}

/* Überschrift */
.header {
		font-family: Arial;
		color: #0099cc; 
		font-size: 16px;
		font-weight: bold;
}

/* Hyperlink in der Navigation */
a.navi:link {
		font-family: Arial;
		font-size: 14px;
		font-weight: bold;
		color: #0099cc;
		text-decoration: none;
}
a.navi:visited {
		font-family: Arial;
		font-size: 14px;
		font-weight: bold;
		color: #0099cc;
		text-decoration: none;
}
a.navi:active {
		font-family: Arial;
		font-size: 14px;
		font-weight: bold;
		color: #0099cc;
		text-decoration: none;
}
a.navi:hover {
		font-family: Arial;
		font-size: 14px;
		font-weight: bold;
		color: #ffcc66;
		text-decoration: none;
}

/* Hyperlink im Seiteninhalt */
a.main:link {
		font-family: Arial;
		font-size: 12px;
		color: #000000;
		text-decoration: underline;
}
a.main:visited {
		font-family: Arial;
		font-size: 12px;
		color: #000000;
		text-decoration: underline;
}
a.main:active {
		font-family: Arial;
		font-size: 12px;
		color: #000000;
		text-decoration: underline;
}
a.main:hover {
		font-family: Arial;
		font-size: 12px;
		color: #666666;
		text-decoration: none;
}