/* the rest of the entries deal with the way links are displayed. The
text-decoration: none entry removes the underscore from the links, and all colours
remain the same except for the rollover (hover) state, which is bright green */
a:link {
	color: #0000CC;
	text-decoration: none;
}
a:visited {
	color: #0000CC;
	text-decoration: none;
}
a:hover {
	color: #000066;
	text-decoration: none;
}

