a.speciallink:link { 
  color: #333333; 
  text-decoration: none; 
} 
 
/* this gives a red link, with no underline */ 
 
a.speciallink:visited { 
  color: #333333; 
  text-decoration: none; 
} 
 
/* for visited links you can make different styles */ 
 
a.speciallink:hover {
	color: white;
	text-decoration: none;
	background-color: #003366;
	display: block;
} 
 
/* this is what you get if your mouse is on it */ 
 
a.speciallink:active { 
  color: #333333; 
  text-decoration: none; 
} 
 
/* this is the style if your link is active (mousedown)



