<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* - - - - - - - - - - - - - - - - - - - - -

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

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

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

#lightbox{
	background-image:url(../priv/images/pixel.png);
	display:none;
	position: absolute;
	top:400px;/* 50%? */
	left:50%;
	z-index:9999;
	width:585px;
	height:515px;
	margin:-350px 0 0 -315px;
	border:1px solid #fff;
	text-align:left;
	padding: 30px;
}
#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;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

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

#lbLoadMessage img{
	width: 18px !important;
}

#lbLoadMessage span{
	display:block;
	float:left;
	line-height:20px;
	margin-right:10px;
	overflow:hidden;
}

div#closeButton
{
	display:block;
	overflow:hidden;
	height:22px;
	margin-top: 0px;
}

div#closeButton a
{
	display:block;
	float:right;
	line-height:16px;
	overflow:hidden;
	margin-right: 1px;
}

div#closeButton img
{
	margin-top:2.5px;
	height:22px !important;
	width:66px !important;
}</pre></body></html>