#modal-overlay {
	position: fixed;
	z-index:1000;
	top: 0px;
	left: 0px;
	height:1600px;
	width:100%;
	background: #000;
	display: none;
}
* 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: absolute;
	z-index: 1001;
	display:none;
	top:50%;
	left:50%;
	width: 850px; 
	height: 660px; 
	background-color: #010177; 
	display: block;
}
#modalwindow-clear, #modalwindow-image {
	position: absolute;
	z-index: 1001;
	display:none;
	top:50%;
	left:50%;
	width: 300px; 
	height: 590px; 
	display: block;
}

* 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 {
	display: block;
}
.modalClose {
	right:0px;
	top:0px;
	position:absolute;
	display:block;
	background-image: url(../images/close-icon.gif);
	width: 31px;
	height: 32px;
	cursor: pointer;
}
.tornpad {
	position:relative;
	width: 272px;
	height: 580px;
	margin: 0px auto;
	background-image: url(../images/tornpad.gif);
	background-repeat: no-repeat;
	background-position: 0px -70px;
}