html {
    height: 101%;
}

body {
    background: #000;
    color: #CCC;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #FFF;
    z-index: 10;
}

#dateDiv {
    position: fixed;
    top: 10px;
    right: 10px;
    text-align: right;
    color: #000;
    font-weight: bold;
    /* -webkit-text-stroke: 1px #AF0; */
    text-shadow: 1px 1px 1px #AF0;
}

img#logo {
    height: 100px;
    margin: 5px;
    transition: all .3s;
}

main {
    margin: 130px 150px;
}

th {
    position: sticky;
    top: 60px;
    background-color: #FFF;
}

td[line]::before {
    color: #777;
}

#aR {
    width: 300px;
    position: fixed;
    top: 500px;
    left: -150px;
    margin-left: 50%;
    padding: 10px;
    color: #000;
    background: #AF0;
    border: 3px solid #F00;
    border-radius: 10px;
    text-align: center;
    z-index: 100;
}

aside {
    width: 500px;
    max-height: 75vh;
    overflow: scroll;
    position: fixed;
    bottom: 10px;
    left: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    background: #FFF;
    color: #000;
    transition: all .3s;
    z-index: 100;
}

aside.aside {
    left: -510px;
}

#asTrig {
    position: fixed;
    bottom: 10px;
    left: 520px;
    transform: rotate(90deg);
    font-weight: bold;
    margin: 10px;
    transition: all .5s;
    z-index: 100;
}

#asTrig.asTrig {
    left: 10px;
}