body /* The font style for the body text */
	{
		font-family: Verdana;
		font-size: 8px;
		background-repeat: repeat; 
		background-color: #FFFFFF; 
		text-decoration: none
	}

A /* The link style */
	{
		color: #F98B01; /*orange*/
		text-decoration: underline;
	}
	
A:hover /* The hover link style */
	{
		color: #000000; /*black*/
		text-decoration: underline;
	}

.header /* The header font and background style */
	{
		font-family: Verdana;
		font-size: 8px;
		color: #000000; /* black */		
		background-color: #FFFFFF; /* white */	
	}

.bodyTable /* The table font style */
	{
		font-family: Verdana;
		font-size: 8px;
		color: #000000; /* black */	
	}

.footer /* The footer font and background style */
	{
		font-family: Verdana;
		font-size: 6px;
		color: #ffffff; /* white */
		background-color: #336699; /* gray blue */
	}

.footerLink /* The footer link font and background style */
	{
		font-family: Verdana;
		font-size: 6px;
		color: #ffffff; /* white */
		background-color: #336699; /* gray blue */
	}

.TableStyle /* Additional table font and background style */
	{
		font-family: Verdana;
		font-size: 8px;
		color: #000000; /* black */
		font-weight: regular; 		
		background-color: #FFFFFF; /* white */
		border-color: #FFFFFF; /* white */
		border-collapse: collapse;		
	}
	
.TableHeader /* Additional table header font and background style */
	{
		font-family: Verdana;
		font-size: 8px;
		color: #FFFFFF; /* white */
		font-weight: bold; 
		background-color: #336699; /* gray blue */
		border-color: #336699; /* gray blue */
		border-collapse: collapse;		
	}