/* - - - - - - - - - - - - - - - - - - - - -
Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/
Created : January 13, 2006
Modified : February 1, 2006
- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	background: #FFFFFF;
	border: 2px solid #000000;
	display: none;
	left: 50%;
	margin: -220px 0 0 -250px;
	padding-top: 10px;
	position: absolute;
	top: 50%;
	width: 50%;
	z-index: 9999;
}

#lightbox.done #lbcontent{
	display: block;
}

#lightbox.done #lbloadmessage{
	display: none;
}

#lightbox.done img{
	height: 100%;
	width: 100%;
}

#lightbox.loading #lbcontent{
	display: none;
}

#lightbox.loading #lbloadmessage{
	display: block;
}

#lightbox[id]{
	position: fixed;
}

#overlay{
	background-color: #000000;
	display: none;
	filter: alpha(opacity=80);
	height: 100%;
	left: 0;
	-moz-opacity: 0.8;
	opacity: .80;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 5000;
}

#overlay[id]{
	position: fixed;
}
