/* Попап окно */

#fade {
	display: none;
	background: url(../img/overlay.png);
	position: fixed; 
	left: 0; 
	top: 0;
	width: 100%; 
	height: 100%;
	z-index: 999;
	cursor: pointer;
    }
	
.popup-block {
	display: none;
	float: left;
	position: fixed;
	top: 50%; 
	left: 50%;
	z-index: 9999;
	background: #fff;
	padding: 20px;
	-webkit-transition: display 0.3s;
	-moz-transition: display 0.3s;
	transition: display 0.3s;
    }
	
.popup-block > img {
    margin: 20px 0;
	}
	
a.close {
	float: right;
	width: 16px;
	height: 16px;
	margin: -46px -46px 0 0;
	background: url(../img/close.png) no-repeat left bottom; 
    }
	
a.close:hover {
    background-position: left top;
    }
	
/* Making IE6 Understand Fixed Positioning */

*html #fade {
	position: absolute;
    }
	
*html .popup-block {
	position: absolute;
    }