<% 
' 4/12/06.
' Re "specificity" and the proper ordering of link styles, e.g.
' A:link {color: blue;}        /* specificity = 1,1 */
' A:active {color: red;}       /* specificity = 1,1 */
' A:hover {color: magenta;}    /* specificity = 1,1 */
' A:visited {color: purple;}   /* specificity = 1,1 */
' see the useful tute at http://meyerweb.com/eric/css/link-specificity.html. It says ..
' ... To ensure that you see your various link styles, you're best off putting your 
' styles in the order "link-visited-hover-active", or "LVHA" for short. 
' ... When more than one of the style rules apply to the hyperlink, and the selectors all 
' have the same specificity, then the last one listed wins.
%>

A:link
{
    COLOR: black
}
A:visited
{
    COLOR: black
}
A:hover
{
    COLOR: gray;
    BACKGROUND-COLOR: transparent
}
A:active
{
    COLOR: red;
}


BODY
{
    FONT-SIZE: 12pt;
    FONT-FAMILY: Verdana, Arial, sans-serif
}
INPUT
{
    FONT-FAMILY: Arial, sans-serif
}
SELECT
{
    FONT-FAMILY: Arial, sans-serif
}

