/* - - - - - - - - - - - - - - - - - - - - -

Title	: Lightbox CSS
Author	: Kevin Hale
URL	: http://particletree.com/features/lightbox-gone-wild/

- - - - - - - - - - - - - - - - - - - - - */

#lightbox
{
	background	: #ffffff;
	border		: 1px solid #ABCFE5;
	display		: none;
	height		: 406px;
	left		: 50%;
	margin		: 0px 0 0 -198px;
	position	: absolute;
	text-align	: left;
	top		: 131px;
	width		: 406px;
	z-index		: 9999;	
}

#lightbox[id]
{
	position:fixed;
}

#overlay
{
	background-color: #000000;
	display		: none;
	filter		: alpha(opacity=40);
	height		: 100%;
	left		: 0;
	opacity		: .4;
	position	: absolute;
	top		: 0;
	width		: 100%;
	z-index		: 5000;	
	-moz-opacity	:  0.4;	
}

#overlay[id]
{
	position:fixed;
}

#lightbox.done #lbLoadMessage
{
	display:none;
}

#lightbox.done #lbContent
{
	display:block;
}

#lightbox.loading #lbContent
{
	display:none;
}

#lightbox.loading #lbLoadMessage
{
	display:block;
}