/*

I have set up a few things for you here.  In the CSS you just control how the links look.
The a styles is whatever is in <a> tags, so it styles the links. a is the link without interaction, a:hover is when the mouse is over the link, and so forth.

*/


a {
	color:#00CCFF;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

a:visited {
	color:#00CCFF;
}
