#mayy {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.modalDialogmx {
	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,102,0.4);
}
.modalDialogmx:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialogmx > div {
	width: auto;
	position: relative;
	margin-top: 2%;
	margin-right: auto;
	margin-bottom: 1%;
	margin-left: auto;
	padding: 0px;
	height: 74vh;
	background-color: #FFF;
	min-width: 95%;
	max-width: 95%;
	max-height: 95vh;
	min-height: 95vh;
}
