/* curtain.css */
.curtain {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 9500;
	/*background: rgba(80, 80, 80, 0.40);*/
	background: rgba(255, 255, 255, 0.80);
	text-align: center;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 4px 5px rgba(255, 255, 255, 0.80);
}

.ie6 .curtain,
.ie7 .curtain,
.ie8 .curtain {
	background: #fff;
	/*background: url("../img/curtain-505050-alpha40.png") repeat center;*/
	filter: alpha(opacity=80);
	-ms-filter: alpha(opacity=80);
}

