<!-- link is used to define the attributes for all unvisited links on each page -->
A:link
{
    COLOR: red;
    CURSOR: hand;
    FONT-FAMILY: Arial;
    FONT-SIZE: 10pt;
    TEXT-DECORATION: underline
}
<!-- visited is used to define the attributes for all visited links on each page -->
A:visited
{
    COLOR: green;
    CURSOR: hand;
    FONT-FAMILY: Arial;
    FONT-SIZE: 10pt;
    TEXT-DECORATION: underline
}
<!-- hover is used to define the attributes for all links on each page when the cursor is placed over the respective link -->
A:hover
{
    COLOR: blue;
    CURSOR: hand;
    FONT-FAMILY: Arial;
    FONT-SIZE: 10pt;
    TEXT-DECORATION: underline
}
<!-- H2 is used to designate common attributes for all H2 tags on the entire page -->
H2
{
    COLOR: black;
    FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif;
    FONT-SIZE: 15pt;
}
<!-- font is used to designate common attributes for all font tags on the entire page -->
FONT.template
{
    COLOR: black;
    FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif;
    FONT-SIZE: 10pt;
}