/* Link Textfarbe rot*/
a:link {
	color: #990000;
	text-decoration: underline;
	font-weight: bold;
}
/* besuchter Link Textfarbe schwarz*/	
a:visited {
	color: #000000;
	text-decoration: underline;
	font-weight: bold;
}
/* hover grün Link Textfarbe rot*/	
a:hover {
	color: #336600;
	text-decoration: underline;
	font-weight: bold;
}
/* aktiver Link Textfarbe rot*/	
a:active {
	color: #990000;
	text-decoration: underline;
	font-weight: bold;
}

