#db-overlay {
	position:fixed;
	z-index:102;
	top:0px;
	left:0px;
	height:100%;
	width:100%;
	background-color: #000;
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}

#db-window {
	position:fixed;
	z-index:113;
	top:50%;
	left:50% ;
	height:400px;
	width:200px;
	margin:0 auto;
	padding:0;
	border:0;
}

* html #db-overlay	{ 
    position: absolute;
    height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

* html #db-window	{
	position: absolute;
	margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

