@charset "UTF-8";
/*------------------POPUPS------------------------*/

#fade {
	display: none;
	background: #000; 
	position: fixed; left: 0; top: 0; 
	width: 100%; height: 100%;
	opacity: .15;
	z-index:99998;
}
.popup_block{
	display: none;
	padding: 20px; 	
	border: 5px solid #ddd;
	float: left;
	text-align:left;
	font-size: 14px;
	background-color: #CFC;
	
	position: fixed;
	top:50%;
	left: 50%;
	
	z-index: 99999;
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.popup_detail{
	display: none;
	padding: 20px; 	
	border: 5px solid #ddd;
	float: left;
	text-align:left;
	font-size: 14px;
	background-color: #CFC;
	
	position: absolute;
	top:300px;
	left: 50%;
	
	z-index: 99999;
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.popup_content{
	border:0; 
	padding:0;	
}
.popuph1{
	text-align: center;
	font-size: 32px;
	font-weight: bold; 
	color:# 666;
	border:0;
	background-color: #CFC;
}
.popuph2{
	text-align: center;
	font-size: 24px;
	font-weight: bold; 
	color:# 666;
	border:0;background-color: #CFC;
}
img.btn_close {
	float: right; 
	margin: -50px -50px 0 0;
}
.popup p {
	padding: 5px 10px;
	margin: 5px 0;
}

/*--Making IE6 Understand Fixed Positioning--*/

*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}
