/*==============================================================================
	Lightbox (Image pop-up)
==============================================================================*/

body {
	height: 100%;
}

.lightboxBackground {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	display: none;
		
	opacity:.50;
	filter: alpha(opacity=50); 
	-moz-opacity: 0.5;
}

.lightbox {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	text-align: right;
	background: #fff url(/images/layout/loading.gif) no-repeat 50% 50%;
	padding: 0 0 22px 0;
	border: 10px solid #fff;
	display: none;
}

.closebutton {
	position: absolute;
	bottom: 0;
	right: 0;
}