#overlay{
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: .8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	width: 100%;
	height: 100%;
	z-index: 9999;
}

#popup{
	width: 560px;
	height: 360px;
	background-color: #fff;
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 20px;
	border-radius: 5px;
	text-align: center;
	font-family: Lato, Calibri, Arial, Helvetica, sans-serif;
	z-index: 10000;
}

#popup h1{
	color: #e83f4b;
	margin-top: 30px;
	font-size: 32px;
}

#popup .close{
	position: absolute;
	top: 5px;
	right: 5px;
	cursor: pointer;
	text-transform: uppercase;
	display: block;
	width: 20px;
	height: 20px;
	text-align: center;
}

#popup a.button{
	display: block;
	width: 170px;
	height: 70px;
	margin: auto;
	padding: 0;
	line-height: 70px;
	font-size: 16px;
	position: absolute;
	left: 0;
	right: 0;
	top: 140px;
	background-color: #e83f4b;
	color: #fff;
	text-decoration: none;
	background: #e83f4b;
	background-image: -webkit-linear-gradient(top, #e83f4b, #b52d39);
	background-image: -moz-linear-gradient(top, #e83f4b, #b52d39);
	background-image: -ms-linear-gradient(top, #e83f4b, #b52d39);
	background-image: -o-linear-gradient(top, #e83f4b, #b52d39);
	background-image: linear-gradient(to bottom, #e83f4b, #b52d39);
	-webkit-border-radius: 5;
	-moz-border-radius: 5;
	border-radius: 5px;
}

#popup a.button:hover{
	background: #b52d39;
	background-image: -webkit-linear-gradient(top, #b52d39, #e83f4b);
	background-image: -moz-linear-gradient(top, #b52d39, #e83f4b);
	background-image: -ms-linear-gradient(top, #b52d39, #e83f4b);
	background-image: -o-linear-gradient(top, #b52d39, #e83f4b);
	background-image: linear-gradient(to bottom, #b52d39, #e83f4b);
}

#popup #logo{
	position: absolute;
	top: 275px;
	left: 0;
	right: 0;
	margin: auto;
}