/*
    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%; 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; -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{}
    #cboxContent{}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{
			margin-bottom:28px;
			-moz-box-shadow: 0 0 10px #555;
			-webkit-box-shadow: 0 0 10px #555;
			box-shadow: 0 0 10px #555;
		}
        #cboxLoadingOverlay{background:url(../img/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(../img/loading.gif) no-repeat center center;}
        #cboxClose{
			width: 30px;
			height: 30px;
			display: block;
			overflow: hidden;
			position: absolute;
			top: -20px;
			right: -23px;
			font: 24px/30px arial, sans-serif;
			text-align: center;
			color: #0e2430;
			background: #cfd102;
			border: 4px solid #e54128;
			-moz-box-shadow: 0px 0px 10px #555;
			-webkit-box-shadow: 0px 0px 10px #555;
			box-shadow: 0px 0px 10px #555;
			-moz-border-radius: 100%;
			-webkit-border-radius: 100%;
			border-radius: 100%;
		}
        #cboxClose:hover{
			color: #cfd102;
			background: #e54128;
			border-color: #cfd102;
			-moz-box-shadow: 0px 0px 20px #555;
			-webkit-box-shadow: 0px 0px 20px #555;
			box-shadow: 0px 0px 20px #555;
		}