/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

Backup:
- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9998;
	width:500px;
	margin: -250px 0 0 -250px;
	text-align:left;
	padding-top: 15px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	height: 500px;
}

#lbContent, .lbContent {
	position: relative;
	height:500px;
	background-image:url(images/bg-lightbox.png);
}

.lbTop {
	position: absolute;
	top: -8px;
	left: 0px;
	background-image: url("images/lightbox-top.png");
	background-repeat: no-repeat;
	width: 500px;
	height: 8px;
}

.lbBottom {
	background-image: url("images/lightbox-bottom.png");
	background-repeat: no-repeat;
	height: 8px;
	width: 500px;
	position: absolute;
	bottom: -8px;
	left: 0px;
}

#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	top:50%;
	left:50%;
	width:520px;
	height:530px;
	margin: -250px 0 0 -250px;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.3;
	opacity:.30;
	filter: alpha(opacity=30);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

#lightbox.done img{
}

#lbClose {
	position:absolute;
	width: 25px;
	height: 25px;
	cursor: pointer;
	top: 5px;
	right: 5px;
	background-image:url("images/close.png");
	background-repeat:no-repeat;
	z-index: 9999;
}
