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

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

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

Renamed CSS IDs (by Papi):
overlay => overlay2
lightbox => lightbox2

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

#lightbox2
{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	width: 906px;
	height: 546px;
	margin: -273px 0 0 -453px;
	text-align:left;
}
#lightbox2[id]
{
	position:fixed;
}

#overlay2
{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-image: url("img/overlay.png");
}
#overlay2[id]
{
	position:fixed;
}
* html #overlay2 /* IE */
{
	background-color: #333;
	back\ground-color: transparent;
	background-image: url("img/blank.gif");
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="api/js/lightbox2/img/overlay.png", sizingMethod="scale");
}

#lightbox2.loading #lbContent
{
	display: none;
}
#lightbox2.loading #lbLoadMessage
{
	background: url("img/loading.gif") no-repeat center center;
	display: block;
	height: 100%;
}

#lightbox2.done #lbLoadMessage
{
	display: none;
}
#lightbox2.done #lbContent
{
	display: block;
}
#lightbox2.done img
{
}
#lightbox2 .lbContainer
{
	background: #fff;
	border: 10px solid #f2f2f2;
	padding: 0;
	height: 526px;
}
