/* =========== GLOBAL ======================== */

* {
    font-family: 'Roboto Mono', monospace;
    font-size: 12pt;
}

html {
    height: 100%;
    height: 100vh;
    color: #333;
}

body {
    height: 100vh;
    padding: 0;
    margin: 0;
    background-position: top center;
    background-color: #f3f3f3;
    text-align: top center;
}

a {
    text-decoration: none;
    color: rgb(48, 124, 255);
}

a:hover {
    text-decoration: underline;
}

div.mainContainer {
    width: 75%;
    height: calc(100vh - 30pt);
    height: -o-calc(100vh - 30pt);
    /* opera */
    height: -webkit-calc(100vh - 30pt);
    /* google, safari */
    height: -moz-calc(100vh - 30pt);
    /* firefox */
    overflow-y: hidden;
    margin: 0 auto;
    text-align: center;
}

div.content {
    text-align: left;
    height: 100%;
    width: 90%;
    overflow-y: scroll;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 25px;
    padding-top: 0;
    padding-bottom: 0;
}

div.header {
    font-size: 16pt;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

div.footer {
    color: #555;
    background-color: #e5e5e5;
    font-size: 10pt;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 25pt;
    line-height: 25pt;
    bottom: 0em;
    left: 0;
    right: 0;
    overflow: hidden;
}

div.menu {
    width: 100%;
    margin-bottom: 40pt;
    text-align: left;
}

span.menuItem {
    border: #555 solid 2pt;
    display: inline-block;
    min-width: 100px;
    padding: 5pt;
    margin-right: 5pt;
    text-align: center;
}

span.menuItem:hover {
    background-color: bisque;
    cursor: pointer;
}

/* ============= TABLES ============= */

td {
    padding-right: 5px;
}