	.modalDialog {
		position: fixed;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.7);
		z-index: 99999;
		opacity:0;
		-webkit-transition: opacity 350ms ease-in;
		-moz-transition: opacity 350ms ease-in;
		transition: opacity 350ms ease-in;
		pointer-events: none;
	}

	.modalDialog:target {
		opacity:1;
		pointer-events: auto;
	}

	.modalDialog > div {
		height: 118px;
		width:  50em;
		top:0;
		bottom:0;
		left:0;
		right:0;
		position: absolute;
		margin: auto;
		/* padding: top right bottom left */
		padding: .5em 2em 1.25em 2em;
		border: 2px solid white;
		background: #d6d6d6;
	}

	.modalDialog #dataButton {
		height:25px; 
		width:75px; 
		position:auto;
	}

	.close img {
		position: absolute;
		top: -14px;
		right: -16px;
		width: 24px;
	}

	#info a {
		color: #444;
		font-size: 10pt;
	}
