BODY {
	background: #ffffff;
	color: #000000;
	font-family: Times New Roman;
	font-weight: bold;
	margin-left: 12px;
}

P {
	color: #aaaaaa;
	font-family: Times New Roman;
	font-size: 12pt;
}

A:hover{
	color: red;
	font-weight: bold;
}

TD {
	color: #aaaaaa;
	font: Times New Roman; 
	font-size: 12pt;
	background: #ffffff;
	font-weight: bold;
}


Details of what does what : 

Body block :

First line = background colour
Second line = Font type
third line =

P block :

First line =
Second line =
third line =

TD block :

First line =
Second line =
third line =

Hover block :

First line = colour it changes to when cursor goes over text.
Second line = text will go bold when cursor goes over it.

