* {
    font-family: monospace;
}

body {
    background-color: #222
}

#container {
    position: relative;
    width: 100%;
    height: 100%;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: default;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #444;
    border: 1px solid black;
    text-align: center;
    font-size: 0.75em;
    width: 10em;
    padding: 5px 0;
    bottom: 100%;
    left: 50%;
    margin-left: -5em;
    position: absolute;
    z-index: 3;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

#main {
    background-color: #333;
    transform: translate(calc(-50% - 105px), -50%);
}

#canvas {
    background-color: #444;
}

#current {
    z-index: 2;
    animation: all 1s ease 0s;
}

#hs-scroll {
    overflow-y: scroll;
    height: 300px;
    margin: 10px;
    background-color: #555;
    border: 1px solid black;
    transform: translate(0.5px, 0);
}

#hs-menu-content {
    height: 400px;
}

td {
    font-size: 1.25em;
    color: #222;
}

.highlight {
    color: black;
    font-weight: bold;
}

.left {
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}

.mid {
    text-align: left;
}

.right {
    padding-right: 20px;
    text-align: right;
}

.rh {
    background-color: #5c5c5c;
}

table {
    width: 100%;
    border-collapse: collapse;
}

tr {
    width: 100%;
}

input[type='text'] {
    background-color: #555;
    border: 1px solid black;
    width: 200px;
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 0.67em;
    transform: translateX(0.5px);
}

input[type='text']:focus {
    outline: none;
}

.menu-screen {
    background-color: #444;
    position: relative;
    margin: 0;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    transform: translate(1px, 1px);
    z-index: 999;
    text-align: center;
}

.faded-menu-screen {
    background-color: #444A;
}

.faded-menu-screen > .menu-content {
    background-color: #444;
    position: relative;
    transform: translate(-1px, calc(-50% - 1px));
    border: 1px solid black;
    left: 0;
}

a {
    font-size: 1.5em;
    color: black;
    text-decoration: none;
    display: block;
}

a:hover {
    color: #333;
}

.menu-content {
    width: 100%;
    height: 162px;
}

.centered {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#preview {
    z-index: 1;
    opacity: 0.3; /* Standard compliant browsers */
    -moz-opacity: 0.3; /* Firefox and Mozilla browsers */
    -webkit-opacity: 0.3; /* WebKit browser e.g. Safari */
    filter: alpha(opacity=30); /* For IE8 and earlier */
    position: absolute;
}

#next-block, #hold-block {
    position: relative;
    width: 0;
}

#sidebar {
    background-color: #333;
    transform: translate(90px, -50%);
    width: 280px;
    height: 720px;
}

.sidebar-item {
    margin: auto;
    text-align: center;
    clear: both;
}

.sidebar-item > h1 {
    margin-bottom: 0;
}

.sidebar-inline {
    display: inline-block;
}

.sidebar-inline-left {
    float: left;
    margin-left: 10px;
}

.sidebar-inline-right {
    float: right;
    margin-right: 10px;
}

.sidebar-inline-content {
    display: inline-block;
    width: 260px;
    background-color: #444;
    border: 1px solid black;
    margin: auto;
    margin-top: 20px;
}

.sidebar-item-content {
    background-color: #444;
    width: 260px;
    height: 175px;
    margin: auto;
    border: 1px solid black;
}

#sidebar, #main {
    position: absolute;
}