Coded by Jed Roberts 
 This CSS file controls the look of all the TFDD webpages 
 Regular text does not require a special "span" tag 
 Headings such as SECTION or SUB require a "span" tag (see examples in the webpage code) 
 Smaller and red text can be coded using the SMTEXT and RED "span" tags, respectively 

BODY 
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif; 
  font-size: 10pt;
  border-color: #000000;
  }
TABLE 
  {
  font-family: Arial, Helvetica, sans-serif; 
  font-size: 10pt;
  border-color: #000000;
  }
IMG
  {
	border-color: #FFFFFF;
  }
A:LINK 
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif; 
  text-decoration: none; 
  font-weight: bold; 
  color: #000099;
  }
A:VISITED 
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif;
  text-decoration: none; 
  font-weight:bold; 
  color: #000099;
  }
A:ACTIVE
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif; 
  text-decoration:none; 
  font-weight:bold; 
  color: #000099;
  }
A:HOVER
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif;
  text-decoration:underline;
  font-weight:bold; 
  color:#990000;
  }
.smtext 
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif; 
  font-size: 8pt;
  }
.section 
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif; 
  font-size:12pt; font-weight: bold; 
  color: #990000;
  }
.sub 
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif; 
  font-size: 11pt; 
  font-weight: bold; 
  color: #000066;
  }
.red 
  {
  font-family: tahoma, verdana, arial, helvetica, sans-serif; 
  font-size: 10pt; 
  font-weight: bold; 
  color: #FF0000;
  }