#modal_overlay {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	height:100%;
	width:100%;
}

.modal_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
.modal_overlayBG {
	background-color:#000;
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}

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

#modal_window {
	position: fixed;
	background: #ffffff;
	z-index: 102;
	color:#000000;
	display:none;
	border: 4px solid #000;
	text-align:left;
	top:50%;
	left:50%;
	font-family:Arial, Helvetica, sans-serif;
	font-size:.8em;
}

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

#modal_content{
	clear:both;
	padding:10px;
	overflow:auto;
	text-align:left;
	line-height:1.4em;
}

.modal_title {
	padding:2px;
	text-align:center;
	font-weight:bold;
	font-size:14px;
	background-color:#EEE;
	border-bottom:solid 1px black;
}
.modal_title a { text-decoration:none }

.modal_close {
	background-position:top left;
	display:block;
	float:right;
	background-image:url(close.gif);
	width:16px;
	height:16px;
}

.modal_close:hover{
	background-position:bottom left;
}