/* Force the page to have a white background */
body {
 background-color: white;
}

/* make underlines only appear when the mouse is over them */
a {
 text-decoration: none;
}
a:hover {
 text-decoration: underline;
}

