@import url('https://fonts.googleapis.com/css2?family=ABeeZee&display=swap');
html * { font-family: 'ABeeZee',Helvetica,Arial,Lucida,sans-serif; }
body {
    background-color: #f4f4f4;
    max-width: 60em; 
    padding-left: 2em;
    padding-right: 2em;
    margin: auto;
}
h1,h2,h3,h4,h5,th,a { color: #4C55A5; margin-bottom: 4px; }
fieldset {
    padding: 20px;
    border: 4px solid #E0E0E0;
    margin-top: 10px;
}
fieldset legend {
    color: #4C55A5;
    font-weight: bold;
    font-size: large;
}
table {
    border-spacing: 0px;
    border: 4px solid #E0E0E0;
}
thead th { background-color: #E0E0E0; }
tbody th { text-align: right; }
th { white-space: nowrap; }
td { background-color: #f4f4f4; }
th,td { padding: 0.5em; }
p,li {
    line-height: 1.5em;
    margin-top: 0.2em;
    margin-bottom: 0.5em;
}
ul,ol { padding-left: 2.5em; }
kbd { font-family: monospace; background-color: #EAEAEA; }
pre, code { font-family: monospace; }
input[type="text"], input[type="password"], select {
    font-family: monospace;
    border: 2px solid #E0E0E0;
    line-height: 1.5em;
    padding: 0.3em;
}
textarea {
    font-family: monospace;
    border: 2px solid #E0E0E0;
}
input[type="checkbox"] {
    width: 2em;
    height: 2em;
    padding: 0.5em;
}
input[type="submit"], input[type="reset"], button {
    font-size: 100%;
    font-weight: bold;
    text-transform: uppercase!important;
    letter-spacing: 2px;
    line-height: 1.5em;
    padding: 0.7em;
    color: #4C55A5;
    background-color: white;
    border: 2px solid #4C55A5;
    border-radius: 0px;
    transition: color 300ms ease 0ms,background-color 300ms ease 0ms;
    transition-property: color, background-color;
    transition-duration: 300ms, 300ms;
    transition-timing-function: ease, ease;
    transition-delay: 0ms, 0ms;
}
input[type="reset"] {
    margin-left: 2em;
}

input[type="submit"]:hover, input[type="submit"]:focus,
input[type="reset"]:hover, input[type="reset"]:focus,
button:hover, button:focus
{
    background-color: #4c55a5;
    color: white;
}

button:disabled {
    background-color: #F4F4F4!important;
    border: 2px solid #E0E0E0!important;
    color: #A0A0A0!important;
}

.right { text-align: right; }
.center { text-align: center; }
.left { text-align: left; }
.high { font-weight: bold; color: #F04800; }
