header {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
}
header a:hover {
	color: #666666;
	text-decoration: none;
}
body {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
}
h1 {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	font-weight: 700;
	font-size: 23px;
	color: #00544f;
	margin: 0px 0px 25px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	text-rendering: optimizeLegibility;
}
h2 {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #00544f;
	border-bottom: 1.5px solid #000000;
	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", helvetica, arial, sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #00544f;
	text-rendering: optimizeLegibility;
}
h6 {	
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 5px;
	color: #00544f;
	text-rendering: optimizeLegibility;
}

#content a {
	color: #00544f;
	text-decoration: underline;
}

#content a:hover {
	color: rgba(0, 84, 79, .85);
	text-decoration: underline;
}

#content .alert a {
	color: #fff
}

input[type="button"], input[type="submit"], input[type="reset"], button, .button, #content a.button {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	color: #ffffff;
	background: #00544f;
	font-size: 18px;
	font-weight: 400;
	border-radius: 6px;
	line-height: 1;
	margin: 0;
	padding: 10px 28px 11px;
	text-align: center;
	transition: background-color .15s ease-in-out;
	border: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
}

input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover, .button:hover, #content a.button:hover {
	color: #ffffff;
	background: rgba(0, 84, 79, .85);
	cursor: pointer;
	text-decoration: none;
}

/*input[type="text"] {
	font-size: 18px;
	color: #222222;
	border: 2px solid #352568;
	border-radius: 6px;
	padding: 5px;
	line-height: 1.3;
	min-height: 40px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;  
}

label {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	color: #231F20;
	font-size: 18px;
}*/

label, input[type="text"] {
	font-size: 16px;
	color: #000000;
}

select {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	color: #231F20;
	font-size: 18px;
	border: 1px solid #cccccc;
	border-radius: 2px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	padding: 5px;
	line-height: 1.3;
	height: 32px;
	-webkit-appearance: menulist-button;
	-moz-appearance: menulist-button;
	appearance: menulist-button; 
}

/*div.alert-box {
	text-shadow: none;
}
div.alert-box.alert {
	line-height: 1.4;
	font-size: 16px;
	background-color: white;
    color: #c60f13;
    border: 1px solid #c60f13;
    text-shadow: none;
    padding: 15px;
    margin-bottom: 20px;
}*/


.input-feedback {
	margin-bottom: 15px;
	margin-top: -5px;
	color: #c60f13;
}

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

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