/*
    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:9999999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch; display:table-cell; vertical-align:middle;}
#cboxTitle{margin:0;z-index:1;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; min-width:100%; height:auto; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{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.
*/
#cboxOverlay{background:#000;}
#colorbox{outline:0;
	-moz-box-shadow: 0 0 200px #0159ac;
	-webkit-box-shadow: 0 0 200px #0159ac;
	box-shadow: 0px 0px 200px #0159ac;
	filter:progid:DXImageTransform.Microsoft.Glow(Color=#0159ac,Strength=90);	
	background: #12205c; /* Old browsers */
	background: -moz-linear-gradient(top,  #12205c 0%, #0d2f72 40%, #13151f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#12205c), color-stop(40%,#0d2f72), color-stop(100%,#13151f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #12205c 0%,#0d2f72 40%,#13151f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #12205c 0%,#0d2f72 40%,#13151f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #12205c 0%,#0d2f72 40%,#13151f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #12205c 0%,#0d2f72 40%,#13151f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#12205c', endColorstr='#13151f',GradientType=0 ); /* IE6-9 */

}
    #cboxContent{background:#202229; border:1px solid #666; overflow:hidden;}
        .cboxIframe{background:transparent;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:0px;}
        #cboxTitle{/*position:absolute; top:10px; right:50px;*/ float:right; margin-right:50px; text-align:right; width:100%; color:#fff;}
        #cboxCurrent{position:absolute; top:-100px; left:80px; color:#fff; font-weight:bold;}
        #cboxLoadingOverlay{background:none;}
        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}

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

        #cboxSlideshow{position:absolute; top:0px; right:30px; color:#fff;}
        #cboxPrevious{position:absolute; top:10px; left:10px; background:url(images/prev_btn.png) no-repeat 0px 0; width:30px; height:30px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:0px -30px;}
        #cboxNext{position:absolute; top:10px; left:45px; background:url(images/next_btn.png) no-repeat 0px 0; width:30px; height:30px; text-indent:-9999px;}
        #cboxNext:hover{background-position:0px -30px;}
        #cboxClose{position:absolute; top:10px; right:10px; background:url(images/close_btn.png) no-repeat 0px 0; width:30px; height:30px; text-indent:-9999px;}
        #cboxClose:hover{background-position:0px -30px;}