/* General stylesheet for links */
/* (c) Lucy Connelly 2003 */

a:active	{
		text-decoration:	underline;
		}

a:link		{
		text-decoration:	none;
		}

a:visited	{
		text-decoration:	none;
		}

/* a:hover must come after a:link and a:visited in order to override them. */

a:hover		{
		text-decoration:	underline;
		}

