.ezmodal {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:90000;
	background:rgba(0, 0, 0, .6);
	overflow-x:hidden;
	overflow-y:auto;
	display:none;
}
.ezmodal-container {
	height:600px;
	width:1000px;
	background:#fff;
	padding:0;
	font-size:14px;
	position:fixed;
	top:50%;
	left:50%;
	z-index:9999;
	border-radius:0px;
	-webkit-box-shadow:0 0 15px 0 rgba(50, 50, 50, 0.8);
	-moz-box-shadow:0 0 15px 0 rgba(50, 50, 50, 0.8);
	box-shadow:0 0 15px 0 rgba(50, 50, 50, 0.8);
	-webkit-transform:translateY(-50%) translateX(-50%);
	-ms-transform:translateY(-50%) translateX(-50%);
	transform:translateY(-50%) translateX(-50%);
}
.ezmodal .ezmodal-close {
	position:absolute;
	top:15px;
	right:15px;
	font-weight:bold;
	font-family:Verdana;
	font-size:18px;
	cursor:pointer;
	color:#838383;
}
.ezmodal .ezmodal-close:hover {
	color:#535353;
}
.ezmodal .ezmodal-header {
	font-size:24px;
	padding:10px;
	text-align:right;
	line-height:32px;
	color:#646464;
}
.ezmodal .ezmodal-content {
	padding:10px 20px;
}
.ezmodal .ezmodal-footer {
	padding:10px 20px;
	background:#efefef;
	border-top:1px solid #e3e3e3;
	text-align:right;
	border-radius:0 0 7px 7px;
}
