h1 {
	color: #0677bd;
	font-size: 21px;
	font-weight: 600;
	text-align: left;
	border-bottom: 1.5px solid #cccccc;
	text-transform: uppercase;
}

h2 {
	color: #0677bd;
	font-size: 21px;
	font-weight: 600;
	text-align: left;
	border-bottom: 1.5px solid #cccccc;
	margin: 0px 0px 5px 0px;
}

h3 {
	color: #0677bd;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}

h4 {
	color: #0677bd;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}

h5 {
	color: #0677bd;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

img {
	display: block;
}

ul li {
	list-style-type: none;
}

div#content {
	padding: 20px 40px 20px 40px;
	background: #fff;
	margin: 0px auto 15px;
	text-align: left;
	border: 1px solid #dbdbdb;
	box-shadow: 0 1px 3px #dddddd;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

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

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

#content .landingButton {
	background: #0677bd;
	border-radius: 8px;
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin: 5px 0;
	padding: 10px 5px;
	text-align: center;
	width: 100%;
	text-decoration: none;
}

#content .landingButton:hover {
	background: #3892ca;
	color: #fff;
	text-decoration: none;
}

#content .landingSection {
	margin-bottom: 20px;
}

.green h2 {
	color: #378c82;
}

#content .green .landingButton {
	background: #378c82;
}

#content .green .landingButton:hover {
	background: #5fa39b;
}

.gray h2 {
	color: #4c4c4c;
}

#content .gray .landingButton {
	background: #4c4c4c;
}

#content .gray .landingButton:hover {
	background: #707070;
}

p.smaller {
	margin-top: 5px;
	margin-bottom: 0px;
}

input[type="button"], input[type="submit"], input[type="reset"], button, .button, #content a.button {
	color: #ffffff;
	background: #0677bd;
	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: #3892ca;
	cursor: pointer;
	text-decoration: none;
}


/* NAV overrides */
.nav {
	background: #0677bd;
}
.nav-item {
	width: 25%;
}
.nav-item a {
	background: #0677bd;
}
.nav-item > a:hover {
	background: #3892ca;
	color: #ffffff;
}
.nav-mobile {
	background-color: #0677bd;
}
.nav-click:hover {
	background-color: #3892ca;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
	.nav {
		background: #0677bd;
	}
}

#logoutForm {
	float: right;
	margin-top: 20px;
}

#memberInfoDump {
	border: 1px solid #000000;
	border-collapse: collapse;
}

#memberInfoDump td {
	border: 1px solid #000000;
}

#memberInfoDump th {
	border: 1px solid #000000;
}

#adminFormSubmit {
	display: none;
	margin: 20px 0px;
	background-color: rgb(80, 158, 47);
	color: #ffffff;
}

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

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