/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#oxcolorbox, #oxcboxOverlay, #oxcboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#oxcboxWrapper {max-width:none;}
#oxcboxOverlay{position:fixed; width:100%; height:100%;}
#oxcboxMiddleLeft, #oxcboxBottomLeft{clear:left;}
#oxcboxContent{position:relative;}
#oxcboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#oxcboxTitle{margin:0;}
#oxcboxLoadingOverlay, #oxcboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#oxcboxPrevious, #oxcboxNext, #oxcboxClose, #oxcboxSlideshow{cursor:pointer;}
.oxcboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.oxcboxIframe{width:100%; height:100%; display:block; border:0;}
#oxcolorbox, #oxcboxContent, #oxcboxLoadedContent{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.
*/
#oxcboxOverlay{background:#fff;}
#oxcolorbox{outline:0;font: 12px Tahoma, Arial,sans-serif;}
    #oxcboxTopLeft{width:25px; height:25px; background:url(/assetsimages/border1.png) no-repeat 0 0;}
    #oxcboxTopCenter{height:25px; background:url(/assetsimages/border1.png) repeat-x 0 -50px;}
    #oxcboxTopRight{width:25px; height:25px; background:url(/assetsimages/border1.png) no-repeat -25px 0;}
    #oxcboxBottomLeft{width:25px; height:25px; background:url(/assetsimages/border1.png) no-repeat 0 -25px;}
    #oxcboxBottomCenter{height:25px; background:url(/assetsimages/border1.png) repeat-x 0 -75px;}
    #oxcboxBottomRight{width:25px; height:25px; background:url(/assetsimages/border1.png) no-repeat -25px -25px;}
    #oxcboxMiddleLeft{width:25px; background:url(/assetsimages/border2.png) repeat-y 0 0;}
    #oxcboxMiddleRight{width:25px; background:url(/assetsimages/border2.png) repeat-y -25px 0;}
    #oxcboxContent{background:#fff; overflow:hidden;}
        .oxcboxIframe{background:#fff;}
        #oxcboxError{padding:50px; border:1px solid #ccc;}
        #oxcboxLoadedContent{margin-bottom:20px;}
        #oxcboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
        #oxcboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
        #oxcboxLoadingOverlay{background:#fff url(/assetsimages/loading.gif) no-repeat 5px 5px;}

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

        #oxcboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #oxcboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
        #oxcboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
        #oxcboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.oxcboxIE #oxcboxTopLeft,
.oxcboxIE #oxcboxTopCenter,
.oxcboxIE #oxcboxTopRight,
.oxcboxIE #oxcboxBottomLeft,
.oxcboxIE #oxcboxBottomCenter,
.oxcboxIE #oxcboxBottomRight,
.oxcboxIE #oxcboxMiddleLeft,
.oxcboxIE #oxcboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}