/* CSS Document */
A:link {
	font-weight:bold;
	TEXT-DECORATION: none;
	
}
a:visited {
	font-weight:bold;
	text-decoration:none;
	color: blue;
}
a:hover {
	text-decoration:underline;
	font-weight:bolder;
	color: red;
}
a:link#special {
	font-weight:bold;
	TEXT-DECORATION: blink;
	color: maroon;
}
a:hover#special {
	text-decoration:underline;
	font-weight:bolder;
	color: RED;
	}
a:visited#special {
		font-weight:bold;
	text-decoration:none;
	color: maroon;
