/*
    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:10000; overflow:hidden; background: no-repeat top center;}
#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:#000;transition: opacity 0.3s ease;}
#colorbox{}
    #cboxContent{margin:80px 0px 50px 0px; }



        #cboxError{padding:50px;}
        #cboxLoadedContent{background:#000;}
        #cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
        #cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;}
		
		/*btn*/
        #cboxSlideshow{position:absolute; top:-20px; right:90px; color:#000;}
        #cboxPrevious{position:absolute; top:50%; left:-100px; margin-top:-32px; background:url(images/btn_prev.png) no-repeat top left; width:81px; height:81px; text-indent:-9999px; z-index:999;}
        #cboxPrevious.hover{position:absolute; top:50%; left:-100px; margin-top:-32px; background:url(images/btn_prev_on.png) no-repeat top left; width:81px; height:81px; text-indent:-9999px;}
        #cboxNext{position:absolute; top:50%; right:-100px; margin-top:-32px; background:url(images/btn_next.png) no-repeat top left; width:81px; height:81px; text-indent:-9999px; z-index:999;}
        #cboxNext.hover{position:absolute; top:50%; right:-100px; margin-top:-32px; background:url(images/btn_next_on.png) no-repeat top left; width:81px; height:81px; text-indent:-9999px; z-index:999;}
        
        #cboxClose{position:absolute; top:0px!important; right:0px!important;
            display:block; width:70px!important; height:70px!important; text-indent:-9999px;z-index:999;}

        #cboxClose:before,#cboxClose:after{
            content: '';
            display: inline-block;
            width: 22px;
            height: 2px;
            background-color: #000;
            position: absolute;
            right: 30%;
            top: 26px;
        }
        #cboxClose:before{ transform: rotate(-45deg); }
        #cboxClose:after{ transform: rotate(45deg); }

        #cboxClose.hover{opacity: 0.7}
        
		/*change*/
        #cboxLoadingOverlay{background:#000;}
        #cboxLoadingGraphic{background:url(images/loader.gif) no-repeat center center;}
