    /* type 1 link - white with underline on hover */
    .class1 A:link {text-decoration:none; color:#ffffff}
    .class1 A:visited {text-decoration:none; color:#ffffff}
    .class1 A:active {text-decoration:none; color:#ffffff}
    .class1 A:hover {text-decoration: underline; color:#ffffff}

    /* type 2 link - black with underline on hover */
    .class2 A:link {text-decoration:none; color:#000000}
    .class2 A:visited {text-decoration:none; color:#000000}
    .class2 A:active {text-decoration:none; color:#000000}
    .class2 A:hover {text-decoration: underline; color:#000000}

    /* type 3 link - black turning red on hover */
    .class3 A:link {text-decoration:none; color:#000000}
    .class3 A:visited {text-decoration:none; color:#000000}
    .class3 A:active {text-decoration:none; color:#000000}
    .class3 A:hover {text-decoration: none; color:#d60000}

    /* type 4 link - black with underline turning red on hover */
    .class4 A:link {text-decoration:underline; color:#000000}
    .class4 A:visited {text-decoration:underline; color:#000000}
    .class4 A:active {text-decoration:underline; color:#000000}
    .class4 A:hover {text-decoration:underline; color:#d60000}

    /* type 5 link - blue with underline turning red on hover */
    .class5 A:link {text-decoration:none; color:#1e3860}
    .class5 A:visited {text-decoration:none; color:#1e3860}
    .class5 A:active {text-decoration:none; color:#1e3860}
    .class5 A:hover {text-decoration:underline; color:#d60000}