#fade {
	display: none;
	margin: 0px;
	padding: 0px;
	background: rgba(0,0,0,0.6);
	position: fixed; 
	top: 0; 
	right: 0; 
	bottom: 0; 
	right: 0;
	width: 100%; 
	height: 100%;
	z-index: 9999;
}

.popup_block{
	display: none;
	padding: 20px; 	
	border: 2px solid #623400;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px 0px 10px 0px;
}
img.btn_close {
	position: relative;
	top: -9px;
	right: -9px;
	float: right;  
	border: 1px solid black;
	border-radius: 0x 5px 0px 0px;
	background: #94a600;
}
img.btn_close:hover { 
	background: #f0471b;
}
.popup p {
	padding: 5px 10px;
	margin: 5px 0;
}

#popup { display: none; }

/*--Making IE6 Understand Fixed Positioning--*/
html #fade {
	position: fixed;
}
html .popup_block {
	position: absolute;
}