h1 {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-weight: 700;
	font-size: 23px;
	color: #45347b;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	text-rendering: optimizeLegibility;
}
h2 {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #45347b;
	border-bottom: 1.5px solid #45347b;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	letter-spacing: 1px;
	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 a {
	color: #3d2c70;
	text-decoration: underline;
}

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

input[type="button"], input[type="submit"], input[type="reset"], button, .button, #content a.button {
	color: #ffffff;
	background: #702a82;
	font-size: 20px;
	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(170, 108, 173, .85);
	cursor: pointer;
	text-decoration: none;
}

#content a.landingLinks {
	display: block;
	border-radius:6px;
	background: #702a82;
	padding: 35px 15px;
	margin-left:10px;
	margin-right:10px;
	box-shadow: 5px 5px 3px #cccccc;
	text-align: center;
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	font-family: "Helvetica Neue", "Arial", sans-serif;
	letter-spacing: 1px;
	line-height: 1.5em;
	margin-bottom: 20px;
	text-decoration: none;
}

#content a.landingLinks:hover {
	background: rgba(170, 108, 173, .85);
	transition-duration: .4s;
	transform:scale(1.02);
	text-decoration: none;
}

.landingSection {
	margin-bottom: 20px;
}

p.smaller {
	font-size:16px;
	margin-top:.5em;
	margin-bottom:0;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.25em;	
}

ul {
	margin-left: 20px;
}

div#errorMsg {
	line-height: 1.4;
}

div#content .error {
  color: #cc0000;
  font-style: italic;
  padding: 1px;
}

#loginForm fieldset {
	padding: 12px 22px 0;
}


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

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

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

.or-text {
	text-align: center;
	padding-top: 50px;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	.or-text {
		padding-top: 0px;
	}
}