h1 {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #000000;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 15px 0px;
	line-height: normal;
	text-rendering: optimizeLegibility;
	text-align: center;
}
h2 {
	font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
	font-weight: bold;
	font-size: 24px;
	color: #000000;
	margin: 0px 0px 10px;
	padding: 0px 0px 2px;
	line-height: normal;
	text-rendering: optimizeLegibility;
}
h3, h4, h5, h6 {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #000000;
	text-rendering: optimizeLegibility;
}
ul {
	margin-left: 25px;
}
#content a {
  color: #D62628;
  text-decoration: underline;
}

#content a:hover {
  color: rgba(214, 38, 40, .85);
  text-decoration: none;
}
#errorDiv {
	display: none;
}
#errorMsg {
	color: #D62628;
	border: 1px solid #D62628;
	padding: 10px;
	margin: 50px 0px;
	text-align: center;
}
#content a.landingButton {
	display: block;
	background: #D62628;
	margin: 20px 0;
	padding: 40px 20px;
	box-shadow: 5px 5px 3px #ccc;
	text-align: center;
	color: #ffffff;
	font-size: 26px;
	font-weight: 600;
	font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
	letter-spacing: 1px;
  text-decoration: none;
	line-height: 1.25em;
	border-radius: 0px;
	-moz-border-radius: 0px;
}
#content a.landingButton:hover {
	background: rgba(214, 38, 40, .85);
	text-decoration: none;
}
input[type="button"], input[type="submit"], input[type="reset"], button, .button, #content a.button {
	color: #ffffff;
	background: #D62628;
	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(214, 38, 40, .85);
	cursor: pointer;
	text-decoration: none;
}
#logoutForm {
  text-align: right;
  padding-top: 15px;
  float: right;
}

/* NAV overrides */
.nav-item{
	width: 50%;
}
.nav-item a {
	background: #000000;
	font-weight: 600;
	font-family: "MyriadPro", helvetica, arial, sans-serif;
	letter-spacing: .5px;
}
.nav-item > a:hover {
	background: rgba(0, 0, 0, .85);
	color: #ffffff;
}
.nav-mobile {
	background-color: #000000;
}
.nav-click:hover {
	background: rgba(0, 0, 0, .85);
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
	.nav {
		background: #000000;
	}
}

/* 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 */
}
.loaderOverlay {
  /* Shades out background when selector is active */
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 40001;
}
.vertical-offset {
  /* Fixed position to provide the vertical offset */
  position: absolute;
  top: 300px;
  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 #D62628; /*spinning color*/
  width: 240px;
  height: 240px;
  animation: spinner 4s linear infinite;
}

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