/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb {
  height: 25px;
}
.alert {
  border: 0;
  border-radius: 0px;
  background-color: red;
}
.alert .alertIcn {
  margin-top: 5px;
  color: white;
}
.alert .headline a {
  color: white;
  font-size: 20px;
  font-weight: bold;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #131a25;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #308eca;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #1c5478;
}
body #header {
  height: 40px;
  width: 100%;
  background-color: #308eca;
}
body #header a.logo-hold {
  width: 270px;
  position: absolute;
  display: block;
}
body #header a.logo-hold img {
  width: 100%;
}
body #header .nav-container {
  margin-top: 0px;
}
body #header .nav-hold {
  float: none !important;
  display: inline-block;
  padding: 0 !important;
  margin-right: 30px;
  margin-left: -20px;
}
body #header .nav-hold .nav-pills {
  right: 0px !important;
}
body #header .nav-hold .nav-pills li a {
  padding: 6px 15px;
}
body #header .nav-hold li a {
  font-family: 'Proxima N W01 Bold';
  text-transform: uppercase;
}
body #header .nav-hold .navbar {
  top: 0px;
}
body #header .nav-hold .srchbutton,
body #header .nav-hold .srchbuttonmodal {
  font-size: 14px !important;
  right: 0px !important;
  padding: 10px 15px;
  top: -15px !important;
}
@media (max-width: 991px) {
  body #header .nav-hold .srchbutton,
  body #header .nav-hold .srchbuttonmodal {
    font-size: 19px!important;
    top: -10px !important;
  }
}
body #header .nav-hold .srchbutton:hover,
body #header .nav-hold .srchbuttonmodal:hover {
  background-color: #056db3;
}
@media (max-width: 991px) {
  body #header .nav-hold .srchbutton:hover,
  body #header .nav-hold .srchbuttonmodal:hover {
    background-color: #308eca;
  }
}
body #header .nav-hold .togglemenu {
  margin-left: 0;
  float: left;
  margin-top: 3px;
}
body #header .newsletter-signup {
  background-color: #056db3;
  color: white;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 30px;
  font-family: 'Proxima N W01 Bold';
  position: relative;
  margin-right: 25px;
  top: -14px;
}
@media (max-width: 1200px) {
  body #header .newsletter-signup {
    padding: 7px 12px;
  }
}
@media (max-width: 991px) {
  body #header .newsletter-signup {
    float: right;
    top: 1px;
    margin-right: 0;
  }
}
@media (max-width: 430px) {
  body #header .newsletter-signup {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  body #header .newsletter-signup {
    padding: 11px 15px;
    font-size: 13px;
  }
}
body #header .newsletter-signup:hover {
  background-color: #065e99;
}
body #header .right {
  display: inline-block;
  position: relative;
  top: -15px;
}
@media (max-width: 991px) {
  body #header .right {
    float: right;
    top: 7px;
    left: -16px;
  }
}
body #header .right .social-list li a {
  color: #308eca;
  background-color: white;
}
body #header .right .social-list li a:hover {
  background-color: #056db3;
  color: white;
}
body .social-list li a {
  height: 25px;
  width: 25px;
  border-radius: 25px;
  text-align: center;
  padding-top: 3px;
  display: inline-block;
  font-size: 15px;
}
body .social-list li {
  padding: 0px 2px 0px;
}
body:not(#home) #header .nav-hold.right-search-modal {
  margin-right: 0px;
  margin-left: 0px;
}
body:not(#home) #header .nav-hold.right-search-modal .navbar {
  top: 0px;
}
body:not(#home) #header .home-button {
  color: white;
  text-transform: uppercase;
  font-family: 'Proxima N W01 Bold';
  top: -14px;
  margin-right: 11px;
  position: relative;
}
body:not(#home) #header .home-button.mobile {
  font-size: 27px;
  top: -7px;
}
body:not(#home) #header .nav-hold.right-slide-search .togglemenu,
body:not(#home) #header .nav-hold.right-search-modal .togglemenu {
  margin-left: 0px;
}
body:not(#home) .logo-hold {
  display: none !important;
}
body:not(#home) .right {
  top: 0px;
}
body:not(#home) .right .social-list li a {
  height: 22px;
  width: 22px;
  border-radius: 22px;
  text-align: center;
  padding-top: 1px;
  display: inline-block;
  font-size: 14px;
  background-color: white;
  color: #308eca;
}
body:not(#home) .right .social-list {
  display: inline-block;
  margin-right: 15px;
}
@media (max-width: 1200px) {
  body:not(#home) .right .social-list {
    display: none;
    margin: 0px;
  }
}
body:not(#home) .right .newsletter-signup {
  text-transform: uppercase;
  font-family: 'Proxima N W01 Bold';
  margin-right: 20px;
  font-size: 16px;
  color: white;
  display: inline-block;
  top: 2px;
}
@media (max-width: 1330px) {
  body:not(#home) .right .newsletter-signup {
    padding: 8px 13px;
  }
}
@media (max-width: 1200px) {
  body:not(#home) .right .newsletter-signup {
    margin-right: 0px;
  }
}
@media (max-width: 360px) {
  body:not(#home) .right .newsletter-signup {
    padding: 10px 6px;
    font-size: 13px;
  }
}
.connectButton a.btn {
  background-color: #A7C2D3;
  height: 300px;
  display: table;
  padding: 0 40px;
  margin-top: 40px;
  white-space: normal;
}
.connectButton a.btn h1 {
  display: table-cell;
  vertical-align: middle;
}
.connectButton a.btn:hover {
  background-color: #8facbd;
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #056db3;
  border: 0px;
  top: 100%;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: white;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #308eca;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover,
body .navbar .nav-pills > li.selected {
  background-color: #056db3;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  /*color: @yellow;*/
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
body .navbar .srchbutton {
  color: #fff;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'Proxima N W01 Bold';
  font-size: 45px;
  font-size: 26px;
  text-transform: uppercase;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 50px 0;
  padding: 0;
  position: relative;
  text-align: center;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  font-family: 'Proxima N W01 Reg';
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 20px 0;
  float: right;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #308eca;
  color: #fff;
  border-bottom: 3px solid #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #308eca;
  color: #fff;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
body#home .banner {
  background-image: url(/themes/scott/images/banner-original.jpg);
  background-size: cover;
  background-position: center;
  height: 525px;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  body#home .banner {
    height: 400px;
  }
}
@media (max-width: 550px) {
  body#home .banner {
    height: 280px;
  }
}
@media (max-width: 400px) {
  body#home .banner {
    height: 220px;
  }
}
body#home .banner .logo {
  max-width: 415px;
  margin-top: 50px;
  margin-left: -15px;
}
@media (max-width: 991px) {
  body#home .banner .logo {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  body#home .banner .logo {
    margin-left: 10px;
  }
}
@media (max-width: 660px) {
  body#home .banner .logo {
    max-width: 260px;
  }
}
@media (max-width: 550px) {
  body#home .banner .logo {
    max-width: 220px;
  }
}
@media (max-width: 320px) {
  body#home .banner .logo {
    max-width: 166px;
  }
}
body#home .banner .logo img {
  width: 100%;
}
body#home .banner .banner-bottom {
  padding: 15px 0px 25px;
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: rgba(19, 26, 37, 0.9);
  color: white;
}
body#home .banner .banner-bottom .banner-title {
  color: white;
  font-family: 'Proxima N W01 Bold';
  font-size: 32px;
}
body#home .banner .banner-bottom .banner-title:hover {
  color: #308eca;
}
body#home .banner .banner-bottom .banner-summary {
  font-family: 'Proxima N W01 Light';
  font-size: 20px;
}
body#home .banner .banner-bottom .banner-summary .read {
  color: #308eca;
  text-transform: uppercase;
  font-size: 14px;
  margin-left: 15px;
  font-family: 'Proxima N W01 Bold';
}
body#home .banner .banner-bottom .banner-summary .read:hover {
  color: white;
}
.banner-bottom.visible-sm {
  padding: 15px 0px 25px;
  width: 100%;
  bottom: 0;
  background-color: rgba(19, 26, 37, 0.9);
  color: white;
}
.banner-bottom.visible-sm .banner-title {
  color: white;
  font-family: 'Proxima N W01 Bold';
  font-size: 32px;
}
@media (max-width: 750px) {
  .banner-bottom.visible-sm .banner-title {
    font-size: 26px;
  }
}
@media (max-width: 550px) {
  .banner-bottom.visible-sm .banner-title {
    font-size: 22px;
  }
}
@media (max-width: 320px) {
  .banner-bottom.visible-sm .banner-title {
    font-size: 19px;
    line-height: 19px;
  }
}
.banner-bottom.visible-sm .banner-title:hover {
  color: #308eca;
}
.banner-bottom.visible-sm .banner-summary {
  font-family: 'Proxima N W01 Light';
  font-size: 20px;
}
@media (max-width: 750px) {
  .banner-bottom.visible-sm .banner-summary {
    font-size: 18px;
  }
}
@media (max-width: 550px) {
  .banner-bottom.visible-sm .banner-summary {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .banner-bottom.visible-sm .banner-summary {
    font-size: 15px;
  }
}
.banner-bottom.visible-sm .banner-summary .read {
  color: #308eca;
  text-transform: uppercase;
  font-size: 14px;
  margin-left: 15px;
  font-family: 'Proxima N W01 Bold';
}
.banner-bottom.visible-sm .banner-summary .read:hover {
  color: white;
}
body:not(#home) {
  max-width: 1500px;
  margin: 0 auto;
}
#twitter {
  font-family: 'Proxima N W01 Bold';
  margin-top: 12px;
}
@media (max-width: 320px) {
  #twitter {
    margin-top: 55px;
  }
}
@media (max-width: 320px) {
  #twitter .item .user a span:first-child {
    display: block;
    text-align: center;
  }
}
#twitter span[data-scribe="element:name"] {
  display: none;
}
#twitter span[data-scribe="element:screen_name"] {
  color: #131a25;
  font-size: 18px;
}
@media (max-width: 750px) {
  #twitter span[data-scribe="element:screen_name"] {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  #twitter span[data-scribe="element:screen_name"] {
    font-size: 14px;
  }
}
#twitter span[data-scribe="element:screen_name"]:hover {
  color: #308eca;
}
#twitter span[data-scribe="element:verified_badge"] {
  margin-left: 18px;
}
@media (max-width: 320px) {
  #twitter span[data-scribe="element:verified_badge"] {
    margin-left: 0px;
  }
}
#twitter img[data-scribe="element:avatar"] {
  border-radius: 100px;
  height: 100px;
  width: 100px;
  position: relative;
  top: 30px;
}
@media (max-width: 320px) {
  #twitter img[data-scribe="element:avatar"] {
    top: -10px;
  }
}
@media (max-width: 320px) {
  #twitter .user {
    text-align: center;
  }
}
#twitter .tweet {
  margin-left: 123px;
  margin-top: -31px;
  margin-bottom: 52px;
}
@media (max-width: 320px) {
  #twitter .tweet {
    margin-left: 0px;
    margin-top: 0px;
    text-align: center;
  }
}
#twitter .tweet a {
  color: #131a25;
  font-size: 28px;
}
@media (max-width: 750px) {
  #twitter .tweet a {
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  #twitter .tweet a {
    font-size: 20px;
  }
}
#twitter .tweet a:hover {
  color: #308eca;
}
.press#press {
  background-color: #f2f3f3;
  padding: 28px 0px 35px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.press#press .press-title {
  font-family: 'Proxima N W01 Bold';
  font-size: 21px;
  color: #4b545c;
}
.press#press .press-title:hover {
  color: #056db3;
}
@media (max-width: 1200px) {
  .press#press .press-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .press#press .press-title {
    font-size: 20px;
    margin-top: 50px;
  }
}
.press#press .date {
  font-size: 12px;
  text-transform: uppercase;
  color: #4b545c;
}
@media (max-width: 767px) {
  .press#press .col-sm-4:first-child .press-title {
    font-size: 20px;
    margin-top: 0px;
  }
}
#office-locations {
  display: inline-block;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  #office-locations {
    width: 100%;
  }
}
@media (max-width: 320px) {
  #office-locations .col-xs-6,
  #office-locations .col-sm-6 {
    width: 100%;
    text-align: center;
  }
}
#office-locations h2 {
  color: #4b545c;
  margin-bottom: 30px;
}
@media (max-width: 320px) {
  #office-locations h2 {
    text-align: center;
  }
}
#office-locations .location {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
}
#office-locations .office {
  margin-bottom: 30px;
  display: block;
  color: #4b545c;
}
@media (max-width: 430px) {
  #office-locations .office {
    height: 200px;
  }
}
@media (max-width: 400px) {
  #office-locations .office {
    height: 220px;
  }
}
@media (max-width: 365px) {
  #office-locations .office {
    height: 255px;
  }
}
#office-locations .office a {
  text-transform: uppercase;
  font-family: 'Proxima N W01 Bold';
  font-size: 12px;
}
@media (max-width: 530px) {
  #office-locations .address {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  #office-locations .map {
    width: 102%;
    position: relative;
    top: 82px;
    left: 2px;
  }
}
@media (max-width: 991px) {
  #office-locations .map {
    display: none;
  }
}
#office-locations svg {
  position: absolute;
  top: 0;
  width: 103%;
  fill: transparent;
}
@media (max-width: 991px) {
  #office-locations svg {
    display: none;
  }
}
@media (max-width: 1200px) {
  #office-locations svg {
    top: -7px;
    height: 531px;
    width: 468px;
  }
}
#office-locations svg path#Upstate:hover {
  fill: url(#Upstate-pattern);
  cursor: pointer;
}
#office-locations svg path#Midlands:hover {
  fill: url(#Midlands-pattern);
  cursor: pointer;
}
#office-locations svg path#Lowcountry:hover {
  fill: url(#Lowcountry-pattern);
  cursor: pointer;
}
.circles {
  width: 100%;
  height: 450px;
  position: absolute;
  z-index: 2;
}
@media (max-width: 991px) {
  .circles {
    display: none;
  }
}
.circles .circle {
  background: #308eca;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  display: inline-block;
  border: 2px solid white;
  z-index: 4;
  position: absolute;
  transition: 0.2s ease-in all;
}
.circles .circle:hover {
  transform: scale(1.7);
}
.circles .circle#Midlands {
  top: 131px;
  left: 299px;
}
@media (max-width: 1200px) {
  .circles .circle#Midlands {
    top: 185px;
    left: 235px;
  }
}
.circles .circle#Upstate {
  top: 72px;
  left: 152px;
}
@media (max-width: 1200px) {
  .circles .circle#Upstate {
    top: 134px;
    left: 115px;
  }
}
.circles .circle#Lowcountry {
  top: 285px;
  left: 414px;
}
@media (max-width: 1200px) {
  .circles .circle#Lowcountry {
    top: 309px;
    left: 316px;
  }
}
#office-locations.Upstate .circle#Upstate {
  transform: scale(1.7);
}
#office-locations.Upstate .office#Upstate .location {
  color: #308eca;
}
#office-locations.Upstate path#Upstate {
  fill: url(#Upstate-pattern);
  cursor: pointer;
}
#office-locations.Midlands .circle#Midlands {
  transform: scale(1.7);
}
#office-locations.Midlands .office#Midlands .location {
  color: #308eca;
}
#office-locations.Midlands path#Midlands {
  fill: url(#Midlands-pattern);
  cursor: pointer;
}
#office-locations.Lowcountry .circle#Lowcountry {
  transform: scale(1.7);
}
#office-locations.Lowcountry .office#Lowcountry .location {
  color: #308eca;
}
#office-locations.Lowcountry path#Lowcountry {
  fill: url(#Lowcountry-pattern);
  cursor: pointer;
}
body#home {
  background-color: #eaeaea;
}
body#home .max-content {
  background-color: #fff;
}
div[data-scribe="component:author"] {
  display: inline-block;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
body.no-breadcrumbs #breadcrumb a {
  display: none;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
.toggle-btn.active,
.btn-block.hover {
  background-color: #dee9ef !important;
}
#breadcrumb a {
  color: #bdbfbf;
  text-transform: uppercase;
  font-family: 'Proxima N W01 Light';
  font-size: 14px;
}
#breadcrumb a:hover {
  color: #308eca;
}
.vote-btn {
  background-color: #308eca;
  color: white;
  border: 0px;
  font-size: 23px;
}
#voting_record .headers {
  font-size: 16px;
  color: #666;
}
#voting_record .pagination .pages {
  float: left;
  width: auto;
}
#voting_record .pagination .pages_nav {
  float: right;
  width: auto;
  clear: none;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#search-thomas-pod {
  margin-top: 25px;
  font-size: 24px;
}
@media (max-width: 991px) {
  #search-thomas-pod {
    display: inline-block;
    width: 100%;
  }
}
#asides h1 {
  font-size: 24px;
}
#side-search-btn {
  padding: 1px !important;
  margin-top: 2px !important;
}
#filterbuttons a {
  background-color: transparent;
  color: #308eca;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #1c5478;
}
body#voting_record #main_container #main_container {
  padding: 0px;
}
.votingtable th {
  font-size: 18px !important;
  font-family: 'Proxima N W01 Bold';
}
#sam-main ul {
  padding-left: 22px;
}
#sam-main ul li {
  margin-bottom: 15px;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 140px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #A7C2D3;
  font-weight: bold;
  text-align: center;
  color: white;
  transition: 0.3s background-color ease-in;
}
#listblocks .block a .media-heading {
  top: 2px;
  float: none;
}
#listblocks .block a:hover {
  background-color: #8facbd;
}
body.no-banner img.banner {
  display: none;
}
.button-background.has-background#listblocks {
  background-size: cover;
  background-position: right;
  display: inline-block;
  margin-left: -15px;
  width: 100%;
}
@media (max-width: 767px) {
  .button-background.has-background#listblocks {
    width: 100%;
  }
}
.button-background.has-background#listblocks .help-block {
  margin: 0;
  padding: 0;
  border: 15px solid white;
}
.button-background.has-background#listblocks .help-block .block {
  margin-bottom: 0px ;
  display: table;
  height: 155px;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .button-background.has-background#listblocks .help-block .block {
    height: 125px;
  }
}
.button-background.has-background#listblocks .help-block .block a {
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
  color: white;
  background-color: rgba(70, 171, 234, 0.57);
  transition: 0.3s ease-in background-color;
}
.button-background.has-background#listblocks .help-block .block a:hover {
  background-image: none;
  background-color: rgba(3, 110, 178, 0.75);
}
@media (max-width: 479px) {
  .button-background.has-background#listblocks .help-block .block a {
    font-size: 24px;
    line-height: 26px;
  }
}
body:not(#home) {
  background-color: #f2f3f3;
}
#content {
  background-color: white;
  padding-bottom: 50px;
}
#typenav li a {
  color: #131a25;
}
#typenav li.active a {
  color: white;
  background-color: #dee9ef;
}
#typenav.affix {
  top: 0;
}
body#about {
  background-color: white;
}
body#about .banner {
  height: 600px;
  background-position: top;
  overflow: hidden;
  width: 100%;
  background-size: cover;
}
@media (max-width: 991px) {
  body#about .banner {
    height: 550px;
  }
}
@media (max-width: 767px) {
  body#about .banner {
    height: 350px;
  }
}
@media (max-width: 550px) {
  body#about .banner {
    height: 250px;
  }
}
body#about .banner .container,
body#about .banner .col-md-4 {
  height: 100%;
}
@media (max-width: 1200px) {
  body#about .banner h3 {
    margin-top: 0px;
  }
}
body#about .banner .right-side {
  background-color: rgba(19, 26, 37, 0.88);
  color: white;
  float: right;
  height: 100%;
  width: 100%;
  padding: 40px 30px;
}
body#about .banner .right-side:after {
  width: 300px;
  height: 100%;
  content: '';
  display: inline-block;
  background-color: rgba(19, 26, 37, 0.88);
  right: -300px;
  right: -285px;
  position: absolute;
  top: 0;
}
body#about .banner .right-side p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 27px;
}
body#about .banner .right-side p:last-child {
  font-size: 16px;
  line-height: 21px;
}
body#about .banner .right-side p a {
  font-weight: bold;
}
body#about .right-side.mobile {
  background-color: rgba(19, 26, 37, 0.88);
  color: white;
  width: 100%;
  padding: 40px 30px;
  padding-top: 10px;
}
body#about .right-side.mobile #sam-fact {
  column-count: 2;
}
@media (max-width: 489px) {
  body#about .right-side.mobile #sam-fact {
    column-count: 1;
  }
}
body#about h3 {
  font-size: 26px;
}
body#about #sam-committee ul {
  list-style-image: url('/themes/scott/images/star.png');
  padding-left: 20px;
}
body#about #sam-committee ul li {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 27px;
}
body#about .opportunity-btn {
  font-size: 40px;
  text-align: center;
  margin-top: -42px;
  width: 100%;
  height: 220px;
  background-color: #308eca;
  color: white;
  background-image: url(/themes/scott/images/plant.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-position-x: 20px;
  display: table;
  cursor: pointer;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  body#about .opportunity-btn {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  body#about .opportunity-btn {
    font-size: 28px;
    height: 175px;
  }
}
@media (max-width: 767px) {
  body#about .opportunity-btn {
    margin: 0;
  }
}
body#about .opportunity-btn .text {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Proxima N W01 Bold';
  line-height: 30px;
}
body#about .opportunity-btn .text a {
  color: white;
}
body#about .opportunity-btn .text .agenda {
  font-size: 33px;
  letter-spacing: 2px;
}
@media (max-width: 1200px) {
  body#about .opportunity-btn .text .agenda {
    font-size: 17px;
    letter-spacing: 4px;
  }
}
@media (max-width: 991px) {
  body#about .opportunity-btn .text .agenda {
    font-size: 15px;
    letter-spacing: 2px;
  }
}
body#about .opportunity-btn .text .agenda.small {
  font-size: 13px;
  letter-spacing: 3px;
  line-height: 14px;
  margin-bottom: 13px;
  margin-top: -15px;
}
@media (max-width: 1200px) {
  body#about .opportunity-btn .text .agenda.small {
    font-size: 16px;
    letter-spacing: 2px;
  }
}
@media (max-width: 991px) {
  body#about .opportunity-btn .text .agenda.small {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
body#about .opportunity-btn .text p {
  line-height: 31px;
}
body#about .opportunity-btn:hover {
  background-color: #056db3;
}
.newsroom_landing .main_page_title {
  font-size: 25px;
  margin-top: 15px;
}
.newsroom_landing #breadcrumb {
  margin: 0;
  height: 0px;
}
.newsroom_landing #content {
  padding-bottom: 0px;
}
.newsroom_landing #main_container,
.newsroom_landing .one_column,
.newsroom_landing #main_column,
.newsroom_landing #main_column > .row {
  height: 100%;
}
.newsroom_landing #header {
  border-bottom: 0 !important;
}
.newsroom_landing footer {
  margin-top: 0 !important;
}
.newsroom_landing .more {
  text-transform: uppercase;
}
.newsroom_landing .col-sm-3 {
  background-color: #E3EAF0;
  margin-top: -10px;
  height: 100%;
  padding-top: 27px;
  margin-left: -20px;
  background-size: 584px;
  background-repeat: no-repeat;
  background-position-y: 85%;
  background-attachment: fixed;
  padding-left: 15px;
}
.newsroom_landing .col-sm-3:before {
  background-color: #E3EAF0;
  height: calc(100% + 20px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: inline-block;
  z-index: -1;
}
.newsroom_landing .col-sm-3 #typenav li a {
  font-size: 15px;
}
@media (max-width: 991px) {
  .newsroom_landing .col-sm-3 #typenav li a {
    padding: 10px 8px;
    font-size: 14px;
  }
}
.newsroom_landing .col-sm-3 #typenav li.active a,
.newsroom_landing .col-sm-3 #typenav li:hover a {
  background-color: white;
  color: #131a25;
  border-left: 5px solid #308eca;
}
.newsroom_landing .col-sm-9 {
  padding-bottom: 50px;
  padding-left: 40px;
  padding-top: 10px;
}
#opportunity #sam-main p {
  margin-bottom: 50px;
  font-size: 21px;
  line-height: 38px;
  text-align: center;
}
#opportunity .opportunity-banner {
  position: relative;
  height: 350px;
  z-index: 1;
  width: 100%;
  top: -1px;
  overflow: hidden;
  margin-bottom: 60px;
}
#opportunity .opportunity-banner .background {
  width: 100%;
  position: absolute;
  height: 100%;
  filter: blur(3px);
  background-size: cover;
}
#opportunity .opportunity-banner .table-display {
  position: relative;
  height: 100%;
  width: 100%;
  text-align: center;
  color: white;
  background-color: rgba(75, 84, 92, 0.52);
}
#opportunity .opportunity-banner .table-display h1 {
  letter-spacing: 0px;
  font-size: 100px;
  background-image: url(/themes/scott/images/plant.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 50%;
  padding-top: 50px;
}
@media (max-width: 625px) {
  #opportunity .opportunity-banner .table-display h1 {
    font-size: 67px;
  }
}
@media (max-width: 479px) {
  #opportunity .opportunity-banner .table-display h1 {
    font-size: 47px;
  }
}
#opportunity .opportunity-banner .table-display h1 .small-title {
  display: block;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 21px;
  position: relative;
  display: inline-block;
  top: -57px;
}
@media (max-width: 625px) {
  #opportunity .opportunity-banner .table-display h1 .small-title {
    font-size: 20px;
    top: -35px;
  }
}
@media (max-width: 479px) {
  #opportunity .opportunity-banner .table-display h1 .small-title {
    font-size: 16px;
    top: -24px;
    letter-spacing: 9px;
  }
}
#opportunity .opportunity-banner .table-display h1 .small-title:before {
  content: '';
  display: inline-block;
  height: 1px;
  width: 134px;
  background-color: white;
  position: absolute;
  left: -147px;
  top: 18px;
}
@media (max-width: 625px) {
  #opportunity .opportunity-banner .table-display h1 .small-title:before {
    width: 71px;
    left: -82px;
    top: 11px;
  }
}
@media (max-width: 479px) {
  #opportunity .opportunity-banner .table-display h1 .small-title:before {
    width: 61px;
    left: -71px;
    top: 8px;
  }
}
#opportunity .opportunity-banner .table-display h1 .small-title:after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 134px;
  background-color: white;
  position: absolute;
  right: -132px;
  top: 18px;
}
@media (max-width: 625px) {
  #opportunity .opportunity-banner .table-display h1 .small-title:after {
    width: 71px;
    right: -67px;
    top: 11px;
  }
}
@media (max-width: 479px) {
  #opportunity .opportunity-banner .table-display h1 .small-title:after {
    width: 57px;
    left: -60px;
    top: 8px;
  }
}
#opportunity .block-container {
  max-width: 1100px;
  margin: 0 auto;
}
#opportunity #breadcrumb {
  display: none;
}
#opportunity .issue-block {

  margin-bottom: 30px;
  background-color: #f0f7fa;

}

#opportunity .block-container .issue-block {
  background-color: #f0f7fa;
  padding: 40px 30px;
  margin-bottom: 30px;
  min-height: 560px;
  width: 100%;
  display: table;
}

#opportunity .issue-block.odd-block {
min-height: auto;

}


#opportunity .issue-block .media-heading {
  margin-top: 25px;
  margin-bottom: 20px;
}
#opportunity .issue-block .media-heading a {
  color: #4b545c;
}
#opportunity .issue-block p {
  color: #4b545c;
  margin-bottom: 0;
}
#opportunity .issue-block .table-display {
  height: 100%;
}


@media (max-width: 991px) {
  #opportunity .issue-block.odd-block .other-half {
    width: 100%;
    display: inline-block;
  }
  #opportunity .issue-block.odd-block .other-half .imgholder {
    width: 100%;
    display: inline-block;
  }
  #opportunity .issue-block .other-half {
    width: 100%;
    display: inline-block;
  }
  #opportunity .issue-block .other-half .imgholder{
    width: 100%;
    display: inline-block;
  }

}
#opportunity .issue-block.odd-block .media-body {
  padding-left: 30px;
}
@media (max-width: 991px) {
  #opportunity .issue-block.odd-block .media-body {
    padding-left: 0px;
  }
}
#opportunity .light-grey {
  background-color: #f2f3f3;
}
#opportunity .youtube {
  text-align: center;
  padding: 50px;
}
#opportunity .youtube h2 {
  color: #4b545c;
  margin-top: 0px;
  margin-bottom: 30px;
}
#opportunity .youtube .innervideo {
  max-width: 700px;
  margin: 0 auto;
}
#opportunity .related-press {
  padding: 40px;
  max-width: 900px;
  margin: 20px auto;
}
#opportunity .related-press h2 {
  text-align: center;
  color: #4b545c;
  margin-bottom: 45px;
}
#opportunity .related-press h3 {
  margin-top: 4px;
  margin-bottom: 40px;
  line-height: 32px;
}
#opportunity .related-press h3 a {
  color: #4b545c;
}
#opportunity .related-press h3 a:hover {
  color: #308eca;
}
#opportunity .other-issues {
  margin: 50px 0px;
}
#opportunity .other-issues .issue-container {
  max-width: 1000px;
  margin: 0 auto;
}
#opportunity .other-issues h2 {
  color: #4b545c;
  margin-bottom: 25px;
  text-align: center;
}
#opportunity .other-issues .issue-block {
  width: 100%;
  height: 80px;
  padding: 0px;
  color: #4b545c;
  text-align: center;
}
#opportunity .other-issues .issue-block h3 {
  font-size: 22px;
}
#opportunity .other-issues .issue-block:hover {
  background-color: #308eca !important;
  color: white;
}
#opportunity .other-issues .col-md-4:nth-child(6n+0) .issue-block {
  background-color: #f0f7fa;
}
#opportunity .other-issues .col-md-4:nth-child(4n+0) .issue-block {
  background-color: #dee9ef;
}
#opportunity .other-issues .col-md-4:nth-child(5n+1) .issue-block {
  background-color: #c2d6e1;
}
li.news p a {
  margin-left: 10px;
}
.feedback-form {
  display: none;
  margin-top: 95px;
}
@media (max-width: 330px) {
  #office-locations #officelocationrow {
    width: 100%!important;
  }
}
@media (max-width: 330px) {
  #office-locations #officelocationrow .office {
    text-align: center;
  }
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: -3px;
  position: relative;
}
body#media-view #content {
  color: white;
  background: #131a25;
}
body#media-view #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}
body#media-view #featured-details-header a {
  color: #fff;
}
body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}
body#media-view #featured-details-description {
  color: #fff;
}
body#media-view #featured-details-description .main_page_title {
  color: #fff;
}
body#media-view #featured-details-description p {
  line-height: 25px;
}
body#media-view #share-footer a {
  color: #dee9ef;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons li {
  float: right;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #308eca;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #dee9ef;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #308eca;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #dee9ef;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #308eca;
}
#multimedia-browser .row .media-thumbnail a {
  color: #131a25;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #308eca;
}
#share-footer {
  display: none;
}
body#multimedia.new #breadcrumb {
  display: none;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #content {
  overflow: hidden;
}
body#multimedia.new #video-content {
  background-color: #131a25;
  padding: 40px 80px;
  position: relative;
}
@media (max-width: 991px) {
  body#multimedia.new #video-content {
    padding: 40px 0px;
  }
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #131a25;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #131a25;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}
body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-family: 'Proxima N W01 Bold';
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  color: #308eca !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}
@media (max-width: 991px) {
  body#multimedia.new #multimedia-browser {
    padding: 40px 0px;
  }
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #308eca;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #308eca !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #dee9ef;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
body#multimedia.new #multimedia-browser legend {
  display: none;
}
body#multimedia.new #multimedia-browser .loading div#search-results-header {
  display: none;
}
body#multimedia.new #multimedia-browser .status {
  background-color: #dee9ef;
  color: #fff;
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #308eca;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #131a25;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #131a25;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #dee9ef;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #dee9ef;
}
body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}
body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #131a25;
  height: 165px;
  overflow: hidden;
  font-family: 'Proxima N W01 Bold';
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #308eca;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #131a25;
  font-family: 'Proxima N W01 Bold';
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #308eca;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #308eca;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 0px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
body footer {
  background-color: #131a25;
}
body footer .footer-container {
  text-align: center;
  padding: 60px 0px 75px;
}
body footer .footer-ul.footernav {
  text-align: center;
  display: inline-block;
}
body footer .footer-ul.footernav li {
  padding: 0px 15px 0px;
  text-align: center;
}
@media (max-width: 650px) {
  body footer .footer-ul.footernav li {
    padding: 2px 15px 14px;
  }
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
  font-family: 'Proxima N W01 Bold';
  text-transform: uppercase;
  font-size: 18px;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: none;
  color: #308eca;
}
body footer .social-list {
  display: inline-block;
  margin: 0 30px;
}
@media (max-width: 430px) {
  body footer .social-list {
    display: block;
    margin-bottom: 20px;
  }
}
body footer .social-list li a {
  background-color: white;
  color: #131a25;
}
body footer .social-list li a:hover {
  background-color: #308eca;
  color: white;
}
body footer .subfooternav {
  /*float:left;*/
  display: inline-block;
}
body footer .subfooternav a {
  color: white;
  font-family: 'Proxima N W01 Light';
  text-transform: uppercase;
  font-size: 12px;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav a:hover {
  text-decoration: none;
  color: #308eca;
}
body footer .subfooternav li {
  padding-top: 3px;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
#flagForm #flag-options .head {
  background-color: #308eca;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
font-family:'Proxima N W01 Bold';
font-family:'Proxima N W01 Light';
font-family:'Proxima N W01 Reg';

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.bold {
  font-family: 'Proxima N W01 Bold';
}
.light {
  font-family: 'Proxima N W01 Light';
}
.regular {
  font-family: 'Proxima N W01 Reg';
}
.grey,
.gray {
  color: #4b545c;
}
body {
  font-size: 18px;
  font-family: 'Proxima N W01 Reg';
  margin: 0 auto;
}
.max-content {
  max-width: 1500px;
  margin: 0 auto;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Proxima N W01 Bold';
}
.section-header {
  margin-bottom: 45px;
}
.section-header a {
  color: #131a25;
  font-size: 30px;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #308eca;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #1c5478;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 0px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 27px;
}
#press .date,
.blog-entry .date,
.video .date {
  font-size: 14px;
  text-transform: uppercase;
  color: #4b545c;
  font-family: 'Proxima N W01 Reg';
}
h2.title {
  margin-top: 7px;
  font-size: 26px;
}
h2.title a {
  color: #4b545c;
}
h2.title a:hover {
  color: #308eca;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #308eca;
  color: white;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #1c5478;
  color: white;
}
.btn-lrg,
.feedback-block .cell {
  padding: 20px;
  font-size: 22px;
  font-weight: 600;
  background-color: #A7C2D3 !important;
}
.btn-lrg:hover,
.feedback-block .cell:hover {
  background-color: #8facbd !important;
}
.feedback-block .cell {
  height: 300px;
  text-align: center;
  padding: 40px;
  margin-bottom: 30px;
  color: white;
  display: table;
  width: 100%;
}
.feedback-block .cell h1 {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}
/*interior page content default styles */
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.option1 {
  color: #4b545c;
}
.option1 .imglogo {
  width: 80px;
  display: inline-block;
}
.option1 .imglogo img {
  width: 100%;
}
.option1 .title h1 {
  display: inline-block;
  position: relative;
  top: 6px;
  left: 20px;
  color: #4b545c;
}
.option1 .title {
  margin-bottom: 20px;
}
.option1 input {
  height: 50px;
  width: 100%;
}
.option1 label {
  margin-top: 10px;
  font-size: 15px;
  color: #4b545c;
}
.option1 input[type='submit'] {
  margin-top: 35px;
  font-size: 22px;
  text-transform: uppercase;
  font-family: 'Proxima N W01 Bold';
}
#popupModal .modal-backdrop.in {
  background-color: rgba(27, 26, 26, 0.45);
}
#popupModal .modal-dialog {
  width: 639px;
  margin: 13% auto;
}
#popupModal .modal-content {
  border: 0px;
}
#popupModal .modal-body {
  background-color: #f2f3f3;
  padding: 15px 30px 0;
  border: 20px solid #318ec9;
}
#popupModal .modal-body iframe {
  width: 100%;
  border: 0px;
  height: 400px;
}
#popupModal button.close {
  font-size: 62px;
  color: white;
  z-index: 19000;
  position: absolute;
  opacity: 1;
  right: 30px;
  top: 15px;
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie #office-locations svg {
  top: -18px;
  width: 95%;
}
@media (max-width: 1200px) {
  .ie #office-locations svg {
    top: -8px;
  }
}
.ie .notie {
  display: none !important;
}
.ie .circles .circle#Midlands {
  top: 121px;
  left: 279px;
}
@media (max-width: 1200px) {
  .ie .circles .circle#Midlands {
    top: 185px;
    left: 235px;
  }
}
.ie .circles .circle#Upstate {
  top: 63px;
  left: 133px;
}
@media (max-width: 1200px) {
  .ie .circles .circle#Upstate {
    top: 134px;
    left: 115px;
  }
}
.ie .circles .circle#Lowcountry {
  top: 259px;
  left: 367px;
}
@media (max-width: 1200px) {
  .ie .circles .circle#Lowcountry {
    top: 309px;
    left: 316px;
  }
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
@media print {
  body#about .banner .right-side,
  body#about .banner,
  .opportunity-btn {
    display: none !important;
  }
}


.iframeholder{
  display: block;
  padding-top: 50%;
  position: relative;
}

.iframeholder iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%!important;
  height: 100%!important;
  display: block;
}

.faqsection{
  border-top: 10px solid rgba(0, 0, 0, 0.05);
  border-bottom: 10px solid rgba(0, 0, 0, 0.05);
  display: table;
  width: 100%;
  padding: 1.5rem 0rem;
  margin-bottom: 5rem;
  margin-top: 5rem;

}

@media (max-width:767px){
  .faqsection{
    display: table;
    width: 100%;
    padding: 0px;
  }
}

.faqsection .faqheader{

  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 34px;
  font-weight: bold;
  color: #363636;

}

.faqsection .panel{
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}


.faqsection .panel-heading{
  color: #363636;
  background-color: transparent;
  border-color: #308eca;
  border-radius: 0;
  border: 0;
  border-bottom: 5px solid #308eca;
}

.faqsection .panel-title{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  color: #363636;
}

.faqsection .panel-heading a{

  text-decoration: none;
  display: block;

}

.faqsection .panel-heading a:hover .panel-title{
  color: #363636;
}

.faqsection .panel-heading .panel-title{
  color: #363636;
}

.faqsection .panel-heading .panel-title .pull-right .fa{
  color: #363636;
}

.faqsection .panel-collapse .panel-body{
  border-bottom: 5px solid #f8f8f9;
}

.faqsection .panel-collapse .panel-body ul{
margin-top: 10px;
}


.faqsection .panel-collapse .panel-body p{
  margin-bottom: 10px;
}

.faqsection .panel-collapse .panel-body .photo-hold .imgitem{
  width: 100%;
  max-width: 25%;
  float: left;
  margin: .5rem;
}

.faqsection .panel-collapse .panel-body .photo-hold .imgitem .img-hold{
  position: relative;
  display: block;
  overflow: hidden;
  padding: 40%;
}

.faqsection .panel-collapse .panel-body .photo-hold .imgitem .img-hold .image_square{
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

