
/* thickbox */

#overlay {
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	filter:alpha(opacity=25);
	-moz-opacity:0.25;
	opacity:0.25;
	z-index:100;
}

* html #overlay {
	position:absolute;
	height:expression(document.body.clientHeight > document.documentElement.clientHeight ? document.body.clientHeight : document.documentElement.clientHeight + 'px');
	/* height:expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'); */
}

#loading {
	display:none;
	position:fixed;
	top:50%;
	left:50%;
	width:100px;
	height:100px;
	background:url(../images/icon_loading.gif) no-repeat;
	margin:-50px 0 0 -50px;
	z-index:101;
}

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


