h1, h2 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: #233380;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 10px 0px;
	line-height: normal;
}
h2 {
	border-bottom: solid #233380 2px;
}
h3 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: #233380;	
}
h4, h5, h6 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 16px;
	color: #233380;	
}

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

header a:hover {
	text-decoration: none;
}

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

/*#content a.landingLinks {
	color: #ffffff;
	background: #1a97d9;
	font-size: 20px;
	border-radius: 3px;
	font-weight: 700;
	line-height: 1;
	margin: 20px 0;
	padding: 10px 20px 11px;
	text-align: center;
	transition: background-color .15s ease-in-out;
	border: none;
}
#content a.landingLinks:hover {
	background: #1da3e9;
	color: #ffffff;
	text-decoration: none;
}*/
#content a.landingLinks {
	display: block;
	background: #1a97d9;
	margin: 20px 0;
  padding: 35px 20px;
	box-shadow: 5px 5px 3px #ccc;
	text-align: center;
	color: #ffffff;
	font-size: 24px;
	font-weight: bold;
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	letter-spacing: 1px;
	line-height: 1;
	border-radius: 4px;
	-moz-border-radius: 4px;
}
#content a.landingLinks:hover {
	background: #1da3e9;
	text-decoration: none;
}
#content a.landingLinks.disabled {
	background: #a9a9a9;
}
#memberLookup {
	margin-top: 10px;
}
.row.landingSection {
	margin-bottom: 20px;
}
.row.nonMem {
	margin-top: 50px;
	margin-bottom: 20px;
}
#errorMsg a, #errorMsg a:hover {
	color: #ffffff;
	text-decoration: underline;
}
#logoutForm {
  text-align: right;
  padding-top: 15px;
  float: right;
}

/* modal window */
#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: fixed;
  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 #233380; /*spinning color*/
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

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