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

	.modalDialog:target {
		display: block;
		pointer-events: auto;
	}

	.modalDialog > div {
		width: 400px;
		position: relative;
		margin: 30px auto;
		padding: 5px 20px 13px 20px;
		background: #fff;
		background: -moz-linear-gradient(#fff);
		background: -webkit-linear-gradient(#fff);
		background: -o-linear-gradient(#fff);
	}
	.modalDialog > div > h2 {
		color: #000;
		text-align: center;
		text-transform: uppercase;
		font-weight: normal;
		font-size: 15pt;
		padding-bottom: 0px;
	}

	.close {
		background: none;
		color: #4D9D5B;
		line-height: 25px;
		position: absolute;
		right: 5px;
		text-align: center;
		top: 5px;
		border: 1px solid #fff;
		width: 24px;
		text-decoration: none;
		font-weight: normal;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		transition: 0.3s;
	}
	.modalDialog p {
		text-align: center;
	}
	.close:hover { background: #fff; color: #1b2024; }
			.modalDialog input {
				width: 230px;
				height: 35px;
				border-radius: 5px;
				outline: none;
				border: none;
				padding-left: 10px;
				background: none;
				border: 2px solid #f3b900;
				margin-top: 10px;
				color: #000;
			}
			form {
				text-align: center;
			}
			.modalDialog button {
				padding-right: 20px;
				padding-left: 20px; 
				height: 35px;
				margin-top: 30px;
				outline: none;
				border: none;
				background-color: #f3b900;
				border-radius: 5px;
				color: #fff;
				text-transform: uppercase;
				cursor: pointer;
				transition: 0.3s;
				border-bottom: 3px solid #8f6d00;
			}
			.modalDialog button:hover {
				border:none;
				padding-top: 3px;
			}
