/*

I have set up a few things for you here.  The body is basically everything in the html.
The a styles 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.
You can only have certain css attributes function within Flash. See the XML file for more info - from the XML using html, you can add size and color to the text.

*/

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

a:hover {
	text-decoration:underline;
}

a:visited {
	color:#00CCFF;
}