/*
    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; }
#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; width: auto !important;}
.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:#000;}
#colorbox{}
    #cboxContent{margin-top:32px; overflow:visible;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadingGraphic{background: none;}
        #cboxLoadingOverlay{background:#fff;}

        #cboxTitle{position:absolute; bottom:-25px; left:0; color:#FFF; width: 100%; text-align: center;}
        #cboxCurrent{position:absolute; top:-22px; right:205px; display: none !important;}

        #cboxSlideshow, 
        #cboxPrevious, 
        #cboxNext {
	        display: none !important;
        }
        
        #cboxClose{
            width:38px; 
            height:38px; 
            position:absolute; 
            left: 50%; 
            top: -100px; 
            margin-left: -19px;
            cursor: pointer;
            background-image: url(../images/icon-X-large.png);
            background-position: 0 0;
            background-repeat: no-repeat;
        }

        #cboxPrevious{ left:-50px; top: 50%; margin-top: -20px; padding: 20px; }
        #cboxPrevious:hover { color: white; }

        #cboxNext{ right:-50px; top: 50%; margin-top: -20px; padding: 20px; }
        #cboxNext:hover { color: white; }
        
        .cboxSlideshow_on #cboxPrevious, 
        .cboxSlideshow_off #cboxPrevious{right:66px;}
        
        .cboxSlideshow_on #cboxSlideshow{background-position:-75px -25px; right:44px;}
        .cboxSlideshow_on #cboxSlideshow.hover{background-position:-100px -25px;}
        .cboxSlideshow_off #cboxSlideshow{background-position:-100px 0px; right:44px;}
        .cboxSlideshow_off #cboxSlideshow.hover{background-position:-75px -25px;}
        