/*
    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;
}
#cboxWrapper {
	max-width: none;
}
#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .7;
	filter: alpha(opacity = 70);
}
#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%;
}
.cboxPhoto {
	display: block;
	float: left;
	max-width: none;
	margin: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
.cboxIframe {
	display: block;
	width: 100%;
	height: 100%;
	margin:0;
	padding: 0;
	border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
		-moz-box-sizing: content-box;
		-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
#colorbox {
	outline: 0;
}

#cboxCurrent{
	display: none!important;
}
#cboxLoadedContent{
	box-shadow: 2px 2px 5px rgba(0,0,0,.7);
}


/****** loading ******/
#cboxLoadingGraphic {
	background: url(../images/loader.gif) no-repeat center center;
}


/****** nav ******/
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	overflow: visible;
	width: auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
	outline: 0;
}

/* cboxPrevious / cboxNext */
#cboxPrevious,
#cboxNext {
	position: absolute;
	top: 50%;
	width: 20px;
	height: 30px;
	margin-top: -15px;
	padding: 0;
	border: none;
	background: none;
	text-indent: -99999px;
	text-indent: -9999px;
	outline: none;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
	transition: all .4s ease;
		-webkit-appearance: none;
}
#cboxPrevious {
	left: -30px;
}
#cboxNext {
	right: -30px;
}

#cboxPrevious:before,
#cboxPrevious:after,
#cboxNext:before,
#cboxNext:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 2px;
	background: #d9b368;
}
#cboxPrevious:before {
	margin-top: -13px;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#cboxPrevious:after {
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#cboxNext:before {
	margin-top: -13px;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#cboxNext:after {
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* cboxClose */
#cboxClose {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 24px;
	background: #d6bf92;
	text-indent: -9999px;
	outline: none;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
	transition: all .4s ease;
}
#cboxClose:before,
#cboxClose:after {
	content: '';
	position: absolute;
	top: 12px;
	left: 5px;
	width: 15px;
	height: 1px;
	background: #fff;
}
#cboxClose:before {
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#cboxClose:after {
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* hover */
#cboxPrevious:hover,
#cboxNext:hover,
#cboxClose:hover {
	opacity: .7;
}






/*============================================================================

	responsive

============================================================================*/
@media screen and (max-width:767px) {
#cboxPrevious,
#cboxNext {
	transform: scale(.6);
}
#cboxPrevious {
	left: -18px;
}
#cboxNext {
	right: -18px;
}
}
