/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:99999999; overflow:hidden;
 /*
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
*/}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;padding-bottom: 30px;}
#cboxTitle{margin:0;display: none;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000;}
#colorbox{outline:0;}
    #cboxTopLeft{
        width:5px; 
        height:5px;
        -webkit-border-top-left-radius: 5px;
        -moz-border-radius-topleft: 5px;
        border-top-left-radius: 5px;
        background: #fff;
    }
    #cboxTopCenter{
        width:5px; 
        height:5px;
        background: #fff;
    }
    #cboxTopRight{
        width:5px; 
        height:5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topright: 5px;
        border-top-right-radius: 5px;
        background: #fff;
    }
    #cboxBottomLeft{
        width:5px; 
        height:5px;
        -webkit-border-bottom-left-radius: 5px;
        -moz-border-radius-bottomleft: 5px;
        border-bottom-left-radius: 5px;
        background: #fff;
    }
    #cboxBottomCenter{
        width:5px; 
        height:5px;
        background: #fff;
    }
    #cboxBottomRight{
        width:5px; 
        height:5px;
        -webkit-border-bottom-right-radius: 5px;
        -moz-border-radius-bottomright: 5px;
        border-bottom-right-radius: 5px;
        background: #fff;
    }
    #cboxMiddleLeft{
        width:5px; 
        height:5px;
        background: #fff;
    }
    #cboxMiddleRight{
        width:5px; 
        height:5px;
        background: #fff;
    }
    #cboxContent{background:#fff; overflow:hidden;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        /*#cboxLoadedContent{margin-bottom:20px;}*/
        #cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;display: none;}
        #cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;display:none !important;}
        #cboxLoadingOverlay{background:#fff url("../_i/loading.gif") no-repeat 5px 5px;position: absolute; top: 50%;left: 50%;margin: -16px 0 0 -16px;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #cboxPrevious{width: 54px; height: 54px; margin-top:-27px;position:absolute; top:50%; right:10px; color:#444;text-indent: -9999999px; background:transparent url('../_i/next-prev.png') bottom left no-repeat;}
        #cboxNext{width: 54px; height: 54px; margin-top:-27px;position:absolute; top:50%; left:10px; color:#444;text-indent: -9999999px; background:transparent url('../_i/next-prev.png') top left no-repeat;}
        #cboxClose{position:absolute; bottom:5px; right:50%; display:block; color:#444;
            background: transparent url("../_i/modal_close.png") top left;
            width: 29px;
            height: 12px;
            text-indent: -999999px;
            z-index: 9999;
            margin-right: -15px;
        }
