<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* unvisited link */
a:link {
    color: #0000FF;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #0000FF;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: green;
    /*font-weight: bold;*/
    text-decoration: none;
}

/* selected link */
a:active {
    color: black;
    text-decoration: underline;
}

.bottombutton {
    border-radius: 5px;
    border: 2px solid #6495ED;
    background-color: #BCD2EE;
    height: 20px;
    width: 170px;
    margin: auto;
    text-align: center;
}

#BottomButtonFont {
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
}
</pre></body></html>