.lightbox-popup {
	position: absolute;
	z-index: 2000;
	
	background: center no-repeat #000;
	
	border: 5px solid #000;
	
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}
	.lightbox-popup .arrow {
		position: absolute;
		
		top: 0px;
		bottom: 0px;
		z-index: 5;
		
		width: 45%;
		
		cursor: pointer;
		
	}
	.lightbox-popup .arrow.prev {
		left: 10px;
		background: left center url('../img/lightbox-arrow-left.png') no-repeat;
	}
	.lightbox-popup .arrow.next {
		right: 10px;
		background: right center url('../img/lightbox-arrow-right.png') no-repeat;
	}
	
	.lightbox-popup .title {
		position: absolute;
		
		height: 30px;
		left: 0px;
		bottom: 0px;
		right: 0px;
		z-index: 5;
		
		padding: 0 10px;
		line-height: 30px;
		font-size: 11px;
		
		color: #fff;
		background: #000;
		background: rgba(0,0,0,0.5);
		text-shadow: 0px 0px 2px #000;
		
	}
	
	.lightbox-popup .close {
		position: absolute;
		
		top: -30px;
		right: -5px;
		z-index: 5;
		
		font-weight: bold;
		line-height: 30px;
		cursor: pointer;
		
		color: #000;
		text-shadow: 0px 0px 2px #fff;
	}
	
	.lightbox-popup .content {
		width: 100%;
		height: 100%;
	}
		.lightbox-popup .content .image {
			position: absolute;
			top: 0;
			left: 0;
			z-index: 1;
			
			width: 100%;
			height: 100%;
			
			background: center no-repeat #000;
		}
	
	.lightbox-popup .preloader-big {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10;
		
		background: center url('../img/preloader.gif') no-repeat #000;
	}


.lightbox-preloader {
	position: absolute;
	background: center url('../img/preloader.gif') no-repeat #000;
}