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

Title : Lightbox CSS
Author : Kevin Hale
Modified By: Noah Winecoff (http://www.findmotive.com)
Modifier By: Stephane Talbot (http://www.at-lounge.fr)

URL : http://particletree.com/features/lightbox-gone-wild/

Created: January 13, 2006
Modified: February 1, 2006
Modified: April 4, 2009
- - - - - - - - - - - - - - - - - - - - - */
#lightbox {
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	margin-right:0;
	margin-bottom:0;
	text-align:left;
	background-image:url(wait.gif);
	background-position:center;
	background-repeat:no-repeat;
	cursor:wait;
}
#lightbox[id] {
	position:fixed;
}

#overlay {
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	-moz-opacity:0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
#overlay[id] {
	position:fixed;
}

#lightbox.done #lbLoadMessage { display:none; }
#lightbox.done #lbContent { display:block; }
#lightbox.done #lbContent #closebox { position:absolute; top:-15px; width:30px; height:30px; cursor:pointer; border:0; }
#lightbox.done img { width:100%; height:100%; }

#lightbox.loading { width:50px; height:50px; margin:-25px 0 0 -25px; }
#lightbox.loading #lbContent { display:none; }
#lightbox.loading #lbLoadMessage { display:block; }
