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

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;
	margin:-220px 0 0 -250px;
	border:1px solid #fff;
	background:#FDFCE9;
	text-align:left;
	padding:15px;
}
#lightbox[id]{
	position:fixed;
}

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

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}


#lbContent{
	display:none;
	padding:15px;
	
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#817f7f;
	line-height:16px;
}
#lbContent img.header{
	float:left;
	font-size:18px;
	color:#15a8e0;
	width:136px;
	height:26px;
	padding:0 0 15px 0;
}

#lbContent img.closeBtn{
	float:left;
	width:20px;
	padding:0 0 0 239px;
	border:0;
	
}

#lbContent p{
	padding:0;
	float:left;
	clear:left;
	width:385px;
	height:auto;

}

#lbContent p.leader{
	font-weight:bold;

}

#lbContent p.closer{
	font-weight:bold;
	color:#15a8e0;
	margin: 0 -3px 0 0;
}

#video{
	display:block;
	width:640px;
	height:300px;
	padding:0px;
}
