body {
	
}

.modal-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #131313;
	opacity: .85;
	filter: alpha(opacity=85);
	z-index: 2000;
}
.modal-window {
	position: fixed;
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0px;
	background: #fff;
	border:solid 6px #ec108b;
	padding:10px;
	-moz-box-shadow: 0px 3px 10px #666;
	-webkit-box-shadow: 0px 3px 10px #666;
	box-shadow: 0px 3px 10px #666;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;	
	z-index: 2010;
}

.close-window {
	position: absolute;
	width: 65px;
	height: 35px;
	right: 20px;
	bottom: 0px;
	background:  url(images/close-button.png) no-repeat scroll right bottom;
	text-indent: -99999px;
	overflow: hidden;
	cursor: pointer;
	z-index:2020;
}


