/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}

/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

#TransitionExample:hover {
  opacity: 0;
}

/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}

/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(8%);
  }

  65% {
    transform: translateY(-4%);
  }

  80% {
    transform: translateY(4%);
  }

  95% {
    transform: translateY(-2%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    -webkit-transform: translateY(8%);
  }

  65% {
    -webkit-transform: translateY(-4%);
  }

  80% {
    -webkit-transform: translateY(4%);
  }

  95% {
    -webkit-transform: translateY(-2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }

  50% {
    transform: translateY(-8%);
  }

  65% {
    transform: translateY(4%);
  }

  80% {
    transform: translateY(-4%);
  }

  95% {
    transform: translateY(2%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }

  50% {
    -webkit-transform: translateY(-8%);
  }

  65% {
    -webkit-transform: translateY(4%);
  }

  80% {
    -webkit-transform: translateY(-4%);
  }

  95% {
    -webkit-transform: translateY(2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }

  50% {
    transform: translateX(-8%);
  }

  65% {
    transform: translateX(4%);
  }

  80% {
    transform: translateX(-4%);
  }

  95% {
    transform: translateX(2%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }

  50% {
    -webkit-transform: translateX(-8%);
  }

  65% {
    -webkit-transform: translateX(4%);
  }

  80% {
    -webkit-transform: translateX(-4%);
  }

  95% {
    -webkit-transform: translateX(2%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }

  50% {
    transform: translateX(8%);
  }

  65% {
    transform: translateX(-4%);
  }

  80% {
    transform: translateX(4%);
  }

  95% {
    transform: translateX(-2%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }

  50% {
    -webkit-transform: translateX(8%);
  }

  65% {
    -webkit-transform: translateX(-4%);
  }

  80% {
    -webkit-transform: translateX(4%);
  }

  95% {
    -webkit-transform: translateX(-2%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }

  30% {
    transform: translateY(-8%) scaleX(0.5);
  }

  40% {
    transform: translateY(2%) scaleX(0.5);
  }

  50% {
    transform: translateY(0%) scaleX(1.1);
  }

  60% {
    transform: translateY(0%) scaleX(0.9);
  }

  70% {
    transform: translateY(0%) scaleX(1.05);
  }

  80% {
    transform: translateY(0%) scaleX(0.95);
  }

  90% {
    transform: translateY(0%) scaleX(1.02);
  }

  100% {
    transform: translateY(0%) scaleX(1);
  }
}

@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }

  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }

  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }

  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }

  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }

  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }

  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }

  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }

  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}

/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }

  60% {
    transform: translateY(-7%) scaleY(1.12);
  }

  75% {
    transform: translateY(3%);
  }

  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}

@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }

  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }

  75% {
    -webkit-transform: translateY(3%);
  }

  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}

/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.1);
  }

  80% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.1);
  }

  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }

  50% {
    transform: scale(0.95);
  }

  80% {
    transform: scale(1.05);
  }

  90% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }

  50% {
    -webkit-transform: scale(0.95);
  }

  80% {
    -webkit-transform: scale(1.05);
  }

  90% {
    -webkit-transform: scale(0.98);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }

  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }

  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }

  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }

  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }

  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }

  35% {
    transform: rotate(2deg) scaleY(1);
  }

  50% {
    transform: rotate(-2deg);
  }

  65% {
    transform: rotate(1deg);
  }

  80% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }

  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }

  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }

  50% {
    -webkit-transform: rotate(-2deg);
  }

  65% {
    -webkit-transform: rotate(1deg);
  }

  80% {
    -webkit-transform: rotate(-1deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }

  60% {
    transform: translateY(-100%) scaleY(1.1);
  }

  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }

  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }

  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }

  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }

  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }

  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }

  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }

  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }

  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}

/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(8%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(8%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(-4deg);
  }
}

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }

  50% {
    -webkit-transform: rotate(4deg);
  }

  100% {
    -webkit-transform: rotate(-4deg);
  }
}

/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }

  40% {
    -webkit-transform: scaleY(1.02);
  }

  60% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(1);
  }
}

/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }

  40% {
    -webkit-transform: scaleY(1.02);
  }

  60% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(1);
  }
}

/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }

  40% {
    -webkit-transform: scaleX(1.02);
  }

  60% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }

  40% {
    -webkit-transform: scaleX(1.02);
  }

  60% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

#breadcrumb {
  height: 25px;
}

.alert {
  padding: 0px;
}

.alert a {
  padding: 15px 30px !important;
  padding-bottom: 15px !important;
  display: block;
  background-color: #1a7bbc;
  color: #fff;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
  font-size: 20px;
  margin-top: -1px;
  margin-bottom: -1px;
}

.alert a:hover {
  background-color: #0e4062;
  color: #fff;
}

#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #267AB5;
}

#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  margin-right: 0.8em;
}

#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close,
#ContactModal .modal-dialog .modal-content .modal-header .close {
  margin-right: 0.8em;
}

#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
}

#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}

#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch-popup input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch-popup input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch-popup input[type="search"],
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch-header input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch-header input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch-header input[type="search"] {
  height: 63px;
}

#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch-popup button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch-popup button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch-popup button ,
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch-header button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch-header button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch-header button {
  background-color: #1a7bbc;
  height: 63px;
  padding: 0px;
  color: white;
}

#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch-popup button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch-popup button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch-popup button:hover,
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch-header button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch-header button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch-header button:hover {
  background-color: #0e4062;
}

body #header {
  height: 60px;
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

body #header .container {
  box-shadow: 0px 5px rgba(99, 96, 96, 0.2);
  padding: 0 15px;
}

body #header a.logo-hold {
  width: 415px;
  position: absolute;
  display: block;
  top: 9px;
}

@media (max-width: 1100px) {
  body #header a.logo-hold {
    width: 350px;
  }
}

body #header a.logo-hold h1 {
  width: 100%;
}

body #header a.logo-hold h1 {
  text-transform: uppercase;
  margin: 0;
  font-size: 40px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1240px) {
  body #header a.logo-hold h1 {
    font-size: 35px;
    margin-top: 3px;
  }
}

@media (max-width: 1025px) {
  body #header a.logo-hold h1 {
    font-size: 30px;
    margin-top: 6px;
  }
}

@media (max-width: 460px) {
  body #header a.logo-hold h1 {
    font-size: 21px;
    margin-top: 7px;
  }
}

body #header a.logo-hold h1:hover {
  color: #003668;
}

body #header .right {
  float: right;
  padding: 18px 0px 0px;
  top: 0;
  right: 0;
}

body #header .social-list li {
  padding: 0 1px;
}

body #header .social-list a {
  height: 30px;
  width: 30px;
  border-radius: 30px;
  border: 1px solid #363636;
  color: #363636;
  text-align: center;
  font-size: 16px;
  padding-top: 3px;
  display: inline-block;
}

body #header .social-list a:hover {
  background-color: #267AB5;
  color: white;
  border-color: #267AB5;
}

body#home #header {
  position: relative;
}

#header .googleitem{
  display: inline-block;
  padding: 1.5rem;
  position: absolute;
  right: 0px;
  top: 60px;
  background-color: white;
}



#filtermodal .modal-dialog .modal-content .modal-body form select {
  background-color: rgba(0, 0, 0, 0.25) !important;
  background: rgba(0, 0, 0, 0.25) !important;
  padding: 5px;
}

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 {
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  font-size: 26px;
  color: #363636;
  padding-bottom: 0px;
}

@media (max-width: 1120px) {
  body .navbar .nav-pills>li a {
    padding: 10px;
    font-size: 24px;
  }
}

body .navbar .nav-pills>li .dropdown-menu {
  background-color: #fff;
}

body .navbar .nav-pills>li .dropdown-menu li {
  padding: 5px 15px;
}

body .navbar .nav-pills>li .dropdown-menu li a {
  color: #363636;
  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: #267AB5;
  color: black;
}

body .navbar .nav-pills>li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}

body .navbar .nav-pills>li:hover a,
body .navbar .nav-pills>li.selected a {
  /*color: @yellow;*/
  color: #267AB5;
}

body .navbar .togglemenu {
  color: #363636;
  font-size: 30px;
  margin-top: 6px;
  float: left;
}

body .navbar .togglemenu .menulabel {
  display: none;
}

body .navbar .srchbuttonmodal {
  color: #363636;
  font-size: 25px;
  position: relative;
  top: 6px;
  left: 14px;
  background: none;
  outline: none;
  border: none;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}

body .navbar .srchbutton {
  color: #363636;
  display: none;
}

body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}

body .navbar #search.showme {
  /*width: 96%;*/
}

body .searcharea {
  display: inline-block;
  width: calc(100% - 950px);
  margin-left: 11px;
}

body .searcharea.spanish {
  width: calc(100% - 950px);
}

@media(max-width:1120px){
  body .searcharea.spanish {
     width: calc(100% - 950px);
  }
}
body #sitesearch-header,
body #sitesearch-header {
  padding: 16px 0px 0px;
}
body #sitesearch-header  #search-field-header,
body #sitesearch-header #search-field {
  border: 1px solid #cdcdcd;
  height: 35px;
  width: calc(100% - 40px);
  padding-left: 10px;
  outline: 0px;
  /*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 #sitesearch-header button,
body #sitesearch-header button {
  background-color: #fff;
  color: #cdcdcd;
  border: 1px solid #cdcdcd;
  border-left: 0px;
  padding: 3px 6px;
  margin-left: -8px;
  height: 35px;
}
body #sitesearch-header button:hover
body #sitesearch-header button:hover {
  color: #267AB5;
}

body:not(#home) .navbar .nav-pills>li a {
  font-size: 23px;
}

@media (max-width: 1170px) {
  body:not(#home) .navbar .nav-pills>li a {
    padding: 10px;
  }
}

@media (max-width: 1110px) {
  body:not(#home) .navbar .nav-pills>li a {
    font-size: 21px;
  }
}

body:not(#home) .srchbuttonmodal {
  display: inline-block !important;
  font-size: 18px;
  top: -10px;
  left: 2px !important;
  margin-right: 24px;
}

@media (max-width: 1170px) {
  body:not(#home) .srchbuttonmodal {
    font-size: 15px;
    top: -20px;
  }
}

@media (max-width: 991px) {
  body:not(#home) .srchbuttonmodal {
    font-size: 25px;
    top: 8px;
    left: 23px !important;
  }
}

@media (max-width: 560px) {
  body:not(#home) .right {
    display: none !important;
  }
}

@media (max-width: 1110px) {
  body:not(#home) .right a {
    width: 22px;
    height: 22px;
    font-size: 12px;
    padding-top: 2px;
  }
}

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-size: 45px;
}

#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 {
  color: white;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a:hover {
  text-decoration: underline;
}

body:not(#home) .togglemenu {
  float: right;
  margin-left: 15px;
}

body:not(#home) .srchbuttonmodal {
  left: -2px;
}

#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 5px 0 0;
  float: right;
}

#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}

#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  position: relative;
}

#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}

#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}

#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}

#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch-header,
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch-header {
  padding: 12px 0px;
}

#header .nav-hold.right-slide-search #search #sitesearch-header #search-field-header,
#header .nav-hold.right-slide-search #search #sitesearch-header #search-field,
#header .nav-hold.right-search-modal #search #sitesearch-header #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #fff;
  color: #363636;
  border-bottom: 3px solid #363636;
}

#header .nav-hold.right-slide-search #search #sitesearch-header #search-field-header::-webkit-input-placeholder,
#header .nav-hold.right-slide-search #search #sitesearch-header #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch-header #search-field::-webkit-input-placeholder {
  color: #363636;
}

#header .nav-hold.right-slide-search #search #sitesearch-header #search-field-header::-moz-placeholder,
#header .nav-hold.right-slide-search #search #sitesearch-header #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch-header #search-field::-moz-placeholder {
  color: #363636;
}

#header .nav-hold.right-slide-search #search #sitesearch-header #search-field-header:-moz-placeholder,
#header .nav-hold.right-slide-search #search #sitesearch-header #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch-header #search-field:-moz-placeholder {
  color: #363636;
}

#header .nav-hold.right-slide-search #search #sitesearch-header #search-field-header:-ms-input-placeholder,
#header .nav-hold.right-slide-search #search #sitesearch-header #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch-header #search-field:-ms-input-placeholder {
  color: #363636;
}

#header .nav-hold.right-slide-search #search #sitesearch-header #search-field-header:focus,
#header .nav-hold.right-slide-search #search #sitesearch-header #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch-header #search-field:focus {
  outline: none;
}

#header .nav-hold.right-slide-search #search #sitesearch-header button,
#header .nav-hold.right-slide-search #search #sitesearch-header button,
#header .nav-hold.right-search-modal #search #sitesearch-header button {
  background-color: #fff;
  color: #363636;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}

#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}

#header .nav-hold.right-search-modal #search {
  display: none;
}

#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}

#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}

#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}

#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}

#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}

#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}

#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}

#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}

#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}

#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}

#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}

.modified-container {
  padding: 0 50px;
}

@media (max-width: 500px) {
  .modified-container {
    padding: 0 20px;
  }
}

body#home .banner {
  background-image: url(/themes/warren/images/banner.jpg);
  background-size: cover;
  height: 840px;
  width: 100%;
  position: relative;
}

@media (max-width: 991px) {
  body#home .banner {
    height: 600px;
  }
}

@media (max-width: 767px) {
  body#home .banner {
    height: 500px;
  }
}

@media (max-width: 500px) {
  body#home .banner {
    height: 400px;
    margin-bottom: 90px;
  }
}

@media (max-width: 400px) {
  body#home .banner {
    background-position: center;
  }
}

body#home .banner .banner-bottom {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

@media (max-width: 500px) {
  body#home .banner .banner-bottom {
    bottom: -122px;
  }
}

body#home .banner .banner-bottom img {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 1160px;
  width: 100%;
}

body#home .banner .banner-bottom .banner-btn {
  border: 2px solid #60a8dd;
  color: #60a8dd;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Bebas Neue', cursive;
  width: 100%;
  max-width: 360px;
  margin-bottom: 10px;
  border-radius: 25px;
  padding: 5px;
  font-size: 28px;
  display: inline-block;
}

@media (max-width: 800px) {
  body#home .banner .banner-bottom .banner-btn {
    max-width: 300px;
  }
}

@media (max-width: 680px) {
  body#home .banner .banner-bottom .banner-btn {
    max-width: 45%;
    font-size: 22px;
  }
}

@media (max-width: 500px) {
  body#home .banner .banner-bottom .banner-btn {
    max-width: 100%;
    font-size: 19px;
    margin-left: 0px !important;
  }
}

body#home .banner .banner-bottom .banner-btn:hover {
  background-color: #267AB5;
  color: white;
}

body#home .banner .banner-bottom.newish .banner-btn {
  background-color: #267AB5;
  color: white;
}

body#home .banner .banner-bottom.newish .banner-btn:hover {
  border: 2px solid #267AB5;
  background-color: transparent;
  color: #60a8dd;
}

body#home .banner .banner-bottom .banner-btn+.banner-btn {
  margin-left: 15px;
}

body#home #press {
  padding-top: 50px;
  padding-bottom: 50px;
}

body#home #press .press-image-holder {
  width: 50%;
  height: 400px;
  overflow: hidden;
  display: inline-block;
}

@media (max-width: 991px) {
  body#home #press .press-image-holder {
    height: auto;
    width: 100%;
  }
}

body#home #press .press-image-holder .press-image {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.2s ease-in;
}

@media (max-width: 991px) {
  body#home #press .press-image-holder .press-image {
    width: 100%;
    height: 330px;
  }
}

body#home #press .press-image-holder .press-image:hover {
  transform: scale(1.1);
}

body#home #press .press-title {
  display: inline-block;
  padding: 30px 40px;
  border: 1px solid #cdcdcd;
  border-left: 0px;
  height: 400px;
  float: right;
  width: 50%;
}

@media (max-width: 991px) {
  body#home #press .press-title {
    width: 100%;
    height: auto;
    margin-top: -6px;
    border: 1px solid #cdcdcd;
    border-top: 0px;
    margin-bottom: 30px;
  }
}

body#home #press .press-title a.title {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  font-size: 32px;
  line-height: 36px;
  display: block;
  margin-bottom: 15px;
  color: #363636;
}

@media (max-width: 479px) {
  body#home #press .press-title a.title {
    font-size: 26px;
    line-height: 30px;
  }
}

body#home #press .press-title a.title:hover {
  color: #267AB5;
}

body#home #press .press-title .summary {
  display: block;
  margin-bottom: 20px;
  line-height: 30px;
}

body#home #press .press-title .summary a {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  font-size: 15px;
}

a.continued {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  font-size: 15px;
  color: #1D5D8B;
}

.reports .reports-content a.continued{
  color: #b3d8f4;
}
.reports .reports-content a.continued:hover{
  color: white;
  text-decoration: underline;
}

.more {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: #003668;
}

.more:hover {
  color: #1D5D8B;
}

.wrap {
  width: 100%;
  margin-bottom: 40px;
}

@media (max-width: 1100px) {
  .wrap {
    margin-bottom: 25px;
  }
}

.wrap.small {
  height: 230px;
  display: inline-block;
}

@media (max-width: 1100px) {
  .wrap.small {
    height: 315px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .wrap.small {
    margin-bottom: 30px;
    height: auto;
  }
}

.wrap.small .preview {
  width: 33.333%;
  color: white;
  height: 100%;
  font-size: 24px;
  line-height: 22px;
  background-position: center left;
  font-family: 'Bebas Neue', cursive;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
}

@media (max-width: 1100px) {
  .wrap.small .preview {
    width: 100%;
    height: 140px;
    float: none !important;
  }
}

.wrap.small .preview .videolinkoverlay {
  width: 100%;
  height: 100%;
  display: table;
}

.wrap.small .preview .videolinkoverlay .type {
  margin-top: 10px;
  color: #fff;
  transition: all 0.2s ease-in;
}

.wrap.small .preview .videolinkoverlay img {
  transition: all 0.2s ease-in;
}

.wrap.small .preview .videolinkoverlay .overlay {
  background-color: rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease-in;
}

.wrap.small .preview .videolinkoverlay:hover img {
  opacity: 0.2;
}

.wrap.small .preview .videolinkoverlay:hover .type {
  opacity: 0.2;
}

.wrap.small .preview .videolinkoverlay:hover .overlay {
  background-color: rgba(0, 0, 0, 0.05);
}

.wrap.small .preview .videolinkoverlay.legislation:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.wrap.small .preview .videolinkoverlay.legislation:hover .type {
  opacity: 1;
  font-size: 26px;
}

.wrap.small .info {
  width: 66.666%;
  height: 100%;
  border: 1px solid #cdcdcd;
  border-left: 0;
  padding: 30px;
}

@media (max-width: 1100px) {
  .wrap.small .info {
    width: 100%;
    height: auto;
    float: none !important;
    border: 1px solid #cdcdcd;
    border-top: 0;
  }
}

@media (max-width: 900px) {
  .wrap.small .info {
    height: 205px;
  }
}

@media (max-width: 767px) {
  .wrap.small .info {
    height: auto;
  }
}

.wrap.small .info .title {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  font-size: 25px;
  line-height: 31px;
  color: #363636;
}

@media (max-width: 1100px) {
  .wrap.small .info .title {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .wrap.small .info .title {
    font-size: 21px;
    line-height: 26px;
  }
}

.twitter-area {
  width: 100%;
  background-color: #003668;
  background-image: url(/themes/warren/images/twitter-bg.jpg);
  background-size: cover;
  display: inline-block;
  text-align: center;
  padding: 60px 60px 30px;
  margin-bottom: 50px;

}

.twitter-area h2 {
  font-family: 'Bebas Neue', cursive;
  margin-bottom: 30px;
}

.twitter-area h2 a {
  color: white;
}

.twitter-area .tweet {
  color: white;
  font-size: 34px;
  line-height: 48px;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .twitter-area .tweet {
    font-size: 25px;
    line-height: 35px;
  }
}

@media (max-width: 767px) {
  .twitter-area .tweet {
    font-size: 20px;
    line-height: 28px;
  }
}

.twitter-area .tweet a {
  color: white;
  word-break: break-word;
}

.twitter-area .timePosted {
  display: inline-block;
  text-transform: capitalize;
}

.twitter-area .timePosted a {
  color: white;
}

.twitter-area .interact {
  display: inline-block;
}

.twitter-area .interact a {
  font-weight: bold;
  margin-left: 30px;
  color: #267AB5;
}

.twitter-area .interact a:hover {
  color: white;
}

.twitter-area .interact a+a:before {
  content: '/';
  display: inline-block;
  color: white;
  position: relative;
  left: -15px;
}

.instagram-area {
  text-align: center;
  padding-bottom: 50px;
}

.instagram-area .instagram-logo {
  margin-bottom: 15px;
  display: inline-block;
}

#instamedia {
  margin: 0 -10px;
}

#instamedia a {
  width: 16.6666%;
  display: inline-block;
  border: 10px solid white;
}

@media (max-width: 767px) {
  #instamedia a {
    width: 33.333%;
  }
}

@media (max-width: 400px) {
  #instamedia a {
    width: 50%;
  }
}

#instamedia a .instaimage img {
  width: 100%;
}

.reports {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
}

.reports .reports-content {
  background-image: url(/themes/warren/images/reports.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 35px;
  padding-bottom: 5px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  color: white;
  position: relative;
}

@media (max-width: 767px) {
  .reports .reports-content {
    background-image: none;
  }
}

.reports .reports-content span {
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
  display: block;
  text-transform: uppercase;
  line-height: 26px;
}

.reports .reports-content .summary {
  text-transform: none;
}

.reports .reports-content .title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 32px;
}

.reports .reports-content .continued:hover {
  color: white;
}

.reports .reports-content .more {
  color: white;
}

.reports .reports-content .more:hover {
  color: white;
  text-decoration: underline;
}

.office-locations {
  padding: 50px 0 70px;
}

.office-locations .office {
  display: inline-block;
  margin-top: 35px;
}

@media (max-width: 740px) {
  .office-locations .office {
    width: 100%;
    max-width: 386px;
    margin: 40px auto;
    display: block;
    text-align: left;
  }
}

.office-locations .office img {
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 1100px) {
  .office-locations .office img {
    display: none;
  }
}

@media (max-width: 740px) {
  .office-locations .office img {
    display: inline-block;
  }
}

@media (max-width: 410px) {
  .office-locations .office img {
    display: block;
    margin: 0 auto;
  }
}

.office-locations .office .address {
  display: inline-block;
  text-align: left;
  font-size: 16px;
  margin-left: 10px;
  margin-right: 40px;
  vertical-align: top;
  position: relative;
  top: -6px;
  width: 200px;
}

@media (max-width: 462px) {
  .office-locations .office .address {
    display: block;
    margin: 15px auto;
    text-align: center;
  }
}

.office-locations .office .address b {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  text-transform: uppercase;
}

.office-locations .office .address .directions {
  text-transform: uppercase;
  color: #003668;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  font-size: 14px;
}

.office-locations .office .address .directions:hover {
  color: #60a8dd;
}

/*
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;
}

body.no-title.no-breadcrumbs #breadcrumb {
  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: #1a7bbc !important;
}

#breadcrumb a {
  color: #595959;
  text-transform: uppercase;
  font-size: 23px;
  font-family: 'Bebas Neue', cursive;
}

#breadcrumb a:hover {
  color: #1D5D8B;
}

body:not(#home) #main_container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.main_page_title {
  color: #363636;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 30px;
}

body.no-title .main_page_title {
  display: none;
}

body.contact .main_page_title,
body.services .main_page_title {
  padding-left: 15px;
}

body.contact .button-background.has-background#listblocks,
body.services .button-background.has-background#listblocks {
  margin-left: 0;
}

table.table td.date {
  width: 150px;
}

#form_thomas_search .col-xs-9 {
  padding-right: 0;
}

@media (min-width: 992px) {
  #filter-legislation {
    margin-top: 130px;
  }
}

#filter-legislation h3 {
  margin-top: 0;
}

#filter-legislation aside form select {
  font-size: 16px;
}

#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}

#search-thomas-pod {
  margin-top: 122px;
}

#search-thomas-pod h1 {
  font-size: 25px;
}

#search-thomas-pod #side-search-btn {
  padding: 0 10px;
  font-family: 'Bebas Neue', cursive;
  margin-top: 0px;
  background-color: #267AB5;
}

#search-thomas {
  margin-top: -90px;
}

#filterbuttons a {
  background-color: transparent;
  color: #003668;
  padding-left: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  text-transform: uppercase;
  font-size: 14px;
  padding-right: 20px;
}

#filterbuttons a span {
  font-size: 10px;
}

#filterbuttons a:hover {
  color: #1D5D8B;
  background-color: transparent !important;
}

aside h1 {
  font-size: 25px;
}

#listblocks {
  margin-top: 40px;
}

#listblocks .block {
  display: table;
  height: 110px;
}

#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #267AB5;
  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: #2676b1;
}

#typenav li a {
  color: #363636;
}

#typenav li.active a {
  color: white;
  background-color: #1a7bbc;
}

#typenav.affix {
  top: 0;
}

.constrict {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 15px;
}

body#about #breadcrumb {
  display: none;
}

body#about .banner-container {
  background-color: #003668;
  width: 100%;
  text-align: center;
  position: relative;
  top: -10px;
  max-width: 1500px;
  margin: 0 auto;
}

body#about .banner-container img {
  margin: auto;
  max-width: 960px;
  width: 100%;
}

body#about .side-area {
  width: 340px;
  margin-right: 70px;
  margin-bottom: 50px;
  margin-top: -450px;
  margin-left: -5px;
  position: relative;
  z-index: 2;
}

@media (max-width: 890px) {
  body#about .side-area {
    width: 300px;
  }
}

body#about .side-area img {
  margin-top: 20px;
  width: 100%;
}

body#about .side-area .download-links {
  background-color: #003668;
  color: white;
  padding: 5px 15px;
}

body#about .side-area .download-links a {
  color: #60a8dd;
}

body#about .side-area .download-links a:hover {
  color: white;
}

body#about .side-area.visible-xs {
  margin: 0;
  width: 100%;
}

body#about .pull-quote.visible-xs {
  padding: 20px 0;
}

body#about .pull-quote {
  padding: 20px 90px;
  text-align: center;
}

body#about .pull-quote .line {
  display: block;
  height: 5px;
  width: 240px;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
  margin: 0 auto;
}

body#about .pull-quote .large {
 font-family: 'Open Sans', sans-serif;
 font-weight: 600;
  font-size: 54px;
  margin-top: 10px;
}

body#about .pull-quote .small {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 30px;
}

body#about #sam-main p {
  font-size: 20px;
}

body#about #sam-main h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #003668;
  margin-bottom: 30px;
  margin-top: 50px;
}

body#about .about-btn {
  color: white;
  text-transform: uppercase;
  font-size: 25px;
  width: 100%;
  display: inline-block;
  margin-bottom: 12px;
  padding: 15px 15px;
  font-family: 'Bebas Neue', cursive;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
}

body#about .about-btn i,
body#about .about-btn em {
  float: right;
  font-size: 48px;
  line-height: 34px;
  color: #146ba8;
  position: relative;
  left: 13px;
}

body#about .about-btn:hover {
  background: #267AB5;
}

body#about .about-btn:last-child {
  margin-bottom: 20px;
}

body.committee h2 a,
body.committee h3 {
  color: #003668;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

body.committee h2 {
  margin-top: 35px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 27px;
}

body.committee h2 a {
  color: #003668;
}

body.committee h2 a:hover {
  color: #1D5D8B;
}

body.committee hr {
  margin-top: 35px;
}

body.no-banner img.banner {
  display: none;
}

.button-background.has-background#listblocks {
  margin-top: 0px;
  background-size: cover;
  background-position: right;
  display: table;
  width: 100%;
  margin-left: -15px;
}

@media (max-width: 767px) {
  .button-background.has-background#listblocks {
    width: 100%;
  }
}

.button-background.has-background#listblocks .help-block {
  margin: 0;
  padding: 0;
  border: 15px solid white;
}

.button-background.has-background#listblocks .help-block .block,.button-background#listblocks .help-block .block  {
  margin-bottom: 0px;
  display: table;
  min-height: 180px;
  width: 100%;
  text-align: center;
}


@media (max-width: 767px) {
  .button-background.has-background#listblocks .help-block .block,.button-background#listblocks .help-block .block  {
    height: 125px;
  }
}

.button-background.has-background#listblocks .help-block .block a,.button-background#listblocks .help-block .block a {
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
  color: white;
  font-size: 25px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  background-color: rgba(99, 169, 219, 0.57);
  transition: 0.3s ease-in background-color;
}

.button-background.has-background#listblocks .help-block .block a .media-heading,.button-background#listblocks .help-block .block a .media-heading  {
  float: none;
}

.button-background.has-background#listblocks .help-block .block a:hover,.button-background#listblocks .help-block .block a:hover {
  background-image: none;
  background-color: rgba(4, 55, 102, 0.75);
}

@media (max-width: 479px) {
  .button-background.has-background#listblocks .help-block .block a,.button-background#listblocks .help-block .block a {
    font-size: 24px;
    line-height: 26px;
  }
}
/*
.button-background.has-background#listblocks .help-block:first-child {
  width: 100%;
}

.button-background.has-background#listblocks .help-block:first-child .block {
  height: 230px;
}

.button-background.has-background#listblocks .help-block:first-child .block a {
  font-size: 32px;
}
*/
.about-ma .about-photo {
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: center center;
}

.slick-next.new,
.slick-prev.new {
  width: auto;
  height: auto;
  font-size: 80px !important;
  color: #fff !important;
  z-index: 2 !important;
}

.slick-prev:before,
.slick-next:before {
  opacity: 0 !important;
}

.slick-next {
  right: 15px !important;
}

.stories {
  padding: 0 20px;
}

.stories .slick-next.new,
.stories .slick-prev.new {
  width: auto;
  height: auto;
  font-size: 50px !important;
  color: #60a8dd !important;
  z-index: 2 !important;
}

.stories .slick-prev {
  left: -33px !important;
}

.stories .slick-prev:before,
.stories .slick-next:before {
  opacity: 0 !important;
}

.stories .slick-next {
  right: -15px !important;
}

.payment .vcard,
.vcard.mail {
  border: none;
}

.vcard {
  min-height: auto;
  margin-bottom: 40px;
  border: 1px solid #cdcdcd;
  display: inline-block;
}

.vcard .pull-left {
  margin-right: 15px;
  background-color: #267AB5;
}

.vcard .senimagelink img {
  max-width: 150px;
  transition: all 0.2s ease-in;
}

.vcard .senimagelink:hover img {
  opacity: 0.6;
}

.vcard .url {
  display: block;
  margin-top: 40px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: #363636;
  line-height: 19px;
  font-weight: normal;
}

.vcard .url:hover {
  color: #60a8dd;
}

.vcard .district {
  text-transform: uppercase;
  font-size: 13px;
}

.slick-prev {
  left: 15px !important;
}

.reports.oversight {
  margin-bottom: 50px;
  min-height: 300px;
}

.reports.oversight .reports-content span {
  max-width: none;
}

.reports.oversight .title {
  margin-top: 30px;
}

.reports.oversight .summary {
  margin-top: 15px;
}

.reports.oversight .summary a {
  display: none;
}

.reports.oversight .summary a.continued {
  display: inline-block;
  color: #b3d8f4;
}

.reports.oversight .summary a.continued:hover {
  color: white;
}

#oversight h1.bold {
  font-size: 24px;
}

#oversight .oversight-btns {
  margin-top: 60px;
}

#oversight .oversight-btn {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
  width: 200px;
  font-family: 'Bebas Neue', cursive;
  padding: 47px 20px;
  margin: 20px 10px 40px;
  text-transform: uppercase;
  border: 0px;
  font-size: 24px;
  line-height: 22px;
}

#oversight .oversight-btn i {
  display: block;
  font-size: 36px;
  margin-bottom: 20px;
}

#oversight .oversight-btn:nth-child(2) {
  background: -webkit-linear-gradient(left, rgba(15, 78, 130, 0.8), #1a67a0);
  background: -o-linear-gradient(right, #0f4e82, #1a67a0);
  background: -moz-linear-gradient(right, #0f4e82, #1a67a0);
  background: linear-gradient(to right, #0f4e82, #1a67a0);
}

#oversight .oversight-btn:first-child {
  background: -webkit-linear-gradient(left, #003668, #0f4e82);
  background: -o-linear-gradient(right, #003668, #0f4e82);
  background: -moz-linear-gradient(right, #003668, #0f4e82);
  background: linear-gradient(to right, #003668, #0f4e82);
}

#oversight .oversight-btn:last-child {
  background: -webkit-linear-gradient(left, #1a67a0, #60a8dd);
  background: -o-linear-gradient(right, #1a67a0, #60a8dd);
  background: -moz-linear-gradient(right, #1a67a0, #60a8dd);
  background: linear-gradient(to right, #1a67a0, #60a8dd);
}

#oversight .oversight-btn:hover {
  background: #267AB5;
}

.working-block.press.with-image .media-container {
  width: 100%;
  height: 215px;
  background-size: cover;
  background-position: center;
}

.working-block.press.with-image .media-title {
  border-top: 0px;
}

.working-block.press.standard {
  height: 315px;
  width: 100%;
  display: table;
}

.working-block.press.standard .media-title {
  display: table-cell !important;
  vertical-align: middle;
  padding: 10px 40px !important;
}

.working-block .media-title {
  display: inline-block;
  padding: 10px 15px;
  background-color: white;
  border: 1px solid #cdcdcd;
  width: 100%;
  color: #363636;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  text-align: center;
  font-size: 26px;
  line-height: 29px;
  height: 100px;
  transition: 0.3s ease-in all;
}

@media (max-width: 1200px) {
  .working-block .media-title {
    font-size: 22px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .working-block .media-title {
    margin-bottom: 40px;
  }
}

.working-block .media-title .cell {
  padding-bottom: 7px;
}

.working-block .media-title:hover {
  background-color: #267AB5;
  color: white;
}

#crscontent ol li {
  margin-bottom: 20px;
}

#sam-main ul li,
#sam-main ol li {
  margin-bottom: 20px;
}

.btn-block {
  font-size: 24px;
  padding: 30px;
  margin: 30px auto;
}

.tours .toursbox {
  display: table;
  width: 100%;
  height: 350px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.tours .toursbox h1 {
  display: table-cell;
  vertical-align: middle;
  color: white;
  padding: 0 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
}

.tours .toursbox .clickhere {
  position: absolute;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  width: 100%;
  text-align: center;
  bottom: 1em;
  left: 0px;
  transition: all 0.2s ease-in-out;
}

.tours .toursbox:hover .clickhere {
  transform: scale(1.2);
}

.tours li.tour-box:not(:last-child) {
  padding-bottom: 15px;
}

.tours li.tour-box2 a h1 {
  background: -webkit-linear-gradient(left, rgba(15, 78, 130, 0.8), rgba(26, 103, 160, 0.8));
  background: -o-linear-gradient(right, rgba(15, 78, 130, 0.8), rgba(26, 103, 160, 0.8));
  background: -moz-linear-gradient(right, rgba(15, 78, 130, 0.8), rgba(26, 103, 160, 0.8));
  background: linear-gradient(to right, rgba(15, 78, 130, 0.8), rgba(26, 103, 160, 0.8));
}

.tours li.tour-box1 a h1 {
  background: -webkit-linear-gradient(left, rgba(0, 54, 104, 0.8), rgba(15, 78, 130, 0.8));
  background: -o-linear-gradient(right, rgba(0, 54, 104, 0.8), rgba(15, 78, 130, 0.8));
  background: -moz-linear-gradient(right, rgba(0, 54, 104, 0.8), rgba(15, 78, 130, 0.8));
  background: linear-gradient(to right, rgba(0, 54, 104, 0.8), rgba(15, 78, 130, 0.8));
}

.tours li.tour-box3 a h1 {
  background: -webkit-linear-gradient(left, rgba(26, 103, 160, 0.8), rgba(96, 168, 221, 0.8));
  background: -o-linear-gradient(right, rgba(26, 103, 160, 0.8), rgba(96, 168, 221, 0.8));
  background: -moz-linear-gradient(right, rgba(26, 103, 160, 0.8), rgba(96, 168, 221, 0.8));
  background: linear-gradient(to right, rgba(26, 103, 160, 0.8), rgba(96, 168, 221, 0.8));
}

.tours li.tour-box a h1 {
  background: -webkit-linear-gradient(left, rgba(26, 103, 160, 0.8), rgba(96, 168, 221, 0.8));
  background: -o-linear-gradient(right, rgba(26, 103, 160, 0.8), rgba(96, 168, 221, 0.8));
  background: -moz-linear-gradient(right, rgba(26, 103, 160, 0.8), rgba(96, 168, 221, 0.8));
  background: linear-gradient(to right, rgba(26, 103, 160, 0.8), rgba(96, 168, 221, 0.8));
}

body#devos #block7 {
  margin-top: 30px;
}
body#devos #block7 table {
  position: relative;
}
body#devos #block7 table p {
  margin-bottom: 0px;
}
body#devos #block7 table td {
  min-width: 130px;
  padding: 10px 15px;
}
body#devos #block7 table td i {
  color: #60a8dd;
  font-weight: bold;
}
body#devos #block7 table td:first-child {
  font-weight: bold;
  text-align: right;
  vertical-align: top;
  border-right: 1px solid #60a8dd;
  position: relative;
  padding-left: 0;
}
body#devos #block7 table td:last-child {
  padding-bottom: 20px;
}
body#devos #block7 table td:last-child span {
  position: relative;
}
body#devos #block7 table td:last-child span:before {
  content: '';
  display: inline-block;
  background-color: #267AB5;
  height: 7px;
  width: 7px;
  border-radius: 7px;
  position: absolute;
  top: 9px;
  left: -19px;
}
body#devos #block7 table:after {
  content: '2017';
  display: inline-block;
  position: relative;
  left: 113px;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
body#devos #block7 table.datetable tbody .newnew:first-child td {
  padding-top: 60px;
}
body#devos #block7 table.datetable tbody .newnew:first-child:after {
  content: '2019';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
body#devos #block7 table.datetable tbody .oldold:first-child td {
  padding-top: 60px;
}
body#devos #block7 table.datetable tbody .oldold:first-child:after {
  content: '2018';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
body#devos #block7 table.datetable tbody .oldest.first td {
  padding-top: 60px;
}
body#devos #block7 table.datetable tbody .oldest.first:after {
  content: '2017';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}



body#education #block7 {
  margin-top: 30px;
}
body#education #block7 table {
  position: relative;
}
body#education #block7 table p {
  margin-bottom: 0px;
}
body#education #block7 table td {
  min-width: 130px;
  padding: 10px 15px;
}
body#education #block7 table td i {
  color: #60a8dd;
  font-weight: bold;
}
body#education #block7 table td:first-child {
  font-weight: bold;
  text-align: right;
  vertical-align: top;
  border-right: 1px solid #60a8dd;
  position: relative;
  padding-left: 0;
}
body#education #block7 table td:last-child {
  padding-bottom: 20px;
}
body#education #block7 table td:last-child span {
  position: relative;
}
body#education #block7 table td:last-child span:before {
  content: '';
  display: inline-block;
  background-color: #267AB5;
  height: 7px;
  width: 7px;
  border-radius: 7px;
  position: absolute;
  top: 9px;
  left: -19px;
}
body#education #block7 table:after {
  content: '';
  display: inline-block;
  position: relative;
  left: 113px;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
body#education #block7 table.datetable tbody .newnew:first-child td {
  padding-top: 60px;
}
body#education #block7 table.datetable tbody .newnew:first-child:after {
  content: '2025';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
body#education #block7 table.datetable tbody .oldold:first-child td {
  padding-top: 60px;
}
body#education #block7 table.datetable tbody .oldold:first-child:after {
  content: '2024';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
body#education #block7 table.datetable tbody .oldest.first td {
  padding-top: 60px;
}
body#education #block7 table.datetable tbody .oldest.first:after {
  content: '2023';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}


body#hurricane_maria #block7 {
  margin-top: 70px;
}
body#hurricane_maria #block7 table {
  position: relative;
  /*
			&:after{
				content: '2017';
				display: inline-block;
				position: relative;
				left: 113px;
				.bold;
				@media(max-width: 767px){
					left: 0px;
					font-size: 32px;
					width: 100%;
					border-top: 1px solid #60a8dd;
					border-bottom: 1px solid #60a8dd;
					}
			}
*/
}
body#hurricane_maria #block7 table p {
  margin-bottom: 0px;
}
body#hurricane_maria #block7 table td {
  min-width: 130px;
  padding: 10px 15px;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table td {
    min-width: 0;
    display: inline-block;
    width: auto;
    position: relative;
    padding: 0px;
  }
}
body#hurricane_maria #block7 table td .description img {
  max-width: 500px;
  width: 100%!important;
  height: auto!important;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table td .description .twitter-tweet {
    width: 100%!important;
    max-width: 430px!important;
  }
}
@media (max-width: 460px) {
  body#hurricane_maria #block7 table td .description .twitter-tweet {
    width: 100%!important;
    max-width: 300px!important;
  }
}
body#hurricane_maria #block7 table td i {
  color: #60a8dd;
  font-weight: bold;
}
body#hurricane_maria #block7 table td:first-child {
  font-weight: bold;
  text-align: right;
  vertical-align: top;
  border-right: 1px solid #60a8dd;
  position: relative;
  padding-left: 0;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table td:first-child {
    padding: 8px 0px;
    border-bottom: 2px solid #60a8dd;
    margin-bottom: 15px;
    border-right: 0px solid;
  }
}
body#hurricane_maria #block7 table td:last-child {
  padding-bottom: 20px;
}
body#hurricane_maria #block7 table td:last-child span {
  position: relative;
}
body#hurricane_maria #block7 table td:last-child .description:before {
  content: '';
  display: inline-block;
  background-color: #267AB5;
  height: 7px;
  width: 7px;
  border-radius: 7px;
  position: absolute;
  top: 9px;
  left: -19px;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table td:last-child .description:before {
    display: none;
  }
}
body#hurricane_maria #block7 table.datetable tbody:first-child tr.newnew:first-child {
  padding-top: 60px;
}
body#hurricane_maria #block7 table.datetable tbody:first-child tr.newnew:first-child td {
  padding-top: 60px;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody:first-child tr.newnew td:first-child {
    padding-top: 60px;
  }
}
body#hurricane_maria #block7 table.datetable tbody:first-child tr.newnew td {
  padding-top: 0px;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody:first-child tr.newnew td {
    padding-top: 0px;
  }
}
body#hurricane_maria #block7 table.datetable tbody:first-child:before {
  content: '2020';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  top: -25px;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody:first-child:before {
    content: '2020';
    display: inline-block;
    position: absolute;
    background-color: white;
    left: 0px;
    font-size: 32px;
    width: 100%;
    border-top: 1px solid #60a8dd;
    border-bottom: 1px solid #60a8dd;
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
  }
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.newold:first-child td:first-child {
    padding-top: 60px;
  }
}
body#hurricane_maria #block7 table.datetable tbody tr.newold:first-child td {
  padding-top: 60px;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.newold:first-child td {
    padding-top: 0px;
  }
}
body#hurricane_maria #block7 table.datetable tbody tr.newold:first-child:after {
  content: '2019';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.newold:first-child:before {
    content: '2019';
    display: inline-block;
    position: absolute;
    background-color: white;
    left: 0px;
    font-size: 32px;
    width: 100%;
    border-top: 1px solid #60a8dd;
    border-bottom: 1px solid #60a8dd;
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
  }
  body#hurricane_maria #block7 table.datetable tbody tr.newold:first-child:after {
    display: none;
  }
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.oldold:first-child td:first-child {
    padding-top: 60px;
  }
}
body#hurricane_maria #block7 table.datetable tbody tr.oldold:first-child td {
  padding-top: 60px;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.oldold:first-child td {
    padding-top: 0px;
  }
}
body#hurricane_maria #block7 table.datetable tbody tr.oldold:first-child:after {
  content: '2018';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.oldold:first-child:before {
    content: '2018';
    display: inline-block;
    position: absolute;
    background-color: white;
    left: 0px;
    font-size: 32px;
    width: 100%;
    border-top: 1px solid #60a8dd;
    border-bottom: 1px solid #60a8dd;
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
  }
  body#hurricane_maria #block7 table.datetable tbody tr.oldold:first-child:after {
    display: none;
  }
}


@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.oldoldold:first-child td:first-child {
    padding-top: 60px;
  }
}
body#hurricane_maria #block7 table.datetable tbody tr.oldoldold:first-child td {
  padding-top: 60px;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.oldoldold:first-child td {
    padding-top: 0px;
  }
}
body#hurricane_maria #block7 table.datetable tbody tr.oldoldold:first-child:after {
  content: '2017';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
@media (max-width: 767px) {
  body#hurricane_maria #block7 table.datetable tbody tr.oldoldold:first-child:before {
    content: '2017';
    display: inline-block;
    position: absolute;
    background-color: white;
    left: 0px;
    font-size: 32px;
    width: 100%;
    border-top: 1px solid #60a8dd;
    border-bottom: 1px solid #60a8dd;
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
  }
  body#hurricane_maria #block7 table.datetable tbody tr.oldoldold:first-child:after {
    display: none;
  }
}


body#hurricane_mariaspanish #block7 {
  margin-top: 70px;
}
body#hurricane_mariaspanish #block7 table {
  position: relative;
  /*
			&:after{
				content: '2017';
				display: inline-block;
				position: relative;
				left: 113px;
				.bold;
				@media(max-width: 767px){
					left: 0px;
					font-size: 32px;
					width: 100%;
					border-top: 1px solid #60a8dd;
					border-bottom: 1px solid #60a8dd;
					}
			}
*/
}
body#hurricane_mariaspanish #block7 table p {
  margin-bottom: 0px;
}
body#hurricane_mariaspanish #block7 table td {
  min-width: 130px;
  padding: 10px 15px;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table td {
    min-width: 0;
    display: inline-block;
    width: auto;
    position: relative;
    padding: 0px;
  }
}
body#hurricane_mariaspanish #block7 table td .description img {
  max-width: 500px;
  width: 100%!important;
  height: auto!important;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table td .description .twitter-tweet {
    width: 100%!important;
    max-width: 430px!important;
  }
}
@media (max-width: 460px) {
  body#hurricane_mariaspanish #block7 table td .description .twitter-tweet {
    width: 100%!important;
    max-width: 300px!important;
  }
}
body#hurricane_mariaspanish #block7 table td i {
  color: #60a8dd;
  font-weight: bold;
}
body#hurricane_mariaspanish #block7 table td:first-child {
  font-weight: bold;
  text-align: right;
  vertical-align: top;
  border-right: 1px solid #60a8dd;
  position: relative;
  padding-left: 0;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table td:first-child {
    padding: 8px 0px;
    border-bottom: 2px solid #60a8dd;
    margin-bottom: 15px;
    border-right: 0px solid;
  }
}
body#hurricane_mariaspanish #block7 table td:last-child {
  padding-bottom: 20px;
}
body#hurricane_mariaspanish #block7 table td:last-child span {
  position: relative;
}
body#hurricane_mariaspanish #block7 table td:last-child .description:before {
  content: '';
  display: inline-block;
  background-color: #267AB5;
  height: 7px;
  width: 7px;
  border-radius: 7px;
  position: absolute;
  top: 9px;
  left: -19px;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table td:last-child .description:before {
    display: none;
  }
}
body#hurricane_mariaspanish #block7 table.datetable tbody:first-child tr.newnew:first-child {
  padding-top: 60px;
}
body#hurricane_mariaspanish #block7 table.datetable tbody:first-child tr.newnew:first-child td {
  padding-top: 60px;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody:first-child tr.newnew td:first-child {
    padding-top: 60px;
  }
}
body#hurricane_mariaspanish #block7 table.datetable tbody:first-child tr.newnew td {
  padding-top: 0px;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody:first-child tr.newnew td {
    padding-top: 0px;
  }
}
body#hurricane_mariaspanish #block7 table.datetable tbody:first-child:before {
  content: '2019';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  top: -25px;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody:first-child:before {
    content: '2019';
    display: inline-block;
    position: absolute;
    background-color: white;
    left: 0px;
    font-size: 32px;
    width: 100%;
    border-top: 1px solid #60a8dd;
    border-bottom: 1px solid #60a8dd;
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
  }
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody tr.newold:first-child td:first-child {
    padding-top: 60px;
  }
}
body#hurricane_mariaspanish #block7 table.datetable tbody tr.newold:first-child td {
  padding-top: 60px;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody tr.newold:first-child td {
    padding-top: 0px;
  }
}
body#hurricane_mariaspanish #block7 table.datetable tbody tr.newold:first-child:after {
  content: '2018';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody tr.newold:first-child:before {
    content: '2018';
    display: inline-block;
    position: absolute;
    background-color: white;
    left: 0px;
    font-size: 32px;
    width: 100%;
    border-top: 1px solid #60a8dd;
    border-bottom: 1px solid #60a8dd;
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
  }
  body#hurricane_mariaspanish #block7 table.datetable tbody tr.newold:first-child:after {
    display: none;
  }
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody tr.oldold:first-child td:first-child {
    padding-top: 60px;
  }
}
body#hurricane_mariaspanish #block7 table.datetable tbody tr.oldold:first-child td {
  padding-top: 60px;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody tr.oldold:first-child td {
    padding-top: 0px;
  }
}
body#hurricane_mariaspanish #block7 table.datetable tbody tr.oldold:first-child:after {
  content: '2017';
  display: inline-block;
  position: absolute;
  left: 113px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}
@media (max-width: 767px) {
  body#hurricane_mariaspanish #block7 table.datetable tbody tr.oldold:first-child:before {
    content: '2017';
    display: inline-block;
    position: absolute;
    background-color: white;
    left: 0px;
    font-size: 32px;
    width: 100%;
    border-top: 1px solid #60a8dd;
    border-bottom: 1px solid #60a8dd;
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
  }
  body#hurricane_mariaspanish #block7 table.datetable tbody tr.oldold:first-child:after {
    display: none;
  }
}






body.newsroom_landing {
  height: 100%;
}

body.newsroom_landing #breadcrumb {
  margin: 0;
  height: 0px;
}

body.newsroom_landing #main_container {
  padding-bottom: 0px !important;
}

body.newsroom_landing #newscontent {
  margin-top: 42px;
}

body.newsroom_landing #main_container,
body.newsroom_landing .one_column,
body.newsroom_landing #main_column,
body.newsroom_landing #main_column>.row {
  height: 100%;
}

body.newsroom_landing #header {
  border-bottom: 0 !important;
}

body.newsroom_landing .main_page_title {
  color: white;
  position: relative;
}

body.newsroom_landing footer {
  margin-top: 0 !important;
}

body.newsroom_landing #videos,
body.newsroom_landing #fact,
body.newsroom_landing #opeds,
body.newsroom_landing #press {
  padding: 30px 0px;
}

body.newsroom_landing .more {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  text-transform: uppercase;
}

body.newsroom_landing #contact,
body.newsroom_landing #newsletter {
  margin-top: 60px;
}

body.newsroom_landing #contact .newsletters,
body.newsroom_landing #newsletter .newsletters,
body.newsroom_landing #contact .contact-table,
body.newsroom_landing #newsletter .contact-table {
  margin-top: 50px;
}

body.newsroom_landing #contact .contact-table,
body.newsroom_landing #newsletter .contact-table {
  margin-top: 80px;
}

body.newsroom_landing #newsletter {
  padding-bottom: 60px;
}

body.newsroom_landing .col-sm-3 {
  position: inherit;
  margin-top: -20px;
  height: 100%;
  padding-top: 47px;
  margin-left: -20px;
  padding-left: 36px;
}

body.newsroom_landing .col-sm-3:before {
  background-color: #363636;
  height: calc(100% + 10px);
  width: calc(25% + 160px);
  position: absolute;
  top: -10px;
  left: -150px;
  content: '';
  display: inline-block;
}

body.newsroom_landing .col-sm-3 #typenav{
  background-color: #363636;
}

body.newsroom_landing .col-sm-3 #typenav .nav-pills {
  margin-top: 30px;
}

body.newsroom_landing .col-sm-3 #typenav a {
  color: white;
  padding: 10px 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}

body.newsroom_landing .col-sm-3 #typenav li.active a {
  background-color: transparent;
  color: #60a8dd;
}

body.newsroom_landing .col-sm-9 {
  padding-bottom: 50px;
  padding-left: 60px;
  padding-top: 30px;
}

@media (max-width: 767px) {
  body.newsroom_landing .col-sm-9 {
    padding-left: 30px;
  }
}

body.newsroom_landing .col-sm-9 .main_page_title {
  display: none !important;
}

body.newsroom_landing .section-header a {
  color: #267AB5;
  display: block;
  margin-bottom: 40px;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  text-transform: uppercase;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #363636;
}

body.newsroom_landing .section-header a:hover {
  color: #1D5D8B;
}

body.press-files #browser_table .filename {
  vertical-align: middle;
}

body.press-files #browser_table .filename .filearea {
  float: right;
  padding: 0px 5px;
}

body.press-files #browser_table .filename .filearea .filelink {
  font-size: 16px;
  padding: 0px 5px;
  color: red;
}

body.press-files #browser_table .filename .filearea .filelink:hover {
  color: #cc0000;
}

body.press-files #browser_table .filename table {
  width: 100%;
}

body.press-files #browser_table .filename table tr {
  border-top: none;
}

body.press-files #browser_table tr {
  border-top: 1px solid #ddd;
}

body.press-files #browser_table tr td {
  border-top: none;
}

/* Office Locations */
body#agency .stories {
  display: inline-block;
  width: 100%;
  margin: 40px 10px 60px;
  margin-left: -10px;
}

body#agency .fa-5 {
  position: absolute;
  z-index: 9000;
  color: white;
  opacity: 0.8;
  cursor: pointer;
  top: 45%;
  font-size: 58px !important;
}

body#agency .fa-5.fa-chevron-left {
  left: 30px;
}

body#agency .fa-5.fa-chevron-right {
  right: 30px;
}

body#agency .story-modal {
  overflow: scroll;
}

body#agency .story-modal .modal-title {
  font-size: 30px;
}

body#agency .story-modal .media-container {
  width: 100%;
  height: 250px;
  background-size: cover;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  body.locations .office-locations .office img {
    display: inline-block;
  }
}

@media (max-width: 410px) {
  body.locations .office-locations .office img {
    display: block;
    margin: 0 auto;
  }
}

body.locations .office-locations .office .address {
  width: 200px;
}

@media (max-width: 410px) {
  body.locations .office-locations .office .address {
    display: block;
    margin: 15px auto;
    text-align: center;
  }
}

body#multimedia.new #video-content #social-container .btn-xs {
  width: auto !important;
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  overflow: hidden;
}

body#media-view.new .video #mediaview .social-media .btn-xs {
  width: auto !important;
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  overflow: hidden;
}

body.surveyform form fieldset .control-group div {
  font-weight: bold;
}

body.surveyform form fieldset .control-group .control-label {
  font-weight: bold !important;
}

input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}

#copyButton {
  top: -3px;
  position: relative;
}

body#media-view footer {
  margin-top: 0px !important;
}

body#media-view #breadcrumb a {
  color: white;
}

body#media-view #breadcrumb a:hover {
  color: #1D5D8B;
}

body#media-view #content {
  color: white;
  background: #022342;
}

body#media-view #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}

@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}

body#media-view #featured-details-header a {
  color: #fff;
}

body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}

body#media-view #featured-details-description {
  color: #fff;
}

body#media-view #featured-details-description .main_page_title {
  color: #fff;
}

body#media-view #featured-details-description p {
  line-height: 25px;
}

body#media-view #share-footer a {
  color: #1a7bbc;
}

body#media-view #share-footer a:hover {
  color: #fff;
}

#share-buttons li {
  float: right;
}

#share-buttons #share-copy-link {
  cursor: pointer;
}

#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #60a8dd;
}

#multimedia-browser ul.nav-tabs li a:hover {
  background: #1a7bbc;
}

#multimedia-browser ul.nav-tabs li.active {
  background-color: #267AB5;
}

#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: #1a7bbc;
  color: #fff;
}

#multimedia-browser .pagination {
  background-color: #267AB5;
}

#multimedia-browser .row .media-thumbnail a {
  color: #363636;
}

#multimedia-browser .row .media-thumbnail a:hover {
  color: #1D5D8B;
}

body#multimedia.new #breadcrumb {
  display: none;
}

body#multimedia.new #newscontent.video {
  padding: 0;
}

body#multimedia.new #video-content {
  background-color: #022342;
  padding: 40px 80px;
  position: relative;
}

@media (max-width: 767px) {
  body#multimedia.new #video-content {
    padding: 40px 30px;
  }
}

body#multimedia.new #video-content:after {
  content: '';
  background-color: #022342;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}

body#multimedia.new #video-content:before {
  content: '';
  background-color: #022342;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}

body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}

body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}

@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}

@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}

body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-family: 'Open Sans', 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: #fff;
}

body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}

body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}

body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}

body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}

body#multimedia.new .media-header {
  color: #60a8dd !important;
  font-size: 56px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}

body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}

body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}

body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}

body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}

body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}

body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}

body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}

body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}

body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}

body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}

body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}

@media (max-width: 767px) {
  body#multimedia.new #multimedia-browser {
    padding: 40px 30px;
  }
}

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 #60a8dd;
  border-bottom: 0px;
  display: none;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #60a8dd !important;
  font-size: 52px;
  text-transform: uppercase;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #1a7bbc;
}

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: #1a7bbc;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  padding: 0 13px;
  margin-top: -18px;
}

body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  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: #267AB5;
  text-transform: uppercase;
}

body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
}

body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
}

body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #363636;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #363636;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #1a7bbc;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #1a7bbc;
}

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: #363636;
  height: 165px;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  display: inline-block;
}

body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #60a8dd;
}

body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #363636;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}

body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #60a8dd;
}

body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #60a8dd;
}

@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 .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 .container {
  background-color: #003668;
  padding: 40px 0px !important;
}

body footer .footer-ul.footernav {
  text-align: center;
}

body footer .footer-ul.footernav li {
  padding: 30px 15px 20px;
  text-align: center;
}

body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-family: 'Bebas Neue', cursive;
}

body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}

body footer .footer-ul.footernav li a:hover {
  text-decoration: none;
  color: #60a8dd;
}

body footer .footer-ul.footernav.subfooternav {
  /*float:left;*/
}

body footer .footer-ul.footernav.subfooternav li a {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: none;
}

body footer .footer-ul.footernav.subfooternav li #google_translate_element a{
  color: #003668!important;
}

body footer .footer-ul.footernav.subfooternav li a:hover {
  text-decoration: underline;
}

body footer .footer-ul.footernav.subfooternav li {
  padding-top: 3px;
  padding-bottom: 0px;
}

body footer .footer-ul.footernav.subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}

body footer .footer-ul.footernav.subfooternav li+li {
  border-left: 1px solid white;
  padding-right: 10px;
}

body footer .right .social-list li {
  padding: 0 1px;
}

body footer .right .social-list a {
  height: 30px;
  width: 30px;
  border-radius: 30px;
  border: 1px solid #267AB5;
  color: white;
  text-align: center;
  font-size: 16px !important;
  padding-top: 4px;
  background-color: #267AB5;
  display: inline-block;
}

body footer .right .social-list a:hover {
  background-color: white;
  color: #003668;
  border-color: #fff;
}

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) footer {
  margin-top: 50px;
}

#newsletter-signup-container {
  max-height: 0px;
  overflow: hidden;
  text-align: center;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
}

#newsletter-signup-container form {
  max-width: 450px;
  margin: 0 auto;
  display: inline-block;
  margin-bottom: 30px;
}

#newsletter-signup-container form .col-sm-6+.col-sm-6 {
  padding-left: 0px;
}

#newsletter-signup-container form button {
  background-color: #267AB5;
  color: white;
  width: 100%;
  border-radius: 40px;
  height: 40px;
  border: 0px;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}

#newsletter-signup-container h2 {
  color: white;
  margin-top: 50px;
  margin-bottom: 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
}

#newsletter-signup-container input {
  border: 2px solid white;
  margin-bottom: 10px;
  height: 44px;
  padding: 10px;
  background: transparent;
  color: white;
  border-radius: 40px;
  outline: 0px;
  width: 100%;
}

#newsletter-signup-container input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}

#newsletter-signup-container input::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}

#newsletter-signup-container input:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}

#newsletter-signup-container input:-moz-placeholder {
  /* Firefox 18- */
  color: white;
}

#newsletter-signup-container.open {
  max-height: 500px;
}

#newsletter-signup-container #newsletter-close {
  float: left;
  margin-top: 15px;
  margin-left: 20px;
  font-size: 23px;
  color: white;
}

#newsletter-confirmation {
  margin-bottom: 136px;
  color: white;
  display: inline-block;
}

#flagForm #flag-options .head {
  background-color: #267AB5;
  color: #fff;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
}

/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}

.hide-on-submit {
  display: none !important;
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

font-family:'Proxima N W01 Cd Bold';
font-family:'ProximaNW01-CdBoldIt';
font-family:'Proxima N W01 Cd Reg';
font-family:'Proxima N W01 Bold';
font-family:'Proxima N W01 Black';
font-family:'Proxima N W01 Reg It';
font-family:'Proxima Nova W01 Medium';
font-family:'Proxima N W01 Smbd';
font-family:'Proxima N W01 Reg';
font-family:'Proxima N W01 Light';
font-family:'Proxima Nova W01 Medium Italic';
font-family:'Proxima N W01 Smbd It';
font-family:'Proxima N W01 Bold It';
font-family:'Proxima Nova Condensed W01 Md';
font-family:'Proxima N W01 Cd Smbd';
font-family:'Bebas Neue W01 Regular';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.semibold {
 font-family: 'Open Sans', sans-serif;
 font-weight: 600;
}

.bold {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}

.black {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
}

.regular {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.bebas {
  font-family: 'Bebas Neue', cursive;
}

/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.serif {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.sans {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.sans-serif {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.gradient {
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
}

body {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}

.h1,
.h2,
h1,
h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

/*anchor stlyes*/
a,
.light-bg-link {
  color: #267AB5;
}

a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #1D5D8B;
}

/* 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,
.date.black {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #363636;
}

p.summary {
  color: #363636;
}

p.summary a {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  font-size: 15px;
  text-transform: uppercase;
}

h2.title {
  margin-top: 7px;
}

h2.title a {
  color: #363636;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}

h2.title a:hover {
  color: #1D5D8B;
}

/*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: #267AB5;
  color: white;
}

.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #1a7bbc !important;
  background: #1a7bbc !important;
  color: white;
}

body:not(#multimedia) #main_column form .btn,
.flagformbutton .btn {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

body:not(#multimedia) #main_column form .btn:hover,
.flagformbutton .btn:hover {
  background-color: #1a7bbc !important;
  background: #1a7bbc !important;
  color: white;
}

#main_column form fieldset legend {
  font-weight: normal;
  font-size: 30px;
  color: #003668;
  font-size: 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
}

/*interior page content default styles */
body .container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
  position: relative;
}

.modal .modal-backdrop.in {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
}

.modal .close {
  font-size: 45px !important;
  color: white !important;
  opacity: 1 !important;
}

.modal .modal-content {
  box-shadow: 0px 0px 0px;
  border: 0px;
  background-color: transparent;
  color: white;
}

.modal .modal-dialog {
  margin: 10% auto 0;
}

.modal .modal-header {
  border: 0px;
}

.modal .modal-header h1,
.modal .modal-header h1.modal-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: white;
}

.modal .modal-body select {
  border-color: white;
  background-color: transparent;
  color: white;
}

.modal .modal-body button,
.modal .modal-body .btn {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  #filtermodal .modal-dialog {
    padding: 0 25px;
  }
}

#filtermodal .modal-dialog .modal-content .modal-body form select {
  border-color: white;
  background-color: transparent;
  color: white;
  height: 50px;
}

#filtermodal .modal-title {
  color: white !important;
}

body#newsroom .modal-dialog .modal-content .modal-body form select {
  border-color: white;
  background-color: transparent;
  color: white;
  height: 50px;
}

@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 #header a.logo-hold h1 {
  background-image: none;
}

.ie .modal-dialog .modal-content form select {
  color: #000 !important;
}

.ie11 .ieonly {
  display: block !important;
}

.ie11 .notie {
  display: none !important;
}

fa-events-icons-ready js flexbox no-flexboxlegacy canvas canvastext no-webgl no-touch geolocation postmessage no-websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize no-borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients no-cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg no-smil svgclippaths .ie10 .ieonly {
  display: block !important;
}

fa-events-icons-ready js flexbox no-flexboxlegacy canvas canvastext no-webgl no-touch geolocation postmessage no-websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize no-borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients no-cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg no-smil svgclippaths .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;
}

#travels #main_container {
  background-color: #F6F6F6;
  padding-top: 60px;
}

#travels #main_container .one_column {
  overflow-x: hidden;
}

#travels .main_page_title {
  display: none;
}

.map-filter {
  color: white;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #003668;
  /* Old browsers */
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003668', endColorstr='#1a7bbc', GradientType=1);
  /* IE6-9 */
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  font-size: 22px;
  padding: 30px 50px;
  margin-bottom: 50px;
}

.filter-switch {
  width: 49%;
  display: inline-block;
  margin-bottom: 12px;
}

.filter-switch .switch {
  position: relative;
  width: 60px;
  height: 34px;
  background-color: pink;
  display: inline-block;
  border-radius: 20px;
  vertical-align: middle;
  transition: all 0.2s ease-in;
}

.filter-switch .switch#press_release {
  background-color: #6acc6c;
}

.filter-switch .switch#news_article {
  background-color: #7777c3;
}

.filter-switch .switch#grant {
  background-color: #95c0e7;
}

.filter-switch .switch#oped {
  background-color: #f9dd17;
}

.filter-switch .switch .ball {
  width: 30px;
  height: 30px;
  top: 2px;
  left: 28px;
  border-radius: 30px;
  background-color: white;
  display: inline-block;
  position: absolute;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease-in;
}

.filter-switch .switch#press_release.off,
.filter-switch .switch#grant.off,
.filter-switch .switch#news_article.off,
.filter-switch .switch#oped.off {
  background-color: #e6e6e6;
}

.filter-switch .switch#press_release.off .ball,
.filter-switch .switch#grant.off .ball,
.filter-switch .switch#news_article.off .ball,
.filter-switch .switch#oped.off .ball {
  left: 2px;
}

.filter-switch label {
  font-weight: normal;
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  font-size: 16px;
  max-width: 90px;
  line-height: 18px;
  vertical-align: middle;
}

.travels .map-popup {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 70px 50px;
  background-color: rgba(226, 223, 222, 0.6);
  display: none;
}

.travels .map-popup .close-button {
  position: relative;
  top: -42px;
  border: none;
  background-color: transparent;
  text-transform: uppercase;
}

.travels .map-popup .close-button:hover {
  color: #ccc7c5;
}

.popover-date {
  position: relative;
}

.travels .popover .desc iframe {
  width: 100%;
  height: 210px;
  margin-top: 20px;
}

#travel-map-container {
  position: relative;
  padding: 25px 0px;
  background-color: #ebebeb;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

#travel-map-container #travel-map {
  display: block;
  position: relative;
  background-image: url(/themes/warren/images/map.png);
  background-size: 100% 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 300px;
  height: 172px;
}

@media (min-width: 479px) {
  #travel-map-container #travel-map {
    width: 400px;
    height: 237px;
  }
}

@media (min-width: 950px) {
  #travel-map-container #travel-map {
    width: 600px;
    height: 356px;
  }
}

@media (min-width: 1000px) {
  #travel-map-container #travel-map {
    width: 620px;
    height: 386px;
  }
}

@media (min-width: 1200px) {
  #travel-map-container #travel-map {
    width: 707px;
    height: 420px;
  }
}

#travel-map-container #travel-map .circle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50% 75% 50% 0;
  background: #267AB5;
  opacity: 0.8;
  -webkit-transform: rotate(-42deg) skewY(-15deg);
  -moz-transform: rotate(-42deg) skewY(-15deg);
  -o-transform: rotate(-42deg) skewY(-15deg);
  -ms-transform: rotate(-42deg) skewY(-15deg);
  transform: rotate(-42deg) skewY(-15deg);
  border: 1px solid #01386a99;
}

#travel-map-container #travel-map .circle-icon.press_release {
  background-color: #6acc6c;
}

#travel-map-container #travel-map .circle-icon.news_article {
  background-color: #7777c3;
}

#travel-map-container #travel-map .circle-icon.grant {
  background-color: #95c0e7;
}

#travel-map-container #travel-map .circle-icon.oped {
  background-color: #f9dd17;
}

#travel-map-container #travel-map .circle-icon.hidden {
  display: none;
}

.popover {
  position: absolute !important;
  max-width: 500px;
  width: 100%;
  padding: 0px 10px;
  background-color: white;
  color: #363636;
  border-radius: 0px;
  z-index: 900;
}

.popover p {
  line-height: 21px;
}

.popover .close {
  color: #363636;
  font-size: 30px;
  background-color: transparent !important;
  opacity: 1;
}

.popover .popover-title {
  padding: 0px;
  margin-top: 15px;
  background-color: white;
  border-bottom: 0;
  color: #363636;
  width: calc(100% - 15px);
  text-transform: none;
  font-size: 20px;
}

@media (max-width: 540px) {
  .popover .popover-title {
    float: none;
    width: 100%;
  }
}

.popover.fade.in {
  background-color: white;
  box-shadow: 0px 0px 0px;
}

.popover .close {
  background-color: #363636;
  border: 0px;
  float: right;
}

.popover .popover-img {
  width: 155px;
  height: 155px;
  margin-top: 15px;
  background-size: cover;
  padding: 15px;
  padding-left: 0px;
  margin-bottom: 25px;
}

@media (max-width: 540px) {
  .popover .popover-img {
    margin: 15px;
    margin-left: 0px;
  }
}

.popover .popover-img img {
  width: 100%;
}

.popover.bottom>.arrow:after {
  border-bottom-color: white !important;
}

.popover-content .desc img {
  width: 100%;
  height: auto;
}

.popover-content .desc {
  width: 100%;
}

@media (max-width: 540px) {
  .popover-content .desc {
    width: 100%;
    float: none;
  }
}

.popover-content {
  padding: 16px 15px;
}

.popover-content .desc iframe {
  width: 100%;
  height: 280px;
}

.no-image .popover-title {
  float: left;
}

.no-image .popover-content .desc {
  width: 100%;
}

.newnew .description p i.fa.fa-angle-right {
  font-size: 18px;
}

#voting_record .votes-modal .modal-backdrop.in{
  background: none;
  background-image:none;
  background: #424242;
  opacity: .3;
}

#voting_record .votes-modal .modal-dialog{
background-color: white;
border: 1px solid #363636;
max-width: 700px;
min-height: 444px;
}
#voting_record .votes-modal .modal-dialog .modal-content{
  padding: 0 20px;
}
#voting_record .votes-modal .modal-header h1{
  color: #363636;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 32px;
}
#voting_record .votes-modal hr{
  margin-top: 0px;
  border-top: 2px solid #e0dfdf;
  border-bottom: 3px;
  margin-bottom:0px;
}
#voting_record .votes-modal .modal-body{
  color: #363636;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  white-space: pre-wrap; /* css-3 */    
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */    
  white-space: -o-pre-wrap; /* Opera 7 */    
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#voting_record .votes-modal .modal-body .modal-bill{
  text-indent: -2.6em;
  padding-left:3em;
}

#voting_record .votes-modal .modal-body p{
margin-top: 30px;
}
#voting_record .votes-modal .gov-link{
display: block;
text-align: center;
margin-bottom: 10px;
}
#voting_record .votes-modal .votes-close{
  font-size: 50px;
  color: #cdcdcd;
  opacity: 1;
  float: right;
  background: none;
  line-height: 1;
  margin-top: -10px;
  border: none;
  outline: none;
}

#voting_record .votes-modal .mobile-close-votes{
display: none;
}

.votes_info_click{
  color: red;
}
.votes_info_click:hover{
  color: #2676b1;
  cursor: pointer;
}

.loader {
  border: 12px solid #f3f3f3;
  border-radius: 50%;
  border-top: 12px solid #3498db;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@media (max-width: 748px) {
  #voting_record .votes-modal .modal-dialog{
    border: none;
    margin-top: 0px;
    min-height:100vh;
    }

    #voting_record .votes-modal .votes-close{
    display: none;
    }

    #voting_record .votes-modal .gov-link{
      text-align: left;
      }
    #voting_record .votes-modal .mobile-close-votes{
      display: block;
      margin: 0 auto;
      font-size: 2rem;
      }
   
}
body#lobbytable .panel-group .panel{
  border-color: #095992;
  margin-bottom: 1rem;
}

body#lobbytable .panel-group .panel-link{
display: block;
font-family: 'Open Sans', sans-serif;
font-weight: 800;
}

body#lobbytable .panel-group .panel-heading{
  color: white;
  text-transform: uppercase;
  font-size: 25px;
  padding: 20px 10px;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background: #003668;
  background: -moz-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  background: -webkit-linear-gradient(left, #003668 0%, #1a7bbc 100%);
  background: linear-gradient(to right, #003668 0%, #1a7bbc 100%);
}

body#lobbytable .panel-group .panel-link .chevronicon{
  float: right;
}

body#lobbytable .panel-group .panel-link .date{
  color: white;
  font-size: 16px;
  text-transform: uppercase;
}

body#lobbytable .attendeeblock{
  display: inline-block;
  width: 100%;
}

body#lobbytable .attendeeblock .attendeeholder .attendeesname{
  padding: 1rem 1.5rem;
  background-color: rgba(27, 123, 188, 0.12);
}

  body#lobbytable .attendeeblock .attendeeholder .attendeesbody{
    display: block;
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 1rem;
  }

  body#lobbytable .attendeeblock .attendeeholder{
    margin-bottom: 1rem;
    display: inline-block;
    vertical-align: top;
    min-height: 200px;
  }

  body#lobbytable .organizerholder .organizername{
    padding: 1rem 1.5rem;
    background-color: rgba(27, 123, 188, 0.12);
  }
  
    body#lobbytable .organizerholder .organizerbody{
      display: block;
      padding: 0 1.5rem 1.5rem;
      margin-bottom: 1rem;
    }
  
    body#lobbytable .organizerholder{
      margin-bottom: 3rem;
      display: inline-block;
      vertical-align: top;
      min-height: 200px;
    }
  

    
body#faq_sam .faqsection{
  display: table;
  width: 100%;
  padding: 2rem 0 0;
}

@media (max-width:767px){
  body#faq_sam .faqsection{
    display: table;
    width: 100%;
    padding: 0px;
  }
}

body#faq_sam .faqsection .faqheader{
  color: #363636;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  margin-top: 0px;
  margin-bottom: 30px;

}

body#faq_sam .faqsection .panel{
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}


body#faq_sam .faqsection .panel-heading{
  color: #333;
  background-color: transparent;
  border-color: #013667;
  border-radius: 0;
  border: 0;
  border-bottom: 5px solid #013667;
}
body#faq_sam .faqsection .panel-title{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  color: #18458b;
}

body#faq_sam .faqsection .panel-heading a{

  text-decoration: none;
  display: table;
  width: 100%;
  vertical-align: middle;

}

body#faq_sam .faqsection .panel-heading a:hover .panel-title{
  color: #1D5D8B;
}

body#faq_sam .faqsection .panel-heading .panel-title{
  color:#013667;
  display: table-cell;
  vertical-align: middle;
  width: 90%;
}

body#faq_sam .faqsection .panel-heading .iconpanel{
  color: #60a8dd;
  display: table-cell;
  vertical-align: middle;
  width: 10%;
  text-align: right;
}

body#faq_sam .faqsection .panel-heading .iconpanel .glyphicon{
  color: #60a8dd;

}

body#faq_sam .faqsection .panel-collapse .panel-body{
  border-bottom: 5px solid #f8f8f9;
}

body#faq_sam .faqsection .panel-collapse .panel-body ul{
margin-top: 10px;
}


body#faq_sam .faqsection .panel-collapse .panel-body p{
  margin-bottom: 10px;
}


body#agency .faqsection{
  display: table;
  width: 100%;
  padding: 2rem 0 0;
}

@media (max-width:767px){
  body#agency .faqsection{
    display: table;
    width: 100%;
    padding: 0px;
  }
}

body#agency .faqsection .faqheader{
  color: #363636;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  margin-top: 0px;
  margin-bottom: 30px;

}

body#agency .faqsection .panel{
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}


body#agency .faqsection .panel-heading{
  color: #333;
  background-color: transparent;
  border-color: #013667;
  border-radius: 0;
  border: 0;
  border-bottom: 5px solid #013667;
}
body#agency .faqsection .panel-title{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  color: #18458b;
}

body#agency .faqsection .panel-heading a{

  text-decoration: none;
  display: table;
  width: 100%;
  vertical-align: middle;

}

body#agency .faqsection .panel-heading a:hover .panel-title{
  color: #1D5D8B;
}

body#agency .faqsection .panel-heading .panel-title{
  color:#013667;
  display: table-cell;
  vertical-align: middle;
  width: 90%;
}

body#agency .faqsection .panel-heading .iconpanel{
  color: #60a8dd;
  display: table-cell;
  vertical-align: middle;
  width: 10%;
  text-align: right;
}

body#agency .faqsection .panel-heading .iconpanel .glyphicon{
  color: #60a8dd;

}

body#agency .faqsection .panel-collapse .panel-body{
  border-bottom: 5px solid #f8f8f9;
}

body#agency .faqsection .panel-collapse .panel-body ul{
margin-top: 10px;
}


body#agency .faqsection .panel-collapse .panel-body p{
  margin-bottom: 10px;
}




.iframeholder{

  position: relative;
  display: block;
  padding-top: 50%;
  width: 100%;

}

.iframeholder iframe{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}



.searchfieldlabel{
  text-indent:-9000px;
}

/* links that open in a new window or tab  */


a[target="_blank"] {
  position: relative;
  display: inline-block;
  cursor: pointer;
}


a[target="_blank"] .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}
a[target="_blank"]:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  line-height:10px !important;
font-size:10px !important;
font-weight:300!important;
font-family:sans-serif !important;
}

.alert.three .headline a[target="_blank"] .tooltiptext{

  top: 125%;
bottom: auto;
}


/* links opening in new tabs end */
#searchpopup form button{
color: #363636;
}

#asides{
  margin-top: 40px;

  
}

#asides h1{
  margin: 0;
}

#asides .recent-activity ul li{
  margin-bottom: 1rem;
}