#popup {
	width:auto;
	height:auto;
	max-width:600px;
	max-height:438px;
	left:0;
	right:0;
	margin:0 auto;
	top:90px;
	z-index:99999999;
	position:fixed;
	background: -webkit-linear-gradient(#333, #000);
    background: -o-linear-gradient(#333, #000);
    background: -moz-linear-gradient(#333, #000);
    background: linear-gradient(#333, #000);
	padding:10px;
	color: #fafafa;
	text-align:justify;
	box-shadow: 0px 0px 2px #111;
	-moz-box-shadow: 0px 0px 2px #111;
	-webkit-box-shadow: 0px 0px 2px #111;
	/*The main part*/
	animation: popup .3s;
	-webkit-animation: popup .3s;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
	transform:scale(0,0);
	-webkit-transform:scale(0,0);
}#popup img {
	width:100%;
	height:100%;
}
@keyframes popup {
	100% {transform:scale(1,1)}
}
@-webkit-keyframes popup {
	100% {-webkit-transform:scale(1,1)}
}
/*End of main part*/

/*Some Extra Styling. Ignore!*/
#pop-header {
	background:#B62A29;
	display:inline-block;
	text-transform:uppercase;
	padding:3px 10px;
	box-shadow: 0px 3px 3px #111;
	-webkit-box-shadow: 0px 3px 3px #111;
	-moz-box-shadow: 0px 3px 3px #111;
	position:absolute;
	right:10px;
}
#pop-header a {
	float:right;
	color: #fff;
}
#popup h2 {
	text-transform:uppercase;
	text-align:center;
	margin: 5px;
}
#form {
	background: #111;
	width:250px;
	padding: 10px;
	border: 1px solid #111;
	box-shadow: 0px 0px 5px #000 inset;
	-moz-box-shadow: 0px 0px 5px #000 inset;
	-webkit-box-shadow: 0px 0px 5px #000 inset;
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
}
#button {
	width: 120px;
	padding: 8px;
	background: -webkit-linear-gradient(#77d42a, #5cb811);
    background: -o-linear-gradient(#77d42a, #5cb811);
    background: -moz-linear-gradient(#77d42a, #5cb811);
    background: linear-gradient(#77d42a, #5cb811);
	border: 1px solid #77d42a;
	cursor: pointer;
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
	text-transform:uppercase;
}