pre {font-family: Consolas,monospace}
body *{font-family: 'OpenSansRegular';}

.mobileNav{
    display: none;
}

#hmnavbox {
    width: 340px;
}

#hmcontentbox{
    left: 355px;
}

.hider {
    opacity: 0.6;
    background-color: #666;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
    cursor: pointer;
}

.closeBtn {
    display: none;
}

@media all and (min-width: 601px) {
    #hmnavbox {
        left: 10px !important;
    }

    .mobileNav{
        display: none !important;
    }
}

@media all and (max-width: 900px) {
    #hmnavbox {
        width: 80%;
        max-width: 340px;
    }

    #hmcontentbox{
        left: 355px;
    }
}

@media all and (max-width: 600px) {
    .closeBtn{
        position: absolute;
        top: 5pt;
        right: 7pt;
        color: #eaeaea;
        z-index: 101;
        cursor: pointer;
    }

    #hmnavbox {
        top: 0;
        left: -80%;
        width: 80%;
        z-index: 101;
        background-color: darkgray;
        bottom: 0;
        overflow-y:auto;
    }

    #hmcontentbox{
        left: 5px;
        top: 5px;
        right: 5px;
        bottom: 5px;
        overflow-y:auto;
    }

    .mobileNav{
        display: block;
        position: absolute;
        width: 32px;
        height: 32px;
        right: 0;
        top: 2pt;
        z-index: 100;
        font-size: 16pt;
        line-height: 32px;
    }

    .mobileNav span {
        cursor: pointer;
        color: #777;
    }

    .mobileNav span:active{
        color: #00415e;
    }
}


