
/* mouse over link */
a:hover 
{
    color: orange;
}

/* selected link */
a:active 
{
	text-decoration: underline;
	color: orange;
}

a.active {
    cursor: default !important;
	text-decoration: underline;
	color: orange;
}