/*
    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:9999; overflow:hidden; font-family:Arial, Helvetica, sans-serif;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}

/* 
    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:url(images/overlay.png) repeat 0 0;}
#colorbox{overflow:visible;}
    #cboxTopLeft{width:30px; height:33px; background:url(images/top_left.png) no-repeat 0 0;}
    #cboxTopCenter{height:33px; background:url(images/top_middle.png) repeat-x 0 0;}
    #cboxTopRight{width:30px; height:33px; background:url(images/top_right.png) no-repeat 0 0;}
    #cboxBottomLeft{width:30px; height:67px; background:url(images/bottom_left.png) no-repeat 0 0;}
    #cboxBottomCenter{height:67px; background:url(images/bottom_middle.png) repeat-x 0 0;}
    #cboxBottomRight{width:30px; height:67px; background:url(images/bottom_right.png) no-repeat 0 0;}
    #cboxMiddleLeft{width:30px; background:url(images/left_middle.png) repeat-y 0 0;}
    #cboxMiddleRight{width:30px; background:url(images/right_middle.png) repeat-y 0 0;}
    #cboxContent{background:#fff;}
        .cboxIframe{background:transparent;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxWrapper{overflow:visible;}
		#cboxLoadedContent{}
        #cboxTitle{position:absolute; bottom:-30px; left:0px; width:50%; color:#333; font-size:13px; font-weight:bold;}
        #cboxCurrent{position:absolute; bottom:-30px; width:100%; text-align:right; color:#333; font-size:12px; }
        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #cboxPrevious{position:absolute; top:47%; left:15px; display:block; width:26px; height:26px; color:#444; background:url(images/prevthumb.png) no-repeat 0 0; text-indent:-9999px;}
		#cboxPrevious:hover{background:url(images/prevthumb.png) no-repeat 0 0;}
        #cboxNext{position:absolute; top:47%; right:15px; display:block; width:26px; height:26px; color:#444; background:url(images/nextthumb.png) no-repeat 0 0; text-indent:-9999px;}
		#cboxNext:hover{background:url(images/nextthumb.png) no-repeat 0 0;}
        #cboxLoadingOverlay{background:#fff url(images/loading.gif) no-repeat center center;}
        #cboxClose{position:absolute; top:-23px; right:-23px; display:block; width:26px; height:26px; color:#444; background:url(images/closethumb.png) no-repeat 0 0; text-indent:-9999px;}
		#cboxClose:hover{background:url(images/closethumb.png) no-repeat 0 0;}

/*
  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/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}
