/* Minification failed. Returning unminified contents.
(8,31): run-time error CSS1038: Expected hex color, found '#8888'
 */
#the-canvas {
    border: 1px solid black;
    direction: ltr;
}
canvas#the-canvas {
    border-radius: 0.5rem;
    border: 1px solid #999;
    box-shadow: 0 0.3rem 1rem #8888;
}

button#CanvasPDFprev, button#CanvasPDFnext {
    margin: 0 .5rem .5rem 0;
    cursor: pointer;
    border: 1px solid #666;
    padding: 0.2rem 1rem;
    border-radius: 0.5rem;
    background-color: #eee;
}

    button#CanvasPDFprev:hover, button#CanvasPDFnext:hover {
        margin: 0 .5rem .5rem 0;
        cursor: pointer;
        border: 1px solid #666;
        padding: 0.2rem 1rem;
        border-radius: 0.5rem;
        background-color: #ccc;
    }

    button#CanvasPDFprev:before {
        content: "<";
        display: inline-block;
        margin-right: 0.5rem;
    }

    button#CanvasPDFnext:after {
        content: ">";
        display: inline-block;
        margin-left: 0.5rem;
    }


