﻿.MainDiv {
    margin-left: auto;
    margin-right: auto;
    width: 1024px;
    background-color: black;
    padding-bottom: 25px;
}

.HeaderDiv {
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    text-align: center;
}

.BodyDiv {
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
}

.Copyright {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
    text-align: center;
}

h1 {
    color: yellow;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.Logo {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

hr.Line {
    border: 2px solid yellow;
    border-radius: 2px;
    width: 98%;
    background-color: yellow;
}

.ResetBoxTable {
    padding: 5px 5px 5px 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    top: 45px;
    border: solid;
    border-width: 3px;
    border-radius: 8px;
    color: white;
    background-color: black;
}

.TD {
    padding: 5px 5px 5px 5px;
}

.TDButton {
    padding: 5px 5px 5px 5px;
    text-align: right;
}

.TextBox {
    color: yellow;
    background-color: black;
}

.TextBox:hover {
    color: white;
}

.TextBox:active {
    color: white;
}

.YellowCircle {
    display: inline-block;
    background-color: yellow;
    width: 16px;
    height: 16px;
    border-radius: 8px;
}

.BlackCircle {
    position: relative;
    background-color: black;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
}

.Question {
    position: relative;
    color: yellow;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    text-align: center;
    vertical-align: middle;
}

.YellowCircle:hover {
    cursor: help;
}

.Help {
    display: none;
    position: absolute;
    left: 25px;
    width: 200px;
    background-color: yellow;
    color: black;
    font-size: 14px;
    padding: 5px 5px 5px 5px;
    border-radius: 5px;
    z-index: 1;
}

.button {
    position: relative;
    background-color: black;
    border: outset;
    border-left-color: white;
    border-top-color: white;
    border-right-color: grey;
    border-bottom-color: grey;
    color: yellow;
    padding: 15px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border-radius: 8px;
}

.button:hover {
    transition-duration: 0.4s;
    color: white;
    border-left-color: grey;
    border-top-color: grey;
    border-right-color: white;
    border-bottom-color: white;
}

.button:active {
    border-left-color: white;
    border-top-color: white;
    border-right-color: white;
    border-bottom-color: white;
}


