/*
    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;
	z-index: 1000;
	width: 100%;
	height: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
	clear: left;
}
#cboxContent {
	position: relative;
}
#cboxLoadedContent {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#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;
  box-shadow: rgba(255,255,255,0.1) 0px 0px 0px 5px;
  border-radius: 8px;
}
.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;
}
#cboxContent {
	margin-top: 40px;
	overflow: visible;
}
.cboxIframe {
	background: #fff;
}
#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}
#cboxLoadedContent {
  padding:5px;
}
#cboxLoadingGraphic {
	background: url(gfx/loading.gif) no-repeat center center;
}
#cboxLoadingOverlay {
	background: #fff;
  border-radius:12px;
  opacity:0.1;
}
#cboxTitle {
	position: absolute;
	top: -25px;
	left: 10px;
	color: #000;
	font-size: 13px;
	color: #fff;
}
#cboxCurrent {
	position: absolute;
	top: -22px;
	right: 205px;
	text-indent: -9999px;
}
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxSlideshow, #cboxClose {
	border: 0;
	padding: 0;
	margin: 0;
	overflow: visible;
	text-indent: -9999px;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -40px;
	background: url(images/controls.png) no-repeat 0 0;
}
#cboxPrevious, #cboxNext {
	border: 0;
	padding: 0;
	margin: 0;
	overflow: visible;
	text-indent: -9999px;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	background:#fff no-repeat center;
	background-color:rgba(255,255,255,0.8);
	border-radius:25px;
	margin-top: -25px;
	opacity: 0.8;
	filter: alpha(opacity=80);
}
@media (max-width: 799px) {
	#cboxPrevious, #cboxNext {
		height:40px;
		width:40px;
		margin-top:-20px;
	}
}
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
	outline: 0;
}
#cboxPrevious {
	left: 20px;
	background-image:url(gfx/go-left.png) ;
}
#cboxPrevious:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}
#cboxNext {
	right: 20px;
	background-image: url(gfx/go-right.png);
}
#cboxNext:hover { 
	opacity: 1;
	filter: alpha(opacity=100);
}
#cboxClose {
	background: url(gfx/close.png) no-repeat center;
	right: 5px;
  opacity:0.4;
} 
#cboxClose:hover {
  opacity:1;
}
.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious {
	right: 66px;
}
.cboxSlideshow_on #cboxSlideshow {
	background-position: -75px -25px;
	right: 44px;
}
.cboxSlideshow_on #cboxSlideshow:hover {
	background-position: -100px -25px;
}
.cboxSlideshow_off #cboxSlideshow {
	background-position: -100px 0px;
	right: 44px;
}
.cboxSlideshow_off #cboxSlideshow:hover {
	background-position: -75px -25px;
}
