/**
* ColorBox core style
*/
#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;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	cursor: pointer;
}
.cboxPhoto {
	display: block;
	float: left;
	margin: auto;
	max-width: none;
	border: 0;
}
.cboxIframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	overflow-y: scroll;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-ms-box-sizing: content-box;
	-o-box-sizing: content-box;
	box-sizing: content-box;
}

/**
* Colorbox module Stockholm syndrome style:
* The styles are ordered & tabbed in a way that represents
* the nesting of the generated HTML.
*/
#cboxOverlay {
	background: #000;
}
#colorbox {
	background: #fff;
	border: 15px solid #fff;
	outline: 0;
	-webkit-box-shadow: 3px 3px 16px #333;
	-moz-box-shadow: 3px 3px 16px #333;
	-ms-box-shadow: 3px 3px 16px #333;
	-o-box-shadow: 3px 3px 16px #333;
	box-shadow: 3px 3px 16px #333;
}
#colorbox,
#colorbox div {
	overflow: visible;
}
#cboxTopLeft,
#cboxTopCenter,
#cboxTopRight,
#cboxBottomLeft,
#cboxBottomCenter,
#cboxBottomRight,
#cboxMiddleLeft,
#cboxMiddleRight {
	display: none;
}
#cboxContent {
	background: #fff;
	overflow: hidden;
	font-family: Arial, sans-serif;
	font-size: .9em;
	margin-bottom: 45px;
}
#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}
#cboxTitle {
	width: 80%;
	height: 35px;
	color: #313131;
	font-weight: bold;
	padding-top: 10px;
	overflow: hidden !important;
	background: #fff;
	text-align: left;
}
#cboxCurrent {
	float: right !important;
	color: #313131;
	padding-top: 10px;
	background: #fff;
}
/* Slideshow not implemented. */
.cboxSlideshow_on #cboxSlideshow,
.cboxSlideshow_off #cboxSlideshow {
	display: none;
}
#cboxPrevious,
#cboxNext {
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
}
#cboxPrevious .cboxNavBtn,
#cboxNext .cboxNavBtn {
	position: absolute;
	top: 30%;
	background-image: url("images/controls.png");
	background-repeat: no-repeat;
	background-color: rgba(255, 255, 255, .9);
	width: 42px;
	height: 50px;
	text-indent: -9999px;
	opacity: 0;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
#cboxPrevious,
#cboxPrevious .cboxNavBtn {
	left: 0;
}
#cboxPrevious .cboxNavBtn {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	-ms-border-radius: 0 3px 3px 0;
	-o-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	background-position: 0 -241px;
}
#cboxPrevious:hover .cboxNavBtn {
	opacity: 1;
	background-position: -3px -241px;
}
#cboxNext,
#cboxNext .cboxNavBtn {
	right: 0;
}
#cboxNext .cboxNavBtn {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	-ms-border-radius: 3px 0 0 3px;
	-o-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	background-position: -5px -158px;
}
#cboxNext:hover .cboxNavBtn {
	opacity: 1;
	background-position: -2px -158px;
}
#cboxLoadingOverlay {
	background: #f2f2f2;
}
#cboxLoadingGraphic {
	background: url("images/loading.gif") no-repeat center center;
}
#cboxClose {
	position: absolute;
	top: -35px;
	right: -40px;
	background: url("images/controls.png") no-repeat;
	width: 55px;
	height: 55px;
	text-indent: -9999px;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	filter: alpha(opacity=0);
}
#cboxClose:hover {
	background-position: 0 -55px;
}
.cboxIE #cboxTitle {
	opacity: 1 !important;
	-ms-filter: "alpha(opacity=0)" !important;
	filter: alpha(opacity=0) !important;
}
.cboxIE #cboxClose {
	opacity: 1 !important;
	-ms-filter: "alpha(opacity=100)" !important;
	filter: alpha(opacity=100) !important;
	top: -5px;
	right: -10px;
	background-color: #fff;
	border: 1px solid #fff;
	border-width: 0 0 4px 10px;
}
.cboxIE #cboxPrevious .cboxNavBtn,
.cboxIE #cboxNext .cboxNavBtn {
	background-color: #fff;
}