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

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

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

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

#tlightbox{
	display:none;
	z-index:9999;
	position: absolute;
	top:50%;
	left:50%;
	margin:-220px 0 0 -290px;
	text-align:left;
	width:800px;
	height:400px;
	padding:0px; /* was 10px */
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	background:#000;
/*
			*/
}
#tlightbox[id]{
	position:fixed;
}

#toverlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: .5;
	opacity:.5;
	filter: alpha(opacity=50);
}
#toverlay[id]{
	position:fixed;
}

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

#tlightbox .lbAction img {
	width:66px;
	clear: both;
	float:right;
	border: 0;
}
#tlightbox a.lbAction  {
	border: 0;
	text-decoration: underline;
}