body {
	background: none;
}

h1, h2 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: #53565A;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 10px 0px;
	line-height: normal;
	letter-spacing: 1px;
}
h3 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: #009CDE;
	border-bottom: 1px solid #53565A;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 0px 0px;
	line-height: normal;
	letter-spacing: 1px;
}
h4, h5, h6 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: #53565A;	
}


/* Content */

div#content {
	background: #fff;
	margin: 15px auto 0px auto;
	text-align: left;
}

#content a {
	color: #009CDE;
	text-decoration: underline;
}
#content a:hover {
	color: #009CDE;
	text-decoration: none;
}

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

input[type="button"], input[type="submit"], input[type="reset"], .button, button {
	color: #fff;
	background: #009CDE;
	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: #009CDE;
	cursor: pointer;
}

#content a.landingLinks {
	display: block;
	background: #009CDE;
	margin: 20px 0;
	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;
	vertical-align: middle;
	line-height: 1.5em;
	text-decoration: none;
}
#content a.landingLinks:hover {
	background: #009CDE;
	color: #ffffff;
	text-decoration: none;
}
.row.landingSection {
	margin-bottom: 20px;
}
.no-padding {
	padding:0px;
}
.box {
	border: 1px solid #53565A;
	padding: 17px 17px 0px 17px;
	margin-bottom: 20px;
}
#name {
	font-weight: bold;
}
#role {
	font-weight: bold;
	color: #009CDE;
}
.error {
	color: rgb(204, 0, 0);
	font-weight: bold;
	font-style: italic;
}

#loaderWrap {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40001;
}
#loaderWrap .loaderOverlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40001;
}
#loaderWrap .vertical-offset {
  z-index: 40002;
  position: absolute;
  top: 30%;
  width: 100%;
}
#loaderWrap .vertical-offset .loaderBox {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  top: 30%;
  left: 0;
  transform: translateY(20%);
  position: relative;
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #0083be;
  border-radius: 50%;
  border-top: 20px solid #eaf0f6;
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

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