/* show various link effects (including the rollover effect) */
a {
    color : #003399;
	text-decoration : none;
	font-weight : normal;
}
a:link {
	color : #003399;
	background-color : transparent;
}
a:visited {
	color : #0000FF;
	background-color : transparent;
}
a:active {
	color : #003399;
	background-color : transparent;
}
a:hover {
	color : #FF9900;
	background-color : transparent;
	text-decoration : none;
}
