/* jQuery Colorbox - Lightbox CSS (Example Style 1) */

#colorbox, #cboxOverlay, #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.75;
    filter: alpha(opacity=75);
}

#cboxMiddleLeft, #cboxBottomLeft {
    clear: left;
    float: left;
}

#cboxContent {
    position: relative;
    float: left;
}

#cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#cboxTitle {
    margin: 0;
    padding: 6px 10px;
    font-size: 12px;
    color: #949494;
    background: #1a1a1a;
    text-align: center;
}

#cboxCurrent {
    position: absolute;
    bottom: 4px;
    left: 58px;
    color: #949494;
    font-size: 11px;
}

/* Buttons */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    position: absolute;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
}

#cboxClose {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 28px;
    height: 28px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    z-index: 1000;
}
#cboxClose:hover { background: rgba(0,0,0,0.9); }

#cboxPrevious {
    bottom: 4px;
    left: 0;
    display: block;
    height: 24px;
    width: 50px;
}
#cboxNext {
    bottom: 4px;
    left: 52px;
    display: block;
    height: 24px;
    width: 50px;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#cboxLoadingOverlay { background: #fff; opacity: 0.65; }
#cboxLoadingGraphic { background: transparent center center no-repeat; }

#cboxWrapper { background: #1a1a1a; border-radius: 4px; }
#cboxContent { background: #1a1a1a; padding: 2px; }
