/* - - - - - - - - - - - - - - - - - - - - -

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:790px;
	height:490px;
	margin:-245px 0 0 -395px;
	background:#fff;
	text-align:center;
}
#lightbox2[id]{
	position:fixed;
}

#overlay2{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000e22;
	-moz-opacity: 0.9;
	opacity:.90;
	filter: alpha(opacity=90);
}
#overlay2[id]{
	position:fixed;
}

#lightbox2.done #lbLoadMessage{
	display:none;
}
#lightbox2.done #lbContent{
	display:block;
}
#lightbox2.loading #lbContent{
	display:none;
}
#lightbox2.loading #lbLoadMessage{
	display:block;
	font-size:12px;
	color:#000;
	text-transform:uppercase;
	letter-spacing:2px;
}

#lightbox2.done img{
	width:100%;
	height:100%;
}
