/** 
 * Plugin styles for jquery.imodal.1.js
 * 
 *  @author Steven Wiggins
 */
#fade {
	/*--Transparent background layer--*/
	display: none;
	/*--hidden by default--*/
	background: #666;
	position: fixed; 
	left: 0; 
	top: 0;
	width: 100%; 
	height: 100%;
	-moz-opacity: 0.8;
	-webkit-opacity: 0.8;
	opacity: 0.8;
	z-index: 9999;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
.popup_block{
	display: none; /*--hidden by default--*/
	background: #fff;
	padding: 12px;
	border: 5px solid #dceeb6;
	width:625px;
	height:275px;
	position: absolute;
	z-index: 99999;
	/*--CSS3 Box Shadows--*/
	-webkit-box-shadow: 0px 0px 10px #666;
	-moz-box-shadow: 0px 0px 10px #666;
	box-shadow: 0px 0px 10px #666;
	/*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
img.btn_close {
	float: right;
	margin: -70px -70px 0 0;
}