/* CSS Document */
/* Links */
a:link {
	color: blue;
	text-decoration: none;
}
a:visited {
	color: blue;
	text-decoration: none;
}
a:hover {
	color: #800000;
	text-decoration: underline;
	cursor: pointer;
}
a:active {
	text-decoration: none;
}

