#lightBox {
	display: block;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	text-align: center;
	background-color: rgba(0, 0, 0, .9);
	z-index: 1000;
}
#lightBox #lightboxInner {
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
#lightBox #lightboxHelper {
	display: inline-block;
	height: 100%;
	width: 0;
	vertical-align: middle;
}
#lightBox #lightboxWrapper {
	padding: 10px;
	border-radius: 6px;
	background: #FFF;
	overflow: hidden;
}
#nextSlide {
	position: absolute;
	width: 32px;
	height: 32px;
	top: 50%;
	right: 0;
	margin: -16px 0 0;
	background: url("../images/lightbox-next.png") 0 0 no-repeat;
	cursor: pointer;
	z-index: 9999;
}
#prevSlide {
	position: absolute;
	width: 32px;
	height: 32px;
	top: 50%;
	left: 0;
	margin: -16px 0 0;
	background: url("../images/lightbox-prev.png") 0 0 no-repeat;
	cursor: pointer;
	z-index: 9999;
}
#closeLightbox {
	position: absolute;
	width: 32px;
	height: 32px;
	top: -16px;
	right: -16px;
	background: url("../images/lightbox-close.png") 0 0 no-repeat;
	cursor: pointer;
	z-index: 9999;
}
#openImage {
	display: block;
	position: absolute;
	width: 32px;
	height: 32px;
	right: 0;
	bottom: 0;
	background: url("../images/lightbox-zoom.png")  0 0 no-repeat;
	cursor: pointer;
	z-index: 9999;
}