.modal-overlay {  
    position: fixed;  
    top: 0;  
    right: 0;  
    bottom: 0;  
    left: 0;  
    height: 100%;  
    width: 100%;  
    margin: 0;  
    padding: 0;  
    background: #131313;  
    opacity: .70;  
    filter: alpha(opacity=70);  
    z-index: 101; 
	cursor: pointer;
}  
.modal-window {  
    position: fixed;  
	width: 500;
	height: 700;
    top: 50%;  
    left: 50%;  
    margin: 0;  
    padding: 10;  
    z-index: 102;  
    background: #fff;  
    border: solid 8px #999;  
    -moz-border-radius: 8px;  
    -webkit-border-radius: 8px;  
}  
/*.close-window {  
    position: absolute;  
    width: 47px;  
    height: 47px;  
    right: -20px;  
    top: -43px;
	background: transparent url(close-window.png) no-repeat scroll right top;
    text-indent: -99999px;  
    overflow: hidden;  
    cursor: pointer;  
}  
*/