/* My CSS File */


/* Define body background color &amp; font */


body
{
	font-family: arial,helvetica;
	font-size: 10pt;
	color:#000000;
	background-color: #FFFFFF;
}


/* Create a class of link named 'normal' */

a.normal
{
	font-family: arial,helvetica;
	font-size: 10pt;
	font-weight: bold;
	text-decoration: underline;
}
a.normal:link
{
	color: #8B4513;
}
a.normal:visited
{
	color: #8B4513
}
a.normal:hover
{
	color: #FF0000;
}
a.normal:active
{
	color: #8B4513;
}