/*
 _______________________________________________________________________________
|                                                                               |
|  Sets the style for links when the mouse is moved over a link, visited, etc.  |
|                                                                               |
|_______________________________________________________________________________|

*/

A, .cls         { text-decoration:none; color:blue;}
A:hover, .clh     { text-decoration:none; color:red; font-weight : bold;}
A:visited, .clv    { text-decoration:none; color:#FF1493; }
A:active, .cla
{
    font-family: tahoma, sans-serif;
    font-weight: bold;
    color: blue;
    background-color: #87CEFA;
    text-decoration: none;
}

