/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */
#lightbox{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	width:700px;
	height:520px;
	margin:-220px 0 0 -350px;
	border:1px solid #fff;
	background:#FDFCE9;
	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;
}
#lightbox.loading #lbContent{
	display:none;
}
#lbContent {
	color: inherit; /* text color */
	font-family: Georgia; /* font name */
	font-size: 10pt; /* font size */
	margin: 0px 0px 0px 0px; /* top right bottom left */

 }
#lbContent p { text-align: justify; color:#000000 }
#lbContent a:link,
#lbContent a:visited { color: #00F }
#lightbox.loading #lbLoadMessage {
	padding-top:20%;
	display:block;
	text-align:center;
	font:bold 9pt verdana,tahoma;
	color:#530008;
}

#lightbox.done img {
	width:100%;
	height:100%;
}

#lbTitle { height:16px; background-color:#F1F3F5; font:bold 8pt verdana,tahoma; font-weight:bold;
	color:#000 }
.lbClose { width:12px; height:12px }
.lbtrigger-loading { display: block; text-align:center }
.lbtrigger-container { display:none }
