a:link
{
    text-decoration: underline ;
    color: red ;
    font-weight: bold ;
}

a:active
{
    text-decoration: none ;
    background-color: gold ;
    color: red ;
    font-weight: bold ;
}

a:visited
{
    text-decoration: underline ;
    font-weight: bold ;
    color: red ;
    /*
    //background-color: yellow ;
    */
}

a:hover
{
    /*
    font-weight: bold ;
    //font-style: italic ;
    */
    color: black ;
    background-color: gold ;
    text-decoration: underline ;
}

