/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox2{
	display:none;
	position: absolute;
	top:580px;
	left:50%;
	z-index:9999;
	width:520px;
	height:450px;
	margin:-220px 0 0 -250px;
	border:1px solid #772b2f;
	background:#FDFCE9;
	text-align:left;
}
#lightbox2[id]{
	position:fixed;
}

#overlay2{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#ded9c3;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
#overlay2[id]{
	position:fixed;
}

#lightbox2.done #lbLoadMessage{
	display:none;margin-left:10px;margin-top:10px;
}
#lightbox2.done #lbContent{
	display:block;
}
#lightbox2.loading #lbContent{
	display:none;
}
#lightbox2.loading #lbLoadMessage{
	display:block;
}

#lightbox2.done img{
	width:100%;
	height:100%;
}