body.lb-disable-scrolling {
	overflow: hidden;
}
.lightboxOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
}
.lightbox {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
}
.lightbox * {
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}
.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
}
.lightbox a img {
	border: none;
}
.lb-outerContainer {
	position: relative;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	background-color: white;
}
.lb-outerContainer .lb-container {}
.lb-outerContainer .lb-image {}
.lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
}
.lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
.lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(../images/loading.gif) no-repeat;
}
.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
.lb-container>.nav {
	left: 0;
}
.lb-nav .lb-prev, .lb-nav .lb-next {
	outline: none;
	width: 150px;
	height: 100%;
	cursor: pointer;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}
.lb-nav a.lb-prev {
	left: -150px;
	float: left;
	background-image: url(../images/prev.png);
}
.lb-nav a.lb-next {
	right: -150px;
	float: right;
	background-image: url(../images/next.png);
}
.lb-dataContainer {
	width: 50%;
	margin: 0 auto;
	padding-top: 5px;
	display: none!important;
	*zoom: 1;
}
.lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
}
.lb-data {
	padding: 0 4px;
	color: #ccc;
}
.lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
}
.lb-data .lb-caption {
	font-size: 13px;
	font-weight: bold;
	line-height: 1em;
}
.lb-data .lb-caption a {
	color: #4ae;
}
.lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999999;
}
.lb-closeContainer {
	width: 50%;
	height: 0px;
	line-height: 0px;
	margin: 0 auto;
	position: relative;
	text-align: right;
}
.lb-closeContainer .lb-close {
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(../images/close.png) top right no-repeat;
	text-align: right;
	position: absolute;
	right: -15px;
	top: -15px;
	z-index: 10000000;
	background-size: 30px 30px;
	outline: none;
	/*filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s*/
}
@media (min-width: 768px) {
	.lb-nav .lb-prev:hover, .lb-nav .lb-next:hover {
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		opacity: 1;
	}
	.lb-closeContainer .lb-close:hover {
		cursor: pointer;
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		opacity: 1;
	}
}
@media (max-width: 767px) {
	.lb-nav .lb-prev, .lb-nav .lb-next {
		width: 2rem;
		background-size: 0.5rem auto;
	}
	.lb-nav a.lb-prev {
		left: 0;
	}
	.lb-nav a.lb-next {
		right: 0;
	}
}