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

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:40px;
	left:25%;
	z-index:9999;
	width:500px;
	height:395;
	margin:0 0 0 0;
	border:1px solid #858585;
	background:#858585;
	text-align:left;
	
}
.modal_div{
	width:500px;
	height:395px;
	-moz-opacity: 0.9;
	opacity:0.9;
	filter: alpha(opacity=90);
	top:-50px;
	margin-top:-28px;
}
.modal_header{
		padding-top:9px;
		margin-left:30px;
		margin-top:-2px;
		font-family:Tahoma;
		font-size:14px;
		color:#ffffff;
		font-weight:bold;
		vertical-align:middle;
		width:87%;
		height:36px;
		padding-right:6px;
/*		background-image:url(../images/modal-border-bg.gif);
		background-repeat:repeat-x; */
		text-align:right;
}

.modal_body{
	overflow-y:scroll;
	width:499px;
	height:340px;
}
.modal_noscroll{
	width:420px;
	height:340px;
	margin-left:50px;
	margin-top:10px;
}
.modal_scroll{
	overflow-y:scroll;
	width:420px;
	height:90px;
}

#lightbox[id]{
	position:absolute;
}

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

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

	display:block;
	/*background-image:url(../images/tryBG.gif);*/
	background-color:#ffffff;
	background-repeat:no-repeat;
}
#lightbox.noBG #lbContent{

	display:block;
	/*background-image:url(../images/tryBG.gif);*/
	background:#000;
	background-repeat:no-repeat;
}

#lightbox.loading #lbContent{
background-color:#FFFFFF;
	display:none;
	-moz-opacity: 0.0;
	opacity:.0;
	filter: alpha(opacity=0);

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

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