@charset "utf-8";
/* CSS Document */

.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.62);
	z-index: auto;
	opacity: 0;
	-webkit-transition: opacity 200ms ease-in;
	-moz-transition: opacity 200ms ease-in;
	transition: opacity 200ms ease-in;
	pointer-events: none;
	overflow-y: no-display;
	overflow-x: no-display;
}
.modalDialog:target {
	opacity: 1;
	pointer-events: auto;
	overflow-y: auto;
	overflow-x: auto;
	padding-top: 28px;
	padding-right: 28px;
	padding-bottom: 28px;
	padding-left: 28px;
}

.modalDialog > div {
	width: 500px;
	position: relative;
	margin-top: 10%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 11%;
	padding-top: 20px;
	padding-right: 12px;
	padding-left: 12px;
	padding-bottom: 5px;
	border-radius: 5px;
	background-color: rgba(0,0,0,0.58);
	min-width: 75%;
	overflow-y: auto;
	overflow-x: auto;
	max-width: 100%;
	max-height: auto;
	min-height: auto;
}
.close {
	background-color: #000000;
	color: #FFFFFF;
	position: static;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
}

.close:hover {
	background: #000000;
	color: #ffffff;
	text-align: center;
	position: static;
	clear: both;
	display: compact;
