/*
    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;}
#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:#838383;}
#colorbox{}
#cboxTopLeft{width:25px; height:25px; background:url(../img/colorbox/border1.png) no-repeat 0 0;}
#cboxTopCenter{height:25px; background:url(../img/colorbox/border1.png) repeat-x 0 -50px;}
#cboxTopRight{width:25px; height:25px; background:url(../img/colorbox/border1.png) no-repeat -25px 0;}
#cboxBottomLeft{width:25px; height:25px; background:url(../img/colorbox/border1.png) no-repeat 0 -25px;}
#cboxBottomCenter{height:25px; background:url(../img/colorbox/border1.png) repeat-x 0 -75px;}
#cboxBottomRight{width:25px; height:25px; background:url(../img/colorbox/border1.png) no-repeat -25px -25px;}
#cboxMiddleLeft{width:25px; background:url(../img/colorbox/border2.png) repeat-y 0 0;}
#cboxMiddleRight{width:25px; background:url(../img/colorbox/border2.png) repeat-y -25px 0;}
#cboxContent{background:#fff; overflow:hidden;}

#cboxError{padding:50px; border:1px solid #ccc;}
//#cboxLoadedContent{background: url(../img/logo_small.png) no-repeat; padding-top:38px; margin:10px;}
#cboxLoadedContent{background: none; padding-top:38px; margin:10px;}
#cboxLoadedContent.smallBox{margin-top:0px;}
#cboxTitle{position:absolute; top:10px; font-size: 21px; left:20px; width:88%; color:#C7C7C7; text-align:right; text-transform:uppercase; padding-top:16px;}
#cboxCurrent{position: absolute;bottom: 10px;left: 90px;color: #191919;font-size: 1.6em;font-weight: bold;font-family: Arial, Helvetica, sans-serif;}
#cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
#cboxPrevious{background:url(../img/colorbox/left_arrow.png) 0 4px no-repeat;width: 30px;height: 35px;position:absolute; bottom:0px; left:20px; color:#444; border:none;}
#cboxNext{background:url(../img/colorbox/right_arrow.png) 0 4px no-repeat;margin-left:5px;width: 30px;height: 35px;position:absolute; bottom:0px; left:50px; color:#444; border:none;}
#cboxLoadingOverlay{background:#fff url(../img/colorbox/loading.gif) no-repeat 49% 48%;}
#cboxClose{background: url(../img/colorbox/close.png) no-repeat;position: absolute;top: 10px;right: 19px;display: block;color: #444;height: 18px;width: 18px; border: 0px;}

/*
  The following fixes a problem where IE7+ replaces a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.
*/
.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);
}