/* Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!

Note: a:active MUST come after a:hover in the CSS definition in order to be effective!!
*/
body {
	background-color: #000000;
	font-family: tahoma, helvetica, sans-serif;
	font-size :14px;
	color: #ffffff
}


A:link {
	text-decoration: underline;
	color: #ffcc00
}

 A:visited {
	text-decoration: underline;
	color: #ffcc00
	}

A:hover {
	text-decoration: underline;
	color: ffcc00
}
A:active {
	text-decoration: underline;
	color: #ffcc00
}
 



