/* 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;
}
body.nobreadcrumbs #breadcrumb {
  display: none;
}
img.banner {
  position: relative;
  display: block;
}
.alert {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  background-color: #c50404;
  color: #ffffff;
  border-radius: 0px;
  width: 100%;
  margin: 0 auto;
}
.alert a {
  color: white;
  display: block;
  margin-top: -1px;
  margin-bottom: -1px;
  font-size: 20px;
  cursor: pointer;
}
.alert a:hover {
  color: #ffffff;
}
.alert.announcement {
  background-color: #698db6;
}
.alert.announcement a {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: white;
}
.alert.announcement:hover {
  background-color: #2b5279;
}
.alert.featured {
  position: absolute;
}
.alert.interior a {
  padding: 0px 45px;
}
@media (max-width: 767px) {
  .alert.interior a {
    padding: 0px 15px;
  }
}
body {
  background-color: #ebeded;
  max-width: 1800px;
  margin: 0 auto;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in,
.modal .fade.in {
  background: #698db6;
  background: -moz-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: -webkit-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: linear-gradient(to bottom, #698db6 0%, #2c537a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#698db6', endColorstr='#2c537a', GradientType=0);
}
#NavMobileModal .fade.in.btn:hover,
#SearchModal .fade.in.btn:hover,
#ContactModal .fade.in.btn:hover,
.modal .fade.in.btn:hover {
  background-color: #698db6;
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close,
.modal .modal-dialog .modal-content .close {
  opacity: 1;
  margin-right: 27px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a,
.modal .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,
.modal .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,
.modal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #2b5279;
}
#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,
.modal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #101f2e;
}
body #header {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #ffffff;
  border-top: 25px solid #2b5279;
  box-shadow: 0px 5px rgba(99, 96, 96, 0.2);
}
@media (max-width: 991px) {
  body #header {
    height: auto;
  }
}
body #header a.logo-hold {
  width: 100%;
  max-width: 450px;
  position: absolute;
  display: block;
  margin-left: 40px;
}
@media (max-width: 1300px) {
  body #header a.logo-hold {
    margin-left: -20px;
  }
}
@media (max-width: 1200px) {
  body #header a.logo-hold {
    max-width: 330px;
    margin-top: 16px;
  }
}
@media (max-width: 991px) {
  body #header a.logo-hold {
    max-width: 370px;
  }
}
@media (max-width: 767px) {
  body #header a.logo-hold {
    margin-left: 0px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
@media (max-width: 500px) {
  body #header a.logo-hold .logo-img {
    display: none;
  }
}
body #header a.logo-hold .mobile-logo {
  display: none;
}
@media (max-width: 500px) {
  body #header a.logo-hold .mobile-logo {
    display: block;
    margin-left: -120px;
  }
}
body #header .nav-hold {
  position: relative;
}
body #header .nav-hold #newsletterbutton {
  position: absolute;
  top: -25px;
  right: 2em;
  padding: 5px 10px;
  display: table;
  vertical-align: middle;
  border: none;
  border-radius: 0px;
}
@media (max-width: 991px) {
  body #header .nav-hold #newsletterbutton {
    right: 5px;
  }
}
body #header .nav-hold #newsletterbutton .fa {
  font-size: 34px;
  padding-right: 5px;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  body #header .nav-hold #newsletterbutton .fa {
    padding-right: 0px;
  }
}
body #header .nav-hold #newsletterbutton .text {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  font-size: 12px;
}
#issue-banner {
  height: 700px;
  background-size: cover;
  width: 100%;
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  transition: height 0.2s ease-in-out;
}
@media (max-width: 991px) {
  #issue-banner {
    height: 400px;
  }
}
@media (max-width: 767px) {
  #issue-banner {
    height: 330px;
  }
}
@media (max-width: 580px) {
  #issue-banner {
    height: 260px;
  }
}
@media (max-width: 430px) {
  #issue-banner {
    height: 200px;
  }
}
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: #434343;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li a {
    font-size: 18px;
    padding: 10px;
  }
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #ffffff;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #434343;
  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: #698db6;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #ffffff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  /*color: @yellow;*/
  color: #698db6;
}
body .navbar .togglemenu {
  color: #434343;
  font-size: 35px;
  position: relative;
  top: 12px;
}
@media (max-width: 390px) {
  body .navbar .togglemenu {
    font-size: 29px;
  }
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #434343;
  font-size: 28px;
  position: relative;
  top: 9px;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
@media (max-width: 390px) {
  body .navbar .srchbuttonmodal {
    font-size: 23px;
  }
}
body .navbar .srchbutton {
  color: #434343;
}
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: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 40px;
}
#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 20px 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 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: white;
}
#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;
  margin-right: 15px;
}
@media (max-width: 500px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    margin-right: 0;
  }
}
#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: 15px;
  position: relative;
  top: 3px;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}
@media (max-width: 1200px) {
  #header .nav-hold.right-slide-search .srchbutton,
  #header .nav-hold.right-search-modal .srchbutton {
    right: -12px;
    top: 16px;
    font-size: 14px;
  }
}
#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: #ffffff;
  color: #434343;
  border-bottom: 3px solid #434343;
}
#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: #434343;
}
#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: #434343;
}
#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: #434343;
}
#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: #434343;
}
#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: #ffffff;
  color: #434343;
  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;
  font-size: 15px;
  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;
}
@keyframes slideInFromLeft {
  0% {
    padding-left: 240px;
  }
  100% {
    padding-left: 180px;
  }
}
#home .toparea {
  position: relative;
  overflow: hidden;
}
#home .toparea .banner {
  text-align: right;
  background-position: left center;
  background-repeat: no-repeat;
  display: block;
  height: 500px;
  max-width: 1175px;
  width: 100%;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media (max-width: 1680px) {
  #home .toparea .banner {
    max-width: 1285px;
    background-position-x: -200px;
  }
}
@media (max-width: 1500px) {
  #home .toparea .banner {
    max-width: 1000px;
    background-position-x: -125px;
  }
}
@media (max-width: 1330px) {
  #home .toparea .banner {
    max-width: 800px;
    background-position-x: 0px;
  }
}
@media (max-width: 991px) {
  #home .toparea .banner {
    height: 350px;
    background-size: cover;
    background-position-x: 0px;
    background-position-y: -125px;
    max-width: 100%;
    position: relative;
  }
}
@media (max-width: 767px) {
  #home .toparea .banner {
    background-position: right center;
  }
}
#home .toparea .help-overlay {
  float: right;
  width: 46%;
  background: #fdfdfe;
  background: -moz-linear-gradient(top, #fdfdfe 0%, #ebedf0 100%);
  background: -webkit-linear-gradient(top, #fdfdfe 0%, #ebedf0 100%);
  background: linear-gradient(to bottom, #fdfdfe 0%, #ebedf0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfe', endColorstr='#ebedf0', GradientType=0);
  text-align: center;
  display: inline-block;
  padding: 100px 180px 104px 0px;
  -ms-transform: skew(20deg);
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg);
  margin-right: -90px;
}
@media (max-width: 1500px) {
  #home .toparea .help-overlay {
    width: 55%;
  }
}
@media (max-width: 1200px) {
  #home .toparea .help-overlay {
    padding: 100px 180px 125px 0px;
  }
}
#home .toparea .help-overlay .help-title {
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
  -ms-transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
}
@media (max-width: 1200px) {
  #home .toparea .help-overlay .help-title {
    font-size: 52px;
    line-height: 49px;
  }
}
#home .toparea .help-overlay .help-title span {
  display: block;
}
#home .toparea .help-overlay .help-title .light-blue {
  margin-bottom: 50px;
}
#home .toparea .help-overlay a {
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  max-width: 230px;
  font-size: 20px;
  border: 0px;
  border-radius: 5px;
  display: block;
  padding: 10px 20px;
  margin: 0 auto;
  margin-bottom: 15px;
}
#home .toparea .help-overlay a:hover {
  background: #2b5279;
}
#home .toparea .help-overlay.mobile {
  background: #fdfdfe;
  background: -moz-linear-gradient(top, #fdfdfe 0%, #ebedf0 100%);
  background: -webkit-linear-gradient(top, #fdfdfe 0%, #ebedf0 100%);
  background: linear-gradient(to bottom, #fdfdfe 0%, #ebedf0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfe', endColorstr='#ebedf0', GradientType=0);
  display: inline-block;
  width: 100%;
  float: none;
  padding: 40px 60px;
  transform: skew(0deg);
  animation: none;
}
@media (max-width: 905px) {
  #home .toparea .help-overlay.mobile {
    padding: 25px 20px;
  }
}
#home .toparea .help-overlay.mobile .help-title {
  text-transform: uppercase;
  font-size: 42px;
  transform: skew(0deg);
}
@media (max-width: 905px) {
  #home .toparea .help-overlay.mobile .help-title {
    text-align: center;
  }
}
@media (max-width: 450px) {
  #home .toparea .help-overlay.mobile .help-title {
    font-size: 36px;
  }
}
@media (max-width: 390px) {
  #home .toparea .help-overlay.mobile .help-title {
    font-size: 29px;
  }
}
@media (max-width: 905px) {
  #home .toparea .help-overlay.mobile .help-title .text {
    display: block;
  }
}
#home .toparea .help-overlay.mobile a {
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  max-width: 230px;
  font-size: 18px;
  border: 0px;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  #home .toparea .help-overlay.mobile a {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  #home .toparea .help-overlay.mobile a {
    font-size: 13px;
    padding: 10px 13px;
  }
}
#home #press {
  padding: 70px 80px;
  background-color: white;
}
@media (max-width: 991px) {
  #home #press {
    padding: 40px 0px;
  }
}
#home #press .wrap {
  color: #434343;
  margin-top: 30px;
  display: block;
}
@media (max-width: 991px) {
  #home #press .wrap {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  #home #press .wrap {
    margin-top: 30px;
  }
}
#home #press .wrap .press-title span {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  display: block;
  margin-top: 9px;
}
@media (max-width: 920px) {
  #home #press .wrap .press-title span {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  #home #press .wrap .press-title span {
    margin-top: 3px;
  }
}
#home #press .wrap:hover .press-title span {
  color: #698db6;
}
.contact {
  background-image: url(/themes/kaine/images/mountain.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.contact .contact-container {
  max-width: 660px;
  width: 100%;
  padding: 70px 20px 100px;
  margin: 0px auto;
  text-align: center;
}
@media (max-width: 560px) {
  .contact .contact-container {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 70px;
  }
}
.contact .contact-container #newsletterfields {
  background-color: rgba(97, 133, 174, 0.61960784);
  padding: 1em;
  font-size: 18px;
  border-radius: 10px;
}
.contact .contact-container #newsletterfields .selectallcheck {
  font-size: 18px;
  text-align: left;
}
.contact .contact-container #newsletterfields .selectallcheck input[type=checkbox] {
  width: auto;
  height: auto;
  padding: 0px;
  padding-top: 2px;
  margin: 4px 0 0;
  display: inline-block;
}
.contact .contact-container #newsletterfields .selectallcheck label {
  display: inline;
  position: relative;
  top: 2px;
  left: 0.5em;
  max-width: 100%;
  margin-bottom: 5px;
}
.contact .button-container a {
  background-color: #698db6;
  color: white;
  height: 90px;
  width: 90px;
  margin: 0 40px 70px;
  display: inline-block;
  border-radius: 90px;
  text-align: center;
  padding-top: 34px;
  font-size: 15px;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}
@media (max-width: 560px) {
  .contact .button-container a {
    margin: 0 10px 50px;
  }
}
@media (max-width: 390px) {
  .contact .button-container a {
    height: 79px;
    width: 79px;
    padding-top: 30px;
    font-size: 13px;
    margin: 0 4px 50px;
  }
}
.contact .button-container a:hover {
  background-color: #2b5279;
}
.contact .lead {
  text-align: center;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 560px) {
  .contact .lead {
    font-size: 19px;
  }
}
.contact .lead .black {
  font-size: 44px;
  margin-bottom: 10px;
}
@media (max-width: 560px) {
  .contact .lead .black {
    font-size: 36px;
  }
}
@media (max-width: 450px) {
  .contact .lead .black {
    line-height: 30px;
    margin-bottom: 26px;
  }
}
.contact .lead img {
  display: block;
  margin: 40px auto;
}
.contact .lead textarea {
  width: 100%;
  height: 260px;
  color: #434343;
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
@media (max-width: 560px) {
  .contact .lead textarea {
    height: 150px;
  }
}
.contact .lead textarea::-webkit-input-placeholder {
  color: #bbbaba;
}
.contact .lead textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #bbbaba;
}
.contact .lead textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #bbbaba;
}
.contact .lead textarea:-ms-input-placeholder {
  color: #bbbaba;
}
.contact .lead .hidden-form {
  max-height: 0px;
  overflow: hidden;
  transition: all 3s ease-in;
}
.contact .lead .hidden-form h2 {
  font-weight: 600;
  margin: 43px auto;
}
.contact .lead .hidden-form select,
.contact .lead .hidden-form input {
  width: 100%;
  height: 55px;
  padding: 5px 17px;
  margin-top: 13px;
  font-size: 17px;
  font-weight: 300;
}
.contact .lead .hidden-form select::-webkit-input-placeholder,
.contact .lead .hidden-form input::-webkit-input-placeholder {
  color: black;
  font-size: 17px;
}
.contact .lead .hidden-form select:-moz-placeholder,
.contact .lead .hidden-form input:-moz-placeholder {
  /* Firefox 18- */
  color: black;
  font-size: 17px;
}
.contact .lead .hidden-form select::-moz-placeholder,
.contact .lead .hidden-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
  font-size: 17px;
}
.contact .lead .hidden-form select:-ms-input-placeholder,
.contact .lead .hidden-form input:-ms-input-placeholder {
  color: black;
  font-size: 17px;
}
.contact .lead .hidden-form select {
  padding: 5px;
  font-size: 16px;
  line-height: 1;
  border-radius: 0px;
  height: 55px;
  background: url('/themes/baldwin/images/br_down.png') no-repeat right white;
  -webkit-appearance: none;
  background-position-x: 98%;
}
.contact .lead .hidden-form label {
  margin-top: -73px;
  margin-bottom: 10px;
  font-weight: 700;
  vertical-align: middle;
}
.contact .lead .hidden-form.show-form {
  max-height: 10000px;
  margin-top: 60px;
  margin: 0 auto;
}
.contact input[type=submit] {
  margin-top: 30px;
  padding: 12px 50px;
  color: white;
  font-size: 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background: #698db6;
  background: -moz-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: -webkit-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: linear-gradient(to bottom, #698db6 0%, #2c537a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#698db6', endColorstr='#2c537a', GradientType=0);
  display: none;
  border: 0;
}
.contact input[type=submit].btn:hover {
  background-color: #698db6;
  color: white;
}
.contact input {
  color: black;
}
.contact .checkbox-container {
  font-size: 18px;
  text-align: left;
}
.contact .checkbox-container input[type=checkbox] {
  width: auto;
  height: auto;
  padding: 0px;
  padding-top: 2px;
  margin: 4px 0 0;
  display: inline-block;
}
.contact .checkbox-container label {
  display: inline;
  position: relative;
  top: 2px;
  left: 0.5em;
  max-width: 100%;
  margin-bottom: 5px;
}
#office-locations {
  background-color: #ffffff;
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1100px) {
  #office-locations {
    padding: 70px 60px;
  }
}
#office-locations .offset {
  width: 75%;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  #office-locations .offset {
    width: 100%;
  }
}
@media (max-width: 479px) {
  #office-locations .col-sm-4.col-xs-6 {
    width: 100%;
  }
}
#office-locations .section-header {
  line-height: 29px;
  margin-bottom: 0;
}
#office-locations .section-header:before {
  bottom: -15px;
}
#office-locations .office {
  min-height: 180px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  z-index: 3;
}
#office-locations .office span {
  text-transform: uppercase;
}
#office-locations .office a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}
#office-locations .office a:hover {
  color: #698db6;
}
@media (max-width: 1100px) {
  #office-locations .office {
    font-size: 15px;
  }
}
@media (max-width: 462px) {
  #office-locations .office {
    min-height: auto;
    margin-bottom: 40px;
  }
}
#office-locations .map {
  position: absolute;
  bottom: 10px;
  right: -332px;
  max-width: 700px;
  z-index: 1;
}
@media (max-width: 1100px) {
  #office-locations .map {
    transform: scale(0.8);
  }
}
@media (max-width: 991px) {
  #office-locations .map {
    transform: scale(0.6);
  }
}
@media (max-width: 900px) {
  #office-locations .map {
    display: none;
  }
}
#office-locations .circles {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#office-locations .circles .circle {
  width: 25px;
  height: 25px;
  border-radius: 30px;
  background-color: #2b5279;
  display: inline-block;
  position: absolute;
  color: transparent;
  text-align: center;
  padding-top: 2px;
}
#office-locations .circles .circle:hover {
  color: white;
}
#office-locations .circles .circle#Richmond {
  top: 167px;
  right: 169px;
}
#office-locations .circles .circle#Roanoke {
  top: 193px;
  left: 308px;
}
#office-locations .circles .circle#Danville {
  bottom: 0;
  left: 362px;
}
#office-locations .circles .circle#VirginiaBeach {
  right: 50px;
  top: 238px;
}
#office-locations .circles .circle#Manassas {
  top: 57px;
  right: 170px;
}
#office-locations .circles .circle#Abingdon {
  bottom: 10px;
  left: 147px;
}
#office-locations.Richmond .circle#Richmond {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
#office-locations.Richmond .office#Richmond span {
  color: #698db6;
}
#office-locations.Roanoke .circle#Roanoke {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
#office-locations.Roanoke .office#Roanoke span {
  color: #698db6;
}
#office-locations.Danville .circle#Danville {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
#office-locations.Danville .office#Danville span {
  color: #698db6;
}
#office-locations.VirginiaBeach .circle#VirginiaBeach {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
#office-locations.VirginiaBeach .office#VirginiaBeach span {
  color: #698db6;
}
#office-locations.Manassas .circle#Manassas {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
#office-locations.Manassas .office#Manassas span {
  color: #698db6;
}
#office-locations.Abingdon .circle#Abingdon {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
#office-locations.Abingdon .office#Abingdon span {
  color: #698db6;
}
/*
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;
}
body.no-title .main_page_title {
  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: #2b5279 !important;
}
#breadcrumb a {
  color: #ebeded;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #698db6;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#search-thomas_pod {
  margin-top: 85px;
}
#filter-legislation {
  margin: 0;
  margin-top: 90px;
}
#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;
}
#filterbuttons a {
  background-color: transparent;
  color: #698db6;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #3d5a7c;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #2b5279;
  font-weight: bold;
  color: white;
  transition: 0.3s background-color ease-in;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #698db6;
}
#typenav li a {
  color: #434343;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
#typenav li.active a {
  color: white;
  background-color: #698db6;
}
#typenav.affix {
  top: 0;
}
#content {
  background-color: white;
}
body:not(#home) #main_container {
  padding: 9px 45px;
}
@media (max-width: 600px) {
  body:not(#home) #main_container {
    padding: 10px 15px;
  }
}
body:not(#home) .hasbanner #main_container {
  padding: 0px 45px;
}
#newscontent .summary a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}
#newscontent #press h1.main_page_title:before {
  display: none;
}
#newscontent.article .breakout .recentnewssection .newsitem {
  min-height: 200px;
}
body#about,
#esabout {
  /* Firefox < 16 */
  /* Safari, Chrome and Opera > 12.1 */
  /* Internet Explorer */
  /* Opera < 12.1 */
}
body#about #breadcrumb,
#esabout #breadcrumb {
  display: none;
}
body#about #main_container,
#esabout #main_container {
  padding: 0 60px;
}
@media (max-width: 600px) {
  body#about #main_container,
  #esabout #main_container {
    padding: 0 30px;
  }
  body#about #main_container #bionavitems li,
  #esabout #main_container #bionavitems li {
    display: block;
  }
  body#about #main_container #bionavitems li a.btn,
  #esabout #main_container #bionavitems li a.btn {
    width: 100%;
    font-size: 18px;
  }
  body#about #main_container #bionavitems li:not(:first-child),
  #esabout #main_container #bionavitems li:not(:first-child) {
    margin-top: 10px;
  }
}
body#about .main_page_title,
#esabout .main_page_title {
  display: none;
}
body#about .shaded,
#esabout .shaded {
  background-color: #f7f8fa;
}
@media (max-width: 767px) {
  body#about .bioimagecol,
  #esabout .bioimagecol {
    display: none;
  }
}
body#about .col-md-9,
#esabout .col-md-9 {
  padding-left: 0px;
}
body#about .aboutSubTitle,
#esabout .aboutSubTitle {
  color: #2b5279;
}
body#about .section-header,
#esabout .section-header {
  display: block;
}
body#about .no-margin,
#esabout .no-margin {
  margin-top: 0;
}
body#about #content,
#esabout #content {
  margin-top: 0px;
}
@media (max-width: 667px) {
  body#about .bioimageblock img,
  #esabout .bioimageblock img {
    display: none;
  }
}
body#about #firstblock,
#esabout #firstblock {
  padding: 40px 0px 0px;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 28px;
}
body#about #firstblock p,
#esabout #firstblock p {
  line-height: 43px;
}
body#about .topbiobanner,
#esabout .topbiobanner {
  position: relative;
  display: block;
  height: 700px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: height 0.2s ease-in-out;
}
@media (max-width: 991px) {
  body#about .topbiobanner,
  #esabout .topbiobanner {
    height: 400px;
  }
}
@media (max-width: 767px) {
  body#about .topbiobanner,
  #esabout .topbiobanner {
    height: 330px;
  }
}
@media (max-width: 580px) {
  body#about .topbiobanner,
  #esabout .topbiobanner {
    height: 260px;
  }
}
@media (max-width: 430px) {
  body#about .topbiobanner,
  #esabout .topbiobanner {
    height: 200px;
  }
}
body#about .topbiobanner .overlay-image,
#esabout .topbiobanner .overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-position: left;
  height: 100%;
  background-image: url(/themes/kaine/images/overlay.jpg);
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  body#about .topbiobanner .overlay-image,
  #esabout .topbiobanner .overlay-image {
    display: none;
  }
}
body#about .topbiobanner .overlay,
#esabout .topbiobanner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 60px 50px;
}
@media (max-width: 991px) {
  body#about .topbiobanner .overlay,
  #esabout .topbiobanner .overlay {
    top: 0px;
  }
}
body#about .topbiobanner .overlay h3,
#esabout .topbiobanner .overlay h3 {
  color: white;
}
body#about .topbiobanner .overlay #sam-bio-list-right,
#esabout .topbiobanner .overlay #sam-bio-list-right {
  color: #fff;
}
body#about .topbiobanner .overlay #sam-bio-list-right p,
#esabout .topbiobanner .overlay #sam-bio-list-right p {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 30px;
}
@media (max-width: 991px) {
  body#about .topbiobanner .overlay #sam-bio-list-right p,
  #esabout .topbiobanner .overlay #sam-bio-list-right p {
    font-size: 16px;
    line-height: 20px;
  }
}
body#about .topbiobanner .overlay #sam-bio-list-right p a,
#esabout .topbiobanner .overlay #sam-bio-list-right p a {
  color: #698db6;
}
body#about .topbiobanner .overlay #sam-bio-list-right p a:hover,
#esabout .topbiobanner .overlay #sam-bio-list-right p a:hover {
  text-decoration: underline;
}
body#about .topbiobanner .overlay #sam-bio-list-right p .portraitlink,
#esabout .topbiobanner .overlay #sam-bio-list-right p .portraitlink,
body#about .topbiobanner .overlay #sam-bio-list-right p .biolink,
#esabout .topbiobanner .overlay #sam-bio-list-right p .biolink {
  font-size: 14px;
}
@media (max-width: 1199px) {
  body#about .topbiobanner .overlay #sam-bio-list-right,
  #esabout .topbiobanner .overlay #sam-bio-list-right {
    padding-top: 1em;
  }
}
body#about .topbiobanner .overlay .biobuttons,
#esabout .topbiobanner .overlay .biobuttons {
  margin-top: 10px;
}
body#about .topbiobanner .overlay .biobuttons a,
#esabout .topbiobanner .overlay .biobuttons a {
  padding: 5px;
  margin-bottom: 5px;
  max-width: 260px;
  font-size: 20px;
}
body#about .withalert,
#esabout .withalert {
  margin-top: 110px;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body#about .bioblocks,
#esabout .bioblocks {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}
body#about .bioblocks .is-hidden,
#esabout .bioblocks .is-hidden {
  visibility: hidden;
}
body#about .bioblocks .is-hidden:after,
#esabout .bioblocks .is-hidden:after {
  height: 0%;
  overflow: hidden;
}
body#about .bioblocks .bounce-in,
#esabout .bioblocks .bounce-in {
  visibility: visible;
  -webkit-animation: fadein 0.8s;
  -moz-animation: fadein 0.8s;
  animation: fadein 0.8s;
}
body#about .bioblocks .bounce-in:after,
#esabout .bioblocks .bounce-in:after {
  height: 100%;
  transition: height 1s;
  transition-delay: 0.8s;
}
@media (max-width: 991px) {
  body#about .bioblocks .bounce-in:after,
  #esabout .bioblocks .bounce-in:after {
    display: none;
  }
}
body#about .bioblocks:first-child,
#esabout .bioblocks:first-child {
  margin-top: 70px;
}
body#about .bioblocks:first-child .bio-image:before,
#esabout .bioblocks:first-child .bio-image:before {
  display: none;
}
body#about table.bioblocks td,
#esabout table.bioblocks td {
  vertical-align: top;
  padding-top: 50px;
}
@media (max-width: 450px) {
  body#about table.bioblocks td,
  #esabout table.bioblocks td {
    display: block;
  }
}
body#about table.bioblocks .bio-col,
#esabout table.bioblocks .bio-col {
  padding-left: 50px;
  padding-top: 43px;
}
@media (max-width: 500px) {
  body#about table.bioblocks .bio-col,
  #esabout table.bioblocks .bio-col {
    padding-left: 30px;
  }
}
@media (max-width: 450px) {
  body#about table.bioblocks .bio-col,
  #esabout table.bioblocks .bio-col {
    padding-left: 0px;
  }
}
body#about table.bioblocks .bio-image,
#esabout table.bioblocks .bio-image {
  position: relative;
}
body#about table.bioblocks .bio-image:after,
#esabout table.bioblocks .bio-image:after {
  content: '';
  display: block;
  width: 1px;
  background-color: #434343;
  position: absolute;
  top: 50px;
  right: 100px;
  z-index: 0;
}
@media (max-width: 767px) {
  body#about table.bioblocks .bio-image:after,
  #esabout table.bioblocks .bio-image:after {
    right: 80px;
  }
}
@media (max-width: 500px) {
  body#about table.bioblocks .bio-image:after,
  #esabout table.bioblocks .bio-image:after {
    right: 50px;
  }
}
@media (max-width: 450px) {
  body#about table.bioblocks .bio-image:after,
  #esabout table.bioblocks .bio-image:after {
    display: none;
  }
}
body#about table.bioblocks .bio-image img,
#esabout table.bioblocks .bio-image img {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  body#about table.bioblocks .bio-image img,
  #esabout table.bioblocks .bio-image img {
    width: 150px;
  }
}
@media (max-width: 500px) {
  body#about table.bioblocks .bio-image img,
  #esabout table.bioblocks .bio-image img {
    width: 100px;
  }
}
@media (max-width: 450px) {
  body#about table.bioblocks .bio-image img,
  #esabout table.bioblocks .bio-image img {
    width: 100%;
  }
}
body#about table.bioblocks .bio-image .caption,
#esabout table.bioblocks .bio-image .caption {
  background-color: white;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 1;
  top: -80px;
  transition: 0.2s ease-in-out all;
  font-size: 15px;
  display: block;
}
@media (max-width: 450px) {
  body#about table.bioblocks .bio-image .caption,
  #esabout table.bioblocks .bio-image .caption {
    top: 0px;
  }
}
body#about table.bioblocks .bio-image .image:hover .caption,
#esabout table.bioblocks .bio-image .image:hover .caption {
  top: 0px;
}
body#about table.bioblocks tr:last-child .bio-image:after,
#esabout table.bioblocks tr:last-child .bio-image:after {
  display: none;
}
body#about #sam-bio-image,
#esabout #sam-bio-image {
  padding: 0 25px;
}
body#about .biobottomarea #bionavitems,
#esabout .biobottomarea #bionavitems {
  display: block;
  margin: 0 auto;
}
body#about .biobottomarea #bionavitems li,
#esabout .biobottomarea #bionavitems li {
  display: inline-block;
}
@media (max-width: 991px) {
  body#about .biobottomarea #bionavitems li,
  #esabout .biobottomarea #bionavitems li {
    display: block;
  }
}
body#about .biobottomarea #bionavitems li a,
#esabout .biobottomarea #bionavitems li a {
  color: white;
  width: 250px;
  padding: 13px;
  font-size: 20px;
  margin-right: 20px;
  display: block;
  background: #698db6;
  background: -moz-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: -webkit-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: linear-gradient(to bottom, #698db6 0%, #2c537a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#698db6', endColorstr='#2c537a', GradientType=0);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
body#about .biobottomarea #bionavitems li a.btn:hover,
#esabout .biobottomarea #bionavitems li a.btn:hover {
  background-color: #698db6;
  color: white;
}
body#about .biobottomarea #bionavitems li a:hover,
#esabout .biobottomarea #bionavitems li a:hover {
  background-color: #2b5279 !important;
  background: #2b5279 !important;
}
@media (max-width: 1200px) {
  body#about .biobottomarea #bionavitems li a,
  #esabout .biobottomarea #bionavitems li a {
    width: 100%;
  }
}
@media (max-width: 991px) {
  body#about .biobottomarea #bionavitems li a,
  #esabout .biobottomarea #bionavitems li a {
    margin-bottom: 10px;
  }
}
.committee-assignments .section-header {
  max-width: auto;
  display: inline-block;
  font-size: 24px;
}
.committee-assignments .section-header:before {
  display: none;
}
.committee-assignments .committee-links a {
  border: 1px solid #698db6;
  margin-bottom: 40px;
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.committee-assignments .committee-links a:hover {
  background-color: #698db6;
  color: white;
}
table.staff td {
  padding: 10px;
}
table.staff tr:nth-child(odd) {
  background-color: #f1f5fa;
}
table.staff tr.divider {
  background-color: white;
  height: 120px;
  vertical-align: bottom;
}
table.staff tr.divider strong {
  padding-bottom: 30px;
  display: block;
}
#tours a.tours-btn {
  width: 450px;
  padding: 13px;
  font-size: 20px;
}
@media (max-width: 540px) {
  #tours a.tours-btn {
    width: auto;
    white-space: normal;
  }
}
#contact .connectButton > a {
  padding: 50px;
  border-radius: 0px;
}
@media (max-width: 540px) {
  #contact .connectButton > a {
    white-space: normal;
  }
}
#contact .connectButton {
  margin-bottom: 1.5em;
}
#flag-requests .btn.btn-block {
  padding: 13px;
  font-size: 20px;
  background: #698db6;
  background: -moz-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: -webkit-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: linear-gradient(to bottom, #698db6 0%, #2c537a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#698db6', endColorstr='#2c537a', GradientType=0);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
#flag-requests .btn.btn-block.btn:hover {
  background-color: #698db6;
  color: white;
}
#grant #grant-form {
  width: 100%;
}
#grant .btn.btn-block {
  width: 100%;
  padding: 15px;
  font-size: 20px;
  max-width: 300px;
}
body#priorities .ih-item.circle {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 0px;
  margin-bottom: 30px;
  cursor: pointer;
}
body#priorities .ih-item.circle .img {
  width: 100%;
  height: 370px;
  border-radius: 0px;
  background-repeat: no-repeat;
  background-size: cover;
}
body#priorities .ih-item.circle .img:before {
  border-radius: 0px;
  box-shadow: inset 0 0 0 12em rgba(104, 141, 182, 0.75);
}
body#priorities .ih-item.circle .img .filter h2 {
  margin: 140px auto;
  text-align: center;
  position: absolute;
  display: block;
  padding: 5px;
  width: 100%;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  body#priorities .ih-item.circle .img .filter h2 {
    font-size: 36px;
  }
}
@media (max-width: 411px) {
  body#priorities .ih-item.circle .img .filter h2 {
    font-size: 22px;
  }
}
body#priorities .ih-item.circle a {
  cursor: pointer;
}
body#priorities .ih-item.circle .info {
  border-radius: 0px;
}
body#priorities .ih-item.circle .info h3 {
  height: auto;
  font-size: 32px;
  padding: 0px 18px;
  padding-top: 20px;
  margin: 0 auto;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}
body#priorities .ih-item.circle .info .info-back {
  border-radius: 0px;
  background: #2b5279;
  text-align: left;
}
@media (max-width: 1199px) {
  body#priorities .ih-item.circle .info .info-back h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.circle .info .info-back h3 {
    font-size: 32px;
  }
}
body#priorities .ih-item.circle .info .info-back p {
  margin: 0px 10px;
  line-height: 24px;
  font-style: normal;
  color: #fff;
  font-size: 16px;
  border-top: none;
}
@media (max-width: 1199px) {
  body#priorities .ih-item.circle .info .info-back p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.circle .info .info-back p {
    font-size: 16px;
    line-height: 24px;
  }
}
body#priorities .ih-item.circle .info .info-back .bottommore {
  color: white;
  position: absolute;
  right: 1em;
  bottom: 10px;
}
body#listblocksbg .list-block .block a .media-heading,
body#listblocksbg .list-block .block a .media-heading-desc {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}
body#listblocksbg .list-block .block {
  height: 150px;
}
#asides h1 {
  font-size: 20px;
}
#asides .facebookheader {
  position: relative;
  display: block;
  padding: 10px 22px;
  text-align: center;
}
@media (max-width: 1329px) {
  #asides .facebookheader {
    padding: 10px 0px;
  }
}
@media (max-width: 991px) {
  #asides .facebookheader {
    text-align: center;
  }
}
#asides .facebookheader .facebookfeedbutton {
  background-color: #f6f7f9;
  padding: 5px 10px;
  width: 100%;
}
#asides .facebookheader .facebookfeedbutton span {
  color: #4167b2;
  font-weight: bold;
  margin-right: 15px;
}
#asides .facebookheader .facebookfeedbutton .fa {
  padding: 2px 5px;
  background-color: #4167b2;
  color: white;
  font-size: 16px;
  border: 1px solid #4167b2;
}
#asides .facebookheader .facebookfeedbutton:hover {
  background-color: #4167b2;
}
#asides .facebookheader .facebookfeedbutton:hover span {
  color: white;
}
#asides .facebookheader .facebookfeedbutton:hover .fa {
  background-color: white;
  color: #4167b2;
}
#asides .fb-iframe-widget {
  width: 100%!important;
  text-align: center!important;
}
body.newsroom #asides {
  margin-top: 155px;
}
@media (max-width: 991px) {
  body.newsroom #asides {
    margin-top: 25px;
  }
}
@media (max-width: 375px) {
  body.newsroom #asides {
    left: 0px;
    width: 100%;
  }
}
body.newsroom #asides .facebookheader {
  position: relative;
  display: block;
  padding: 10px 22px;
}
@media (max-width: 1329px) {
  body.newsroom #asides .facebookheader {
    padding: 10px 0px;
  }
}
@media (max-width: 991px) {
  body.newsroom #asides .facebookheader {
    text-align: center;
  }
}
body.newsroom #asides .facebookheader .facebookfeedbutton {
  background-color: #f6f7f9;
  padding: 5px 10px;
  width: 100%;
}
body.newsroom #asides .facebookheader .facebookfeedbutton span {
  color: #4167b2;
  font-weight: bold;
  margin-right: 15px;
}
body.newsroom #asides .facebookheader .facebookfeedbutton .fa {
  padding: 2px 5px;
  background-color: #4167b2;
  color: white;
  font-size: 16px;
  border: 1px solid #4167b2;
}
body.newsroom #asides .facebookheader .facebookfeedbutton:hover {
  background-color: #4167b2;
}
body.newsroom #asides .facebookheader .facebookfeedbutton:hover span {
  color: white;
}
body.newsroom #asides .facebookheader .facebookfeedbutton:hover .fa {
  background-color: white;
  color: #4167b2;
}
body.newsroom #asides .fb-iframe-widget {
  width: 100%!important;
  text-align: center!important;
}
body#agencyhelp #breadcrumb,
#ayuda #breadcrumb {
  position: absolute;
  z-index: 100;
}
body#agencyhelp #content,
#ayuda #content {
  padding-bottom: 0px!important;
}
body#agencyhelp #content #main_column,
#ayuda #content #main_column {
  padding-top: 3em;
  background-color: #ffffff;
  padding-bottom: 10em;
}
@media (max-width: 1199px) {
  body#agencyhelp #content #main_column,
  #ayuda #content #main_column {
    padding-bottom: 22em;
  }
}
@media (max-width: 991px) {
  body#agencyhelp #content #main_column,
  #ayuda #content #main_column {
    padding-bottom: 5em;
  }
}
body#agencyhelp #content #main_column .sidepodmodalbtn,
#ayuda #content #main_column .sidepodmodalbtn {
  text-align: right;
  width: 100%;
  padding-bottom: 1em;
}
body#agencyhelp #content #main_column .sidepodmodalbtn a,
#ayuda #content #main_column .sidepodmodalbtn a {
  font-size: 22px;
  padding: 10px 20px;
}
body#agencyhelp #content #main_column .agencyblock,
#ayuda #content #main_column .agencyblock {
  background-color: #2b5279;
  padding: 0.8em;
  color: #ffffff;
  cursor: pointer;
  display: block;
  min-height: 150px;
  position: relative;
  vertical-align: middle;
  margin: 0 auto;
  margin-bottom: 1em;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
body#agencyhelp #content #main_column .agencyblock .backgroundimage,
#ayuda #content #main_column .agencyblock .backgroundimage {
  display: block;
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  opacity: 0.3;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
body#agencyhelp #content #main_column .agencyblock .agencyblocktitle,
#ayuda #content #main_column .agencyblock .agencyblocktitle {
  font-size: 30px;
  padding: 1em;
  text-align: center;
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  vertical-align: middle;
  width: 100%;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
body#agencyhelp #content #main_column .agencyblock .agencyblocktitle .title,
#ayuda #content #main_column .agencyblock .agencyblocktitle .title {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 460px) {
  body#agencyhelp #content #main_column .agencyblock .agencyblocktitle,
  #ayuda #content #main_column .agencyblock .agencyblocktitle {
    font-size: 26px;
    padding: 10px;
  }
}
body#agencyhelp #content #main_column .agencyblock .agencyblocksummary,
#ayuda #content #main_column .agencyblock .agencyblocksummary {
  opacity: 0;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s ease-in-out;
}
body#agencyhelp #content #main_column .agencyblock .agencyblocksummary p,
#ayuda #content #main_column .agencyblock .agencyblocksummary p {
  line-height: 20px;
}
body#agencyhelp #content #main_column .agencyblock:hover,
#ayuda #content #main_column .agencyblock:hover {
  background-color: #698db6;
}
body#agencyhelp #content #main_column .agencyblock:hover .backgroundimage,
#ayuda #content #main_column .agencyblock:hover .backgroundimage {
  opacity: 0;
}
@media (max-width: 991px) {
  body#agencyhelp #content #main_column .agencyblock:hover .agencyblocktitle,
  #ayuda #content #main_column .agencyblock:hover .agencyblocktitle {
    opacity: 1;
  }
}
body#agencyhelp #content #main_column.showingform,
#ayuda #content #main_column.showingform {
  padding-bottom: 5em;
}
body#agencyhelp #sideModal .modal-content .modal-header,
#ayuda #sideModal .modal-content .modal-header {
  border-bottom: none;
}
body#agencyhelp #sideModal .modal-content .modal-header .close,
#ayuda #sideModal .modal-content .modal-header .close {
  margin-top: 0px;
  font-size: 36px;
  display: block;
  position: relative;
  z-index: 1000;
}
body#agencyhelp #sideModal .modal-content .modal-body,
#ayuda #sideModal .modal-content .modal-body {
  padding: 1em 3em 3em;
}
body#agencyhelp #sideModal .modal-content .modal-body #asides,
#ayuda #sideModal .modal-content .modal-body #asides {
  color: #434343;
}
body#agencyhelp #sideModal .modal-content .modal-body #asides h1,
#ayuda #sideModal .modal-content .modal-body #asides h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  position: relative;
  color: #434343;
  font-size: 28px;
  margin-bottom: 30px;
}
body#agencyhelp #sideModal .modal-content .modal-body #asides h1 a,
#ayuda #sideModal .modal-content .modal-body #asides h1 a {
  color: #434343;
}
body#agencyhelp #sideModal .modal-content .modal-body #asides h1 a:hover,
#ayuda #sideModal .modal-content .modal-body #asides h1 a:hover {
  color: #698db6;
}
body#agencyhelp #sideModal .modal-content .modal-body #asides h1:before,
#ayuda #sideModal .modal-content .modal-body #asides h1:before {
  content: '';
  width: 70px;
  height: 9px;
  background-color: #698db6;
  display: inline-block;
  bottom: -12px;
  left: 0px;
  position: absolute;
}
body#agencyhelp #sideModal .modal-content .modal-body #asides .sidesnippet ul li,
#ayuda #sideModal .modal-content .modal-body #asides .sidesnippet ul li {
  font-size: 16px;
}
body#agencyhelp #sideModal .modal-content .modal-body #asides .sidesnippet ul li a,
#ayuda #sideModal .modal-content .modal-body #asides .sidesnippet ul li a {
  color: #434343;
  text-decoration: underline;
}
body#agencyhelp #sideModal .modal-content .modal-body #asides .sidesnippet ul li a:hover,
#ayuda #sideModal .modal-content .modal-body #asides .sidesnippet ul li a:hover {
  color: #698db6;
}
aside.links tr.hide-link {
  display: none;
}
aside.links td {
  vertical-align: top;
}
aside.links a {
  display: block;
  color: #434343;
  font-size: 21px;
  line-height: 28px;
  padding-right: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding-bottom: 40px;
}
aside.links a:hover {
  color: #698db6;
}
body#ayuda #content #main_column {
  padding-top: 3em;
  background-color: #ffffff;
  padding-bottom: 33em;
}
@media (max-width: 1329px) {
  body#ayuda #content #main_column {
    padding-bottom: 42em;
  }
}
@media (max-width: 1199px) {
  body#ayuda #content #main_column {
    padding-bottom: 68em;
  }
}
@media (max-width: 991px) {
  body#ayuda #content #main_column {
    padding-bottom: 5em;
  }
}
body#ayuda #content #main_column.showingform {
  padding-bottom: 5em;
}
body#offices #office-locations {
  background-color: #ffffff;
  padding: 70px 80px;
  position: relative;
}
@media (max-width: 1100px) {
  body#offices #office-locations {
    padding: 70px 60px;
  }
}
@media (max-width: 375px) {
  body#offices #office-locations {
    padding: 20px 10px;
  }
}
body#offices #office-locations .offset {
  width: 75%;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  body#offices #office-locations .offset {
    width: 100%;
  }
}
@media (max-width: 479px) {
  body#offices #office-locations .col-sm-4.col-xs-6 {
    width: 100%;
  }
}
body#offices #office-locations .section-header {
  line-height: 29px;
  margin-bottom: 0;
}
body#offices #office-locations .section-header:before {
  bottom: -15px;
}
body#offices #office-locations .office {
  min-height: 180px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  z-index: 3;
}
body#offices #office-locations .office span {
  text-transform: uppercase;
}
body#offices #office-locations .office a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}
body#offices #office-locations .office a:hover {
  color: #698db6;
}
@media (max-width: 1100px) {
  body#offices #office-locations .office {
    font-size: 15px;
  }
}
@media (max-width: 462px) {
  body#offices #office-locations .office {
    min-height: auto;
    margin-bottom: 40px;
  }
}
body#offices #office-locations .map {
  position: absolute;
  bottom: 10px;
  right: -332px;
  max-width: 700px;
  z-index: 1;
}
@media (max-width: 1100px) {
  body#offices #office-locations .map {
    transform: scale(0.8);
  }
}
@media (max-width: 991px) {
  body#offices #office-locations .map {
    transform: scale(0.6);
  }
}
@media (max-width: 900px) {
  body#offices #office-locations .map {
    display: none;
  }
}
body#offices #office-locations .circles {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
body#offices #office-locations .circles .circle {
  width: 25px;
  height: 25px;
  border-radius: 30px;
  background-color: #2b5279;
  display: inline-block;
  position: absolute;
  color: transparent;
  text-align: center;
  padding-top: 2px;
  transition: all 0.2s ease-in-out;
}
body#offices #office-locations .circles .circle .fa {
  margin-left: 5px;
}
body#offices #office-locations .circles .circle:hover {
  color: white;
}
body#offices #office-locations .circles .circle#Richmond {
  top: 167px;
  right: 169px;
}
body#offices #office-locations .circles .circle#Roanoke {
  top: 193px;
  left: 308px;
}
body#offices #office-locations .circles .circle#Danville {
  bottom: 0;
  left: 362px;
}
body#offices #office-locations .circles .circle#VirginiaBeach {
  right: 50px;
  top: 238px;
}
body#offices #office-locations .circles .circle#Manassas {
  top: 57px;
  right: 170px;
}
body#offices #office-locations .circles .circle#Abingdon {
  bottom: 10px;
  left: 147px;
}
body#offices #office-locations.Richmond .circle#Richmond {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
body#offices #office-locations.Richmond .office#Richmond span {
  color: #698db6;
}
body#offices #office-locations.Roanoke .circle#Roanoke {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
body#offices #office-locations.Roanoke .office#Roanoke span {
  color: #698db6;
}
body#offices #office-locations.Danville .circle#Danville {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
body#offices #office-locations.Danville .office#Danville span {
  color: #698db6;
}
body#offices #office-locations.VirginiaBeach .circle#VirginiaBeach {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
body#offices #office-locations.VirginiaBeach .office#VirginiaBeach span {
  color: #698db6;
}
body#offices #office-locations.Manassas .circle#Manassas {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
body#offices #office-locations.Manassas .office#Manassas span {
  color: #698db6;
}
body#offices #office-locations.Abingdon .circle#Abingdon {
  background-color: #698db6;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  text-align: center;
  color: white;
  padding-top: 4px;
}
body#offices #office-locations.Abingdon .office#Abingdon span {
  color: #698db6;
}
body#issue .recentnewssection .newsitem {
  min-height: 200px;
}
body#issue .recentnewssection .newsitem .title a:hover {
  color: #698db6;
}
@media (max-width: 414px) {
  #issues-form-select-list > div {
    float: none !important;
    width: 100% !important;
    font-size: 14px;
  }
}
body#staff-directory #sam-main {
  overflow-x: auto;
}
@supports (-ms-ime-align:auto) {
  /* IE Edge 12+ CSS */
  body#about .overlay-image {
    display: none !important;
  }
  body#about .overlay {
    background-color: #ffffff !important;
    padding: 15px !important;
    width: auto !important;
    top: 25px !important;
    left: 35px !important;
  }
  body#about .overlay .col-md-6 {
    width: 100% !important;
  }
  body#about .overlay h3,
  body#about .overlay p {
    color: black !important;
  }
}
/* Internet Explorer 10-11, Microsoft Edge */
_:-ms-lang(x) .overlay-image,
body#about .overlay-image {
  display: none !important;
}
_:-ms-lang(x) .overlay,
body#about .overlay {
  background-color: #ffffff !important;
  padding: 15px !important;
  width: auto !important;
  top: 25px !important;
  left: 35px !important;
}
_:-ms-lang(x) .overlay .col-md-6,
body#about .overlay .col-md-6 {
  width: 100% !important;
}
_:-ms-lang(x) .overlay h3,
body#about .overlay h3,
_:-ms-lang(x) .overlay p,
body#about .overlay p {
  color: black !important;
}
body#listblocksbg #sam-main-bottom #multilanguage .officelanguage {
  margin-bottom: 2em;
}
body#listblocksbg #sam-main-bottom #multilanguage .officelanguage .languages {
  min-height: 145px;
}
@media (max-width: 991px) {
  body#listblocksbg #sam-main-bottom #multilanguage .officelanguage .languages {
    min-height: auto;
  }
}
.upcoming-events .media-body h3 {
  margin-top: 0;
}
#kaine-connects {
  padding: 10px;
  background-color: #e2e9f2;
  width: 800px;
  margin: 0 auto;
}
#kaine-connects #map {
  position: relative;
  width: 100%;
  height: 335px;
  background: url(/themes/kaine/images/state-600.png);
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}
#kaine-connects #map .marker {
  display: inline-block;
  margin: 0;
  width: 14px;
  height: 14px;
  background: url(/themes/kaine/images/marker-large.png);
  cursor: pointer;
  z-index: 999;
}
#kaine-connects #map .marker-past {
  background: url(/themes/kaine/images/marker-large-past.png);
  z-index: 998;
}
#kaine-connects #map .popover-map {
  width: 350px;
  font-size: 12px;
}
#kaine-connects #map .popover-map .popover-title {
  margin: 0;
  padding: 8px 14px 0 14px;
  background: none;
  font-family: 'MyriadW08-BoldCondensed 1166610';
  font-size: 16px;
  line-height: 1;
  border: none;
  color: #233e5d;
}
#kaine-connects #map .popover-map .close {
  margin-right: 7px;
}
#kaine-connects #map .popover-map .popover-content {
  font-size: 12px;
  line-height: 1.3em;
}
#kaine-connects #map .popover-map .popover-content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3em;
}
#kaine-connects #map .popover-map .popover-content p + p {
  margin-top: 1em;
}
#kaine-connects #map .popover-map .popover-content .popover-img {
  float: left;
  margin: 0 1em 0 0;
  width: 100px;
  height: 85px;
  overflow: hidden;
}
#kaine-connects-legend {
  padding: 10px 20px;
  background-color: #698db6;
  background-image: -webkit-linear-gradient(top, #698db6, rgba(50, 81, 119, 0.3));
  background-image: -moz-linear-gradient(top, #698db6, rgba(50, 81, 119, 0.3));
  background-image: -o-linear-gradient(top, #698db6, rgba(50, 81, 119, 0.3));
  background-image: -ms-linear-gradient(top, #698db6, rgba(50, 81, 119, 0.3));
  background-image: linear-gradient(top, #698db6, rgba(50, 81, 119, 0.3));
}
#kaine-connects-legend ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#kaine-connects-legend ul li {
  float: left;
}
#kaine-connects-legend ul li .marker {
  display: inline-block;
  position: relative;
  top: 3px;
  margin: 0;
  width: 14px;
  height: 14px;
  background: url(/themes/kaine/images/marker-large.png);
}
#kaine-connects-legend ul li .marker-past {
  background: url(/themes/kaine/images/marker-large-past.png);
}
#kaine-connects-legend ul li span {
  font-size: 0.75em;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
#kaine-connects-legend ul li span b {
  color: #fff;
  letter-spacing: normal;
}
#kaine-connects-legend ul li span + span {
  margin-left: 0.75em;
}
#kaine-connects-legend ul li + li {
  margin-left: 1.3em;
}
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: #434343;
}
body#media-view #featured-details-header {
  color: #ffffff;
  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: #ffffff;
}
body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}
body#media-view #featured-details-description {
  color: #ffffff;
}
body#media-view #featured-details-description .main_page_title {
  color: #ffffff;
}
body#media-view #featured-details-description p {
  line-height: 25px;
}
body#media-view #share-footer a {
  color: #2b5279;
}
body#media-view #share-footer a:hover {
  color: #ffffff;
}
#share-buttons li {
  float: right;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #698db6;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #2b5279;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #698db6;
}
#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: #2b5279;
  color: #ffffff;
}
#multimedia-browser .pagination {
  background-color: #698db6;
}
#multimedia-browser .row .media-thumbnail a {
  color: #434343;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #698db6;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #video-content {
  background-color: #434343;
  padding: 40px 80px;
  position: relative;
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #434343;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #434343;
  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: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  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: #ffffff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #ffffff;
}
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: #2b5279 !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;
}
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 #698db6;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #698db6 !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #2b5279;
}
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: #2b5279;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  font-family: 'Roboto', sans-serif;
  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: #2b5279;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #434343;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #434343;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #2b5279;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #2b5279;
}
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: #434343;
  height: 165px;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #698db6;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #434343;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #698db6;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #698db6;
}
@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 70px;
  }
  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: #2b5279;
}
body footer .footer-ul.footernav {
  text-align: center;
}
body footer .footer-ul.footernav li {
  padding: 40px 15px 0px;
  text-align: center;
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #2b5279;
  padding-bottom: 50px;
}
body footer .subfooternav a {
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 12px;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
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;*/
}
body:not(#home) #content {
  padding-bottom: 50px;
}
#flagForm #flag-options .head {
  background-color: #698db6;
  color: #ffffff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

font-family:'NHaasGroteskTXW01-76BdI';
font-family:'NHaasGroteskDSW01-66MdI';
font-family:'NHaasGroteskDSW01-45Lt';
font-family:'NeueHaasGroteskText W01';
font-family:'NHaasGroteskTXW01-65Md';
font-family:'NHaasGroteskDSW01-56It';
font-family:'NHaasGroteskDSW01-96Blk';
font-family:'NHaasGroteskDSW01-65Md';
font-family:'NHaasGroteskDSW01-46LtI';
font-family:'NHaasGroteskTXW01-75Bd';
font-family:'NHaasGroteskTXW01-56It';
font-family:'NHaasGroteskTXW01-66MdI';
font-family:'NHaasGroteskDSW01-26ThI';
font-family:'NHaasGroteskDSW01-25Th';
font-family:'NHaasGroteskDSW01-95Blk';
font-family:'NeueHaasGroteskDisp W01';
font-family:'NHaasGroteskDSW01-36XLt';
font-family:'NHaasGroteskDSW01-15Ult';
font-family:'NHaasGroteskDSW01-76BdI';
font-family:'NHaasGroteskDSW01-35XLt';
font-family:'NHaasGroteskDSW01-16Ult';
font-family:'NHaasGroteskDSW01-75Bd';
font-family:'Rosella W01 Solid';
font-family:'Rosella W01 Hatched';
font-family:'Rosella W01 Inline';
font-family:'Rosella W01 Engraved';
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Roboto', sans-serif;

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @lightblue)
  above but make sure to assign these following site
  colors to them
*/
.light-blue {
  color: #698db6;
}
.dark-blue {
  color: #2b5279;
}
.white {
  color: white;
}
.white-gradient {
  background: #fdfdfe;
  background: -moz-linear-gradient(top, #fdfdfe 0%, #ebedf0 100%);
  background: -webkit-linear-gradient(top, #fdfdfe 0%, #ebedf0 100%);
  background: linear-gradient(to bottom, #fdfdfe 0%, #ebedf0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfe', endColorstr='#ebedf0', GradientType=0);
}
.blue-gradient {
  background: #698db6;
  background: -moz-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: -webkit-linear-gradient(top, #698db6 0%, #2c537a 100%);
  background: linear-gradient(to bottom, #698db6 0%, #2c537a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#698db6', endColorstr='#2c537a', GradientType=0);
}
.blue-gradient.btn:hover {
  background-color: #698db6;
  color: white;
}
.serif {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}
.sans,
.sans-serif {
  font-family: 'Roboto', sans-serif;
}
.regular {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.medium {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.black {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
}
.light-con {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
}
.regular-con {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
}
.bold-con {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}
body {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.section-header,
.main_page_title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  position: relative;
  color: #434343;
  font-size: 28px;
  margin-bottom: 30px;
}
.section-header a,
.main_page_title a {
  color: #434343;
}
.section-header a:hover,
.main_page_title a:hover {
  color: #698db6;
}
.section-header:before,
.main_page_title:before {
  content: '';
  width: 70px;
  height: 9px;
  background-color: #698db6;
  display: inline-block;
  bottom: -12px;
  left: 0px;
  position: absolute;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 22px;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #698db6;
  word-wrap: break-word;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #2b5279;
}
/* 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: 30px;
}
#press .date,
.blog-entry .date,
.video .date {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
h2.title {
  margin-top: 7px;
  color: #434343;
}
h2.title a {
  color: #434343;
}
/*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: #2b5279;
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  border-radius: 5px;
  text-transform: uppercase;
}
.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: #698db6;
  color: white;
}
.btn-block {
  font-size: 19px;
}
.btn-smallest {
  font-size: 18px!important;
  padding: 10px!important;
  float: none!important;
  margin-top: 0px!important;
}
/*interior page content default styles */
body#hurricane ul li {
  word-wrap: break-word;
}
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie body#about .overlay-image {
  display: none !important;
}
.ie body#about .overlay {
  background-color: #ffffff !important;
  padding: 15px !important;
  width: auto !important;
  top: 25px !important;
  left: 35px !important;
}
.ie body#about .overlay .col-md-6 {
  width: 100% !important;
}
.ie body#about .overlay h3,
.ie body#about .overlay p {
  color: black !important;
}
.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;
}
