@charset "utf-8";
/* CSS Document */
.si-float-wrapper {
  position: absolute;
  width: 100%;
}
.si-float-wrapper,
.si-float-wrapper * {
  box-sizing: border-box;
}
[class*='si-wrapper'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  cursor: default;
}
.si-wrapper-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -40px;
  margin-left: 0px;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.si-wrapper-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-top: 0px;
  margin-left: 0px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.si-wrapper-left {
  margin-top: -20px;
  margin-left: -11px;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}
.si-wrapper-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: -20px;
  margin-left: 11px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
[class*='si-shadow-wrapper'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  z-index: 1;
}
.si-shadow-wrapper-top,
.si-shadow-wrapper-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.si-shadow-pointer-bottom,
.si-shadow-pointer-right {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.si-shadow-frame {
  box-shadow: 20px 20px 0 0 #000;
}
[class*='si-shadow-pointer'] {
  position: relative;
  width: 15px;
  height: 15px;
  margin: auto;
}
[class*='si-shadow-inner-pointer'] {
  position: absolute;
  width: 141%;
  height: 141%;
  box-shadow: 0px 28.28427px 0 0 #000;
}
.si-shadow-inner-pointer-top {
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.si-shadow-inner-pointer-bottom {
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(-45deg);
  transform: translate(-50%, 50%) rotate(-45deg);
}
.si-shadow-inner-pointer-left {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.si-shadow-inner-pointer-right {
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  transform: translate(50%, -50%) rotate(-45deg);
}
.si-frame {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border-radius: 3px;
  overflow: hidden;
  z-index: 2;
}
.si-content-wrapper {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 285px;
  padding: 30px;
  background-color: #00446b;
  color: white;
}
.si-content {
  overflow: auto;
}
.si-content a {
  color: #eee;
}
.si-content a:hover .si-content a:focus {
  color: #fff !important;
}
.si-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  margin: 0;
  outline: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.si-close-button:hover,
.si-close-button:focus {
  opacity: 1;
}
[class*='si-pointer-border'] {
  position: absolute;
  border: 15px solid transparent;
  z-index: 3;
}
[class*='si-pointer-bg'] {
  position: relative;
  border: 15px solid transparent;
  z-index: 4;
}
.si-has-border [class*='si-pointer-bg'] {
  border-width: 12px;
}
.si-pointer-border-top,
.si-pointer-border-bottom {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.si-pointer-border-left,
.si-pointer-border-right {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.si-pointer-top {
  border-bottom: 0;
}
.si-pointer-border-top {
  bottom: 0;
  border-top-color: #00446b;
}
.si-pointer-bg-top {
  border-top-color: #00446b;
}
.si-has-border .si-pointer-bg-top {
  top: -8px;
  margin-bottom: 3px;
}
.si-pointer-bottom {
  border-top: 0;
}
.si-pointer-border-bottom {
  top: 0;
  border-bottom-color: #2b3031;
}
.si-pointer-bg-bottom {
  border-bottom-color: #fff;
}
.si-has-border .si-pointer-bg-bottom {
  bottom: -8px;
  margin-top: 3px;
}
.si-pointer-left {
  border-right: 0;
}
.si-pointer-border-left {
  right: 0;
  border-left-color: #2b3031;
}
.si-pointer-bg-left {
  border-left-color: #fff;
}
.si-has-border .si-pointer-bg-left {
  left: -8px;
  margin-right: 3px;
}
.si-pointer-right {
  border-left: 0;
}
.si-pointer-border-right {
  left: 0;
  border-right-color: #2b3031;
}
.si-pointer-bg-right {
  border-right-color: #fff;
}
.si-has-border .si-pointer-bg-right {
  right: -8px;
  margin-left: 3px;
}
html {
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
}
.map-canvas {
  width: 100%;
  height: 100%;
}
.si-wrapper-top {
  max-width: 300px;
}
@media (min-width: 600px) {
  .si-wrapper-top {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .si-wrapper-top {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .si-frame {
    padding: 50px;
  }
}
@media (max-width: 599px) {
  .si-frame {
    padding: 40px;
  }
}
.si-close-button {
  width: 40px;
  height: 40px;
  background: transparent;
  padding: 3px;
  font-size: 16pt;
  border-radius: 0;
}
.si-close-button:hover {
  background: #2f281a;
}
.si-content h1 {
  margin: 0 0 50px;
  padding: 10px 0;
  border-top: 2px solid #2b3031;
  border-bottom: 2px solid #2b3031;
  font-family: 'Montserrat', sans-serif;
}
.si-content em {
  font-size: 0.85em;
}
/*# sourceMappingURL=styles.css.map */
strong,
b {
  font-weight: bold;
}
em,
i {
  font-style: italic;
}
/* Clear fix */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.cf:after {
  clear: both;
}
/*  For IE 6/7 only  Include this rule to trigger hasLayout and contain floats.  */
.cf {
  *zoom: 1;
}
/** FIX for Bootstrap and Google Maps Info window styes problem **/
img[src*="gstatic.com/"],
img[src*="googleapis.com/"] {
  max-width: none;
}
.rightlink {
  display: block;
  text-align: right;
}
.right {
  text-align: right;
}
.rightimg {
  float: right;
  margin: 10px 0 10px 10px;
}
.center {
  display: block;
  margin: auto;
  text-align: center;
}
.responsive_only {
  display: none;
}
html {
  min-height: 100%;
  height: 100%;
}
html.grayscale {
  -moz-filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  filter: gray;
  /* IE6-9 */
  filter: grayscale(100%);
}
html.fontsize1 body {
  font-size: 18pt;
}
html.fontsize1 body .events-bkg .event-details {
  font-size: 16px;
}
html.fontsize1 body #home header .banner_txt h1 {
  font-size: 50px;
}
html.fontsize1 body .navbar-default .nav ul li a {
  font-size: 17pt;
}
html.fontsize1 body .user-nav {
  font-size: 13pt;
}
html.fontsize1 body .testimonial {
  font-size: 26px;
}
html.fontsize1 body .events-bkg .event-date {
  height: auto;
}
html.fontsize1 body .events-bkg .event-details {
  height: auto;
}
html.fontsize1 body h1 {
  font-size: 44pt;
}
html.fontsize1 body h2 {
  font-size: 34pt;
}
html.fontsize1 body h3 {
  font-size: 30pt;
}
html.fontsize1 body h4 {
  font-size: 26pt;
}
html.fontsize1 body h5 {
  font-size: 20pt;
}
html.fontsize1 body h6 {
  font-size: 18pt;
}
html.fontsize2 body {
  font-size: 20pt;
}
html.fontsize2 body .events-bkg .event-details {
  font-size: 18px;
}
html.fontsize2 body #home header .banner_txt h1 {
  font-size: 52px;
}
html.fontsize2 body .navbar-default .nav ul li a {
  font-size: 19pt;
}
html.fontsize2 body .user-nav {
  font-size: 15pt;
}
html.fontsize2 body .testimonial {
  font-size: 28px;
}
html.fontsize2 body .events-bkg .event-date {
  height: auto;
}
html.fontsize2 body .events-bkg .event-details {
  height: auto;
}
html.fontsize2 body h1 {
  font-size: 46pt;
}
html.fontsize2 body h2 {
  font-size: 36pt;
}
html.fontsize2 body h3 {
  font-size: 32pt;
}
html.fontsize2 body h4 {
  font-size: 28pt;
}
html.fontsize2 body h5 {
  font-size: 22pt;
}
html.fontsize2 body h6 {
  font-size: 20pt;
}
html.fontsize3 body {
  font-size: 22pt;
}
html.fontsize3 body .events-bkg .event-details {
  font-size: 20px;
}
html.fontsize3 body #home header .banner_txt h1 {
  font-size: 54px;
}
html.fontsize3 body .navbar-default .nav ul li a {
  font-size: 21pt;
}
html.fontsize3 body .user-nav {
  font-size: 17pt;
}
html.fontsize3 body .testimonial {
  font-size: 30px;
}
html.fontsize3 body .events-bkg .event-date {
  height: auto;
}
html.fontsize3 body .events-bkg .event-details {
  height: auto;
}
html.fontsize3 body h1 {
  font-size: 48pt;
}
html.fontsize3 body h2 {
  font-size: 38pt;
}
html.fontsize3 body h3 {
  font-size: 34pt;
}
html.fontsize3 body h4 {
  font-size: 30pt;
}
html.fontsize3 body h5 {
  font-size: 24pt;
}
html.fontsize3 body h6 {
  font-size: 22pt;
}
html.fontsize4 body {
  font-size: 24pt;
}
html.fontsize4 body .events-bkg .event-details {
  font-size: 22px;
}
html.fontsize4 body #home header .banner_txt h1 {
  font-size: 57px;
}
html.fontsize4 body .navbar-default .nav ul li a {
  font-size: 23pt;
}
html.fontsize4 body .user-nav {
  font-size: 19pt;
}
html.fontsize4 body .testimonial {
  font-size: 32px;
}
html.fontsize4 body .events-bkg .event-date {
  height: auto;
}
html.fontsize4 body .events-bkg .event-details {
  height: auto;
}
html.fontsize4 body h1 {
  font-size: 50pt;
}
html.fontsize4 body h2 {
  font-size: 40pt;
}
html.fontsize4 body h3 {
  font-size: 36pt;
}
html.fontsize4 body h4 {
  font-size: 32pt;
}
html.fontsize4 body h5 {
  font-size: 26pt;
}
html.fontsize4 body h6 {
  font-size: 24pt;
}
html.highcontrast * {
  background: black !important;
  color: white !important;
}
html.highcontrast * a {
  color: #0080ff !important;
}
html.highcontrast * a:hover {
  background: #400000 !important;
}
html.highcontrast * h1,
html.highcontrast * h2,
html.highcontrast * h3,
html.highcontrast * h4,
html.highcontrast * h5,
html.highcontrast * h6 {
  color: #FFFF80 !important;
}
html.highcontrast * #accessibilitywrap #accessibility-tools a.active {
  background: #333333 !important;
}
html.lightbackground * {
  background: white !important;
  color: black !important;
}
html.lightbackground * a {
  color: #1968B3 !important;
}
html.lightbackground * a:hover {
  background: #efefef !important;
}
html.lightbackground * h1,
html.lightbackground * h2,
html.lightbackground * h3,
html.lightbackground * h4,
html.lightbackground * h5,
html.lightbackground * h6 {
  color: #051839 !important;
}
html.lightbackground * #accessibilitywrap #accessibility-tools a.active {
  background: #cccccc !important;
}
html.fontreadable body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}
html.underlinelinks a {
  text-decoration: underline !important;
}
#accessibilitywrap {
  position: fixed;
  left: 200px;
  top: 175px !important;
  margin-left: -200px;
  transition: margin 700ms;
  z-index: 9;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}
#accessibilitywrap.open {
  margin-left: 0;
}
#accessibilitywrap #accessibility-tools {
  width: 200px;
  font-size: 70%;
  background: white;
  color: #1968B3;
  position: absolute;
  top: 0;
  right: 50px;
  box-shadow: 1px 1px 10px -5px rgba(0, 0, 0, 0.5);
}
#accessibilitywrap #accessibility-tools a {
  display: block;
  padding: 5px 10px;
  border-bottom: solid 1px #1968B3;
}
#accessibilitywrap #accessibility-tools a.active {
  background: #1968B3;
  color: white;
  border-bottom: solid 1px white;
}
#accessibilitywrap #accessibility-menu {
  box-shadow: 1px 1px 10px -5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  right: -50px;
  width: 50px;
  height: 50px;
  background: #1968B3;
  color: #fff;
  vertical-align: middle;
  line-height: 66px;
  text-align: center;
}
#accessibilitywrap #accessibility-menu .fa {
  font-size: 32pt !important;
}
@media screen and (max-width: 499px) {
  #accessibilitywrap {
    top: 75px !important;
  }
  #accessibilitywrap #accessibility-menu {
    right: -40px;
    width: 40px;
    height: 40px;
    line-height: 46px;
  }
  #accessibilitywrap #accessibility-menu .fa {
    font-size: 22pt !important;
  }
  #accessibilitywrap #accessibility-tools {
    right: 40px;
  }
}
body {
  min-height: 100%;
  min-width: 100%;
  background: white;
  font-family: "futura-pt", sans-serif;
  font-size: 16pt;
  color: #7c8688;
  text-align: left;
  line-height: 150%;
  font-variant-numeric: lining-nums;
}
.small-font {
  font-size: 12pt;
}
.small-lineheight {
  line-height: normal;
}
img {
  max-width: 100%;
  height: auto !important;
}
h1 {
  font-size: 42pt;
  color: #51595b;
}
h1.bigtxt {
  font-size: 61pt;
}
h2 {
  font-size: 32pt;
  font-weight: 300;
  margin-bottom: 25px;
  margin-top: 0;
  color: #51595b;
}
h2 b {
  font-size: 130%;
  color: rgba(13, 91, 166, 0.65);
  text-shadow: 1px 1px 4px #fff, 0 0 0 #000;
  display: inline-block;
  margin-top: 10px;
}
h2 .sml {
  font-size: 65%;
}
h2 sup {
  font-size: 35%;
  font-weight: 100;
  vertical-align: middle;
}
h3 {
  font-size: 28pt;
  color: #51595b;
}
h4 {
  font-size: 24pt;
  color: #1968B3;
}
h5 {
  font-size: 18pt;
  font-family: "futura-pt", sans-serif;
  color: #1968B3;
}
h6 {
  font-size: 16pt;
  font-family: "futura-pt", sans-serif;
}
hr {
  height: 1px;
  border: none;
  color: #ebebeb;
  background: #ebebeb;
}
hr.smallmargin {
  margin: 7px 0;
}
a {
  transition: 0.2s;
  color: #1968B3;
}
a:hover,
a:focus {
  color: black;
}
p {
  margin: 0 0 25px;
}
.br {
  display: block;
}
ul,
ol {
  padding-left: 25px;
}
.firstwordhighlight {
  font-weight: 600;
}
.noty_body {
  text-align: center;
}
.content-content ul {
  list-style: none;
  padding-left: 40px;
}
.content-content ul li {
  padding-bottom: 8px;
}
.content-content ul li:before {
  background: #1968B3;
  content: '';
  display: inline-block;
  margin-left: -25px;
  margin-right: 15px;
  width: 8px;
  height: 8px;
  vertical-align: middle;
}
#copyrights {
  font-size: 11px;
  line-height: 12px;
  padding-top: 5px;
}
select,
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
  color: #000;
  background: rgba(25, 104, 179, 0.15);
  border: solid #1968B3 1px;
  padding: 0px 10px;
  font-size: 80%;
}
input:disabled {
  opacity: 0.2;
}
input[type="checkbox"]:not(.sr-only) {
  display: none;
}
input[type="checkbox"] + label:not(.no_label) {
  display: inline-block;
  width: 19px;
  height: 19px;
  float: left;
  margin: -11px 20px 0 0;
  cursor: pointer;
  border: solid 2px #1968B3;
  border-radius: 2px;
  color: #1968B3;
  position: relative;
  font-weight: normal;
}
input[type="checkbox"]:checked + label:not(.no_label) .svg-inline--fa {
  position: absolute;
  top: 1px;
  font-size: 10pt;
  left: 1px;
}
input[type="checkbox"]:checked + label:not(.no_label):after {
  content: '✘';
  line-height: 3px;
  vertical-align: text-top;
  font-size: 10pt;
  margin-left: 2px;
}
input[type="checkbox"]:disabled + label:not(.no_label) {
  border-color: #999;
}
input[type="checkbox"]:disabled + label:not(.no_label):after {
  color: #999;
  content: '';
  position: absolute;
  top: -7px;
  left: 1px;
  font-size: 10pt;
}
#worksheet-form {
  padding: 20px;
}
li.hiddenoption {
  display: none;
}
.question {
  font-size: 80%;
  font-weight: bold;
  color: #1968B3;
  padding: 0 0 5px 0;
  line-height: 130%;
}
.answer {
  padding: 2px 5px;
  border: dashed 1px #ccc;
  color: #1968B3;
  min-height: 35px;
  margin-bottom: 10px;
}
.form-element {
  position: relative;
  padding: 10px 0;
}
.form-element.no-pad {
  padding: 0;
}
.form-element input[type="text"],
.form-element input[type="password"],
.form-element input[type="email"],
.form-element textarea {
  position: relative;
  background: none;
  width: 100%;
  z-index: 1;
}
.form-element input[type="text"].hasvalue:focus + label:not(.no_label),
.form-element input[type="password"].hasvalue:focus + label:not(.no_label),
.form-element input[type="email"].hasvalue:focus + label:not(.no_label),
.form-element textarea.hasvalue:focus + label:not(.no_label) {
  display: block;
}
.form-element input[type="text"]:focus + label:not(.no_label),
.form-element input[type="password"]:focus + label:not(.no_label),
.form-element input[type="email"]:focus + label:not(.no_label),
.form-element textarea:focus + label:not(.no_label),
.form-element input[type="text"].hasvalue + label:not(.no_label),
.form-element input[type="password"].hasvalue + label:not(.no_label),
.form-element input[type="email"].hasvalue + label:not(.no_label),
.form-element textarea.hasvalue + label:not(.no_label) {
  top: -13px;
  left: 0;
  color: #1968B3;
  font-size: 55%;
  font-style: italic;
}
.form-element label:not(.no_label) {
  position: absolute;
  top: 11px;
  left: 10px;
  color: #7c8688;
  font-weight: normal;
  font-size: 70%;
  font-style: italic;
  transition: 2ms;
}
.form-element.inline-element {
  display: inline-block;
}
.form-element.inline-element input[type="text"],
.form-element.inline-element input[type="password"],
.form-element.inline-element input[type="email"] {
  display: inline-block;
  width: 150px;
}
.form-element.inline-element input[type="text"].hasvalue:focus + label:not(.no_label),
.form-element.inline-element input[type="password"].hasvalue:focus + label:not(.no_label),
.form-element.inline-element input[type="email"].hasvalue:focus + label:not(.no_label) {
  display: block;
}
.form-element.inline-element input[type="text"]:focus + label:not(.no_label),
.form-element.inline-element input[type="password"]:focus + label:not(.no_label),
.form-element.inline-element input[type="email"]:focus + label:not(.no_label),
.form-element.inline-element input[type="text"].hasvalue + label:not(.no_label),
.form-element.inline-element input[type="password"].hasvalue + label:not(.no_label),
.form-element.inline-element input[type="email"].hasvalue + label:not(.no_label) {
  top: -10px;
  left: 0;
  color: #1968B3;
  font-size: 55%;
  font-style: italic;
}
.form-contain {
  position: relative;
  overflow-x: hidden;
}
.form-contain > div.slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 450px;
  background: #eee;
  width: 100%;
  padding-left: 20px;
  margin-left: 110%;
  transition: margin-left 1s ease;
}
.form-contain > div.slider.showform {
  margin-left: 34px;
  z-index: 2;
}
.form-contain > div.slider.showform .form-close {
  display: block;
}
.form-contain > div.slider:first-child {
  margin-left: 0;
  background: #fff;
}
.form-contain > div.slider .form-close {
  position: absolute;
  display: none;
  top: -10px;
  left: -32px;
  border-radius: 6px 0 0 6px;
  height: 450px;
  border: none;
}
.form-contain > div.slider .form-close:hover {
  background: #699DCD;
  transform: scale(1);
}
.career a {
  color: #449092;
}
.career a.linkedin-btn {
  color: white;
}
.career a.facebook-btn {
  color: white;
}
.career hr {
  color: #449092;
  background-color: #449092;
}
.career .prm-btn,
.career button,
.career input[type="submit"] {
  background-color: #449092;
  border-color: #449092;
  color: white;
}
.career .prm-btn:focus,
.career button:focus,
.career input[type="submit"]:focus {
  color: white;
  background-color: #449092;
}
.career .prm-btn:hover,
.career button:hover,
.career input[type="submit"]:hover {
  color: #449092;
  background-color: white;
}
.career select,
.career input[type="text"],
.career input[type="password"],
.career input[type="email"],
.career textarea {
  background: rgba(68, 144, 146, 0.15);
  border-color: #449092;
}
.career input[type="checkbox"] + label:not(.no_label) {
  border-color: #449092;
  color: #449092;
}
.career .question {
  color: #449092;
}
.career .answer {
  color: #449092;
}
.career .form-element input[type="text"]:focus + label:not(.no_label),
.career .form-element input[type="password"]:focus + label:not(.no_label),
.career .form-element input[type="email"]:focus + label:not(.no_label),
.career .form-element textarea:focus + label:not(.no_label),
.career .form-element input[type="text"].hasvalue + label:not(.no_label),
.career .form-element input[type="password"].hasvalue + label:not(.no_label),
.career .form-element input[type="email"].hasvalue + label:not(.no_label),
.career .form-element textarea.hasvalue + label:not(.no_label) {
  color: #449092;
}
.career .form-element.inline-element input[type="text"]:focus + label:not(.no_label),
.career .form-element.inline-element input[type="password"]:focus + label:not(.no_label),
.career .form-element.inline-element input[type="email"]:focus + label:not(.no_label),
.career .form-element.inline-element input[type="text"].hasvalue + label:not(.no_label),
.career .form-element.inline-element input[type="password"].hasvalue + label:not(.no_label),
.career .form-element.inline-element input[type="email"].hasvalue + label:not(.no_label) {
  color: #449092;
}
#output-note {
  font-size: 70%;
  font-style: italic;
  font-weight: bold;
}
.logoutbtn {
  float: right;
  margin-top: -67px;
  text-align: right;
}
.facebook-btn {
  background: #3b5998;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 6px;
  padding: 6px 10px;
  transition: 0.2s;
}
.facebook-btn:hover {
  background: #3a61b3;
  color: #fff;
  text-decoration: none;
  transform: scale(0.97);
}
.linkedin-btn {
  background: #0077B5;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 6px;
  padding: 6px 10px;
  transition: 0.2s;
  margin-bottom: 10px;
}
.linkedin-btn:hover {
  background: #00A0DC;
  color: #fff;
  text-decoration: none;
  transform: scale(0.97);
}
.eventitem {
  font-size: 85%;
  line-height: 130%;
}
.eventitem.pastevent {
  opacity: 0.7;
  font-size: 70%;
  line-height: 110%;
}
.login-or {
  border-bottom: 1px solid #7c8688;
  margin: 0 0 15px 0;
}
.login-or span {
  background: #fff;
  display: inline-block;
  margin-bottom: -10px;
  padding: 10px 15px 0;
  vertical-align: bottom;
  font-weight: bold;
}
input[type="submit"].full-width {
  display: block;
  width: 100%;
}
input[type="file"].hiddenform {
  display: none;
}
.prm-btn,
button,
input[type="submit"] {
  background: transparent;
  border: solid 1px #699DCD;
  padding: 8px 15px;
  color: #699DCD;
  margin: 10px 0;
  cursor: pointer;
  display: inline-block;
}
.prm-btn.small-btn,
button.small-btn,
input[type="submit"].small-btn {
  padding: 1px 7px;
  font-size: 80%;
  margin: 3px 0;
}
.prm-btn.blue-btn,
button.blue-btn,
input[type="submit"].blue-btn {
  background: #1968B3;
}
.prm-btn.blue-btn:hover,
button.blue-btn:hover,
input[type="submit"].blue-btn:hover {
  background: #6CBB5B;
  color: #fff;
  border-color: #1968B3;
}
.prm-btn:hover,
button:hover,
input[type="submit"]:hover,
.prm-btn:focus,
button:focus,
input[type="submit"]:focus {
  background: #699DCD;
  color: white;
  text-decoration: none;
  transform: scale(0.97);
}
.btn-navbar {
  display: none;
}
section.container {
  padding: 60px 15px;
}
#logo {
  padding: 5px 0;
}
.tagline {
  display: inline-block;
  color: #1968B3;
  font-size: 16.5pt;
  padding-left: 5px;
  vertical-align: middle;
  width: 225px;
}
nav {
  background: #fff;
  background: rgba(235, 235, 235, 0.9);
  position: absolute;
  top: 47px;
  width: 100%;
  left: 0;
  z-index: 999;
}
.map-wrapper {
  margin-bottom: -10px;
}
#main-content {
  padding-top: 80px;
}
@media screen and (max-width: 991px) {
  #main-content {
    padding-top: 180px;
  }
}
@media screen and (max-width: 499px) {
  #main-content {
    padding-top: 120px;
  }
}
#home #main-content {
  padding-top: 0;
}
#home:not(.home) #main-content {
  padding-top: 100px;
}
.navbar-default {
  border-radius: 0;
  border: none;
  padding: 0;
  margin: 0;
  min-height: 0;
  background: none;
}
.navbar-default .navbar-collapse {
  border: none;
}
.navbar-default .nav {
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: right;
  font-family: "futura-pt", sans-serif;
}
.navbar-default .nav.navbar-collapse {
  margin-right: 0;
}
.navbar-default .nav ul {
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
}
.navbar-default .nav ul li {
  display: inline-block;
  list-style: none;
}
.navbar-default .nav ul li a {
  text-decoration: none;
  color: black;
  display: inline-block;
  font-size: 15pt;
  padding: 20px 10px;
}
.navbar-default .nav ul li a.dropdown-toggle {
  margin-left: -20px;
}
.navbar-default .nav ul li a.dropdown-toggle i {
  padding: 0 3px;
  width: auto;
}
.navbar-default .nav ul li.current a,
.navbar-default .nav ul li a:hover {
  color: #699DCD;
  text-decoration: none;
}
.navbar-default .nav ul li ul li a {
  text-transform: none;
}
.navbar-default .nav ul li.open > a,
.navbar-default .nav ul li.open > a:hover,
.navbar-default .nav ul li.open > a:focus {
  background: none;
  text-decoration: none;
  color: #1968B3;
}
.navbar-default .nav ul li.open > a.dropdown-toggle,
.navbar-default .nav ul li.open > a:hover.dropdown-toggle,
.navbar-default .nav ul li.open > a:focus.dropdown-toggle {
  color: #51595b;
}
.navbar-default .nav ul li .dropdown-menu {
  border-radius: 0;
  padding: 0;
  min-width: 225px;
  left: auto;
  right: 13px;
  margin-top: 0;
  float: right;
  border: 0 white;
  color: white;
  background: #7c8688;
}
.navbar-default .nav ul li .dropdown-menu li {
  display: block;
  border-bottom: solid 1px #51595b;
}
.navbar-default .nav ul li .dropdown-menu li .dropdown-toggle {
  position: absolute;
  top: 8px;
  right: -9px;
  padding: 0;
  transform: rotate(-90deg);
  width: 39px;
  text-align: center;
  height: 20px;
  line-height: 0;
}
.navbar-default .nav ul li .dropdown-menu li .dropdown-toggle:hover {
  background: transparent !important;
}
.navbar-default .nav ul li .dropdown-menu li .dropdown-menu {
  left: 100%;
  top: 0;
  background: #575e60;
}
.navbar-default .nav ul li .dropdown-menu li a {
  margin-top: 0;
  font-size: 140%;
  padding: 3px 27px 3px 10px;
  display: block;
  color: white;
}
.navbar-default .nav ul li .dropdown-menu li a:hover,
.navbar-default .nav ul li .dropdown-menu li a:focus,
.navbar-default .nav ul li .dropdown-menu li a.current {
  background: #1968B3;
  color: white;
}
.navbar-default .nav ul li .dropdown-menu li:last-child {
  border-bottom: none;
}
.navbar-default .nav ul li.nav_find-a-job a {
  background: #1968B3;
  color: white;
  height: auto;
  line-height: normal;
  padding: 7px 13px;
  border-radius: 5px;
  border: #1968B3 solid 1px;
}
.navbar-default .nav ul li.nav_find-a-job a:hover {
  background: white;
  border-color: #1968B3;
  color: #1968B3;
}
.navbar-default .btn-navbar,
.navbar-default .navbar-toggle {
  margin: 0;
  width: 100%;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 5px 0 0;
  transition: 0.4s;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
}
.navbar-default .btn-navbar:active,
.navbar-default .navbar-toggle:active {
  transition: 0ms;
}
.navbar-default .btn-navbar.open .lines,
.navbar-default .navbar-toggle.open .lines {
  background: transparent;
}
.navbar-default .btn-navbar.open .lines:before,
.navbar-default .navbar-toggle.open .lines:before,
.navbar-default .btn-navbar.open .lines:after,
.navbar-default .navbar-toggle.open .lines:after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 4rem;
}
.navbar-default .btn-navbar.open .lines:before,
.navbar-default .navbar-toggle.open .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.navbar-default .btn-navbar.open .lines:after,
.navbar-default .navbar-toggle.open .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.navbar-default .btn-navbar .lines,
.navbar-default .navbar-toggle .lines {
  display: inline-block;
  width: 4rem;
  height: 0.57143rem;
  background: #6CBB5B;
  border-radius: 0.28571rem;
  transition: 0.4s;
  position: relative;
}
.navbar-default .btn-navbar .lines:before,
.navbar-default .navbar-toggle .lines:before,
.navbar-default .btn-navbar .lines:after,
.navbar-default .navbar-toggle .lines:after {
  display: inline-block;
  width: 4rem;
  height: 0.57143rem;
  background: #6CBB5B;
  border-radius: 0.28571rem;
  transition: 0.4s;
  position: absolute;
  left: 0;
  content: '';
  -webkit-transform-origin: 0.28571rem center;
  transform-origin: 0.28571rem center;
}
.navbar-default .btn-navbar .lines:before,
.navbar-default .navbar-toggle .lines:before {
  top: 1rem;
}
.navbar-default .btn-navbar .lines:after,
.navbar-default .navbar-toggle .lines:after {
  top: -1rem;
}
.user-nav {
  color: white;
  background: #1968B3;
  padding: 8px 0 0 0;
  font-size: 11pt;
  text-transform: uppercase;
  line-height: 22pt;
}
.user-nav p {
  margin: 0;
}
.user-nav a {
  color: white;
  display: inline-block;
  margin: 0 0 0 15px;
}
.user-nav a:hover {
  color: #699DCD;
}
@media screen and (max-width: 600px) {
  .user-nav {
    font-size: 8pt;
  }
}
@media screen and (max-width: 499px) {
  .user-nav {
    display: none;
  }
}
@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
  }
}
#home header {
  position: relative;
  background-size: cover;
  background-color: #1968B3;
}
#home header #rotator {
  overflow: hidden;
  position: relative;
  min-height: 70vh;
}
#home header #rotator .img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-animation: zoomin 8s 1;
  display: none;
}
#home header #rotator .img[data-img="home-banner-1.jpg"] {
  background-position: top center;
}
@media screen and (max-width: 992px) {
  #home header #rotator {
    min-height: 600px;
  }
}
@media screen and (max-width: 499px) {
  #home header #rotator {
    min-height: 50vh;
    margin-top: 76px;
  }
}
#home header .overlay {
  padding-top: 115px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  box-shadow: inset 0 430px 180px -240px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  background-color: rgba(19, 78, 134, 0.5);
}
#home header .banner_txt {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px 20px 60px 20px;
}
#home header .banner_txt h1 {
  color: white;
  margin-bottom: 50px;
  font-size: 45px;
}
#home header .banner_txt p {
  font-size: 30px;
  line-height: 120%;
}
#home header .banner_txt.banner-2 {
  padding: 200px 20px 60px 20px;
}
#home header .banner_txt.banner-3 {
  padding: 90px 260px 20px 20px;
  text-align: left;
  margin-left: -200px;
}
@media screen and (max-width: 992px) {
  #home header .banner_txt.banner-3 {
    padding: 90px 290px 20px 20px;
    text-align: left;
    margin-left: 0px;
  }
}
@media screen and (max-width: 499px) {
  #home header .banner_txt.banner-3 {
    padding: 230px 20px 20px 20px;
    text-align: center;
    margin-left: 0px;
  }
}
@media screen and (max-width: 499px) {
  #home nav {
    margin-top: -76px;
  }
}
.uparrow {
  position: absolute;
  top: -10px;
  right: 20px;
  border-bottom: 10px solid rgba(0, 0, 0, 0.6);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.responsive_banner {
  display: none;
}
section {
  max-width: 100vw;
  min-width: 0;
}
section .container {
  position: relative;
  padding: 60px 15px 40px 15px;
  max-width: 100vw;
}
section .container.no-pad-top {
  padding-top: 0;
}
.section-gray {
  background: #ebebeb;
}
.intro-content {
  background: white;
  border-top: solid 4px #699DCD;
  text-align: center;
  padding: 50px;
  color: #7c8688;
  margin-top: -110px;
  margin-bottom: 20px;
  position: relative;
}
.section-blue {
  background: #1968B3;
  color: white;
}
.section-blue hr {
  color: white;
  background: white;
}
.section-blue h1,
.section-blue h2,
.section-blue h3,
.section-blue h4,
.section-blue h5,
.section-blue h6 {
  color: white;
}
.section-blue .fa-2x {
  vertical-align: middle;
}
.section-blue .prm-btn {
  background: #fff;
  color: #1968B3;
}
.section-blue .prm-btn:hover {
  background: #6CBB5B;
  color: #fff;
}
.section-lightblue {
  background: #699DCD;
  color: white;
}
.section-lightblue hr {
  color: white;
  background: white;
}
.section-lightblue h1,
.section-lightblue h2,
.section-lightblue h3,
.section-lightblue h4,
.section-lightblue h5,
.section-lightblue h6 {
  color: white;
}
.section-lightblue .fa-2x {
  vertical-align: middle;
}
.section-lightblue .prm-btn {
  background: #fff;
  color: #1968B3;
}
.section-lightblue .prm-btn:hover {
  background: #6CBB5B;
  color: #fff;
}
.testimonialimage {
  width: 200px;
  height: 200px;
  background-position: center;
  background-size: cover;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  margin: auto;
}
.testimonial {
  padding: 20px;
  font-size: 24px;
}
.testimonial .testimonial-sig {
  font-size: 80%;
}
.section-orange {
  background: #1968B3;
  color: white;
  box-shadow: 0 -15px 15px -19px #000 inset, 0 15px 15px -19px #000 inset;
}
.section-orange hr {
  color: white;
  background: white;
}
.section-orange h1,
.section-orange h2,
.section-orange h3,
.section-orange h4,
.section-orange h5,
.section-orange h6 {
  color: white;
}
.img-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.careerquest-bkg {
  background: url('images/watermarklogo.png') no-repeat;
  background-position: 120% -15px;
}
@media screen and (max-width: 992px) {
  .careerquest-bkg {
    background: none;
  }
}
.events-bkg {
  background: url('images/placeholder-738808603.jpg') no-repeat;
  background-size: cover;
  color: white;
}
.events-bkg h2 {
  color: white;
}
.events-bkg .prm-btn {
  border-color: white;
  color: white;
}
.events-bkg .row {
  margin-bottom: 15px;
}
.events-bkg .overlay {
  background: rgba(0, 0, 0, 0.6);
}
.events-bkg .event-date {
  background: white;
  color: #699DCD;
  width: 70px;
  height: 70px;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  padding: 7px 0 13px 0;
}
.events-bkg .event-date .event-date-month {
  font-size: 14px;
  text-transform: uppercase;
}
.events-bkg .event-details {
  border: solid 1px white;
  margin: 0 10px;
  padding: 0 15px;
  height: 70px;
  color: white;
  font-size: 14px;
  line-height: normal;
}
.events-bkg .event-details a {
  color: white;
}
.events-bkg .event-details .row {
  margin-bottom: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
}
.events-bkg .event-details .event-title {
  font-size: 20px;
  line-height: 1em;
  padding-bottom: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.events-bkg .event-details .event-icon {
  font-size: 20px;
  line-height: 40px;
}
@media screen and (max-width: 499px) {
  .events-bkg .event-details {
    height: auto;
  }
  .events-bkg .event-details .row {
    display: block;
  }
  .events-bkg .event-details .event-title {
    padding-top: 10px;
    padding-bottom: 5px;
  }
  .events-bkg .event-date {
    width: auto;
    margin: 0 10px;
  }
}
.content-sidebar {
  padding-right: 20px;
  overflow: auto;
}
.content-sidebar nav {
  top: 0;
  position: relative;
}
.content-sidebar .sidebar-nav {
  list-style: none;
  padding: 10px 0;
  margin-bottom: 0;
}
.content-sidebar .sidebar-nav li a {
  display: block;
  padding: 6px 20px;
  font-size: 95%;
  line-height: 100%;
}
.content-sidebar .sidebar-nav li a:hover,
.content-sidebar .sidebar-nav li a:focus {
  color: black;
  text-decoration: underline;
}
.content-content h1:first-child {
  margin-top: 0;
}
.breadcrumbs {
  font-size: 70%;
  margin: -60px 0 40px 0;
}
footer {
  background: #1968B3;
  box-shadow: 0 -15px 15px -19px #000 inset, 0 15px 15px -19px #000 inset;
  padding: 50px 0;
  color: white;
  font-size: 80%;
}
footer .disclaimer {
  font-size: 73%;
  line-height: normal;
}
footer .copyright {
  font-size: 73%;
  padding: 25px 0 10px 0;
  line-height: 150%;
}
footer h6 {
  color: white;
  margin-bottom: 0;
}
footer a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
footer a:hover {
  color: white;
}
@media screen and (max-width: 991px) {
  footer {
    text-align: center;
  }
}
.content-content .quest-list li {
  font-size: 85%;
  list-style: none;
}
.content-content .quest-list li a {
  font-weight: bold;
}
.content-content .quest-list li input + label:not(.no_label) {
  display: inline-block;
  float: left;
  margin: 5px 7px 7px -26px;
}
.content-content .quest-list li p {
  margin: 0;
}
.content-content .quest-list li:before {
  display: none;
}
.prm-btn.seeoptions {
  margin-bottom: 0;
  margin-top: -10px;
  padding: 0 10px;
  width: 100%;
  text-align: center;
}
.prm-btn.seeoptions:hover,
.prm-btn.seeoptions:focus {
  transform: scale(1);
}
.seeoptions_panel {
  display: none;
  background: rgba(235, 235, 235, 0.9);
  border: solid 1px #ebebeb;
  padding: 10px;
  font-size: 12pt;
  line-height: normal;
}
.seeoptions_panel p {
  padding: 3px 0;
}
.status-contain {
  position: relative;
  width: 500px;
  max-width: 100%;
  margin: 20px 20px 20px 30px;
  border: solid #449092 1px;
  background: #8bbfbc;
  -webkit-border-radius: 0 15px 15px 0;
  -moz-border-radius: 0 15px 15px 0;
  border-radius: 0 15px 15px 0;
}
.status-contain .status-numbers {
  background: #449092;
  border-radius: 25px;
  width: 45px;
  height: 45px;
  font-size: 70%;
  border: solid 2px white;
  color: white;
  display: inline-block;
  position: absolute;
  top: -13px;
  left: -30px;
  text-align: center;
  line-height: 42px;
  font-weight: bold;
}
.status-contain .statusbar {
  background: #449092;
  width: 1%;
  min-width: 5%;
  height: 20px;
}
.status-contain.status-full .statusbar {
  background: #84EF32;
  border-radius: 0 10px 10px 0;
}
.status-contain.status-full .statusbar:after {
  content: 'complete';
  color: #fff;
  position: absolute;
  top: 17px;
  left: 55px;
  font-size: 80%;
  font-weight: bold;
}
.gallery {
  margin: 15px 0;
  overflow: hidden;
}
.gallery .pic_container {
  display: inline-block;
  vertical-align: top;
  margin: 5px 0px;
  width: 32%;
  font-size: 0;
}
.gallery .pic_container .title {
  font-size: 12pt;
  font-weight: bold;
  vertical-align: bottom;
  margin: -5px 0 -2px;
  display: block;
}
.gallery .pic_container .description {
  font-size: 10pt;
  line-height: 105%;
  color: #7c8688;
}
.gallery .pic_container .description p {
  margin-bottom: 10px;
}
.gallery .pic_container .pic {
  display: block;
  width: 96%;
  height: 170px;
  margin: 3px 0;
  background: no-repeat center center;
  background-size: cover;
}
.gallery .pic_container .full-sized-pic {
  display: none;
}
.gallery .pic_container:hover {
  text-decoration: none;
}
.mfp-close:hover,
.mfp-close:focus {
  background: none;
  transform: scale(1);
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  background: none;
  transform: scale(1);
}
@media screen and (max-width: 900px) {
  .mfp-iframe-holder .mfp-content {
    height: 90vh;
  }
}
.affiliate-listing h2 {
  margin-bottom: 5px;
}
.affiliate-listing .affiliate-item {
  padding: 20px;
  margin: 0 -20px;
}
.affiliate-listing .affiliate-item.highlight {
  background: #edf7eb;
}
.affiliate-listing .affiliate-item h3 {
  margin-top: 0;
  margin-bottom: 5px;
}
.affiliate-listing .affiliate-item .mapmarker {
  margin: -7px -4px 0 0;
}
.affiliate-listing .affiliate-item .affiliate-text {
  font-weight: normal;
  font-size: 13pt;
  line-height: normal;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 760px) {
  .affiliate-listing .affiliate-item {
    margin: 0;
  }
}
.locationlist {
  max-height: 150px;
  overflow: auto;
  padding: 10px;
  margin-top: 15px;
  background: #ffffff;
}
.locationlist li {
  padding: 4px 0;
  font-size: 80%;
  line-height: 90%;
}
.worksheet-tbl {
  margin-bottom: 15px;
  min-width: 100%;
  border-bottom: solid 2px #1968B3;
}
.worksheet-tbl.ws-firstleft-tbl tr td:first-child,
.worksheet-tbl.ws-firstleft-tbl tr th:first-child {
  text-align: left;
}
.worksheet-tbl td,
.worksheet-tbl th {
  text-align: center;
  padding: 3px 10px;
  font-size: 75%;
}
.worksheet-tbl td {
  border-bottom: solid 1px #1968B3;
}
.worksheet-tbl td:nth-child(odd) {
  background: #eee;
}
.worksheet-tbl th {
  background: #1968B3;
  color: #fff;
  vertical-align: bottom;
}
.worksheet-tbl th:nth-child(odd) {
  background: #1968B3;
}
.worksheet-tbl .totals-row td {
  font-weight: bold;
}
.documentcontain {
  margin: -15px;
  padding: 10px 15px;
  background: #ececec;
}
.documentcontain h2 {
  margin-bottom: 5px;
}
.documentcontain p.smallnote {
  font-size: 12pt;
  line-height: normal;
  font-weight: normal;
  margin-bottom: 10px;
}
.documentlist {
  border: solid 1px #8bbfbc;
  background: #ffffff;
  font-size: 10pt;
  padding: 10px 15px;
}
.documentlist div {
  white-space: nowrap;
  overflow: hidden;
}
.eventedit-menu {
  float: right;
  background: #9fcac7;
  border: solid 1px #8bbfbc;
  padding: 4px;
  font-size: 14pt;
  line-height: normal;
}
.partner-tbl {
  width: 100%;
}
.partner-tbl td {
  width: 25%;
  padding: 25px;
  text-align: center;
}
.partner-tbl td img {
  max-width: 140px;
}
legend {
  border: none;
  font-size: inherit;
  padding: 0;
  margin: 0;
}
fieldset > .row {
  margin: 0;
}
.user-info-box {
  background: #f5f5f5;
  border: #eee solid 1px;
  padding: 8px 10px;
  margin-bottom: 30px;
  font-size: 85%;
}
.ui-widget.ui-widget-content {
  font-size: 70%;
}
.modal {
  max-width: 90vw;
  overflow: hidden;
}
.modal a.close-modal {
  top: -2.5px;
  right: -2.5px;
}
.pattern-item {
  display: inline-block;
  width: 47%;
  margin: 1%;
  vertical-align: top;
}
@media screen and (max-width: 500px) {
  .pattern-item {
    width: 100%;
    margin: 25px 0;
  }
}
#carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#slides {
  overflow: hidden;
  position: relative;
  width: auto;
  margin: 70px 100px 0 100px;
}
@media screen and (max-width: 500px) {
  #slides {
    margin: 70px 0 0 0 ;
  }
}
#slides ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#slides li {
  width: 100%;
  float: left;
  text-align: center;
  position: relative;
  font-family: lato, sans-serif;
}
/* Styling for prev and next buttons */
.btn-bar {
  margin: 0 auto;
  display: block;
  position: relative;
  top: 0px;
  width: 100%;
}
#buttons {
  padding: 0 0 5px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: -140px;
}
@media screen and (max-width: 500px) {
  #buttons {
    width: auto;
    margin-left: -35px;
    margin-right: -30px;
  }
}
#buttons a {
  text-align: center;
  font-size: 50px;
  float: left;
  outline: 0;
  color: #1968B3;
  text-decoration: none;
  display: block;
  padding: 9px;
  width: 35px;
}
a#prev:hover,
a#next:hover {
  color: #FFF;
  text-shadow: 0.5px 0px #1968B3;
}
@media screen and (max-width: 1200px) {
  img {
    max-width: 100%;
  }
  input {
    max-width: 90%;
  }
  h1 {
    font-size: 38pt;
  }
  h1.bigtxt {
    font-size: 57pt;
  }
  h2 {
    font-size: 30pt;
  }
  h3 {
    font-size: 24pt;
  }
  h4 {
    font-size: 20pt;
  }
  h5 {
    font-size: 18pt;
  }
  h6 {
    font-size: 16pt;
  }
  .navbar-default .nav ul li a {
    font-size: 14pt;
  }
  .quest-section {
    background: url("images/hp_arrow_path.png") no-repeat left -20px bottom -5px;
  }
  .success-section {
    background: url("images/logo_fade.png") no-repeat left 70px bottom -115px;
  }
  .success-section .success-btn {
    margin: 20px 0;
  }
  .banner-tweet {
    right: 1%;
  }
  .tagline {
    width: 125px;
    font-size: 14pt;
  }
  header .banner_txt {
    margin-top: -25px;
  }
  header .banner_txt h1 {
    font-size: 33pt;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 34pt;
  }
  h1.bigtxt {
    font-size: 45pt;
  }
  h2 {
    font-size: 28pt;
  }
  h3 {
    font-size: 22pt;
  }
  h4 {
    font-size: 18pt;
  }
  h5 {
    font-size: 16pt;
  }
  h6 {
    font-size: 14pt;
  }
  .br {
    display: none;
  }
  .navbar-default .nav ul {
    text-align: center;
  }
  .navbar-default .nav ul li a {
    font-size: 14pt;
    padding: 10px 5px;
  }
  #logo {
    white-space: nowrap;
    text-align: center;
    padding: 0;
    margin-top: 10px;
  }
  #logo img {
    max-height: 60px;
  }
  .navbar-default .nav .dropdown-menu ul li a {
    padding: 3px 34px 3px 5px;
    margin: 0;
    text-align: right;
  }
  .navbar-default .nav .dropdown-menu ul li a:after {
    display: none;
  }
  .tagline {
    width: 285px;
    font-size: 14pt;
  }
  .tagline br {
    display: inline;
  }
  .img-bottom-right {
    bottom: auto;
    position: relative;
    right: auto;
    display: block;
    margin: 0 auto -40px auto;
  }
  .success-section,
  .quest-section {
    background: none;
  }
  .section-blue .col-md-2 {
    padding: 25px 0;
  }
  #home header {
    min-height: 600px;
  }
  #home header .overlay {
    min-height: 600px;
  }
  #home header .container {
    width: 100%;
    padding: 0;
  }
  #home header .container .col-md-4 {
    padding: 0;
  }
  #home header .banner_txt {
    padding-top: 80px;
  }
  #home header .banner_txt p {
    font-size: 22px;
  }
  #home header .banner_txt h1 {
    font-size: 22pt;
  }
  .banner-tweet {
    bottom: 3%;
  }
  .home header {
    min-height: 790px;
  }
  .page header {
    background-position: center;
    background-attachment: scroll;
    min-height: 427px;
  }
  .page header.nobanner {
    min-height: 0;
  }
  .container {
    max-width: 100vw;
  }
  .content-content {
    border-left: none;
    padding-left: 0;
  }
  .content-sidebar {
    border-left: none;
    border-top: solid 1px #1968B3;
    border-right: none;
    margin-top: 30px;
    padding-left: 20px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 499px) {
  h1 {
    font-size: 34pt;
  }
  h1.bigtxt {
    font-size: 34pt;
  }
  h2 {
    font-size: 26pt;
  }
  h3 {
    font-size: 20pt;
  }
  h4 {
    font-size: 16pt;
  }
  h5 {
    font-size: 16pt;
  }
  h6 {
    font-size: 14pt;
  }
  body {
    font-size: 14pt;
    line-height: 140%;
  }
  .responsive_banner {
    display: block;
  }
  header,
  section,
  nav,
  footer {
    min-width: 0;
  }
  nav {
    top: 0;
  }
  #nav_container {
    text-align: center;
  }
  .btn-navbar {
    display: inline-block;
  }
  .home header {
    min-height: 0;
  }
  .page header {
    min-height: 0;
  }
  .user-nav {
    text-align: center;
    padding: 4px 0;
    font-size: 10pt;
  }
  .user-nav .text-right {
    text-align: center;
  }
  #logo {
    padding-top: 5px;
    padding-left: 10px;
    text-align: left;
    margin-top: 0;
  }
  #home header {
    min-height: 333px;
  }
  #home header .overlay {
    padding-top: 0px;
    min-height: 333px;
    box-shadow: none;
  }
  #home header .banner_txt {
    padding-top: 50px;
  }
  #home .navbar-default,
  .navbar-default {
    text-align: left;
    margin: 18px 0 13px 0;
    padding: 0;
  }
  #home .navbar-default #nav,
  .navbar-default #nav {
    max-height: none;
    background: #ebebeb;
    border-top: solid 1px #7c8688;
    padding: 0;
    position: absolute;
    width: 100vw;
    top: 51px;
    right: -15px;
  }
  #home .navbar-default #nav ul,
  .navbar-default #nav ul {
    padding: 0;
    text-align: left;
  }
  #home .navbar-default #nav ul li,
  .navbar-default #nav ul li {
    margin: 0;
    display: block;
    border-bottom: solid 1px #7c8688;
  }
  #home .navbar-default #nav ul li a,
  .navbar-default #nav ul li a {
    display: block;
    padding: 6px 22px 6px 10px;
    text-align: right;
    margin: 0;
    color: black;
  }
  #home .navbar-default #nav ul li a.dropdown-toggle,
  .navbar-default #nav ul li a.dropdown-toggle {
    margin-top: -36px !important;
  }
  #home .navbar-default #nav ul li a br,
  .navbar-default #nav ul li a br {
    display: none;
  }
  #home .navbar-default #nav ul li a i,
  .navbar-default #nav ul li a i {
    margin-left: 5px;
  }
  #home .navbar-default #nav ul li a:hover,
  .navbar-default #nav ul li a:hover,
  #home .navbar-default #nav ul li afocus,
  .navbar-default #nav ul li afocus,
  #home .navbar-default #nav ul li a.current,
  .navbar-default #nav ul li a.current {
    background: #6CBB5B;
    color: black;
  }
  #home .navbar-default #nav ul li.nav_find-a-job a,
  .navbar-default #nav ul li.nav_find-a-job a {
    border-radius: 0;
  }
  #home .navbar-default #nav ul li .dropdown-menu,
  .navbar-default #nav ul li .dropdown-menu {
    background: #fefefe;
    position: relative;
    text-align: left;
    float: none;
    margin-top: 0;
    box-shadow: none;
    right: auto;
  }
  #home .navbar-default #nav ul li .dropdown-menu li .dropdown-menu,
  .navbar-default #nav ul li .dropdown-menu li .dropdown-menu {
    left: auto;
    background: #eee;
  }
  #home .navbar-default #nav ul li .dropdown-menu li .dropdown-toggle,
  .navbar-default #nav ul li .dropdown-menu li .dropdown-toggle {
    position: absolute;
    top: 1px;
    right: auto;
    left: 0px;
    padding: 0;
    transform: none;
    width: 50px;
    text-align: center;
    height: 40px;
    line-height: 0;
  }
  #home .navbar-default #nav ul li .dropdown-menu li .dropdown-toggle i,
  .navbar-default #nav ul li .dropdown-menu li .dropdown-toggle i {
    margin-top: 12px;
  }
  #home .navbar-default #nav ul li .dropdown-menu li .dropdown-toggle:hover,
  .navbar-default #nav ul li .dropdown-menu li .dropdown-toggle:hover {
    background: transparent !important;
  }
  #home .navbar-default #nav ul li .dropdown-menu li.current a,
  .navbar-default #nav ul li .dropdown-menu li.current a {
    background: #add9a3;
    color: black;
  }
  #home .navbar-default #nav ul li .dropdown-menu li a,
  .navbar-default #nav ul li .dropdown-menu li a {
    padding: 8px 10px 8px 20px;
    font-size: 14px;
  }
  .navbar-default #nav .dropdown-toggle {
    float: left;
    margin-top: -31px;
    padding: 0;
  }
  .navbar-default .nav ul.dropdown-menu > li:last-child a {
    border-radius: 0;
  }
  section .container {
    padding: 30px 15px;
  }
  footer {
    text-align: center;
  }
  footer img {
    margin: auto;
  }
  table {
    width: 100%;
    max-width: 100%;
  }
  table td,
  table th {
    display: block;
    padding: 3px 0;
  }
  .responsive_only {
    display: inherit;
  }
  .gallery .pic_container {
    width: 100%;
  }
  .pattern-item {
    width: 100%;
    margin: 0;
  }
  .res_tbl th {
    display: none;
  }
  .res_tbl tr {
    display: block;
    padding: 10px;
  }
  .res_tbl td {
    display: block;
    text-align: left;
    padding: 0px;
  }
  .res_tbl td p:first-child {
    display: inline;
  }
  .res_tbl_label {
    display: inline;
  }
}
ul.header_nav {
  margin-left: 0;
  list-style: none;
}
ul.header_nav .dropdown-menu {
  margin-top: -5px;
}
ul.header_nav .dropdown-menu ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  padding-right: 10px;
}
ul.header_nav .dropdown-menu ul li a {
  color: black;
  text-transform: none;
}
.gflagnew {
  display: inline-block;
  width: 20px;
  height: 18px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-image: url(//gtranslate.net/flags/16.png);
}
/*# sourceMappingURL=global.css.map */