#mayy {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.modalDialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	opacity: 0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 600ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
	overflow: auto;
	background-color: rgba(0,0,0,0.7);
}
.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: auto;
	position: relative;
	margin-top: 4%;
	margin-right: auto;
	margin-bottom: 3%;
	margin-left: auto;
	padding: 0px;
	height: auto;
	/* [disabled]background-color: #FFF; */
	min-width: 70%;
	max-width: 85%;
	border-radius: 12px;
}
