/* Modal Box */
#popup_fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}
.popup_block{
	display: none; /*--hidden by default--*/
	background: #fff;
	height: 50%;
	padding: 0;
	border: 1em solid #ddd;
	float: left;
	position: fixed;
	top: 20%; left: 50%;
	z-index: 99999;
	/*--CSS3 Box Shadows--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	/*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.popup_block #content {
	bottom: 3em;
	height: auto;
	left: 0.1em;
	position: absolute;
	overflow: scroll;
	overflow-x: hidden;
	padding: 0.75em;
	padding-bottom: 0;
	right: 0.1em;
	top: 0.1em;
}

div.close {
	bottom: 0;
	padding: 0.5em;
	position: absolute;
	right: 0;
	text-align: right;
}

button.close {
	float: right;
}

/*--Making IE6 Understand Fixed Positioning--*/
*html #popup_fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}