#popup {
	z-index: 10000000000;
	width: 0%;
	height: 0%;
	background: rgba(0,0,0,0.4);
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
}
#popup.active {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#popup #popup-content {
	width: 0%;
	height: 0%;
	margin: auto;
	background: #FFF;
	border: 4px double #333;
	border-radius: 6px;
	text-align: center;
	opacity: 1;
	overflow: hidden;
	overflow-y: auto;
	overflow-x: auto;
	position: absolute;
	padding: 5px;
	transition: all 0.2s 0.1s ease-in-out;
	-moz-transition: all 0.2s 0.1s ease-in-out;
	-webkit-transition: all 0.2s 0.1s ease-in-out;
}
#popup.active #popup-content {
	width: 80%;
	height: 90%;
	top: 5%;
	margin: 0% 10%;
	z-index: 10000;
}
#popup.active .close {
	top: 4%;
	left: 88%;
	position: absolute;
	z-index: 400000;
	width: 30px;
	height: 30px;
}
#popup #popup-content i.close {
	color: #F00;
	font-size: 1.7em;
	margin-top: -5px;
	margin-right: -5px;
	opacity: 0.7;
	float: right;
	z-index: 1000000;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
#popup #popup-content i.close:hover {
	opacity: 1;
}
#popup #popup-content {
	font-size: 0.9em;
	font-weight: 300;
}
#popup #popup-content h4 {
	font-size: 1em;
	letter-spacing: 0px;
}
