﻿body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: small;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
}

td {
    padding: 2px;
    margin: 2px;
    background-color: white;
}

/* unvisited link */
a:link {
    color: black;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: black;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: red;
    text-decoration: none;
}

/* selected link */
a:active {
    color: black;
    text-decoration: none;
}

.button {
    color: black;
    background-color: white;
}

.button:hover {
    color: white;
    background-color: red;
}

