/*
    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%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width: none;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{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{}
    #cboxContent{box-shadow:0 0 15px 0 #333;-webkit-box-shadow:0 0 15px 0 #333;margin:15px;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{border:0 none; background:#fff;}
        #cboxTitle{position:absolute; left:0; color:#ccc;}
        #cboxCurrent{position:absolute; bottom:30px; right:68px; color:#58595b;font:14px Arial;visibility:hidden;}
        #cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
        #cboxPrevious{position:absolute; bottom:12px; left:15px; margin-top:0; color:#b5121b;background:#fff;font:20px/20px 'Proxima N W01 Reg',Arial;}
        #cboxPrevious:hover{box-shadow:0 0 0 0;-webkit-box-shadow:0 0 0 0;}
        #cboxNext{position:absolute; bottom:12px; right:15px; margin-top:0; color:#b5121b;background:#fff;font:20px/20px 'Proxima N W01 Reg',Arial;}
        #cboxNext:hover{box-shadow:0 0 0 0;-webkit-box-shadow:0 0 0 0;}
        #cboxLoadingOverlay{background:#fff;}
        #cboxLoadingGraphic{background:url(../img/loading.gif) no-repeat center center;}
        #cboxClose{position:absolute; top:15px; right:13px; display:block; background:url(../img/css-sprite.png) no-repeat 0 -77px; width:23px; height:23px; text-indent:-9999px;}
		#cboxClose:hover{background:url(../img/css-sprite.png) no-repeat 0 -77px;box-shadow:0 0 0 0;-webkit-box-shadow:0 0 0 0;}
		
		/* smartphone portrait */			
		@media only screen and (max-width: 400px) and (orientation: portrait) {
			 #cboxContent{margin:0;}
		}