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

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

Created : January 13, 2006
Modified : February 1, 2006
           2009-06-27 GS Updated to support Nomi site
- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:none;
	position: absolute;
	z-index:9999;
	width:806px;
	height:456px;
	/* center image top & left and use the margins to back off half of the height & width */
	top:50%;
	left:50%;
	margin:-229px 0 0 -403px;
	background:#ffffff;
	text-align:left;

}
#lightbox[id]{
	position:fixed;
}

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

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

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