#popupWrapper {
	position: fixed;
	width: 100%;
	height: 95%;
	z-index: 1000;
	top: 0;
	display: none;
}

#popupWrapper .popupBackground {
	opacity: 0.8;
	background: black;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

#popupWrapper .myPopup {
	position: absolute;
	background: white;
	width: 660px;
	max-height: 90%;
	top: 5%;
	padding: 25px;
	left: 50%;
	margin-left: -400px;
 	border-radius: 5px;
	overflow-y: auto;
	overflow-x:hidden;
}

#popupWrapper .close {
	text-align: center;
	border-radius: 5px;
	position: absolute;
	max-height: 90%;
	top: 5%;
	left: 50%;
	margin-left: -410px;
	height: 25px;
	width: 27px;
	padding-top: 5px;
	margin-top: -10px;
	cursor: pointer;
	-moz-box-shadow: 2px 2px 10px 0px #000000;
	-webkit-box-shadow: 2px 2px 10px 0px #000000;
	-o-box-shadow: 2px 2px 10px 0px #000000;
	box-shadow: 2px 2px 10px 0px #000000;
	filter:progid:DXImageTransform.Microsoft.Shadow(color=#656565, Direction=134, Strength=10);
	background: #FF4D29;
	z-index: 1020;
}

#popupWrapper .close:hover{
	-moz-box-shadow: 3px 3px 10px 0px #000000;
	-webkit-box-shadow: 3px 3px 10px 0px #000000;
	-o-box-shadow: 3px 3px 10px 0px #000000;
	box-shadow: 3px 3px 10px 0px #000000;
	background: #E32802;
}
