/* No underline by default */
a {
    text-decoration: none;
    color: #0066cc;
}

/* Underline reappears on mouse hover */
a:hover {
    text-decoration: underline;
}