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

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: 300px;
	height: 130px;
	margin: -120px 0 0 -150px;
	border: 4px solid #C4E3FF;
	background: #E1F1FF url(images/bglistbox.gif) repeat-x;
	text-align: center;
	}
#lightbox p {
	margin: 20px;
	color: #4d5762;
	font: bold 14px Arial, Helvetica, Verdana, sans-serif;
	}
#lightbox[id]{
	position: fixed;
	}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#263035;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
	}
#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{
	width:100%;
	height:100%;
	}
	
.submitbutton {
	border:0px;
	width:42px;
	height:30px;
}
#lbContent {
	text-align:center;
}