h1 {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #001E60;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 15px 0px;
	line-height: normal;
	text-rendering: optimizeLegibility;
	text-align: center;
}
h2 {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #000000;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	text-rendering: optimizeLegibility;
}
h3, h4, h5 {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #000000;
	text-rendering: optimizeLegibility;
}
h6 {	
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 5px;
	color: #000000;
	text-rendering: optimizeLegibility;
}

#content {
	min-height: 170px;
}

#content a {
	color: #346495;
	text-decoration: underline;
}

#content a:hover {
	color: rgba(52, 100, 149, .85);
	text-decoration: underline;
}

#content .alert a, #content .alert a:hover {
	color: white;
}

input[type="button"], input[type="submit"], input[type="reset"], button, .button, #content a.button {
	color: #ffffff;
	background: #346495;
	font-size: 16px;
	border-radius: 6px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
	padding: 10px 20px 11px;
	text-align: center;
	transition: background-color .15s ease-in-out;
	border: none;
	text-decoration: none;
}

input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover, .button:hover, #content a.button:hover {
	color: #ffffff;
	background: rgba(52, 100, 149, .85);
	cursor: pointer;
	text-decoration: none;
}

#content a.landingLinks {
	display: block;
	background: #346495;
	padding: 30px 25px;
	box-shadow: 5px 5px 3px #ccc;
	text-align: center;
	color: #ffffff;
	font-size: 22px;
	font-family: 'MyriadPro', sans-serif;
	letter-spacing: 1px;
	line-height: 1.6em;
	text-transform: uppercase;
	text-shadow: 1px 1px 4px #1c5c4b;
	transition: ease-in-out 0.3s;
	margin: 15px;
	text-decoration: none;
}
#content a.landingLinks:hover {
	background: rgba(52, 100, 149, .85);
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}

#logoutForm {
  text-align: right;
  padding-top: 15px;
  float: right;
}

#errorTxtEl {
	color: #c60f13;
	font-size: 18px;
	text-align: center;
	margin-top: 17px;
}

label.error {
	margin-top: -5px;
	margin-bottom: 15px;
}

/* spinner */
#loaderWrap {
  /* The div that shows/hides. */
  display: none; /* starts out hidden */
  z-index: 40001; /* High z-index to ensure it appears above all content */
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loaderOverlay {
  /* Shades out background when selector is active */
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 40001;
}
.vertical-offset {
  /* Fixed position to provide the vertical offset */
  position: absolute;
  top: 30%;
  width: 100%;
  z-index: 40002; /* ensures box appears above overlay */
}
.loaderBox {
  /* The actual box, centered in the fixed-position div */
  max-width: 550px; /* Whatever width you want the box to be */
  position: relative;
  margin: 0 auto; /* Everything below is just visual styling */
  padding: 20px 20px 0 20px;
}

/* loading spinner */
.loader {
  margin: auto;
  border: 20px solid #EAF0F6; /*circle background*/
  border-radius: 50%;
  border-top: 20px solid #346495; /*spinning color*/
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}