body { font-family: Courier New, sans-serif; } 
 
A:link {text-decoration: none;color: white;}        /* specificity = 1,1 */
A:visited {text-decoration: none;color: white;}   /* specificity = 1,1 */ 
A:hover {color: white;}    /* specificity = 1,1 */
A:active {color: magenta;}       /* specificity = 1,1 */

table.test{
	color: #FFFFFF;
	font-weight: bold;
}
td.test{
	color: #000000;
	font-weight: bold;
	font-size: 15px;
}
