<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">


BODY { font-family: Verdana, Arial, Helvetica, sans-serif; color: black}
TH  { font-family: Verdana, Arial, Helvetica, sans-serif; color: black; font-size: 10pt}
.darkrow, .darkrow TH
{
background-color:330099;
color:white;
}


H2, H3, H4, H5, H6 {font-weight: bold; font-style: italic;}
H3, H4 { color : navy }
H1 {color : teal; font size: 18 }
H2 { color : indigo;  font-size: 13pt; }
H3 { font-size: 10pt; }
H4 { font-size: 9pt; }
H5 { font-size : 9pt;   }
H6 { color : teal; font-size: 12pt;font-family: Verdana; }

TABLE {border border-color: teal}
TD { font-size: 9pt; font-family: Verdana, Arial, Helvetica, sans-serif; color : black; font-weight: normal; }
#comment {font-style: italic; font-size: 8pt}
p.note {font-style: italic; font-size: 8pt}
.piede {font-size: 8pt}
<!-- commento mio : p.note lo usi cosi' ad es. <p class="note"> .... testo </p> -->
<!-- commento mio : -- era in BODY : ....  ;background : bisque; 
e a parte  TABLE {background : bisque;} --> 

<!-- altre note, tratta gli stili nel testo-->

<STYLE TYPE="text/css">

.tealtable, .tealtable TD, .tealtable TH
{
background-color:teal;
color:white;
}

</STYLE>

Now that we've created the styles we just apply it to a table. 
We associate the table with the tealtable class with the CLASS attribute. 
Notice in the following code that we don't any any code to the table cells 
the make the fonts white. The fonts are automatically white because of the style rules we set.

<TABLE CELLPADDING=5 CLASS="tealtable">
<TR> <TH>Operator</TH> <TH>Ext</TH> <TH>City</TH> </TR>
<TR> <TD>Starflower</TD> <TD>8172</TD> <TD>San Francisco</TD> </TR>
<TR> <TD>Melody</TD> <TD>5673</TD> <TD>San Pedro</TD> </TR>
<TR> <TD>Symphony</TD> <TD>3820</TD> <TD>Montreal</TD> </TR>
</TABLE>
-->



