/*
    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%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer; border: 0;}
.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: #ddd;
	background: -webkit-radial-gradient(rgba(225,225,225, 0.9), rgba(180,180,180, 0.8) 60%, rgba(60,60,60, 0.6));
	background: -moz-radial-gradient(rgba(225,225,225, 0.9), rgba(180,180,180, 0.8) 60%, rgba(60,60,60, 0.6));
}
#colorbox { }
	#cboxContent, #cboxTitle { background: #F6F6F6; }
    #cboxContent { overflow:hidden; padding: 0; margin: 20px;
				  -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; /* border radius */
				  -webkit-box-shadow: 0 0 15px rgba(0,0,0,.3); -moz-box-shadow: 0 0 15px rgba(0,0,0,.3); box-shadow: 0 0 15px rgba(0,0,0,.3); /* box shadow */
				   -webkit-background-clip: padding-box; 	/* smoother borders with webkit */ }
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent { margin: 33px 30px 35px; }
        #cboxTitle{ position: absolute; padding: 8px 120px 8px 30px; font-size: 12px; bottom: 0; left: 0; color:#777; font-weight: bold; }
        #cboxCurrent{position:absolute; bottom:8px; left:75px; color:#949494; text-indent: -9999px;} 
        #cboxSlideshow{position:absolute; bottom:8px; right:35px; color:#0092ef;}
        #cboxPrevious, #cboxNext, #cboxClose {
			position: absolute; width: 30px; height: 30px;
			font-family: FontAwesome; font-size: 20px; line-height: 30px; text-align: center;
			background: #999; color: #fff;
			-webkit-transition: all 0.1s ease-in-out; 
			   -moz-transition: all 0.1s ease-in-out; 
			     -o-transition: all 0.1s ease-in-out; 
			        transition: all 0.1s ease-in-out;        	
        }
        #cboxPrevious 	{ bottom: -9px; right: 60px; }
        #cboxNext 		{ bottom: -9px; right: 30px; }
        #cboxPrevious:hover, #cboxNext:hover { background: #777; bottom: 0px }
        #cboxLoadingOverlay{background:url(../images/lightbox/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(../images/lightbox/loading.gif) no-repeat center center;}
        #cboxClose{ top: -9px; right: 30px; font-size: 18px; line-height: 38px; }
        #cboxClose:hover { background: #E21D44; top: -2px; font-size: 20px; line-height: 30px; }

/*
  The following fixes a problem where IE7+ replaces a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.
*/
.cboxIE #cboxTopLeft,.cboxIE #cboxTopCenter,.cboxIE #cboxTopRight,.cboxIE #cboxBottomLeft,.cboxIE #cboxBottomCenter,.cboxIE #cboxBottomRight,.cboxIE #cboxMiddleLeft,.cboxIE #cboxMiddleRight { 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); }
