body.lb-disable-scrolling {
	overflow: hidden;
}

.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	opacity: 0.8;
	display: none;
}

.lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
	outline: none;
}

.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
	border-radius: 3px;
	border: 4px solid white;
}

.lightbox a img {
	border: none;
}

.lb-outerContainer {
	position: relative;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 4px;
	background-color: white;
}

.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 a {
	outline: none;
	background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
	position: relative;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	display: block;
	background: none;
	transition: opacity 0.6s;
}

.lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
}

.lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
	opacity: 1;
}

/* Prev Arrow: White "<" shape, no gap */
.lb-nav a.lb-prev:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 28px;
	width: 30px;
	height: 30px;
	border: solid #fff;
	border-width: 0 0 4px 4px;
	opacity: 0.9;
	pointer-events: none;
	display: block;
	transform: translateY(-50%) rotate(45deg);
	border-radius: 1px;
	transition: opacity 0.3s;
}
.lb-nav a.lb-prev:hover:before {
	opacity: 1;
}

/* Next Arrow: White ">" shape, no gap */
.lb-nav a.lb-next:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 28px;
	width: 30px;
	height: 30px;
	border: solid #fff;
	border-width: 4px 4px 0 0;
	opacity: 0.9;
	pointer-events: none;
	display: block;
	transform: translateY(-50%) rotate(45deg);
	border-radius: 1px;
	transition: opacity 0.3s;
}
.lb-nav a.lb-next:hover:before {
	opacity: 1;
}

.lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	width: 100%;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.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;
	height: 30px;
}

.lb-data .lb-caption {
	font-size: 16px;
	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;
}

/* Pure CSS white X close button */
.lb-data .lb-close {
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	background: none;
	text-align: center;
	outline: none;
	opacity: 0.7;
	cursor: pointer;
	transition: opacity 0.2s;
	position: relative;
}
.lb-data .lb-close:hover {
	opacity: 1;
}
.lb-data .lb-close:before,
.lb-data .lb-close:after {
	content: '';
	position: absolute;
	top: 0px;
	left: 14px;
	width: 3px;
	height: 30px;
	background: #fff;
	border-radius: 1px;
}
.lb-data .lb-close:before {
	transform: rotate(45deg);
}
.lb-data .lb-close:after {
	transform: rotate(-45deg);
}