	/* display background image, repeat horizontally */
body
{
	margin:3 3 3 0;
}
	/* color link blue, remove underline */
a:link
{
	color: #0000FF;
	text-decoration: none;
	background-color : transparent;
}     
	/* color visited link purple, remove underline */
a:visited 
{
	color: #663399;
	text-decoration: none;
	background-color : transparent;
} 
	/* color hover link light blue, add underline */
a:hover
{
	color: #0099FF;
	text-decoration: underline;
	background-color : transparent;
} 
   /* color selected link blue, add underline */
a:active
{
	color: #663399;
	text-decoration: none;
	background-color : transparent;
}  
	/* color visiting link black, the current section's link */
a.visited:visited
{
	color: black;
	background-color : transparent;
}