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

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:50%;
	left:50%;
	z-index:9999;
	width:350px;
	height:310px;
	margin:-170px 0 0 -175px;
	border:1px solid #fff;
	background:#FDFCE9;
	text-align:left;
}
#lightbox2[id] {
	position:fixed;
}

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

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

#lightbox2.done img {
	width:100%;
	height:100%;
}
