/* - - - - - - - - - - - - - - - - - - - - -

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:682px;
	height:394px;
	margin:-197px 0 0 -341px;
/*	border:1px solid #fff;*/
/*	background:#000000;*/
	text-align:left;
}
#lightbox[id]{
	position:fixed;
}
.overlayMacFF {
	background: url(/images/shade-blk.png) repeat;
}
.overlayOther {
	background-color:#000;
	-moz-opacity: 0.9;
	opacity:.80;
	filter: alpha(opacity=80);
}
#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:none;
}

#lightbox.done img{
	width:100%;
	height:100%;
}
/*
.lbCloseButton {
	background: #fff;
	text-align: center;
	width: 100%;
}
.lbCloseButton a {
	color: #73a5ca;
	font: bold 14px/30px Arial, Helvetica, sans-serif;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 30px;
	text-align: center;	
}
*/
.lbCloseButton { background: #fff; padding: 2px; height: 11px; }
.lbCloseButton a { display: block; float: right; width: 50px; height: 11px; text-indent: -9999px; background: url(/images/btn_close.gif) no-repeat 0 0; }