/*
    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;
	-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;
}
.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-color: rgba(0, 0, 0, 0.7);
}
#colorbox {
}
#cboxContent {
	border: 1px solid transparent;
	background: #ffffff;
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
	-ms-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
	-o-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	padding: 0 0 30px 0;
	margin: 10px;
	overflow: hidden;
	font-size: 14px;
}
#cboxLoadedContent > img {
	padding: 10px;
	margin: 0;
}
.cboxIframe {
	background: #fff;
}
#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}
#cboxLoadedContent {
	margin-bottom: -1px;
}
#cboxTitle {
	position: absolute; /**bottom:5px;**/
	left: 0;
	text-align: left;
	padding-left: 10px;
	width: 100%;
	color: #999;
}
#cboxCurrent {
	position: absolute; /**bottom:5px;**/
	right: 10px;
	color: #999;
}
#cboxSlideshow {
	position: absolute; /**bottom:5px;**/
	right: 42px;
	color: #444;
}
#cboxPrevious {
	display: none;
	position: absolute; /**bottom:5px;**/
	left: 0;
	color: #fff;
	font-size: 0px;
}
#cboxNext {
	display: none;
	position: absolute; /**bottom:5px;**/
	left: 0;
	color: #fff;
	font-size: 0px;
}
#cboxLoadingOverlay {
	background: #fff url(../images/bx_loader.gif) no-repeat 5px 5px;
	background-position: center center;
}
#cboxClose {
	z-index: 1000;
	position: absolute;
	width: 27px;
	height: 27px;
	top: 10px;
	opacity: 0.7;
	right: 8px;
	display: block;
	background-image: url(../images/close.png);
	background-position: top left;
	background-repeat: no-repeat;
	font-weight: bold;
	color: rgba(0, 0, 0, 0);
	font-size: 0; /*text-shadow: 1px 1px 3px #ffffff;*/
}
#cboxClose:hover {
	text-decoration: underline;
	opacity: 1;
}

@media all and (max-width: 960px) {
	#cboxTitle {
		display: none;
		color: #fff;
	}
}

@media all and (max-width: 550px) {
	#cboxPrevious {
		position: absolute; /**bottom:5px;**/
		left: 10px;
		color: #444;
		font-size: 12px;
	}
	#cboxNext {
		position: absolute; /**bottom:5px;**/
		left: 25%;
		color: #444;
		font-size: 12px;
	}
}
