/* Modal Popup Styles */
section.popup {
	width: 75%;
	font-family: Helvetica, sans-serif;
	max-width: 275px;
	min-height: 127px;
	border: solid 3px #d2d5db;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 0px;
	opacity: 1;
	position: absolute;
	z-index: 1001;
	margin-left: auto;
	margin-right: auto;
	-moz-box-shadow: 2px 2px 3px #666666;
	-webkit-box-shadow: 2px 2px 4px #666666;
	box-shadow: 2px 2px 3px #666666;
	background: url('../images/popup_moon.png') no-repeat;
	background-color: rgba(11,27,68, 0.8);
	text-align: center;
}
section.popup.hidden {
	opacity: 0;
	top: 50%;
	left: 50%;
	margin: 0px auto;
}
section.popup > div {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	color: #fff;
	text-shadow: 0px -1px 1px #000;
}
section.popup header {
	background:
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border: none;
	color: #fff;
	display: block;
	margin-top: 18px;
}
section.popup header > h1 {
	letter-spacing: 1px;
	font-size: 18px;
	letter-spacing: -1px;
	text-shadow: 0px -1px 0px #333333;
	color: #fff;
	margin: 0px;
	-webkit-box-flex: 1;
	text-align: center;
	display: block;
}
section.popup  p {
	display: block;
	font-size: 16px;
	margin-top: 6px;
	margin-bottom: 11px;
	text-shadow: 0px -1px 0px #333333;
	padding: 0 7px;
}
section.popup.popup-loading  p {
	display: block;
	vertical-align: middle;
	font-size: 16px;
	font-weight: bold;
	margin: 5px;
	text-shadow: 0px -1px 0px #333333;
	height: 108px;
	line-height: 108px;
	padding: 0 7px;
}
section.popup footer
{
	text-shadow: 0px -1px 0px #333333;
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-pack:justify;
	-webkit-box-sizing: border-box;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-pack:justify;
	-moz-box-sizing: border-box;
	padding: 0 2px;
}
section.popup footer > .button {
	-moz-box-flex: 1;
	display: block;
	text-align: center;
	margin: 5px 5px;
	height: 40px;
	font-size: 18px;
	line-height: 40px;
	-webkit-border-radius: 5px;
	-webkit-appearance: none;
}
section.popup footer > .button.cancel {
	-webkit-box-flex: 1;
	border-top: solid 1px #dadde4;
	-webkit-box-shadow: 0px 1px 0px #121e3b, 0px 2px 0px #3c4969;
	background-image: 
		-webkit-gradient(linear, left top, left bottom, 
			from(#aab0be), 
			color-stop(0.5, #636f8b), 
			color-stop(0.5, #485575), 
			to(#586381));
}
section.popup footer > .button.continue {
	-webkit-box-flex: 2;
	border-top: solid 1px #919aaf;
	-webkit-box-shadow: 0px 1px 0px #121e3b, 0px 2px 0px #3c4969;
	background-image: 
		-webkit-gradient(linear, left top, left bottom, 
			from(#6e7890), 
			color-stop(0.5, #29385c), 
			color-stop(0.5, #0b1b44), 
			to(#18274e));
}
.screenCover {
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	z-index: 1000;
	top: 0px;
	left: 0px;
}
.screenCover.hidden {
	display: none;
}
		