@charset "UTF-8";
/*------------------------------------*\
    Partials
\*------------------------------------*/
/*------------------------------------*\
    Fonts
\*------------------------------------*/
/*------------------------------------*\
    Website Defaults
\*------------------------------------*/
/*------------------------------------*\
    Color Palette
\*------------------------------------*/
/*------------------------------------*\
    Assignments
\*------------------------------------*/
/*------------------------------------*\
    Flexbox
\*------------------------------------*/
/*------------------------------------*\
    Button
\*------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  display: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*------------------------------------*\
    Default Styles
\*------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
}
* img, * iframe, * video {
  max-width: 100%;
}
*::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

.row {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
}

body {
  font-family: "franklin-gothic-urw", sans-serif;
  max-width: 2000px;
  margin: 0 auto;
}

a[href*="/broken-link"] {
  color: crimson !important;
}

input[type=text],
input[type=email],
input[type=submit],
input[type=button] {
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
}

.disclaimer,
.tbl-rates-disclaimers,
.rates-disclaimers {
  font-size: 11px;
  font-style: italic;
  display: inline-block;
}

.rates-disclaimers {
  padding: 10px 0 0;
  margin-bottom: 40px;
}

.skip-nav {
  position: absolute;
  top: -50px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  z-index: 99999;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.skip-nav > a {
  display: block;
  width: 25%;
  margin: 0 auto;
  padding: 5px;
  background: #003e7e;
  font-size: 1.4em;
  color: white;
  text-decoration: none;
}
.skip-nav.focus {
  top: 0;
}
@media all and (max-width: 1024px) {
  .skip-nav {
    display: none;
  }
}

main ul, main ol {
  margin: 0 0 20px 20px;
}
@media all and (max-width: 599px) {
  main ul, main ol {
    margin-left: 20px;
  }
}
main ul li, main ol li {
  padding-bottom: 5px;
}
main a {
  color: #003e7e;
}
main a.button {
  background-color: #003e7e;
  color: white;
  padding: 3px 10px;
  border-radius: 5px;
  border: 1px solid #003e7e;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  text-decoration: none;
  display: inline-block;
}
main a.button:hover {
  background-color: white;
  color: #003e7e;
  text-decoration: none;
}

.font-small {
  font-size: calc(18px - 4px);
}

.font-large {
  font-size: calc(18px + 4px);
}

.sr-only,
.visuallyhidden,
.v-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*------------------------------------*\
    Header Styles
\*------------------------------------*/
body > header {
  padding: 20px 20px 0;
  border-bottom: 5px solid #454444;
}
body > header .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@supports (display: grid) {
  body > header .row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  body > header .row > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  body > header .row > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  body > header .row > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  body > header .row > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media all and (max-width: 1024px) {
  body > header .row {
    display: block;
    text-align: center;
  }
}
body > header .row .logo {
  max-width: 240px;
}
@media all and (max-width: 1024px) {
  body > header .row .logo {
    margin: 20px auto;
  }
}
body > header .row > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  width: 100%;
}
@media all and (max-width: 1024px) {
  body > header .row > div:last-child {
    display: block;
    width: 90%;
    margin: auto;
  }
}
body > header .row .tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media all and (max-width: 1024px) {
  body > header .row .tools {
    display: block;
  }
}
body > header .row .tools #searchButton {
  background-image: url(/ResourcePackages/Custom/assets/images/search.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: transparent;
  width: 25px;
  height: 25px;
  display: inline-block;
}
body > header .row .tools #searchButton:hover {
  cursor: pointer;
}
body > header .row .tools .obl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #003e7e;
  color: white;
  padding: 5px;
  border-radius: 20px;
  width: 500px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 1024px) {
  body > header .row .tools .obl {
    margin: 20px auto;
    max-width: 500px;
    width: 100%;
  }
}
@media all and (max-width: 599px) {
  body > header .row .tools .obl {
    display: block;
  }
}
body > header .row .tools .obl h1 {
  font-size: 1rem;
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
body > header .row .tools .obl iframe {
  height: 40px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 40%;
}
body > header .row .tools .obl .links {
  width: 100%;
  font-size: 12px;
  margin-top: -3px;
  margin-bottom: 5px;
  font-style: italic;
  color: white;
  text-align: center;
}
body > header .row .tools .obl .links .link {
  margin: 0 10px;
  display: inline-block;
}
body > header .row .tools .obl .links a {
  color: white;
}
body > header .row .tools .obl + .links {
  font-size: 0.9rem;
  margin-left: 10px;
}
body > header .row .tools .obl + .links a {
  color: #003e7e;
  text-decoration: none;
}
body > header .row .tools .obl + .links a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  body > header .row .tools .obl + .links {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.search {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  overflow: hidden;
  position: absolute;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  background-color: #003e7e;
  z-index: 999;
}
.search > div {
  width: 100%;
  text-align: center;
}
.search input[type=text] {
  height: 30px;
  font-size: 1rem;
  text-align: center;
  width: 70%;
  margin-right: 20px;
  border-radius: 5px;
  background-color: #fff;
  max-width: 800px;
  text-indent: 5px;
}
@media all and (max-width: 1024px) {
  .search input[type=text] {
    margin: 0;
    width: 50%;
  }
}
.search button:not(#closeSearch) {
  background: #b1afaf;
  font-size: 1rem;
  padding: 5px 20px;
  color: #003e7e;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  margin-right: 20px;
  border-radius: 5px;
  font-style: italic;
}
.search button:not(#closeSearch):hover {
  border-radius: 10px;
  cursor: pointer;
}
.search #closeSearch {
  font-size: 1rem;
  background: none;
  color: white;
}
.search #closeSearch:hover {
  cursor: pointer;
}
.search.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  padding: 60px 0;
}

/*------------------------------------*\
    Homepage Styles
\*------------------------------------*/
.rates-wrap header {
  text-align: center;
}
.rates-wrap header h1 {
  font-weight: 100;
}
.rates-wrap .rates {
  margin: 40px auto;
}

.rates {
  position: relative;
  z-index: 2;
  color: #003e7e;
}
.rates .widget-00 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.rates .widget-00 .rates-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 220px;
          flex: 1 220px;
  text-align: center;
  line-height: 1;
  max-width: 220px;
  border-radius: 50%;
  height: 220px;
  margin: 20px 0;
  padding: 10px;
  border: 5px solid #b77397;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.rates .widget-00 .rates-box:nth-child(even) {
  border: 5px solid #7395b8;
}
@media all and (min-width: 1025px) {
  .rates .widget-00 .rates-box:hover {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .rates .widget-00 .rates-box:hover .more-links {
    display: block;
  }
}
.rates .widget-00 .rates-box .more-links {
  position: absolute;
  display: none;
  background: none;
  top: 90%;
  left: 0;
  width: 100%;
}
.rates .widget-00 .rates-box .more-links a {
  background-color: #003e7e;
  color: white;
  padding: 3px 10px;
  border-radius: 0;
  border: 1px solid #003e7e;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  text-decoration: none;
  display: inline-block;
  max-width: 150px;
  margin: 5px auto;
  display: block;
  border-radius: 20px;
}
.rates .widget-00 .rates-box .more-links a:hover {
  background-color: white;
  color: #003e7e;
  text-decoration: none;
}
.rates .widget-00 .rates-box .rate-teaser {
  font-size: 1.222rem;
  font-family: "merriweather", serif;
  max-width: 95%;
  margin: 0 auto;
}
.rates .widget-00 .rates-box .rates-desc {
  font-size: 0.75rem;
  margin: 10px auto;
}
.rates .widget-00 .rates-box .rates-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rates .widget-00 .rates-box .rates-info .rate {
  font-size: 2.611rem;
  margin-left: auto;
}
.rates .widget-00 .rates-box .rate-rt {
  margin-right: auto;
  text-align: left;
  line-height: 0.8;
  top: 5px;
  position: relative;
}
.rates .widget-00 .rates-box .rate-rt .rate-percent {
  font-size: 2.611rem;
}

.ctas {
  background-color: #efefef;
  padding: 60px 20px;
}
.ctas .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ctas .row .cta {
  -webkit-box-flex: 1;
      -ms-flex: 1 150px;
          flex: 1 150px;
  margin: 20px 10px;
  text-align: center;
  font-family: "merriweather", serif;
}
.ctas .row .cta:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 170px;
          flex: 1 170px;
}
@media screen and (max-width: 1100px) {
  .ctas .row .cta {
    min-width: 30%;
  }
  .ctas .row .cta:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 150px;
            flex: 1 150px;
  }
}
.ctas .row .cta img {
  max-width: 120px;
  height: 100px;
  display: block;
  margin: 10px auto;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.ctas .row .cta a {
  color: #003e7e;
  text-decoration: none;
}
.ctas .row .cta a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 999px) {
  .secondary {
    display: block;
    overflow: hidden;
  }
}
.secondary .email-sign-up {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #003e7e;
  padding: 20px;
  text-align: center;
  color: white;
}
.secondary .email-sign-up > div {
  margin: 0 0 0 auto;
}
.secondary .email-sign-up > div h1 {
  color: white;
  font-size: 1.2222rem;
  font-weight: 100;
}
.secondary .email-sign-up form > div {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.secondary .email-sign-up form fieldset > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media all and (max-width: 799px) {
  .secondary .email-sign-up form fieldset > div {
    display: block;
  }
}
.secondary .email-sign-up form fieldset > div > div {
  padding: 0 5px;
}
@media all and (max-width: 799px) {
  .secondary .email-sign-up form fieldset > div > div {
    padding: 0;
  }
}
@media all and (max-width: 300px) {
  .secondary .email-sign-up form {
    display: block;
    margin: auto;
    max-width: 300px;
    text-align: center;
  }
}
.secondary .email-sign-up form input {
  font-size: 1rem;
  font-family: "franklin-gothic-urw", sans-serif;
  font-style: italic;
  margin: 10px;
  border-radius: 5px;
  height: 26px;
  border: 0;
  text-indent: 10px;
}
@media all and (max-width: 799px) {
  .secondary .email-sign-up form input {
    margin: 10px 0;
  }
}
.secondary .email-sign-up form input[type=button] {
  background-color: #b1afaf;
  font-style: italic;
  color: #003e7e;
  border-radius: 5px;
  border: 1px solid #b1afaf;
  padding: 5px 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  font-family: "franklin-gothic-urw", sans-serif;
  text-indent: 0;
  height: auto;
}
.secondary .email-sign-up form input[type=button]:hover {
  border-radius: 10px;
  cursor: pointer;
}
.secondary .email-sign-up form label.error {
  color: #fff;
  font-style: italic;
  margin-bottom: 10px;
}
.secondary .email-sign-up form .g-recaptcha {
  margin: auto;
}
.secondary .third-party {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
}
.secondary .third-party .slider {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 500px;
  margin: auto;
}
.secondary .third-party .slider .slick-dots li button {
  background-color: white;
  border: 1px solid #003e7e;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}
.secondary .third-party .slider .slick-dots li.slick-active button {
  background-color: #003e7e;
}

/*------------------------------------*\
    Inside Styles
\*------------------------------------*/
h1 {
  font-size: 2rem;
  color: #003e7e;
  font-family: "merriweather", serif;
  font-weight: normal;
}

h2 {
  font-size: 1.333rem;
  font-weight: 100;
  font-family: "merriweather", serif;
}

.inside .banner {
  position: relative;
}
.inside .banner .btn {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.inside .banner .btn a {
  width: 200px;
  margin: auto;
  display: block;
  background: rgba(0, 62, 126, 0.7);
  text-align: center;
  padding: 10px;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  text-decoration: none;
}
.inside .banner .btn a:hover {
  background: rgba(0, 62, 126, 0.9);
  text-decoration: underline;
}

.inside-content {
  padding: 40px 20px;
}
.inside-content .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@supports (display: grid) {
  .inside-content .row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 3fr 2rem 1fr;
    grid-template-columns: 1fr 3fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 2rem;
  }
  .inside-content .row > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .inside-content .row > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .inside-content .row > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  @media all and (max-width: 899px) {
    .inside-content .row {
      -ms-grid-columns: 1fr 2rem 2fr;
      grid-template-columns: 1fr 2fr;
      -ms-grid-rows: auto 2rem auto;
      grid-template-rows: auto auto;
    }
    .inside-content .row > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    .inside-content .row > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
    }
    .inside-content .row > *:nth-child(3) {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
    }
    .inside-content .row > *:nth-child(4) {
      -ms-grid-row: 3;
      -ms-grid-column: 3;
    }
  }
}
@media all and (max-width: 599px) {
  .inside-content .row {
    display: block;
  }
}
.inside-content .row main {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  line-height: 1.5;
}
@supports (display: grid) {
  .inside-content .row main {
    -ms-grid-column: 2;
    grid-column: 2;
  }
  @media all and (max-width: 899px) {
    .inside-content .row main {
      -ms-grid-column-span: 2;
      grid-column: span 2;
    }
  }
}
@media all and (-ms-high-contrast: none) {
  .inside-content .row main {
    margin: 0 2rem;
  }
}
.inside-content .row .ad {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@supports (display: grid) {
  .inside-content .row .ad {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  @media all and (max-width: 899px) {
    .inside-content .row .ad {
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 2;
      grid-row: 2;
    }
  }
}
@media all and (max-width: 599px) {
  .inside-content .row .ad {
    text-align: center;
    margin: 40px auto;
  }
}
.inside-content .row .sidebar {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  min-width: 250px;
}
@supports (display: grid) {
  .inside-content .row .sidebar {
    -ms-grid-column: 3;
    grid-column: 3;
  }
  @media all and (max-width: 899px) {
    .inside-content .row .sidebar {
      -ms-grid-column-span: 2;
      grid-column: span 2;
      -ms-grid-row: 2;
      grid-row: 2;
    }
  }
}
.inside-content .row .sidebar .quicklinks {
  background-color: #003e7e;
  border-radius: 10px;
}
.inside-content .row .sidebar .quicklinks ul li {
  border-bottom: 1px solid #043465;
  list-style: none;
}
.inside-content .row .sidebar .quicklinks ul li:last-child {
  border: 0;
}
.inside-content .row .sidebar .quicklinks ul li a {
  color: white;
  text-decoration: none;
  padding: 12px 8px;
  display: inline-block;
  font-style: italic;
  font-family: "merriweather", serif;
  font-weight: 100;
}
.inside-content .row .sidebar .quicklinks ul li a:hover {
  text-decoration: underline;
}
.inside-content .row .sidebar .related-pages {
  margin-top: 40px;
}
.inside-content .row .sidebar .related-pages ul {
  list-style: none;
}
.inside-content .row .sidebar .related-pages ul li {
  padding: 4px;
}
.inside-content .row .sidebar .related-pages ul li a {
  color: #7c0041;
  text-decoration: none;
  font-style: italic;
}
.inside-content .row .sidebar .related-pages ul li a:hover {
  text-decoration: underline;
}

main p {
  font-style: italic;
  padding-bottom: 40px;
}
main ul {
  font-style: italic;
  list-style: none;
}
main ul li {
  position: relative;
}
main ul li::before {
  content: "";
  display: block;
  background-image: url(/ResourcePackages/Custom/assets/images/bullet.jpg);
  background-repeat: no-repeat;
  background-size: 8px;
  width: 8px;
  height: 8px;
  display: inline-block;
  position: absolute;
  left: -20px;
  top: 8px;
}
main table {
  font-style: italic;
  width: 100%;
}
main table:not(.rates) {
  margin-bottom: 40px;
}
@media all and (max-width: 699px) {
  main table {
    font-size: 0.88rem;
  }
}
main table thead th {
  color: #7c0041;
  text-align: left;
  padding: 8px;
  border-bottom: 2px solid #cdcac9;
}
@media all and (max-width: 699px) {
  main table thead th {
    padding: 2px;
  }
}
main table tbody th, main table tbody td {
  border-bottom: 2px solid #cdcac9;
  padding: 8px;
  text-align: left;
}
@media all and (max-width: 699px) {
  main table tbody th, main table tbody td {
    padding: 2px;
  }
}
main .search-results > div {
  margin-bottom: 30px;
}
main .search-results h3 {
  margin: 0px 0 10px 0;
}
main .search-results h3:first-of-type {
  margin: 30px 0 10px 0;
}
main .search-results p {
  padding-bottom: 0;
}
main .search-results ul.pagination {
  margin: 15px 0 0 0;
}
main .search-results ul.pagination li {
  display: inline-block;
}
main .search-results ul.pagination li:before {
  display: none;
}
main .search-results ul.pagination li.active {
  font-weight: bold;
}

/*------------------------------------*\
    Footer Styles
\*------------------------------------*/
footer {
  background-color: #0d2135;
  color: white;
  padding: 40px 20px;
}
footer a {
  color: white;
  text-decoration: none;
}
footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@supports (display: grid) {
  footer .row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px 2rem 165px 2rem 2fr 2rem 175px 2rem 100px;
    grid-template-columns: 180px 165px 2fr 175px 100px;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 2rem;
  }
  footer .row > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  footer .row > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  footer .row > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  footer .row > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  footer .row > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }
  @media all and (max-width: 1024px) {
    footer .row {
      -ms-grid-columns: 180px 2rem 165px 2rem 165px;
      grid-template-columns: 180px 165px 165px;
      -ms-grid-rows: auto;
      grid-template-rows: auto;
      text-align: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
    footer .row > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    footer .row > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
    }
    footer .row > *:nth-child(3) {
      -ms-grid-row: 1;
      -ms-grid-column: 5;
    }
  }
}
@media all and (max-width: 599px) {
  footer .row {
    display: block;
  }
  footer .row > div {
    margin: 20px auto;
  }
}
@media all and (-ms-high-contrast: none) {
  footer .row > div {
    margin-right: 40px;
  }
  footer .row > div:last-child {
    margin-right: 0;
  }
}
footer .row .footer-contact {
  -ms-grid-column: 1;
  grid-column: 1;
  font-size: 0.888rem;
}
@media all and (max-width: 1024px) {
  footer .row .footer-contact {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
footer .row .social-media {
  -ms-grid-column: 2;
  grid-column: 2;
  font-style: italic;
  font-size: 0.75rem;
}
@media all and (max-width: 1024px) {
  footer .row .social-media {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    max-width: 180px;
    margin: auto;
  }
}
footer .row .social-media div div {
  border: 1px solid white;
  border-radius: 15px;
  padding: 10px;
  height: 35px;
}
footer .row .social-media a {
  color: white;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .row .social-media a:hover {
  text-decoration: underline;
}
footer .row .social-media a::before {
  content: "";
  background-image: url(/ResourcePackages/Custom/assets/images/facebook.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
footer .row .lkcs {
  -ms-grid-column: 3;
  grid-column: 3;
  text-align: right;
}
@media all and (max-width: 1024px) {
  footer .row .lkcs {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
    text-align: center;
  }
}
@media all and (-ms-high-contrast: none) {
  footer .row .lkcs {
    margin-left: auto;
  }
}
footer .row .lkcs img {
  width: 100px;
}
footer .row .ncua {
  -ms-grid-column: 4;
  grid-column: 4;
  text-align: right;
}
@media all and (max-width: 1024px) {
  footer .row .ncua {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
    text-align: center;
  }
}
footer .row .ncua img {
  width: 175px;
  height: 80px;
}
footer .row .ehl {
  -ms-grid-column: 5;
  grid-column: 5;
}
@media all and (max-width: 1024px) {
  footer .row .ehl {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}
footer .row .ehl img {
  width: 100px;
  height: 80px;
}
@media all and (max-width: 1024px) {
  footer .row .AuthorizeNetSeal {
    -ms-grid-row: 2;
        grid-row-start: 2;
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
}
footer .row.subfooter {
  display: block;
  text-align: center;
}
footer .row.subfooter ul {
  line-height: 1.2rem;
  list-style: none;
}
footer .row.subfooter ul li {
  padding: 5px;
}
@media screen and (max-width: 899px) {
  footer .row.subfooter {
    margin-top: 20px;
  }
}
@media screen and (min-width: 899px) {
  footer .row.subfooter {
    text-align: right;
  }
  footer .row.subfooter ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  footer .row.subfooter ul li {
    padding: 0 10px;
  }
  footer .row.subfooter ul li:nth-child(n+2) {
    border-left: 1px solid white;
  }
}
footer + .extras {
  display: none;
}

nav ul.mainnav, nav ul.mainnav li {
  list-style-type: none;
}

@media all and (min-width: 1025px) {
  nav > ul {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    display: -o-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-justify-content: space-around;
    -o-justify-content: space-around;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    list-style-type: none;
    height: 100%;
    position: relative;
  }
  nav > ul li.top-level {
    text-align: center;
    font-family: "merriweather", serif;
  }
  nav > ul li.top-level a {
    display: block;
    padding-bottom: 30px;
    width: 100%;
    color: #003e7e;
    text-decoration: none;
    font-weight: 100;
  }
  nav > ul li.top-level a span {
    margin: auto;
  }
  nav > ul li.top-level > ul {
    position: absolute;
    height: 0;
    overflow: hidden;
    width: 100%;
    left: 0;
    background-color: white;
    z-index: 999;
    list-style-type: none;
  }
  nav > ul li.top-level > ul > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav > ul li.top-level > ul > div > li {
    -webkit-box-flex: 1;
        -ms-flex: 1 50%;
            flex: 1 50%;
    text-align: left;
    list-style-type: none;
  }
  nav > ul li.top-level > ul > div > li > a {
    font-weight: 100;
    padding: 10px;
    font-family: "franklin-gothic-urw", sans-serif;
  }
  nav > ul li.top-level > ul > div > li > a:hover {
    text-decoration: underline;
  }
  nav > ul li.top-level > ul > div > li ul {
    list-style-type: none;
  }
  nav > ul li.top-level > ul > div > li ul a {
    font-weight: 100;
    padding: 10px;
    font-family: "franklin-gothic-urw", sans-serif;
  }
  nav > ul li.top-level > ul > div.submenu {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  nav > ul li.top-level > ul > div.nav-extras {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    display: block;
  }
  nav > ul li.top-level > ul > div.nav-extras img {
    max-width: 120px;
  }
  nav > ul li.top-level > ul > div.nav-extras a {
    background-color: #003e7e;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #003e7e;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
    padding: 5px 0;
    font-family: "franklin-gothic-urw", sans-serif;
  }
  nav > ul li.top-level > ul > div.nav-extras a:hover {
    background-color: white;
    color: #003e7e;
    text-decoration: none;
  }
  nav > ul li.top-level > ul a {
    color: #003e7e;
  }
  nav > ul li.top-level > ul a:hover {
    text-decoration: underline;
  }
  nav > ul li.top-level:hover > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    left: -50px;
    padding: 20px;
    border-top: 5px solid #454444;
  }
  nav > ul li.top-level:hover::after {
    content: "";
    background-image: url(/ResourcePackages/Custom/assets/images/nav-arrow.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 90px;
    height: 20px;
    display: block;
    position: absolute;
    bottom: -1px;
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}
.magic-hamburger svg {
  max-width: 35px;
  height: 3px;
  display: block;
  margin: 5px 0;
  -webkit-transition: all 100ms;
  transition: all 100ms;
}
.magic-hamburger svg path {
  fill: white;
}

/*--- Mean Menu ---*/
.mean-nav * {
  float: none;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* hide the link until viewport size is reached */
a.meanmenu-reveal {
  display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
  float: none;
  width: 100%;
  position: relative;
  background-color: #003e7e;
  min-height: 42px;
  z-index: 31415913;
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 8px 13px 11px 13px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #fff;
  height: 3px;
  margin-top: 3px;
}

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: #fff;
  margin-top: 42px;
  min-height: 0px;
}

.mean-container nav.mean-nav ul {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 1em 5%;
  margin: 0;
  font-size: 14px;
  text-align: left;
  color: black;
  border-bottom: 1px solid #003e7e;
  text-decoration: none;
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10%;
  border-top: 1px solid #f1f1f1;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: none !important;
  visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
  margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
  background: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 1px;
  width: 26px;
  padding: 0px 12px !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  border: none !important;
  border-left: 1px solid #003e7e !important;
  line-height: 45px;
}

.mean-container .mean-nav ul li ul li a.mean-expand {
  line-height: 45px;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  color: #000;
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.mean-remove {
  display: none !important;
}

.mean-nav .nav-extras {
  display: none;
}

/*------------------------------------*\
    Fancybox
\*------------------------------------*/
.customfancybox-wrap,
.customfancybox-skin,
.customfancybox-outer,
.customfancybox-inner,
.customfancybox-image,
.customfancybox-wrap iframe,
.customfancybox-wrap object,
.customfancybox-nav,
.customfancybox-nav span,
.customfancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.customfancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.customfancybox-skin {
  position: relative;
  background: #fff;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.customfancybox-opened {
  z-index: 8030;
}

.customfancybox-opened .customfancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.customfancybox-outer, .customfancybox-inner {
  position: relative;
}

.customfancybox-inner {
  overflow: hidden;
}

.customfancybox-type-iframe .customfancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.customfancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.customfancybox-image, .customfancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.customfancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#customfancybox-loading, .customfancybox-close, .customfancybox-prev span, .customfancybox-next span {
  background-image: url("../images/fancybox_sprite.png");
}

#customfancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#customfancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox_loading.gif") center center no-repeat;
}

.customfancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.customfancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/blank.gif");
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.customfancybox-prev {
  left: 0;
}

.customfancybox-next {
  right: 0;
}

.customfancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.customfancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.customfancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.customfancybox-nav:hover span {
  visibility: visible;
}

.customfancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

.customfancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.customfancybox-lock body {
  overflow: hidden !important;
}

.customfancybox-lock-test {
  overflow-y: hidden !important;
}

.customfancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../images/customfancybox_overlay.png");
}

.customfancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.customfancybox-lock .customfancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

.customfancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.customfancybox-opened .customfancybox-title {
  visibility: visible;
}

.customfancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.customfancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.customfancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.customfancybox-title-inside-wrap {
  padding-top: 10px;
}

.customfancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #customfancybox-loading, .customfancybox-close, .customfancybox-prev span, .customfancybox-next span {
    background-image: url("../images/fancybox_sprite@2x.png");
    background-size: 44px 152px;
  }
  #customfancybox-loading div {
    background-image: url("../images/fancybox_loading@2x.gif");
    background-size: 24px 24px;
  }
}
/*!
 * FullCalendar v3.1.0 Stylesheet
 * Docs & License: https://e0290c3a-4cc6-42e0-8a5a-e36131307f06.p.bardy.io/
 * (c) 2016 Adam Shaw
 */
.fc-icon,
body .fc {
  font-size: 1em;
}

.fc-button-group,
.fc-icon {
  display: inline-block;
}

.fc-bg,
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
}

.fc-icon,
.fc-unselectable {
  -khtml-user-select: none;
  -webkit-touch-callout: none;
}

.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

.fc th,
.fc-basic-view td.fc-week-number,
.fc-icon,
.fc-toolbar {
  text-align: center;
}

.fc-unthemed .fc-content,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-list-heading td,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-row,
.fc-unthemed tbody,
.fc-unthemed td,
.fc-unthemed th,
.fc-unthemed thead {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-list-heading td,
.fc-unthemed .fc-popover .fc-header {
  background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}

.fc-unthemed td.fc-today {
  background: #f2f2f2;
}

.fc-highlight {
  background: #bce8f1;
  opacity: 0.3;
}

.fc-bgevent {
  background: #8fdf82;
  opacity: 0.3;
}

.fc-nonbusiness {
  background: #d7d7d7;
}

.fc-icon {
  height: 1em;
  line-height: 1em;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fc-icon:after {
  position: relative;
}

.fc-icon-left-single-arrow:after {
  content: "‹";
  font-weight: 700;
  font-size: 200%;
  top: -7%;
}

.fc-icon-right-single-arrow:after {
  content: "›";
  font-weight: 700;
  font-size: 200%;
  top: -7%;
}

.fc-icon-left-double-arrow:after {
  content: "«";
  font-size: 160%;
  top: -7%;
}

.fc-icon-right-double-arrow:after {
  content: "»";
  font-size: 160%;
  top: -7%;
}

.fc-icon-left-triangle:after {
  content: "◄";
  font-size: 125%;
  top: 3%;
}

.fc-icon-right-triangle:after {
  content: "►";
  font-size: 125%;
  top: 3%;
}

.fc-icon-down-triangle:after {
  content: "▼";
  font-size: 125%;
  top: 2%;
}

.fc-icon-x:after {
  content: "×";
  font-size: 200%;
  top: 6%;
}

.fc button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  height: 2.1em;
  padding: 0 0.6em;
  font-size: 1em;
  white-space: nowrap;
  cursor: pointer;
}

.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

.fc-state-default {
  background-color: #fff;
  color: #7f8c8d !important;
  border: 1px solid #e1e1e1;
  font-weight: 500;
}

.fc-state-default.fc-corner-left {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.fc button .fc-icon {
  position: relative;
  top: -0.05em;
  margin: 0 0.2em;
  vertical-align: middle;
}

.fc-state-active,
.fc-state-disabled,
.fc-state-down,
.fc-state-hover {
  color: #003e7e !important;
}

.fc-state-hover {
  color: #333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.fc-state-active,
.fc-state-down {
  color: #003e7e !important;
}

.fc-state-disabled {
  cursor: default;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fc-event.fc-draggable,
.fc-event[href],
.fc-popover .fc-header .fc-close,
a[data-goto] {
  cursor: pointer;
}

.fc .fc-button-group > * {
  float: left;
  margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
  margin-left: 0;
}

.fc-popover {
  position: absolute;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
  padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

.fc-ltr .fc-popover .fc-header .fc-close,
.fc-rtl .fc-popover .fc-header .fc-title {
  float: right;
}

.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 0.9em;
  margin-top: 2px;
}

.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
}

.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  border-width: 1px 0;
}

.fc-bg table,
.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
}

.fc-clear {
  clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-helper-skeleton,
.fc-highlight-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
}

.fc td,
.fc th {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc th {
  background-color: #7c0041;
  color: #fff;
  border: 0;
  padding: 5px;
}

.fc td.fc-today {
  border-style: double;
}

a[data-goto]:hover {
  text-decoration: underline;
}

.fc .fc-row {
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
}

.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

.fc-row .fc-bgevent-skeleton td,
.fc-row .fc-highlight-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
}

.fc-row .fc-helper-skeleton {
  z-index: 5;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  background: 0 0;
  border-color: transparent;
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  border-top: 0;
}

.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

.fc-row.fc-rigid,
.fc-time-grid-event {
  overflow: hidden;
}

.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  width: 100%;
}

.fc-event {
  position: relative;
  display: block;
  font-size: 0.85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #003e7e;
  font-weight: 400;
}

.fc-event,
.fc-event-dot {
  background-color: #003e7e;
}

.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  text-decoration: none;
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
  cursor: not-allowed;
}

.fc-event .fc-bg {
  z-index: 1;
  background: #fff;
  opacity: 0.25;
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}
.fc-event .fc-content:hover {
  cursor: pointer;
}

.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  display: block;
}

.fc-event.fc-selected .fc-resizer:before {
  content: "";
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

.fc-event.fc-selected {
  z-index: 9999 !important;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
}

.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
}

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  bottom: -1px;
}

.fc-h-event.fc-selected .fc-resizer {
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  top: 50%;
  margin-top: -4px;
}

.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
}

.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
}

.fc-day-grid-event {
  margin: 1px 2px 0;
  padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
}

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background: #000;
  opacity: 0.25;
}

.fc-day-grid-event .fc-content {
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: 700;
}

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
}

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
}

a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  display: none;
}

.fc-day-grid .fc-row {
  z-index: 1;
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.fc-header-toolbar button {
  border-radius: 0;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em;
}

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em;
}

.fc-toolbar .fc-left {
  float: left;
}

.fc-toolbar .fc-right {
  float: right;
}

.fc-toolbar .fc-center {
  display: inline-block;
}

.fc .fc-toolbar > * > * {
  float: left;
  margin-left: 0.75em;
}

.fc .fc-toolbar > * > :first-child {
  margin-left: 0;
}

.fc-toolbar h2 {
  margin: 0;
}

.fc-toolbar button {
  position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-toolbar .fc-state-down {
  z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

.fc-toolbar button:focus {
  z-index: 5;
}

.fc-view-container *,
.fc-view-container:after,
.fc-view-container:before {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.fc-view,
.fc-view > table {
  position: relative;
  z-index: 1;
}

.fc-basicDay-view .fc-content-skeleton,
.fc-basicWeek-view .fc-content-skeleton {
  padding-bottom: 1em;
}

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
}

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-day-top.fc-other-month {
  opacity: 0.3;
}

.fc-basic-view .fc-day-number,
.fc-basic-view .fc-week-number {
  padding: 2px;
}

.fc-basic-view th.fc-day-number,
.fc-basic-view th.fc-week-number {
  padding: 0 2px;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: grey;
}

.fc-basic-view td.fc-week-number > * {
  display: inline-block;
  min-width: 1.25em;
}

.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
}

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
}

.fc .fc-axis {
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

.ui-widget td.fc-axis {
  font-weight: 400;
}

.fc-time-grid,
.fc-time-grid-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%;
}

.fc-time-grid table {
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative;
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  z-index: 3;
  position: relative;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-helper-container {
  position: relative;
  z-index: 6;
}

.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content {
  background: 0 0;
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
}

.fc-ltr .fc-time-grid .fc-event-container {
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-bgevent,
.fc-time-grid .fc-event {
  position: absolute;
  z-index: 1;
}

.fc-time-grid .fc-bgevent {
  left: 0;
  right: 0;
}

.fc-v-event.fc-not-start {
  border-top-width: 0;
  padding-top: 1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
  border-bottom-width: 0;
  padding-bottom: 1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.fc-time-grid-event.fc-selected {
  overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
}

.fc-time-grid-event .fc-content {
  overflow: hidden;
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-content {
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: " - ";
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  padding: 0;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

.fc-time-grid-event.fc-selected .fc-resizer {
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  left: 50%;
  margin-left: -5px;
  bottom: -5px;
}

.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

.fc-rtl .fc-list-view {
  direction: rtl;
}

.fc-list-view {
  border-width: 1px;
  border-style: solid;
}

.fc .fc-list-table {
  table-layout: auto;
}

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}

.fc-list-table tr:first-child td {
  border-top-width: 0;
}

.fc-list-heading {
  border-bottom-width: 1px;
}

.fc-list-heading td {
  font-weight: 700;
}

.fc-ltr .fc-list-heading-main {
  float: left;
}

.fc-ltr .fc-list-heading-alt,
.fc-rtl .fc-list-heading-main {
  float: right;
}

.fc-rtl .fc-list-heading-alt {
  float: left;
}

.fc-list-item.fc-has-url {
  cursor: pointer;
}

.fc-list-item:hover td {
  background-color: #f5f5f5;
}

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}

.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}

.fc-list-item-title a {
  text-decoration: none;
  color: inherit;
}

.fc-list-item-title a[href]:hover {
  text-decoration: underline;
}

.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.fc-unthemed .fc-list-empty {
  background-color: #eee;
}

/*------------------------------------*\
    Banners
\*------------------------------------*/
.ts-banners-v2 {
  position: relative;
  overflow: hidden;
}
.ts-banners-v2 .cycle-playpause {
  display: none;
}
.ts-banners-v2 .cycle-slideshow {
  width: 100%;
}
.ts-banners-v2 .cycle-slideshow img {
  display: none;
  width: 100%;
  border: 0;
}
.ts-banners-v2 .cycle-slideshow > a:first-of-type img, .ts-banners-v2 .cycle-slideshow .cycle-slide img {
  display: block;
}
.ts-banners-v2 .cycle-prev, .ts-banners-v2 .cycle-next {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 999;
  width: 5%;
  opacity: 0;
}
.ts-banners-v2 .cycle-prev a, .ts-banners-v2 .cycle-next a {
  /*background-image: url(../images/prev.png);*/
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  height: 100%;
  width: 100%;
}
.ts-banners-v2 .cycle-next {
  left: auto;
  right: 0;
}
.ts-banners-v2 .cycle-next a {
  /*background-image: url(../images/next.png);*/
}
.ts-banners-v2 .cycle-pager-wrap {
  position: relative;
  z-index: 999;
  width: 100%;
  text-align: center;
  height: 30px;
  overflow: hidden;
  margin: 0 0 10px 0;
}
.ts-banners-v2 .cycle-pager-wrap span {
  display: inline-block;
  margin: 4px;
}
.ts-banners-v2 .cycle-pager-wrap span:hover a, .ts-banners-v2 .cycle-pager-wrap span.cycle-pager-active a {
  background: #003e7e;
}
.ts-banners-v2 .cycle-pager-wrap span a {
  background: white;
  text-decoration: none;
  border-radius: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #003e7e;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-playpause a {
  border: none;
  background: none;
}
.ts-banners-v2 .cycle-pager-wrap span.cycle-playpause a svg {
  fill: #003e7e;
  width: 10px;
  position: relative;
  top: -7px;
}
@media all and (max-width: 699px) {
  .ts-banners-v2 .cycle-pager-wrap {
    display: none;
  }
}

/*------------------------------------*\
    Announcements
\*------------------------------------*/
.announcement-wrap {
  display: none;
  background-color: #e67e22;
  padding: 10px 0;
}
.announcement-wrap a {
  color: #fff;
}
.announcement-wrap .row {
  display: table;
}
.announcement-wrap .announcements {
  display: table-row;
}
.announcement-wrap .announcement-list {
  display: table-cell;
  width: 95%;
  vertical-align: middle;
  color: #fff;
  text-align: center;
}
.announcement-wrap .arrow {
  display: table-cell;
  width: 5%;
  text-align: right;
  vertical-align: middle;
}
.announcement-wrap .arrow img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.announcement-wrap .arrow img:hover {
  cursor: pointer;
}

/*------------------------------------*\
    Ads
\*------------------------------------*/
.ad-widget img {
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

/*------------------------------------*\
    Polls
\*------------------------------------*/
.lk-poll,
.left-sidebar .lk-poll {
  margin: 20px 0;
}
.lk-poll h3,
.left-sidebar .lk-poll h3 {
  margin: 0 0 10px 0;
}
.lk-poll label,
.left-sidebar .lk-poll label {
  display: block;
  margin: 0 0 10px 10px;
}
.lk-poll label:hover,
.left-sidebar .lk-poll label:hover {
  cursor: pointer;
}
.lk-poll input[type=radio],
.left-sidebar .lk-poll input[type=radio] {
  margin: 0 8px 0 0;
}
.lk-poll input[type=button],
.left-sidebar .lk-poll input[type=button] {
  display: block;
  color: #fff;
  border: 1px solid #003e7e;
  padding: 5px 12px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  background-color: #003e7e;
  margin: 15px 0 0 0;
}
.lk-poll input[type=button]:hover,
.left-sidebar .lk-poll input[type=button]:hover {
  background-color: #003e7e;
  cursor: pointer;
}
.lk-poll .result-bar, .lk-poll .result-answer, .lk-poll .result-wrap,
.left-sidebar .lk-poll .result-bar,
.left-sidebar .lk-poll .result-answer,
.left-sidebar .lk-poll .result-wrap {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.lk-poll .result-answer,
.left-sidebar .lk-poll .result-answer {
  margin: 0 0 3px 0;
}
.lk-poll .result-wrap,
.left-sidebar .lk-poll .result-wrap {
  border: 1px solid #fff;
  margin: 0 0 10px 0;
  padding: 2px;
}
.lk-poll .result-bar,
.left-sidebar .lk-poll .result-bar {
  background-color: #003e7e;
  height: 8px;
}

/*------------------------------------*\
    Rates
\*------------------------------------*/
.table-rates-title {
  margin-top: 40px;
}
.table-rates-title:first-of-type {
  margin-top: 0;
}

/*------------------------------------*\
    Forms
\*------------------------------------*/
.main-content .lk-form ul, .main-content .lk-form ul li,
.lk-form ul,
.lk-form ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.main-content .lk-form ul::before, .main-content .lk-form ul li::before,
.lk-form ul::before,
.lk-form ul li::before {
  display: none;
}
.main-content .lk-form ul li,
.lk-form ul li {
  margin: 0 0 10px 0;
}
.main-content .lk-form label,
.lk-form label {
  display: block;
}
.main-content .lk-form select,
.lk-form select {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 30px;
  line-height: 30px;
}
.main-content .lk-form input[type=text], .main-content .lk-form input[type=url], .main-content .lk-form input[type=email], .main-content .lk-form input[type=tel], .main-content .lk-form input[type=password], .main-content .lk-form textarea,
.lk-form input[type=text],
.lk-form input[type=url],
.lk-form input[type=email],
.lk-form input[type=tel],
.lk-form input[type=password],
.lk-form textarea {
  margin: 0;
  padding: 4px 0;
  width: 100%;
  font-size: 13px;
  line-height: 18px;
  border: 1px solid #ccc;
  max-width: 303px;
  text-indent: 5px;
}
.main-content .lk-form input[type=text]:focus, .main-content .lk-form input[type=url]:focus, .main-content .lk-form input[type=email]:focus, .main-content .lk-form input[type=tel]:focus, .main-content .lk-form input[type=password]:focus, .main-content .lk-form textarea:focus,
.lk-form input[type=text]:focus,
.lk-form input[type=url]:focus,
.lk-form input[type=email]:focus,
.lk-form input[type=tel]:focus,
.lk-form input[type=password]:focus,
.lk-form textarea:focus {
  outline: 0;
  border: 1px solid #333;
}
.main-content .lk-form textarea,
.lk-form textarea {
  height: 100px;
  font-family: inherit;
}
.main-content .lk-form input[type=radio],
.lk-form input[type=radio] {
  margin: 0 3px 0 0;
}
.main-content .lk-form input[type=file],
.lk-form input[type=file] {
  display: block;
  margin: 15px 0;
}
.main-content .lk-form .required-field, .main-content .lk-form .error, .main-content .lk-form .error-message,
.lk-form .required-field,
.lk-form .error,
.lk-form .error-message {
  color: #df0000;
}
.main-content .lk-form .helper-text,
.lk-form .helper-text {
  font-style: italic;
  margin: 0 0 10px 0;
}
.main-content .lk-form input[type=submit], .main-content .lk-form input[type=button],
.lk-form input[type=submit],
.lk-form input[type=button] {
  background-color: #003e7e;
  color: #fff;
  padding: 5px 15px;
  margin: 10px 0;
  font-size: 16px;
  font-family: inherit;
}
.main-content .lk-form input[type=submit]:hover, .main-content .lk-form input[type=button]:hover,
.lk-form input[type=submit]:hover,
.lk-form input[type=button]:hover {
  cursor: pointer;
}
.main-content .lk-form .g-recaptcha,
.lk-form .g-recaptcha {
  min-height: 82px;
  margin: 0;
  text-align: right;
  max-width: 304px;
}

.single-page-form *[class*=conditional-],
.multi-page-form *[class*=conditional-] {
  display: none;
}

/*------------------------------------*\
    Marketplace
\*------------------------------------*/
.inside-content .marketplace .lk-marketplace-item,
.marketplace .lk-marketplace-item {
  margin: 30px 0 50px 0;
}
.inside-content .marketplace .lk-marketplace-images,
.marketplace .lk-marketplace-images {
  float: left;
  width: 45%;
}
@media all and (max-width: 599px) {
  .inside-content .marketplace .lk-marketplace-images,
.marketplace .lk-marketplace-images {
    float: none;
    width: 100%;
    clear: both;
  }
}
.inside-content .marketplace .lk-marketplace-images img,
.marketplace .lk-marketplace-images img {
  max-width: 100%;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery img,
.marketplace .lk-marketplace-images .lk-marketplace-gallery img {
  width: 70px;
  height: 55px;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul,
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul {
  list-style-type: none;
  margin: 0px 0 0 0;
  padding: 0;
}
.inside-content .marketplace .lk-marketplace-images .lk-marketplace-gallery ul li,
.marketplace .lk-marketplace-images .lk-marketplace-gallery ul li {
  list-style-type: none;
  float: left;
  width: 70px;
  margin: 5px 5px 0 0;
  background-image: none;
  padding: 0;
}
.inside-content .marketplace .lk-marketplace-details,
.marketplace .lk-marketplace-details {
  float: right;
  width: 52%;
}
@media all and (max-width: 599px) {
  .inside-content .marketplace .lk-marketplace-details,
.marketplace .lk-marketplace-details {
    float: none;
    width: 100%;
    clear: both;
    margin: 15px 0 15px 0;
  }
}
.inside-content .marketplace .lk-marketplace-details ul,
.marketplace .lk-marketplace-details ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.inside-content .marketplace .lk-marketplace-details ul li,
.marketplace .lk-marketplace-details ul li {
  list-style-type: none;
  padding: 0;
  margin: 0 0 5px 0;
  background-image: none;
}
.inside-content .marketplace .lk-marketplace-details ul li.additional-details,
.marketplace .lk-marketplace-details ul li.additional-details {
  margin: 15px 0;
  line-height: normal;
}
.inside-content .marketplace .lk-marketplace-details span,
.marketplace .lk-marketplace-details span {
  font-weight: bold;
}
.inside-content .marketplace .lk-marketplace-details h2,
.marketplace .lk-marketplace-details h2 {
  margin: 0 0 5px 0;
  padding: 0;
}
.inside-content .marketplace .lk-marketplace-details a.marketplace-cta,
.marketplace .lk-marketplace-details a.marketplace-cta {
  clear: both;
  margin: 15px 2px;
  padding: 5px 10px;
  display: inline-block;
  background-color: #003e7e;
  color: #fff;
  text-decoration: none;
}
.inside-content .marketplace .lk-marketplace-details a.marketplace-cta:hover,
.marketplace .lk-marketplace-details a.marketplace-cta:hover {
  text-decoration: none;
}

#marketplace-form {
  display: none;
}
#marketplace-form .lk-form {
  float: none;
  padding: 10px;
  min-width: 300px;
}
#marketplace-form .lk-form input.error {
  border: 1px solid red;
}
#marketplace-form .lk-form input[type=button] {
  display: block;
  padding: 10px;
  width: 100%;
}
#marketplace-form .fld-appt, #marketplace-form .fld-bid {
  display: none;
}

/*------------------------------------*\
    Events
\*------------------------------------*/
/* --- Monthly Calendar View --- */
.inside-content .row main .ts-calendar-month {
  margin: 100px auto 30px auto;
  display: block;
}
.inside-content .row main .ts-calendar-month table {
  border: 0;
  margin: 0;
}
.inside-content .row main .ts-calendar-month .fc-day {
  border: 1px solid #7c0041 !important;
}
.inside-content .row main .ts-calendar-month .fc-row:last-of-type {
  border-bottom: 1px solid #7c0041 !important;
}
.inside-content .row main .ts-calendar-month td.fc-today {
  background: transparent;
}
.inside-content .row main .ts-calendar-month td.fc-today .fc-day-number {
  color: #003e7e;
}
.inside-content .row main .ts-calendar-month .fc-day-grid-event {
  background-color: #003e7e !important;
  border: 1px solid #003e7e !important;
  color: #fff !important;
}
@media all and (max-width: 699px) {
  .inside-content .row main .ts-calendar-month {
    visibility: hidden;
    height: 0;
    margin: 0;
  }
}

/* --- Monlhly List View --- */
.ts-calendar-list {
  margin: 30px auto;
  visibility: hidden;
  height: 0;
}
@media all and (max-width: 699px) {
  .ts-calendar-list {
    visibility: visible;
    height: auto;
    margin: 0;
  }
}
.ts-calendar-list .fc-toolbar {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  width: 100%;
}
.ts-calendar-list .fc-left, .ts-calendar-list .fc-right, .ts-calendar-list .fc-center .ts-calendar-list .fc-button-group > * {
  float: none;
}
.ts-calendar-list .fc-left {
  margin-left: auto;
}
.ts-calendar-list .fc-center {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ts-calendar-list .fc-right {
  display: none;
}

/* --- List View --- */
.ts-event-list .event {
  margin: 0 0 15px 0;
}
.ts-event-list .event a {
  text-decoration: none;
}
.ts-event-list > div {
  font-size: 14px;
}
.ts-event-list .event-title {
  font-size: 16px;
}
.ts-event-list .event-dates {
  font-style: italic;
  margin: 0 0 5px 0;
}

/* --- Event View --- */
.event-details {
  padding: 20px;
}
.event-details > div {
  margin: 15px 0;
}
.event-details > div span {
  font-weight: bold;
}
.event-details h3 {
  color: #003e7e;
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
}
.event-details .event-dates {
  font-style: italic;
}

/*------------------------------------*\
    External Links
\*------------------------------------*/
.ui-widget-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #003e7e;
  background: rgba(0, 62, 126, 0.9);
  position: fixed;
  z-index: 99999998;
  font-family: "franklin-gothic-urw", sans-serif;
}

/* --- Dialog Box --- */
.external-dialog {
  position: absolute;
  padding: 0.2em;
  width: 300px;
  overflow: hidden;
  background-color: white;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 99999999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 13px;
}
.external-dialog .ui-dialog-titlebar {
  padding: 0.5em 1em 0.3em;
  position: relative;
  background-color: #003e7e;
  min-height: 30px;
}
.external-dialog .ui-dialog-buttonpane button {
  float: right;
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  line-height: 1.4em;
  width: auto;
  overflow: visible;
  outline: none;
  border: 0;
}
.external-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: white;
  zoom: 1;
}
.external-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 16px 0.2em 0;
  color: white;
  font-weight: bold;
}
.external-dialog .ui-dialog-titlebar-close {
  display: none;
}
.external-dialog p {
  margin: 0 0 15px 0;
}
.external-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 19px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 18px;
  display: none;
}
.external-dialog .ui-dialog-buttonset button {
  background-color: #003e7e;
  color: white;
}

/* --- Full Screen --- */
.external-full {
  position: absolute;
  background: transparent !important;
  border: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  top: 0 !important;
  width: 100% !important;
  left: auto !important;
  margin: 20px auto 0 auto;
  z-index: 99999999;
}
.external-full:focus {
  outline: none;
}
.external-full .ui-state-default, .external-full .ui-widget-content .ui-state-default {
  background: transparent !important;
}
.external-full .ui-widget-content {
  background: transparent !important;
  border: 0;
  color: #fff;
  font-size: 21px;
  line-height: 32px;
  max-width: 800px;
  margin: 0 auto !important;
  position: relative !important;
  padding: 30px 20px 0px 20px;
}
.external-full .ui-widget-content h1 {
  color: white;
  margin-bottom: 20px;
}
.external-full .ui-widget-content p {
  margin: 0 0 20px 0 !important;
}
.external-full .ui-widget-content p:last-of-type {
  margin: 0 !important;
}
.external-full .ui-widget-header {
  background: transparent;
  border: 0;
  display: none;
}
.external-full .ui-dialog-buttonpane {
  text-align: center !important;
}
.external-full .ui-dialog-buttonpane button {
  float: none !important;
  display: block !important;
  color: #fff !important;
  font-weight: normal !important;
  padding: 0 !important;
  font-size: 16px !important;
  border-bottom: 2px solid #fff !important;
  margin: 0 auto !important;
  background: transparent;
}
.external-full .ui-dialog-buttonpane button:hover {
  cursor: pointer;
}
.external-full .ui-dialog-buttonpane button:first-of-type {
  border: 2px solid #fff !important;
  padding: 10px 30px !important;
  margin: 0 auto 30px auto !important;
  border-radius: 50px !important;
  font-size: 21px !important;
  line-height: 32px !important;
  -webkit-transition: all 0.4s !important;
  transition: all 0.4s !important;
}
.external-full .ui-dialog-buttonpane button:first-of-type:hover {
  background-color: #fff !important;
  color: #003e7e !important;
}

/*------------------------------------*\
    Careers
\*------------------------------------*/
.inside-content > .row main .lk-careers h3,
.lk-careers h3 {
  margin: 0;
}
.inside-content > .row main .lk-careers .career-subtitle,
.lk-careers .career-subtitle {
  margin: 0 0 20px 0;
}
.inside-content > .row main .lk-careers .career-listing,
.lk-careers .career-listing {
  padding: 25px 0;
}
.inside-content > .row main .lk-careers .career-back,
.lk-careers .career-back {
  margin: 15px 0;
}
.inside-content > .row main .lk-careers .career-salary,
.lk-careers .career-salary {
  margin: 0 0 30px 0;
}
.inside-content > .row main .lk-careers .career-sep,
.lk-careers .career-sep {
  color: #003e7e;
}

.file-upload {
  border: 2px dashed #c0c0c0;
  background-color: transparent;
  padding: 30px 20px;
  margin: 10px 0 15px auto;
  text-align: center;
  font-size: 13px;
  line-height: 21px;
  max-width: 500px;
}
.file-upload textarea {
  font-size: inherit;
}
.file-upload.dz-drag-hover {
  border: 2px solid #003e7e;
}
.file-upload:hover {
  cursor: pointer;
}
.file-upload .dz-filename {
  text-align: left;
}
.file-upload .dz-image, .file-upload .dz-size, .file-upload .dz-success-mark, .file-upload .dz-error-mark {
  display: none;
}
.file-upload .dz-preview {
  margin: 5px 0 0 0;
}
.file-upload .dz-preview:first-of-type {
  margin: 10px 0 0 0;
}
.file-upload .dz-error-message {
  color: red;
  font-size: 11px;
  font-weight: normal;
}
.file-upload .dz-progress {
  border: 1px solid #ccc;
  padding: 2px;
}
.file-upload .dz-progress .dz-upload {
  background-color: #003e7e;
  display: block;
  height: 3px;
  width: 0;
}

.upload-error {
  color: red;
  display: none;
}

/*------------------------------------*\
    Locations
\*------------------------------------*/
#mainContent div.locator {
  height: 600px;
  width: 100%;
  margin: 30px 0;
  padding: 0;
}
@media all and (max-width: 1200px) {
  #mainContent div.locator {
    padding: 0;
  }
}
#mainContent div.locator .locator-map {
  float: right;
  width: 68%;
  height: 100%;
}
@media all and (max-width: 900px) {
  #mainContent div.locator .locator-map {
    width: 60%;
  }
}
@media all and (max-width: 699px) {
  #mainContent div.locator .locator-map {
    float: none;
    width: 100%;
    height: 200px;
  }
}
#mainContent div.locator .locator-map-details h2 {
  padding: 5px 0;
}
#mainContent div.locator .locator-map-details h3 {
  font-size: 14px;
  margin: 8px 0 2px 0;
}
#mainContent div.locator .locator-sidebar {
  float: left;
  font-size: 13px;
  width: 31%;
  background-color: #fff;
  margin: 0;
  height: 600px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}
@media all and (max-width: 900px) {
  #mainContent div.locator .locator-sidebar {
    width: 39%;
  }
}
@media all and (max-width: 699px) {
  #mainContent div.locator .locator-sidebar {
    float: none;
    width: 100%;
    height: auto;
  }
}
#mainContent div.locator .locator-sidebar h2 {
  background-color: #003e7e;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  padding: 5px 0 5px 15px;
  margin: 0;
}
#mainContent div.locator .locator-sidebar h2:before {
  display: none;
}
#mainContent div.locator .locator-sidebar .locator-search {
  display: block;
  background-color: #efefef;
}
#mainContent div.locator .locator-sidebar .locator-search > div {
  padding: 15px;
}
#mainContent div.locator .locator-sidebar .locator-search input[type=text] {
  border: 1px solid #ccc;
  height: 25px;
  line-height: 25px;
  text-indent: 5px;
  font-size: 16px;
  width: 60%;
  -webkit-appearance: none;
}
#mainContent div.locator .locator-sidebar .locator-search input[type=checkbox] {
  margin: 0 3px 0 2px;
}
#mainContent div.locator .locator-sidebar .locator-search input[type=button] {
  background-color: #003e7e;
  border: 0;
  padding: 0 8px;
  height: 25px;
  font-size: 14px;
  color: #fff;
  -webkit-appearance: none;
}
#mainContent div.locator .locator-sidebar .locator-search input[type=button]:hover {
  cursor: pointer;
}
#mainContent div.locator .locator-sidebar .locator-search label, #mainContent div.locator .locator-sidebar .locator-search div {
  display: block;
}
#mainContent div.locator .locator-sidebar .locator-search label[for*=zip], #mainContent div.locator .locator-sidebar .locator-search div[for*=zip] {
  display: none;
}
#mainContent div.locator .locator-sidebar .locator-search label.error, #mainContent div.locator .locator-sidebar .locator-search div.error {
  color: red;
  display: none;
}
#mainContent div.locator .locator-sidebar .locator-search .filter-options {
  padding: 10px 0 0 0;
}
#mainContent div.locator .locator-sidebar .locator-search .filter-options legend {
  display: none;
}
#mainContent div.locator .locator-sidebar .locator-search .filter-options label {
  margin: 2px 0;
}
#mainContent div.locator .locator-sidebar .locator-search .filter-options label:hover {
  cursor: pointer;
}
#mainContent div.locator .locator-sidebar .loading {
  background: url("../images/loading.gif") no-repeat center;
}
#mainContent div.locator .locator-sidebar .location-list {
  display: block;
  overflow-y: scroll;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: 0;
  height: 445px;
}
@media all and (max-width: 699px) {
  #mainContent div.locator .locator-sidebar .location-list {
    height: 200px;
  }
}
#mainContent div.locator .locator-sidebar .location-list h2 {
  position: fixed;
  width: 100%;
}
#mainContent div.locator .locator-sidebar .location-list h3 {
  font-size: 13px;
  margin: 5px 0 0 0;
}
#mainContent div.locator .locator-sidebar .location-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#mainContent div.locator .locator-sidebar .location-list ul li {
  min-height: 110px;
  position: relative;
  list-style-type: none;
  padding: 10px 15px 10px 75px;
  margin: 0;
  border-top: 0;
  background-color: #fff;
  font-size: 12px;
  border-bottom: 1px solid #ccc;
  background-repeat: no-repeat;
  background-size: 35px 50px;
  background-position: 20px 12px;
}
#mainContent div.locator .locator-sidebar .location-list ul li .distance {
  font-style: italic;
  position: absolute;
  top: 70px;
  width: 75px;
  left: 0;
  text-align: center;
  font-size: 11px;
  line-height: 12px;
}
#mainContent div.locator .locator-sidebar .location-list ul li.branches {
  background-image: url("/modules/images/markers/branches.png");
}
#mainContent div.locator .locator-sidebar .location-list ul li.shared-branches {
  background-image: url("/modules/images/markers/shared-branches.png");
}
#mainContent div.locator .locator-sidebar .location-list ul li.atms {
  background-image: url("/modules/images/markers/atms.png");
}
#mainContent div.locator .locator-sidebar .location-list ul li.shared-atms {
  background-image: url("/modules/images/markers/shared-atms.png");
}
#mainContent div.locator .locator-sidebar .location-list a {
  color: #003e7e;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
}

/*------------------------------------*\
   Testimonials
\*------------------------------------*/
.testimonials .individual-testimonial {
  display: none;
}

/*------------------------------------*\
    Font Selector
\*------------------------------------*/
.font-options {
  width: 90px;
  text-align: center;
  margin: 0;
  line-height: 1;
}
@media all and (max-width: 1024px) {
  .font-options {
    display: none;
  }
}
.font-options a {
  color: #7c0041;
  margin: 0 2px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 0 3px;
}
.font-options a#font-small {
  font-size: 13px;
}
.font-options a#font-med {
  font-size: 18px;
}
.font-options a#font-large {
  font-size: 21px;
  margin-right: 0;
}
.font-options a.active {
  border: 1px solid #7c0041;
}
.font-options a:hover {
  text-decoration: none;
}

/*------------------------------------*\
    Blog Styles
\*------------------------------------*/
.sfpostsList {
  list-style-type: none;
}
.sfpostsList .sfpostListItem {
  margin-bottom: 40px;
}
.sfpostsList .sfpostListItem h2 {
  margin-bottom: 10px;
}
.sfpostsList .sfpostListItem .sfpostSummary {
  margin-bottom: 10px;
}

.sfpostAuthorAndDate {
  display: none;
}

.sfblogsList {
  margin: 0;
  list-style-type: none;
}

.sfarchiveTitle {
  margin-top: 20px;
}

.sfarchiveList {
  list-style-type: none;
}
.sfarchiveList li {
  padding: 5px 0;
}

/*------------------------------------*\
    News Styles
\*------------------------------------*/
.sfnewsList {
  list-style-type: none;
}
.sfnewsList .sfnewsListItem {
  margin-bottom: 40px;
}
.sfnewsList .sfnewsListItem .sfnewsMetaInfo {
  display: none;
}
.sfnewsList .sfnewsListItem .sfnewsSummary {
  margin-bottom: 10px;
}

.sfnewsDetails .sfnewsAuthorAndDate, .sfnewsDetails .sfnewsSummary {
  display: none;
}

.sfnewsContent p {
  padding: 10px 0;
}

/*------------------------------------*\
    Search Results
\*------------------------------------*/
.search-results h2 a {
  text-decoration: none;
}
.search-results p {
  margin-bottom: 10px;
}

.sf-search-results > div {
  margin: 20px 0;
}

/*------------------------------------*\
    Sitemap
\*------------------------------------*/
.k-treeview .k-in {
  border: 0;
  font-size: 24px;
}
.k-treeview .k-item {
  background: none;
}
.k-treeview .k-group ul li a.k-in {
  font-size: 16px;
}

/*------------------------------------*\
    Sitefinity Backend Mods
\*------------------------------------*/
.sfPageEditor main ul li::before {
  background: none;
}

/*------------------------------------*\
    Forms
\*------------------------------------*/
.inside main .multi-page-form, .inside aside .multi-page-form {
  max-width: 1000px;
  margin: 1rem auto;
}
.inside main .multi-page-form fieldset > ul, .inside main .multi-page-form fieldset > ul > li,
.inside main .multi-page-form fieldset > div > ul > li,
.inside main .multi-page-form fieldset > div > ul, .inside aside .multi-page-form fieldset > ul, .inside aside .multi-page-form fieldset > ul > li,
.inside aside .multi-page-form fieldset > div > ul > li,
.inside aside .multi-page-form fieldset > div > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.inside main .multi-page-form fieldset > ul, .inside main .multi-page-form > ul, .inside aside .multi-page-form fieldset > ul, .inside aside .multi-page-form > ul {
  padding-left: 0;
  margin-left: 0;
}
.inside main .multi-page-form fieldset > ul > li, .inside main .multi-page-form > ul > li, .inside main .multi-page-form fieldset > div > ul > li, .inside aside .multi-page-form fieldset > ul > li, .inside aside .multi-page-form > ul > li, .inside aside .multi-page-form fieldset > div > ul > li {
  margin: 0 0 20px 0;
  padding: 0;
}
.inside main .multi-page-form fieldset > ul > li::before, .inside main .multi-page-form > ul > li::before, .inside main .multi-page-form fieldset > div > ul > li::before, .inside aside .multi-page-form fieldset > ul > li::before, .inside aside .multi-page-form > ul > li::before, .inside aside .multi-page-form fieldset > div > ul > li::before {
  display: none;
}
.inside main .multi-page-form fieldset > ul > li label, .inside main .multi-page-form > ul > li label, .inside main .multi-page-form fieldset > div > ul > li label, .inside aside .multi-page-form fieldset > ul > li label, .inside aside .multi-page-form > ul > li label, .inside aside .multi-page-form fieldset > div > ul > li label {
  margin-top: 0;
  padding-top: 5px;
}
.inside main .multi-page-form .field-group, .inside aside .multi-page-form .field-group {
  margin: 0 0 10px 0;
}
.inside main .multi-page-form h2, .inside aside .multi-page-form h2 {
  margin-top: 40px;
}
.inside main .multi-page-form .flex, .inside main .multi-page-form .flex-form, .inside aside .multi-page-form .flex, .inside aside .multi-page-form .flex-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 -10px;
}
@supports (display: grid) {
  .inside main .multi-page-form .flex, .inside main .multi-page-form .flex-form, .inside aside .multi-page-form .flex, .inside aside .multi-page-form .flex-form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(100px, 1fr) 20px minmax(100px, 1fr) 20px minmax(100px, 1fr) 20px minmax(100px, 1fr);
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr);
    grid-gap: 10px 20px;
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .inside main .multi-page-form .flex, .inside main .multi-page-form .flex-form, .inside aside .multi-page-form .flex, .inside aside .multi-page-form .flex-form {
    display: block;
  }
}
.inside main .multi-page-form .flex h2, .inside main .multi-page-form .flex h3, .inside main .multi-page-form .flex h4, .inside main .multi-page-form .flex table, .inside main .multi-page-form .flex-form h2, .inside main .multi-page-form .flex-form h3, .inside main .multi-page-form .flex-form h4, .inside main .multi-page-form .flex-form table, .inside aside .multi-page-form .flex h2, .inside aside .multi-page-form .flex h3, .inside aside .multi-page-form .flex h4, .inside aside .multi-page-form .flex table, .inside aside .multi-page-form .flex-form h2, .inside aside .multi-page-form .flex-form h3, .inside aside .multi-page-form .flex-form h4, .inside aside .multi-page-form .flex-form table {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
  min-width: 90%;
  -ms-grid-column-span: 4;
  grid-column: span 4;
  margin-bottom: 0;
}
.inside main .multi-page-form .flex > li, .inside main .multi-page-form .flex .field-group, .inside main .multi-page-form .flex > div, .inside main .multi-page-form .flex-form > li, .inside main .multi-page-form .flex-form .field-group, .inside main .multi-page-form .flex-form > div, .inside aside .multi-page-form .flex > li, .inside aside .multi-page-form .flex .field-group, .inside aside .multi-page-form .flex > div, .inside aside .multi-page-form .flex-form > li, .inside aside .multi-page-form .flex-form .field-group, .inside aside .multi-page-form .flex-form > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 45%;
          flex: 1 45%;
  padding: 5px 10px;
  max-width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.inside main .multi-page-form .flex > li.no-align, .inside main .multi-page-form .flex .field-group.no-align, .inside main .multi-page-form .flex > div.no-align, .inside main .multi-page-form .flex-form > li.no-align, .inside main .multi-page-form .flex-form .field-group.no-align, .inside main .multi-page-form .flex-form > div.no-align, .inside aside .multi-page-form .flex > li.no-align, .inside aside .multi-page-form .flex .field-group.no-align, .inside aside .multi-page-form .flex > div.no-align, .inside aside .multi-page-form .flex-form > li.no-align, .inside aside .multi-page-form .flex-form .field-group.no-align, .inside aside .multi-page-form .flex-form > div.no-align {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
.inside main .multi-page-form .flex > li.small-field, .inside main .multi-page-form .flex > li.short-field, .inside main .multi-page-form .flex .field-group.small-field, .inside main .multi-page-form .flex .field-group.short-field, .inside main .multi-page-form .flex > div.small-field, .inside main .multi-page-form .flex > div.short-field, .inside main .multi-page-form .flex-form > li.small-field, .inside main .multi-page-form .flex-form > li.short-field, .inside main .multi-page-form .flex-form .field-group.small-field, .inside main .multi-page-form .flex-form .field-group.short-field, .inside main .multi-page-form .flex-form > div.small-field, .inside main .multi-page-form .flex-form > div.short-field, .inside aside .multi-page-form .flex > li.small-field, .inside aside .multi-page-form .flex > li.short-field, .inside aside .multi-page-form .flex .field-group.small-field, .inside aside .multi-page-form .flex .field-group.short-field, .inside aside .multi-page-form .flex > div.small-field, .inside aside .multi-page-form .flex > div.short-field, .inside aside .multi-page-form .flex-form > li.small-field, .inside aside .multi-page-form .flex-form > li.short-field, .inside aside .multi-page-form .flex-form .field-group.small-field, .inside aside .multi-page-form .flex-form .field-group.short-field, .inside aside .multi-page-form .flex-form > div.small-field, .inside aside .multi-page-form .flex-form > div.short-field {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5 23%;
          flex: 0.5 23%;
}
.inside main .multi-page-form .flex > li.fullw-field, .inside main .multi-page-form .flex > li.long-field, .inside main .multi-page-form .flex .field-group.fullw-field, .inside main .multi-page-form .flex .field-group.long-field, .inside main .multi-page-form .flex > div.fullw-field, .inside main .multi-page-form .flex > div.long-field, .inside main .multi-page-form .flex-form > li.fullw-field, .inside main .multi-page-form .flex-form > li.long-field, .inside main .multi-page-form .flex-form .field-group.fullw-field, .inside main .multi-page-form .flex-form .field-group.long-field, .inside main .multi-page-form .flex-form > div.fullw-field, .inside main .multi-page-form .flex-form > div.long-field, .inside aside .multi-page-form .flex > li.fullw-field, .inside aside .multi-page-form .flex > li.long-field, .inside aside .multi-page-form .flex .field-group.fullw-field, .inside aside .multi-page-form .flex .field-group.long-field, .inside aside .multi-page-form .flex > div.fullw-field, .inside aside .multi-page-form .flex > div.long-field, .inside aside .multi-page-form .flex-form > li.fullw-field, .inside aside .multi-page-form .flex-form > li.long-field, .inside aside .multi-page-form .flex-form .field-group.fullw-field, .inside aside .multi-page-form .flex-form .field-group.long-field, .inside aside .multi-page-form .flex-form > div.fullw-field, .inside aside .multi-page-form .flex-form > div.long-field {
  -webkit-box-flex: 1;
      -ms-flex: 1 90%;
          flex: 1 90%;
}
.inside main .multi-page-form .flex > li.end-align, .inside main .multi-page-form .flex .field-group.end-align, .inside main .multi-page-form .flex > div.end-align, .inside main .multi-page-form .flex-form > li.end-align, .inside main .multi-page-form .flex-form .field-group.end-align, .inside main .multi-page-form .flex-form > div.end-align, .inside aside .multi-page-form .flex > li.end-align, .inside aside .multi-page-form .flex .field-group.end-align, .inside aside .multi-page-form .flex > div.end-align, .inside aside .multi-page-form .flex-form > li.end-align, .inside aside .multi-page-form .flex-form .field-group.end-align, .inside aside .multi-page-form .flex-form > div.end-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.inside main .multi-page-form .flex > li.end-align > *, .inside main .multi-page-form .flex .field-group.end-align > *, .inside main .multi-page-form .flex > div.end-align > *, .inside main .multi-page-form .flex-form > li.end-align > *, .inside main .multi-page-form .flex-form .field-group.end-align > *, .inside main .multi-page-form .flex-form > div.end-align > *, .inside aside .multi-page-form .flex > li.end-align > *, .inside aside .multi-page-form .flex .field-group.end-align > *, .inside aside .multi-page-form .flex > div.end-align > *, .inside aside .multi-page-form .flex-form > li.end-align > *, .inside aside .multi-page-form .flex-form .field-group.end-align > *, .inside aside .multi-page-form .flex-form > div.end-align > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 90%;
          flex: 1 90%;
}
@supports (display: grid) {
  .inside main .multi-page-form .flex > li, .inside main .multi-page-form .flex .field-group, .inside main .multi-page-form .flex > div, .inside main .multi-page-form .flex-form > li, .inside main .multi-page-form .flex-form .field-group, .inside main .multi-page-form .flex-form > div, .inside aside .multi-page-form .flex > li, .inside aside .multi-page-form .flex .field-group, .inside aside .multi-page-form .flex > div, .inside aside .multi-page-form .flex-form > li, .inside aside .multi-page-form .flex-form .field-group, .inside aside .multi-page-form .flex-form > div {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-bottom: 0;
    padding: 0;
  }
  .inside main .multi-page-form .flex > li.break, .inside main .multi-page-form .flex .field-group.break, .inside main .multi-page-form .flex > div.break, .inside main .multi-page-form .flex-form > li.break, .inside main .multi-page-form .flex-form .field-group.break, .inside main .multi-page-form .flex-form > div.break, .inside aside .multi-page-form .flex > li.break, .inside aside .multi-page-form .flex .field-group.break, .inside aside .multi-page-form .flex > div.break, .inside aside .multi-page-form .flex-form > li.break, .inside aside .multi-page-form .flex-form .field-group.break, .inside aside .multi-page-form .flex-form > div.break {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
  }
  .inside main .multi-page-form .flex > li.small-field, .inside main .multi-page-form .flex > li.short-field, .inside main .multi-page-form .flex .field-group.small-field, .inside main .multi-page-form .flex .field-group.short-field, .inside main .multi-page-form .flex > div.small-field, .inside main .multi-page-form .flex > div.short-field, .inside main .multi-page-form .flex-form > li.small-field, .inside main .multi-page-form .flex-form > li.short-field, .inside main .multi-page-form .flex-form .field-group.small-field, .inside main .multi-page-form .flex-form .field-group.short-field, .inside main .multi-page-form .flex-form > div.small-field, .inside main .multi-page-form .flex-form > div.short-field, .inside aside .multi-page-form .flex > li.small-field, .inside aside .multi-page-form .flex > li.short-field, .inside aside .multi-page-form .flex .field-group.small-field, .inside aside .multi-page-form .flex .field-group.short-field, .inside aside .multi-page-form .flex > div.small-field, .inside aside .multi-page-form .flex > div.short-field, .inside aside .multi-page-form .flex-form > li.small-field, .inside aside .multi-page-form .flex-form > li.short-field, .inside aside .multi-page-form .flex-form .field-group.small-field, .inside aside .multi-page-form .flex-form .field-group.short-field, .inside aside .multi-page-form .flex-form > div.small-field, .inside aside .multi-page-form .flex-form > div.short-field {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .inside main .multi-page-form .flex > li.small-field.break, .inside main .multi-page-form .flex > li.short-field.break, .inside main .multi-page-form .flex .field-group.small-field.break, .inside main .multi-page-form .flex .field-group.short-field.break, .inside main .multi-page-form .flex > div.small-field.break, .inside main .multi-page-form .flex > div.short-field.break, .inside main .multi-page-form .flex-form > li.small-field.break, .inside main .multi-page-form .flex-form > li.short-field.break, .inside main .multi-page-form .flex-form .field-group.small-field.break, .inside main .multi-page-form .flex-form .field-group.short-field.break, .inside main .multi-page-form .flex-form > div.small-field.break, .inside main .multi-page-form .flex-form > div.short-field.break, .inside aside .multi-page-form .flex > li.small-field.break, .inside aside .multi-page-form .flex > li.short-field.break, .inside aside .multi-page-form .flex .field-group.small-field.break, .inside aside .multi-page-form .flex .field-group.short-field.break, .inside aside .multi-page-form .flex > div.small-field.break, .inside aside .multi-page-form .flex > div.short-field.break, .inside aside .multi-page-form .flex-form > li.small-field.break, .inside aside .multi-page-form .flex-form > li.short-field.break, .inside aside .multi-page-form .flex-form .field-group.small-field.break, .inside aside .multi-page-form .flex-form .field-group.short-field.break, .inside aside .multi-page-form .flex-form > div.small-field.break, .inside aside .multi-page-form .flex-form > div.short-field.break {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
  }
  .inside main .multi-page-form .flex > li.fullw-field, .inside main .multi-page-form .flex .field-group.fullw-field, .inside main .multi-page-form .flex > div.fullw-field, .inside main .multi-page-form .flex-form > li.fullw-field, .inside main .multi-page-form .flex-form .field-group.fullw-field, .inside main .multi-page-form .flex-form > div.fullw-field, .inside aside .multi-page-form .flex > li.fullw-field, .inside aside .multi-page-form .flex .field-group.fullw-field, .inside aside .multi-page-form .flex > div.fullw-field, .inside aside .multi-page-form .flex-form > li.fullw-field, .inside aside .multi-page-form .flex-form .field-group.fullw-field, .inside aside .multi-page-form .flex-form > div.fullw-field {
    -ms-grid-column-span: 4;
    grid-column: span 4;
  }
  .inside main .multi-page-form .flex > li.long-field, .inside main .multi-page-form .flex .field-group.long-field, .inside main .multi-page-form .flex > div.long-field, .inside main .multi-page-form .flex-form > li.long-field, .inside main .multi-page-form .flex-form .field-group.long-field, .inside main .multi-page-form .flex-form > div.long-field, .inside aside .multi-page-form .flex > li.long-field, .inside aside .multi-page-form .flex .field-group.long-field, .inside aside .multi-page-form .flex > div.long-field, .inside aside .multi-page-form .flex-form > li.long-field, .inside aside .multi-page-form .flex-form .field-group.long-field, .inside aside .multi-page-form .flex-form > div.long-field {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
  .inside main .multi-page-form .flex > li.long-field.break, .inside main .multi-page-form .flex .field-group.long-field.break, .inside main .multi-page-form .flex > div.long-field.break, .inside main .multi-page-form .flex-form > li.long-field.break, .inside main .multi-page-form .flex-form .field-group.long-field.break, .inside main .multi-page-form .flex-form > div.long-field.break, .inside aside .multi-page-form .flex > li.long-field.break, .inside aside .multi-page-form .flex .field-group.long-field.break, .inside aside .multi-page-form .flex > div.long-field.break, .inside aside .multi-page-form .flex-form > li.long-field.break, .inside aside .multi-page-form .flex-form .field-group.long-field.break, .inside aside .multi-page-form .flex-form > div.long-field.break {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
  }
  .inside main .multi-page-form .flex > li.contact-comments, .inside main .multi-page-form .flex .field-group.contact-comments, .inside main .multi-page-form .flex > div.contact-comments, .inside main .multi-page-form .flex-form > li.contact-comments, .inside main .multi-page-form .flex-form .field-group.contact-comments, .inside main .multi-page-form .flex-form > div.contact-comments, .inside aside .multi-page-form .flex > li.contact-comments, .inside aside .multi-page-form .flex .field-group.contact-comments, .inside aside .multi-page-form .flex > div.contact-comments, .inside aside .multi-page-form .flex-form > li.contact-comments, .inside aside .multi-page-form .flex-form .field-group.contact-comments, .inside aside .multi-page-form .flex-form > div.contact-comments {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/span 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/span 2;
  }
  .inside main .multi-page-form .flex > li.contact-comments textarea, .inside main .multi-page-form .flex .field-group.contact-comments textarea, .inside main .multi-page-form .flex > div.contact-comments textarea, .inside main .multi-page-form .flex-form > li.contact-comments textarea, .inside main .multi-page-form .flex-form .field-group.contact-comments textarea, .inside main .multi-page-form .flex-form > div.contact-comments textarea, .inside aside .multi-page-form .flex > li.contact-comments textarea, .inside aside .multi-page-form .flex .field-group.contact-comments textarea, .inside aside .multi-page-form .flex > div.contact-comments textarea, .inside aside .multi-page-form .flex-form > li.contact-comments textarea, .inside aside .multi-page-form .flex-form .field-group.contact-comments textarea, .inside aside .multi-page-form .flex-form > div.contact-comments textarea {
    height: 165px;
  }
  .inside main .multi-page-form .flex > li.end-align, .inside main .multi-page-form .flex .field-group.end-align, .inside main .multi-page-form .flex > div.end-align, .inside main .multi-page-form .flex-form > li.end-align, .inside main .multi-page-form .flex-form .field-group.end-align, .inside main .multi-page-form .flex-form > div.end-align, .inside aside .multi-page-form .flex > li.end-align, .inside aside .multi-page-form .flex .field-group.end-align, .inside aside .multi-page-form .flex > div.end-align, .inside aside .multi-page-form .flex-form > li.end-align, .inside aside .multi-page-form .flex-form .field-group.end-align, .inside aside .multi-page-form .flex-form > div.end-align {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    display: block;
  }
}
.inside main .multi-page-form .thin-form, .inside aside .multi-page-form .thin-form {
  max-width: 500px;
  margin: auto;
}
.inside main .multi-page-form label, .inside aside .multi-page-form label {
  display: block;
  line-height: 1.3rem;
  padding-top: 0.6rem;
  max-width: 100%;
}
.inside main .multi-page-form label.warning, .inside aside .multi-page-form label.warning {
  display: none;
}
.inside main .multi-page-form label label, .inside aside .multi-page-form label label {
  display: inline-block;
  margin: 0 5px;
  padding-top: 0;
}
.inside main .multi-page-form label + label, .inside aside .multi-page-form label + label {
  margin-top: 0.3rem;
}
.inside main .multi-page-form legend, .inside aside .multi-page-form legend {
  margin-top: 1rem;
  line-height: 1.3rem;
  max-width: 100%;
}
.inside main .multi-page-form .large-label, .inside aside .multi-page-form .large-label {
  font-weight: 700;
  text-transform: uppercase;
}
.inside main .multi-page-form select, .inside aside .multi-page-form select {
  background-color: #fff;
  border: 1px solid #aaa;
  height: 33px;
  line-height: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
}
.inside main .multi-page-form input[type=text], .inside main .multi-page-form input[type=url], .inside main .multi-page-form input[type=email], .inside main .multi-page-form input[type=tel], .inside main .multi-page-form input[type=password], .inside main .multi-page-form input[type=date], .inside main .multi-page-form input[type=number], .inside main .multi-page-form textarea, .inside aside .multi-page-form input[type=text], .inside aside .multi-page-form input[type=url], .inside aside .multi-page-form input[type=email], .inside aside .multi-page-form input[type=tel], .inside aside .multi-page-form input[type=password], .inside aside .multi-page-form input[type=date], .inside aside .multi-page-form input[type=number], .inside aside .multi-page-form textarea {
  margin: 0;
  padding: 4px 0;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  border: 1px solid #aaa;
  min-width: 20px;
  text-indent: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 33px;
  font-family: "franklin-gothic-urw", sans-serif;
}
.inside main .multi-page-form input[type=text]:focus, .inside main .multi-page-form input[type=url]:focus, .inside main .multi-page-form input[type=email]:focus, .inside main .multi-page-form input[type=tel]:focus, .inside main .multi-page-form input[type=password]:focus, .inside main .multi-page-form input[type=date]:focus, .inside main .multi-page-form input[type=number]:focus, .inside main .multi-page-form textarea:focus, .inside aside .multi-page-form input[type=text]:focus, .inside aside .multi-page-form input[type=url]:focus, .inside aside .multi-page-form input[type=email]:focus, .inside aside .multi-page-form input[type=tel]:focus, .inside aside .multi-page-form input[type=password]:focus, .inside aside .multi-page-form input[type=date]:focus, .inside aside .multi-page-form input[type=number]:focus, .inside aside .multi-page-form textarea:focus {
  outline: 0;
  border: 1px solid #003e7e;
}
.inside main .multi-page-form textarea, .inside aside .multi-page-form textarea {
  resize: vertical;
}
.inside main .multi-page-form input::-webkit-outer-spin-button,
.inside main .multi-page-form input::-webkit-inner-spin-button, .inside aside .multi-page-form input::-webkit-outer-spin-button,
.inside aside .multi-page-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.inside main .multi-page-form .check-group, .inside aside .multi-page-form .check-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.inside main .multi-page-form .check-group input, .inside aside .multi-page-form .check-group input {
  margin-top: 0.8rem;
}
.inside main .multi-page-form .check-group label, .inside aside .multi-page-form .check-group label {
  margin: 0;
}
.inside main .multi-page-form input[type=number], .inside aside .multi-page-form input[type=number] {
  -moz-appearance: textfield;
}
.inside main .multi-page-form textarea, .inside aside .multi-page-form textarea {
  height: 100px;
  font-family: inherit;
}
.inside main .multi-page-form input[type=radio], .inside aside .multi-page-form input[type=radio] {
  margin: 0 5px 0 0;
}
.inside main .multi-page-form input[type=file], .inside aside .multi-page-form input[type=file] {
  display: block;
  margin: 15px 0;
}
.inside main .multi-page-form .required-field, .inside main .multi-page-form .error, .inside main .multi-page-form .error-message, .inside aside .multi-page-form .required-field, .inside aside .multi-page-form .error, .inside aside .multi-page-form .error-message {
  color: #7c0041;
}
.inside main .multi-page-form .error, .inside main .multi-page-form .error-message, .inside main .multi-page-form .warning, .inside aside .multi-page-form .error, .inside aside .multi-page-form .error-message, .inside aside .multi-page-form .warning {
  font-size: 0.9rem;
  line-height: 1rem;
  color: #7c0041;
  margin-top: 2px;
}
.inside main .multi-page-form label.error, .inside main .multi-page-form label.warning, .inside aside .multi-page-form label.error, .inside aside .multi-page-form label.warning {
  display: none;
}
.inside main .multi-page-form input.warning, .inside main .multi-page-form input.error, .inside main .multi-page-form select.warning, .inside main .multi-page-form select.error, .inside aside .multi-page-form input.warning, .inside aside .multi-page-form input.error, .inside aside .multi-page-form select.warning, .inside aside .multi-page-form select.error {
  border-color: #7c0041;
}
.inside main .multi-page-form input.warning:focus, .inside main .multi-page-form input.error:focus, .inside main .multi-page-form select.warning:focus, .inside main .multi-page-form select.error:focus, .inside aside .multi-page-form input.warning:focus, .inside aside .multi-page-form input.error:focus, .inside aside .multi-page-form select.warning:focus, .inside aside .multi-page-form select.error:focus {
  border-color: #7c0041;
  background: #fff5f5;
}
.inside main .multi-page-form .helper-text, .inside aside .multi-page-form .helper-text {
  font-style: italic;
  margin: 0 0 10px 0;
}
.inside main .multi-page-form input[type=submit], .inside main .multi-page-form input[type=button], .inside aside .multi-page-form input[type=submit], .inside aside .multi-page-form input[type=button] {
  background-color: #003e7e;
  color: white;
  padding: 3px 10px;
  border-radius: 5px;
  border: 1px solid #003e7e;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  text-decoration: none;
  display: inline-block;
  margin: 1rem auto 1.3rem auto;
  display: block;
  min-width: 200px;
  max-width: 300px;
  font-size: 1rem;
}
.inside main .multi-page-form input[type=submit]:hover, .inside main .multi-page-form input[type=button]:hover, .inside aside .multi-page-form input[type=submit]:hover, .inside aside .multi-page-form input[type=button]:hover {
  background-color: white;
  color: #003e7e;
  text-decoration: none;
}
.inside main .multi-page-form input[type=submit]:focus, .inside main .multi-page-form input[type=button]:focus, .inside aside .multi-page-form input[type=submit]:focus, .inside aside .multi-page-form input[type=button]:focus {
  outline: none;
}
.inside main .multi-page-form input[type=submit]:hover, .inside main .multi-page-form input[type=button]:hover, .inside aside .multi-page-form input[type=submit]:hover, .inside aside .multi-page-form input[type=button]:hover {
  cursor: pointer;
}
.inside main .multi-page-form .g-recaptcha, .inside aside .multi-page-form .g-recaptcha {
  min-height: 82px;
  margin: 20px auto 10px auto;
  text-align: right;
  max-width: 304px;
}
@media screen and (max-width: 350px) {
  .inside main .multi-page-form .g-recaptcha, .inside aside .multi-page-form .g-recaptcha {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    width: 200px;
    margin-left: -20px;
  }
}
.inside main .multi-page-form .g-recaptcha + .error-message, .inside aside .multi-page-form .g-recaptcha + .error-message {
  text-align: center;
}
.inside main .multi-page-form .check, .inside aside .multi-page-form .check {
  padding-left: 20px;
  margin: 1.3rem 0;
}
.inside main .multi-page-form .check input[type=checkbox], .inside aside .multi-page-form .check input[type=checkbox] {
  margin-left: -17px;
}

.multi-page-form *[class*=conditional-] {
  display: none;
}
.multi-page-form h3 {
  margin: 2rem 0 0;
  font-size: 1.2rem;
}
.multi-page-form .dz-image, .multi-page-form .dz-size, .multi-page-form .dz-success-mark, .multi-page-form .dz-error-mark {
  display: none;
}

.inside-content .multi-page-form li ul li:first-child {
  margin-top: 0;
}

.multi-page-form {
  /*  #progress { //turn this off and replace multi-step-addon with multi-step-new.scss to use old appearance
       overflow: hidden;
       height: 42px;
       position: relative;
       border: 3px solid $accent;
       -webkit-box-sizing: border-box;
       box-sizing: border-box;
       margin-top: 20px;
       background: $lightBlue;
       .progress-bar {
           height: 40px;
           background-color: $color1;
           width: 0px;
           font-size: 20px;
           position: relative;
           transition: all 0.5s;
           span {
               position: absolute;
               width: 150px;
               left: 10px;
               top: 8px;
               bottom: 10px;
               line-height: 20px;
               color: black;
               transition: all 0.5s;
           }
           &.filling {
               span {
                   color: $lightBlue;
                   right: 10px;
                   left: auto;
                   width: auto;
               }
           }
       }
       ul li[id*="step"] {
           margin: 0;
       }
   } */
}
.multi-page-form #progress {
  position: relative;
  margin: 0px auto 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 599px) {
  .multi-page-form #progress {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.multi-page-form #progress .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.multi-page-form .note {
  display: none;
}
.multi-page-form .step-title {
  color: #1a1a1a;
  display: block;
  padding: 25px 0;
  border-top: 1px solid #666666;
  border-bottom: 3px solid #666666;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.multi-page-form .active .step-title {
  color: #003e7e;
  font-weight: bold;
  border-top: 1px solid #003e7e;
  border-bottom: 3px solid #003e7e;
}
.multi-page-form .done .step-title {
  color: #7c0041;
  border-top: 1px solid #7c0041;
  border-bottom: 3px solid #7c0041;
}
.multi-page-form .step-actions {
  overflow: auto;
  padding: 0 10px;
}
@media screen and (min-width: 600px) {
  .multi-page-form .step-actions .btn-previous {
    float: left;
  }
  .multi-page-form .step-actions .btn-next, .multi-page-form .step-actions input[type=submit] {
    float: right;
  }
}
.multi-page-form .prompt {
  color: #7c0041;
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 1px solid #7c0041;
  padding-bottom: 10px;
  margin: 0 -15px;
}

.upload-wrap {
  margin-top: 1rem;
}
.upload-wrap .file-upload {
  border: 2px dashed #c0c0c0;
  background-color: transparent;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  line-height: 21px;
  margin-top: 20px;
}
.upload-wrap .file-upload:hover {
  cursor: pointer;
}
.upload-wrap .file-upload:first-line {
  font-weight: bold;
}
.upload-wrap .dz-drag-hover {
  border: 2px dashed #333;
}
.upload-wrap .item-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.upload-wrap .item-preview .dz-image {
  display: none;
}
.upload-wrap .item-preview .dz-error-message {
  color: crimson;
}
.upload-wrap .item-preview .dz-preview {
  padding: 0 10px;
  margin-bottom: 20px;
}
.upload-wrap .item-preview .dz-success-mark, .upload-wrap .item-preview .dz-error-mark {
  display: none;
}
.upload-wrap #total-progress {
  width: 100%;
  padding: 2px;
  height: 10px;
}
.upload-wrap .progress-bar {
  background-color: #003e7e;
  min-height: 3px;
  width: 0%;
}

@media print {
  nav,
footer,
aside,
.left-sidebar,
.right-sidebar,
.sidebar,
.online-banking,
.bottom-links-wrapper {
    display: none;
  }
  main {
    width: 100%;
    border: 0;
  }
  main ul li {
    list-style-type: initial;
  }
  .lkcs {
    display: none;
  }
}