.lightboxbody {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	height:100%;
	width:100%;
	
	background-color:#000;
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
* html .lightboxbody { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#lightbox {
	position: fixed;
	background: #ffffff;
	z-index: 102;
	color:black;
	display:none;
	border: 4px solid #525252;
	text-align:left;
	top:3%;
	left:50%;
}

* html #lightbox { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#lightbox_title{
	background-color:#E8E8E8;
	height:27px;
	padding:5px;
	margin:0;
	line-height:27px;
	font-weight:bold;
}

