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

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

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */
#lightWindowsBox{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	height:auto;
/*	margin:-220px 0 0 -250px; */
	border:1px solid #fff;
	background:#FFF;
	text-align:left;
  padding:6px;
}
#lightWindowsBox[id]{
	position:fixed;
}
#overlayWindowsBox{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
  cursor:wait;
	-moz-opacity: 0.4;
	opacity:.40;
	filter: alpha(opacity=40);
}
.loadingMSG{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	height:100px;
  width:350px;
  margin:-200px 0 0 -200px;
	border:1px solid #fff;
	background:#FFF;
	text-align:left;
  padding:6px;
}
.overlayWindowsBox{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
  cursor:wait;
	-moz-opacity: 0.4;
	opacity:.40;
	filter: alpha(opacity=40);
}
#overlayWindowsBox[id]{
	position:fixed;
}

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

#lightWindowsBox.done img{
	width:auto;
	height:auto;
}