.modalDialog {
		position: absolute;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.8);
		z-index: 99999;
		opacity:0;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		pointer-events: none;
	}

	.modalDialog:target {
		opacity:1;
		pointer-events: auto;
	}

	.modalDialog > div {
		width:100%;
		height:auto;
		position: relative;
		margin:0% auto;
		padding: 5px 20px 13px 20px;
		border-radius: 10px;
		color:#fff;
		background: #0089cf; /* Old browsers */
background: -moz-linear-gradient(top,  #0089cf 1%, #017cbc 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#0089cf), color-stop(100%,#017cbc)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #0089cf 1%,#017cbc 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #0089cf 1%,#017cbc 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #0089cf 1%,#017cbc 100%); /* IE10+ */
background: linear-gradient(to bottom,  #0089cf 1%,#017cbc 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0089cf', endColorstr='#017cbc',GradientType=0 ); /* IE6-9 */

	}
	.modalDialog h2 {
		padding-top:10px;
		padding-bottom:5px;
		border-bottom:1px dotted #fff!important;
		text-transform:uppercase;
	}
	.modalDialog p {
		color:#fff;
	}
	.close {
		background: #004b7a;
		color: #FFFFFF;
		line-height: 25px;
		position: absolute;
		right: -12px;
		text-align: center;
		top: -10px;
		width: 24px;
		text-decoration: none;
		font-weight: bold;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		-moz-box-shadow: 1px 1px 3px #000;
		-webkit-box-shadow: 1px 1px 3px #000;
		box-shadow: 1px 1px 3px #000;
	}

	.close:hover { background: #00d9ff; }
	
	.button {
		padding:5px 10px;
		color:#fff;
		background:#0089cf!important;
		margin-top:10px!important;
		border-radius:5px;
	}
	.button:hover {
		color:#fff;
		background:#017cbc!important;
	}