/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
Modified By: Noah Winecoff (http://www.findmotive.com)
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightboxi{
	display:none;
	position: absolute;
	/*top:50%;*/
	top: 50px;
	left:50%;
	z-index:9999;
	width:500px;
	height:700px;
	/*margin:-220px 0 0 -250px;*/
	margin: 0;
	margin-left: -250px;
	border:10px solid #555555;
	background:#FFF;
	text-align:left;
}
#lightboxi[id]{
	position:fixed;
}

#overlayi{
	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);
}
#overlayi[id]{
	position:fixed;
}

#lightboxi.done #lbiLoadMessage{
	display:none;
}
#lightboxi.done #lbiContent{
	display:block;
}
#lightboxi.loading #lbiContent{
	display:none;
}
#lightboxi.loading #lbiLoadMessage{
	display:block;
}

#lightboxi.done img{
	width:100%;
	height:100%;
}

.lbiClose, .lbiClose a
{
	text-align: center;
	border-bottom: #afbd34 solid 1px;
	color: #afbd34;
	text-decoration: none;
	margin-bottom: 5px;
}