html,body {
    height: 100%;
}
body {
    font-family: Arial;
    margin: 0;
    padding: 0;
    background-color: #000;
}
audio {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    position: absolute; /* safari mobile refuses to hide the <audio> tag so let's render it on top of everything (it is transparent after all) */
}
div#mediaViewerFrame {
    height: 100%;
    width: 100%;
    position: absolute;
}
div#mediaViewer {
    height: 100%;
    width: 100%;
}
div#mediaViewerBuffer {
    position: fixed;
    background-color: #000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 20;
}
div#canvasContainer {
    width: 100%;
    height: 100%;
}

div#prevArrow {
    position: fixed;
    left: 4px;
    top: 40%;
    height: 20%;
    width: 8%;
    cursor: pointer;
    opacity: 0.7;
    background-image: url(../images/tabletArrowLeft.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 101;
}
div#nextArrow {
    position: fixed;
    right: 4px;
    top: 40%;
    height: 20%;
    width: 8%;
    cursor: pointer;
    opacity: 0.7;
    background-image: url(../images/tabletArrowRight.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 101;
}



div#mediaViewerDescriptionOverlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 0 0 20px 0;
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    text-align: left;
    z-index: 20;
}

div#mediaViewerDescriptionOverlay div#mediaViewerDescriptionClose {
    float: right;
    width: 16px;
    height: 16px;
    background-image: url(../images/x.png);
    background-size: 16px 16px;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 8px;
}

div#mediaViewerDescriptionOverlay #mediaViewerDescription {
    padding: 10px 10px 10px 16px;
}

#mediaViewerDescription .title {
    font-weight: bold;
    font-size: 14px;
}

#mediaViewerDescription .description {
    font-weight: normal;
    font-size: 12px;
}

div#fullScreenMode {
    border-radius: 5px;
    border: 1px solid #8C8C8C;
    color: #fff;
    background: -moz-linear-gradient(top, #888 0%, #666 100%);
    background: -webkit-linear-gradient(top, #888 0%,#666 100%);
    background: -o-linear-gradient(top, #888 0%,#666 100%);
    background: -ms-linear-gradient(top, #888 0%,#666 100%);
    background: linear-gradient(180deg, #888 0%,#666 100%);
    position: fixed;
    z-index: 900;
    right: 10px;
    bottom: 10px;
    padding-top: 10px;
    height: 42px;
    width: 140px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    cursor: pointer;
    text-align: center;
}
    
    