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

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

#overlay[id] {
	position: fixed;
}

#lightbox {
	display: none;
	position: absolute;
	z-index: 9999;
	text-align: center;
	top: 0; left: 0;
	width: 100%; 
}

#lightbox[id] {
	position: fixed;
}

#lightbox.done #lbLoadMessage { display: none; }
#lightbox.done #lbContent { display: block; }
#lightbox.loading #lbContent { display: none; }
#lightbox.loading #lbLoadMessage { display: block; }

#lightbox.done img { /* was 100% */
	/*width: auto;
	height: auto;*/
}