/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	position: absolute;
	top:25%;
	left:30%;
	z-index:50000;
	width:auto;
	height:auto;
	text-align:left;
	background-color: #FFFFFF;
	color: #000000;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	display: none;
	font-size: 10pt;
	font-style: normal;
	padding: 20px;
}
#lightbox[id]{
	position:fixed;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0px;
	width:120%;
	height:120%;
	z-index:45000;
	background-color:#333333;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=40);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

#lightbox.done img{
	width:100%;
	height:100%;
}
