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

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

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

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

.exitButton {
	background: url('../images/overlay_exit.jpg') no-repeat;
	width: 15px;
	height: 15px;
	
	float: right;
}

.overContentWrapper {
	background: #C9C9C9 url('../images/contact_nl.jpg') no-repeat 260px 40px;
	
	height: 380px;
	margin: 10px 25px 0 25px;
	padding: 20px 15px 15px 15px;
}

#lightbox{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	width:555px;
	height:485px;
	margin:-220px 0 0 -280px;
	border:1px solid #fff;
	background:#FDFCE9;
	text-align:left;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.5;
	opacity:.50;
	filter: alpha(opacity=50);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done a { color: #FFFFFF; }
#lightbox.done {
	background: url('../images/bg_overlay.jpg'); 
	border: 2px solid #717171;
	
	color: #797979;
	font-family: Verdana, sans-serif;
	
	padding: 10px;
}
#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}
