#lightbox
{
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 9999;
	width: 800px;
	height: 637px;
	margin: -300px 0 0 -400px;
	border: 3px solid white;
	background: white;
	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.8;
	opacity: .80;
	filter: alpha(opacity=80);
}
#overlay[id]
{
	position: fixed;
}
#lightbox.done #lbLoadMessage
{
	display: none;
}
#lightbox.done #lbContent
{
	display: block;
	background-image: url(images/loading.gif);
	background-position: center;
	background-repeat: no-repeat;
}
#lightbox.loading #lbContent
{
	display: block;
}
#lightbox.loading #lbLoadMessage
{
	display: block;
}
#lightbox.done IMG
{
	width: 100%;
	height: 100%;
}
A.lbAction
{
	background-color: white;
	color: black;
	float: right;
	font-family: "Trebuchet MS", Trebuchet, Verdana, Sans-Serif;
	font-weight: bold;
	padding: 5px 30px;
	text-decoration: none;
}
A:hover.lbAction
{
	background: rgb(200, 200, 200);
}
