body {
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: .025em;	
	background: url('../images/passback.jpg') no-repeat center center;
	background-size: cover;
}
h1 {
	padding-top: 0;
}
h2 {
	padding-top: 5px;
	font-variant: small-caps;
}
#pageContainer {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}
#header {
	position: relative;
	width: 100vw;
	height: 45px;
	background: #005480;
	color: #fff;
	line-height: 45px;
	text-shadow: 1px 1px 1px #000;
	font-size: 150%;
	box-shadow: 0 4px 6px rgba(0,0,0,0.8);
}
#headerContent {
	position: absolute;
	top: 0;
	left: 15px;
}
#headerMenu {
	color: #fff;
	float: right;
	line-height: 45px;
	font-size: 70%;
	text-shadow: 1px 1px 1px #000;
	margin-right: 280px;
}
a.headerMenuItem {
	text-decoration: none;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	font-variant: small-caps;
	padding: 5px;
}
a.headerMenuItem:hover {
	background: #003460;
}
a.headerMenuItem:active {
	text-shadow: none;
}
a.eLinks {
	text-decoration: none;
	font-weight: bold;
	padding: 5px;
	color: #005480;
}
a.eLinks:hover {
	background: #005480;
	color: #fff;
	text-shadow: 2px 2px 1px #000;
}
a.eLinks:active {
	text-shadow: none;
}
#logoImg {
	position: absolute;
	top: 15px;
	right: 15px;
	box-shadow: 4px 4px 8px rgba(0,0,0,0.8), inset -2px -2px 2px rgba(0,0,0,0.3);
	height: 100px;
	z-index: 10;
	cursor: pointer;
	box-sizing: border-box;
	padding: 8px 10px 10px 8px;
	background: #fff;
	border-radius: 4px;
}
#contentContainer {
	position: absolute;
	height: calc(100% - 45px);
	width: calc(100% - 120px);
	top: 45px;
	left: 0;
	overflow-Y: auto;
}
#contentDiv {
	display: none;
	position: absolute;
	padding: 15px;
	width: calc(100% - 60px);
	top: 20px;
	background: rgba(255,255,255,0.9);
	left: 50%;
	transform: translateX(-50%);
}
#spinnerDiv {
	display: none;
	position: absolute;
	height: calc(100% - 45px);
	width: 100vw;
	top: 45px;
	left: 0;
	background: rgba(0,0,0,0.4);
}
input[type=text], select, input[type=password] {
	padding: 4px;
	font-size: 100%;
	box-shadow: inset 1px 1px 2px rgba(0,0,0,0.6);
	border-radius: 5px;
	border: 1px solid #bbb;
}
.pwButton {
	padding: 10px;
	font-size: 100%;
	border-radius: 4px;
	border: none;
	background: #005480;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	box-shadow: inset 0 2px 2px rgba(255,255,255,0.8), inset 0 -2px 2px rgba(0,0,0,0.6);
}
.pwButton.flright {
	float: right;
	margin-right: 25px;
}
.pwButton.safeAction:hover {
	background: #00b300;
}
.pwButton.careAction:hover {
	background: #ff3333;
}
.pwButton:active {
	box-shadow: inset 0 -2px 2px rgba(255,255,255,0.8), inset 0 2px 2px rgba(0,0,0,0.6);
	text-shadow: none;
}
#picList {
	text-align: center;
}
.picDiv {
	display: inline-block;
	margin-right: 15px;
	margin-top: 15px;
	cursor: pointer;
}
.picDiv > img, #picChoiceImg > img {
	width: 250px;
}
.picDiv:hover {
	box-shadow: 0 0 10px 10px #005480;
}
.picDiv:active {
	box-shadow: 0 0 5px 5px #00B052;	
}
#padLockRight {
	float: right;
	margin: 10px 15px 15px 15px;
	width: 80px;
}
#picChoice {
	display: none;
	text-align: center;
}
#reqDiv {
	background: #fff;
	border: 1px solid #ccc;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.7);
	margin: 0 10px 25px 10px;
	padding: 20px;
}
@media(max-width: 800px) {
	#logoImg {
		display: none;
	}
	#contentContainer {
		width: 100%;
	}
	input[type=text], select {
		width: 95% !important;
	}
	#headerMenu {
		margin-right: 5px;
	}
}
@media(max-width: 370px) {
	#header {
		font-size: 100%;
	}
	#headerMenu {
		font-size: 95%;
	}
}