/* 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;
  background-color: #005892;
  border-radius: 0px;
  border: 0px;
}
.alert a {
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #eab72e;
}
.alert a:hover {
  color: #fff;
}

.alert.two{
  background-color: #0385b7;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #0085b8;
}
#NavMobileModal .modal-dialog .modal-content .modal-header,
#SearchModal .modal-dialog .modal-content .modal-header,
#ContactModal .modal-dialog .modal-content .modal-header {
  padding-right: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #005892;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #001b2c;
}
body#home #header .nav-hold.right-slide-search {
  margin-right: 0px;
}
/*body#home #header .nav-hold.right-slide-search .srchbutton {
  display: none;
} */
body#home #header .searcharea #search-bar #sitesearch #search-field {
  width: 100%;
}
body#home #header .right {
  padding: 18px 0px;
  float: right;
}
@media (max-width: 991px) {
  body#home #header .right {
    padding: 20px 0px;
  }
}
body #header {
  display: block;
  position: relative;
  height: 65px;
  box-shadow: 0px 10px 0px rgba(0, 0, 0, 0.38);
  z-index: 12;
}
body #header .logo-hold {
  width: 100%;
  max-width: 250px;
  padding: 3px 0px;
  margin-right: 3.1em;
  height: 75px;
}
body #header .searcharea {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  max-width: 300px;
  width: 100%;
  padding: 15px 0px;
}
@media (max-width: 1329px) {
  body #header .searcharea {
    max-width: 185px;
  }
}
@media (max-width: 1200px) {
  body #header .searcharea {
    max-width: 125px;
  }
}
body #header .searcharea #search-bar #sitesearch {
  float: none;
  position: relative;
  padding: 0px;
}
body #header .searcharea #search-bar #sitesearch #search-field {
  border: 2px solid #e0e0e0;
  height: 35px;
  position: relative;
  z-index: 10;
  padding: 0px 10px;
}
body #header .searcharea #search-bar #sitesearch button {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  border: none;
  z-index: 20;
  color: #e0e0e0;
}
body #header .searcharea #search-bar #sitesearch button .glyphicon {
  top: 0px;
  font-size: 18px;
  padding: 7px;
  color: #e0e0e0;
}
body #header .searcharea #search-bar #sitesearch button:hover .glyphicon {
  color: #363636;
}
body #header .right {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 10px;
  padding: 18px 0px;
}
@media (max-width: 991px) {
  body #header .right {
    float: right;
    padding: 20px 0px;
  }
}
@media (max-width: 380px) {
  body #header .right {
    display: none;
  }
}
body #header .right .social-list {
  margin-bottom: 0px;
  margin-left: 0px;
}
body #header .right .social-list li {
  padding-right: 1px;
  padding-left: 1px;
}
body #header .right .social-list li .newsletter {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 20px;
  background-color: transparent;
  border: none;
  margin-right: 5px;
}
body #header .right .social-list li .socialicon {
  background-color: #fff;
  border: 1px solid #0085b8;
  border-radius: 22px;
  height: 25px;
  width: 25px;
  display: block;
}
body #header .right .social-list li .socialicon i {
  color: #0085b8;
  font-size: 12px;
  padding: 6px 0px;
  text-align: center;
  vertical-align: middle;
  display: block;
}
body #header .right .social-list li .socialicon:hover {
  border: 1px solid #005892;
}
body #header .right .social-list li .socialicon:hover i {
  color: #005892;
}
body #header .nav-hold {
  position: relative;
  height: 65px;
  border: 0px;
}
body #header .nav-hold.right-slide-search,
body #header .nav-hold.right-search-modal {
  padding: 0px 0;
  float: left;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3em;
}
@media (max-width: 380px) {
  body #header .nav-hold.right-slide-search,
  body #header .nav-hold.right-search-modal {
    float: right;
  }
}
body #header .nav-hold.right-slide-search .navbar,
body #header .nav-hold.right-search-modal .navbar {
  width: auto;
  height: 65px;
  border: 0px;
}
@media (max-width: 991px) {
  body #header .nav-hold.right-slide-search .navbar,
  body #header .nav-hold.right-search-modal .navbar {
    display: table-cell;
    vertical-align: middle;
    position: relative;
  }
}
body #header .nav-hold.right-slide-search .nav-pills,
body #header .nav-hold.right-search-modal .nav-pills {
  right: 0px;
  position: relative;
}
body #header .nav-hold.right-slide-search .srchbutton,
body #header .nav-hold.right-search-modal .srchbutton {
  left: 10px;
  position: relative;
  display: inline-block;
  float: right;
  top: 20px;
  z-index: 2;
  margin-left: 0px;
  margin-right: 30px;
}
body #header .nav-hold.right-slide-search .togglemenu,
body #header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
@media (max-width: 991px) {
  body #header .nav-hold.right-slide-search .togglemenu,
  body #header .nav-hold.right-search-modal .togglemenu {
    color: #363636;
  }
}
@media (max-width: 465px) {
  body #header .nav-hold.right-slide-search .togglemenu,
  body #header .nav-hold.right-search-modal .togglemenu {
    margin-left: 5px;
  }
}
body #header .nav-hold.right-slide-search #search,
body #header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
body #header .nav-hold.right-slide-search #search.showme,
body #header .nav-hold.right-search-modal #search.showme {
  width: 90%;
}
body #header .nav-hold.right-slide-search #search #sitesearch,
body #header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
  float: none;
}
body #header .nav-hold.right-slide-search #search #sitesearch #search-field,
body #header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 97%;
  height: 40px;
  border: none;
  background-color: transparent;
  color: #363636;
  border-bottom: 3px solid #363636;
}
body #header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
body #header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #363636;
}
body #header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
body #header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #363636;
}
body #header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
body #header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #363636;
}
body #header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
body #header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #363636;
}
body #header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
body #header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
body #header .nav-hold.right-slide-search #search #sitesearch button,
body #header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: transparent;
  color: #363636;
  border: none;
  padding: 3px 6px;
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
}
body #header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
body #header .nav-hold.right-search-modal #search {
  display: none;
}
body #header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
body #header .nav-hold.hamburger-and-search,
body #header .nav-hold.hamburger-only {
  float: right;
}
body #header .nav-hold.hamburger-and-search .togglemenu,
body #header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
body #header .nav-hold.hamburger-and-search .srchbuttonmodal,
body #header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
body #header .nav-hold.hamburger-and-search .srchbutton,
body #header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
body #header .nav-hold.hamburger-and-search #search,
body #header .nav-hold.hamburger-only #search {
  display: none;
}
body #header .nav-hold.hamburger-and-search .menulabel,
body #header .nav-hold.hamburger-only .menulabel {
  display: none;
}
body #header .nav-hold.hamburger-and-search .nav-pills,
body #header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
body #header .nav-hold.hamburger-and-search.pull-left,
body #header .nav-hold.hamburger-only.pull-left {
  float: left;
}
body #header .nav-hold.hamburger-and-search.pull-left .togglemenu,
body #header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
body #header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
body #header .newsletterarea {
  height: auto;
  position: absolute;
  padding: 0px;
  top: 75px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.38);
  transition: height 0.5s ease-in;
}
body #header .newsletterarea.showit {
  height: 70px;
  transition: height 0.5s ease-in;
}
body #header .newsletterarea.showit #newsletter-signup-container #newsletter-form {
  transition: all 1.6s ease-in;
}
body #header .newsletterarea.hiding {
  height: 0px;
  transition: height 0.5s ease-in;
}
body #header .newsletterarea #newsletter-signup-container #newsletter-form {
  padding-top: 5px;
}
body #header .newsletterarea #newsletter-signup-container #newsletter-form #email_firstfield,
body #header .newsletterarea #newsletter-signup-container #newsletter-form #zip,
body #header .newsletterarea #newsletter-signup-container #newsletter-form #salutation,
body #header .newsletterarea #newsletter-signup-container #newsletter-form #firstname,
body #header .newsletterarea #newsletter-signup-container #newsletter-form #lastname {
  width: 100%;
  padding: 5px;
  height: 50px;
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  border: 2px solid #005892;
}
body #header .newsletterarea #newsletter-signup-container #newsletter-form #submit {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 20px;
  height: 50px;
  padding: 5px;
}
body #header .newsletterarea #newsletter-signup-container #newsletter-confirmation {
  width: 100%;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 12px;
}
body #header .newsletterarea #newsletter-signup-container #newsletter-confirmation span {
  font-size: 28px;
}
body #header .newsletterarea #newsletter-signup-container #newsletter-confirmation .newsletter-close {
  color: #fff;
}
body #header .newsletterarea #newsletter-signup-container #newsletter-confirmation .newsletter-close .glyphicon {
  top: -15px;
  right: -15px;
  font-size: 20px!important;
}
body #header .newsletterarea .popover-error {
  position: absolute;
}
/*
body{


	#header{
    height: 100px;

    width: 100%;

	background-color: @header-bg;

		a.logo-hold{
			width: 270px;
		    position: absolute;
		    display: block;
			img{
				width: 100%;
			}
			&.top-left{

			}
		}
		a{

			&:hover{

			}
			&:focus{


			}
		}
		.nav-hold{

		}

	}



	#content{

	}

}
*/

body#home .homebanner.new:before{ 
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body#home .homebanner.new .textarea{ 
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 25%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.38);
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
}

@media (max-width: 991px) {
  body#home .homebanner.new .textarea{ 
    top: 10%;
  }
}


body#home .homebanner.new .textarea a{ 
  font-size: 60px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  max-width: 700px;
  display: block;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
}

@media (max-width: 768px) {
  body#home .homebanner.new .textarea a{ 
    font-size: 46px;
  }
}

@media (max-width: 500px) {
  body#home .homebanner.new .textarea a{ 
    font-size: 28px;
  }
}

body#home .homebanner.new .textarea a:hover{ 
text-decoration: underline;
color: #eab72e;
}

body:not(#home) #header {
  height: 75px;
}
body:not(#home) #header .logo-hold {
  padding: 8px 0px;
  margin-right: 1em;
}
@media (max-width: 1329px) {
  body:not(#home) #header .logo-hold {
    margin-right: 1em;
    max-width: 200px;
  }
}
@media (max-width: 1199px) {
  body:not(#home) #header .logo-hold {
    margin-right: 1em;
    max-width: 200px;
    padding: 13px 0px;
  }
}
@media (max-width: 465px) {
  body:not(#home) #header .logo-hold {
    max-width: 160px;
    padding: 14px 0px;
  }
}
body:not(#home) #header .nav-hold.right-slide-search,
body:not(#home) #header .nav-hold.right-search-modal {
  margin-right: 1em;
}
@media (max-width: 1329px) {
  body:not(#home) #header .nav-hold.right-slide-search,
  body:not(#home) #header .nav-hold.right-search-modal {
    margin-right: 0px;
  }
}
body:not(#home) #header .nav-hold.right-slide-search .srchbutton,
body:not(#home) #header .nav-hold.right-search-modal .srchbutton {
  top: 25px;
}
@media (max-width: 991px) {
  body:not(#home) #header .nav-hold.right-slide-search .navbar,
  body:not(#home) #header .nav-hold.right-search-modal .navbar {
    padding: 20px 0px;
  }
}
body:not(#home) #header .newsletterarea {
  height: auto;
  position: absolute;
  padding: 0px;
  top: 75px;
  width: 100%;
  margin: 0 auto;
  background-color: #0085b8;
  transition: height 0.5s ease-in;
}
body:not(#home) #header .newsletterarea.showit {
  height: 70px;
  transition: height 0.5s ease-in;
}
body:not(#home) #header .newsletterarea.showit #newsletter-signup-container #newsletter-form {
  transition: all 1.6s ease-in;
}
body:not(#home) #header .newsletterarea.hiding {
  height: 0px;
  transition: height 0.5s ease-in;
}
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-form {
  padding-top: 15px;
}
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-form #email_firstfield,
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-form #zip,
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-form #salutation,
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-form #firstname,
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-form #lastname {
  width: 100%;
  padding: 5px;
  height: 50px;
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  border: 2px solid #005892;
}
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-form #submit {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 20px;
  height: 50px;
  padding: 5px;
  background-color: #005892;
}
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-form #submit:hover {
  background-color: #00395f;
}
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-confirmation {
  width: 100%;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 12px;
}
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-confirmation span {
  font-size: 28px;
}
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-confirmation .newsletter-close {
  color: #fff;
}
body:not(#home) #header .newsletterarea #newsletter-signup-container #newsletter-confirmation .newsletter-close .glyphicon {
  top: -15px;
  right: -15px;
  font-size: 20px!important;
}
body:not(#home) #header .newsletterarea .popover-error {
  position: absolute;
}
body:not(#home) #header .right {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 10px;
  padding: 23px 0px;
}
@media (max-width: 991px) {
  body:not(#home) #header .right {
    float: right;
    padding: 20px 0px;
  }
}
@media (max-width: 400px) {
  body:not(#home) #header .right {
    display: none;
  }
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #363636;
}
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: #0085b8;
  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: #fff;
  background-color: #363636;
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #363636;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
body .navbar .srchbutton {
  color: #363636;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body {
  /* removed the #home id from here since it seems both home and interior will have the same header */
}

body .navbar .nav-pills > li a {
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 25px 15px;
  border-radius: 0px;
}

body#home .navbar .nav-pills > li a {
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 22px;
  padding: 17px 15px;
  border-radius: 0px;
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li a {
    font-size: 20px;
    padding: 19px 8px;
  }
}
body .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;
}
@media (max-width: 320px) {
  #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
    height: 65px;
  }
}
#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;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 20px 0;
  float: right;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #f4f6f7;
  color: #363636;
  border-bottom: 3px solid #363636;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #363636;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #363636;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #363636;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #363636;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #f4f6f7;
  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;
}
body:not(#home) {
  /* removed the #home id from here since it seems both home and interior will have the same header */
}
body:not(#home) #header .nav-hold .navbar .nav-pills > li a {
  padding: 22px 13px;
}
@media (max-width: 1199px) {
  body:not(#home) #header .nav-hold .navbar .nav-pills > li a {
    padding: 24px 4px;
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  body:not(#home) #header .right {
    margin-left: 0px;
  }
}
.homebanner {
  position: relative;
  height: 750px;
  margin-top: 0px;
  width: 100%;
  background-position: center;
  background-size: cover;
  z-index: 10;
  transition: height 0.5s ease-in-out;
  box-shadow: inset 0px -100px 90px rgba(0, 0, 0, 0.55);
  /*&.bg2{
		background-image: url('/themes/wyden/images/home/background2.jpg');
	}
	&.bg3{
		background-image: url('/themes/wyden/images/home/background3.jpg');
	}
	&.bg4{
		background-image: url('/themes/wyden/images/home/background4.jpg');
	}*/
}
@media (max-width: 1199px) {
  .homebanner {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .homebanner {
    height: 530px;
  }
}
@media (max-width: 767px) {
  .homebanner {
    height: 470px;
  }
}
@media (max-width: 500px) {
  .homebanner {
    height: 380px;
  }
}
.homebanner .logoarea {
  position: absolute;
  bottom: 3em;
  padding: 20px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.homebanner .logoarea img {
  width: 100%;
  max-width: 700px;
}
.homebanner.bg1 {
  background-image: url('/themes/wyden/images/home/background3.jpg');
}
.homebanner.bg2 {
  background-image: url('/themes/wyden/images/home/background5.jpg');
  background-position: center right;
}
.homebanner.bg3 {
  background-image: url('/themes/wyden/images/home/background6.jpg');
}

.homebanner.coronavirus {
  background-image: url('/themes/wyden/images/home/covidbackgroundtwo.jpg');
}


.helpbutton {
  height: 135px;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.helpbutton .backgroundimagebutton {
  background-position: center top;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 10;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: opacity 0.5s ease-in-out;
}
.helpbutton .featuredbutton {
  display: block;
  text-align: center;
  position: relative;
  background-color: rgba(0, 97, 154, 0.7);
  height: 100%;
  width: 100%;
  z-index: 11;
  transition: background-color 0.5s ease-in-out;
}
.helpbutton .featuredbutton .buttontitle {
  color: #fff;
  position: absolute;
  margin: 0 auto;
  width: 100%;
  top: 1.5em;
  text-transform: uppercase;
}
.helpbutton:hover .backgroundimagebutton {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.helpbutton:hover .featuredbutton {
  background-color: rgba(0, 97, 154, 0.1);
  transition: background-color 0.5s ease-in-out;
}
.pressbottomarea {
  background-color: #f4f6f7;
}
.pressbottomarea #press {
  height: auto;
  min-height: 500px;
}
.pressbottomarea #press .pressfeedarea {
  margin: 60px 0px;
  display: inline-block;
  position: relative;
  height: auto;
}
.pressbottomarea #press .pressfeedarea .pressareatitle {
  padding: 0px 30px;
}
.pressbottomarea #press .pressfeedarea .pressareatitle a {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
}
.pressbottomarea #press .pressfeedarea .wrap {
  padding: 10px 30px;
  min-height: 330px;
  text-align: left;
  display: block;
  vertical-align: middle;
}
.pressbottomarea #press .pressfeedarea .wrap .newsitem .press-title {
  margin-bottom: 1em;
}
.pressbottomarea #press .pressfeedarea .wrap .newsitem .press-title h1 {
  color: #363636;
  font-size: 34px;
}
.pressbottomarea #press .pressfeedarea .wrap .newsitem:hover .press-title h1 {
  color: #0085b8;
}
.pressbottomarea #press .pressfeedarea .wrap .press-summary {
  color: #363636;
}
.pressbottomarea #press .pressfeedarea .wrap .press-summary .featuredsummary {
  padding: 20px 0px;
  font-size: 20px;
}
.pressbottomarea #press .pressfeedarea .wrap .press-summary .morelink {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
.socialmedia {
  background-color: #f4f6f7;
}
.socialmedia #socialstuff {
  padding: 3em 0px 1em 0px;
}
.socialmedia #socialstuff .socialareatitle {
  padding: 0px 15px;
}
.socialmedia #socialstuff .socialareatitle span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #0085b8;
}
.socialmedia #socialstuff .mediuminsta .mediumbox {
  padding: 20px 0px;
}
.socialmedia #socialstuff .mediuminsta .mediumbox .mediumarea {
  padding: 20px;
  border: 1px solid #e2e9ec;
  margin-bottom: 1em;
  border-radius: 10px;
  min-height: 255px;
  background-color: #fff;
}
.socialmedia #socialstuff .mediuminsta .mediumbox .mediumarea .mediumareatitle .social-icon {
  font-size: 24px;
  color: black;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.socialmedia #socialstuff .mediuminsta .mediumbox .mediumarea .mediumareatitle .social-icon i {
  margin-right: 5px;
}
.socialmedia #socialstuff .mediuminsta .mediumbox .mediumarea .mediumareatitle .social-icon i:after {
  content: "|";
  margin-right: 10px;
  margin-left: 10px;
}
.socialmedia #socialstuff .mediuminsta .mediumbox .mediumarea .social-area {
  padding: 15px 0px;
  display: inline-block;
  vertical-align: middle;
  height: auto;
  min-height: 180px;
  position: relative;
}
.socialmedia #socialstuff .mediuminsta .mediumbox .mediumarea .social-area a .medium-post {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
}
.socialmedia #socialstuff .mediuminsta .mediumbox .mediumarea .social-area .medium-date {
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.socialmedia #socialstuff .mediuminsta .instagramarea {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e9ec;
  background-color: #fff;
  display: inline-block;
  width: 100%;
}
.socialmedia #socialstuff .mediuminsta .instagramarea .instagramtitle {
  font-size: 24px;
  color: black;
  padding: 0px 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.socialmedia #socialstuff .mediuminsta .instagramarea .instagramtitle i {
  margin-right: 5px;
}
.socialmedia #socialstuff .mediuminsta .instagramarea .instagramtitle i:after {
  content: "|";
  margin-right: 10px;
  margin-left: 10px;
}
.socialmedia #socialstuff .mediuminsta .instagramarea .instagramtitle:hover {
  color: #0085b8;
}
.socialmedia #socialstuff .mediuminsta .instagramarea .instagram #instamedia {
  position: relative;
  padding: 20px 4px;
}
.socialmedia #socialstuff .mediuminsta .instagramarea .instagram #instamedia a {
  max-height: 150px;
  overflow: hidden;
  display: block;
  margin: 0px;
  border: 2px solid #fff;
}
@media (max-width: 991px) {
  .socialmedia #socialstuff .mediuminsta .instagramarea .instagram #instamedia a {
    max-height: 175px;
  }
}
@media (max-width: 767px) {
  .socialmedia #socialstuff .mediuminsta .instagramarea .instagram #instamedia a {
    max-height: 165px;
    width: 50%;
    float: left;
  }
}
@media (max-width: 450px) {
  .socialmedia #socialstuff .mediuminsta .instagramarea .instagram #instamedia a {
    width: 100%;
  }
}
.socialmedia #socialstuff .mediuminsta .instagramarea .instagram #instamedia a .instaimage img {
  width: 100%;
  min-width: 280px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  left: -4em;
}
@media (max-width: 991px) {
  .socialmedia #socialstuff .mediuminsta .instagramarea .instagram #instamedia a .instaimage img {
    left: 0px;
  }
}
@media (max-width: 360px) {
  .socialmedia #socialstuff .mediuminsta .instagramarea .instagram #instamedia a .instaimage img {
    left: -15px;
  }
}
.socialmedia #socialstuff .twitter .twitterarea {
  padding: 20px;
}
.socialmedia #socialstuff .twitter .twitterarea iframe {
  border: 1px solid #e2e9ec !important;
  padding: 0px 20px!important;
  border-radius: 10px;
  background-color: #fff;
}
.officelocationarea {
  background-color: #0085b8;
  padding: 2em 0px;
}
.officelocationarea .officelocations {
  text-align: center;
}
.officelocationarea .officelocations .officeareatitle {
  margin: 1em;
}
.officelocationarea .officelocations .officeareatitle span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: 26px;
}
.officelocationarea .officelocations #office {
  width: 14.28571429%;
}
.officelocationarea .officelocations #office .officeareahighlight {
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  min-height: 370px;
  width: 100%;
}
.officelocationarea .officelocations #office .officeareahighlight .cityimage {
  height: 120px;
  width: 120px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 80px;
  margin-bottom: 20px;
  display: block;
}
.officelocationarea .officelocations #office .officeareahighlight .cityimage img {
  width: 100%;
  transition: all 0.2s ease-in;
}
@media (max-width: 1198px) {
  .officelocationarea .officelocations #office .officeareahighlight .cityimage {
    width: auto;
    height: auto;
  }
}
@media (max-width: 991px) {
  .officelocationarea .officelocations #office .officeareahighlight .cityimage {
    width: 120px;
    height: 120px;
  }
}
.officelocationarea .officelocations #office .officeareahighlight .officetitle {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.officelocationarea .officelocations #office .officeareahighlight .address {
  display: block;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #eab72e;
  margin-bottom: 15px;
}
.officelocationarea .officelocations #office .officeareahighlight .address:hover {
  text-decoration: underline;
}
.officelocationarea .officelocations #office .officeareahighlight .addresstext {
  display: block;
  font-size: 14px;
}
.officelocationarea .officelocations #office .officeareahighlight:hover {
  background-color: rgba(0, 87, 146, 0.25);
}
.officelocationarea .officelocations #office .officeareahighlight:hover .cityimage img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  transition: all 0.2s ease-in;
}
@media (max-width: 1200px) {
  .officelocationarea .officelocations #office {
    width: 14.28571429%;
  }
}
@media (max-width: 991px) {
  .officelocationarea .officelocations #office {
    width: 50%;
    float: left;
  }
}
@media (max-width: 400px) {
  .officelocationarea .officelocations #office {
    width: 100%;
  }
}
/*
default interior styles

commonly made fixes / tweaks
*/
img.banner {
  max-height: 750px;
}
body {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
body.nomaintitle .main_page_title {
  display: none;
}
.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 {
  display: none;
}
.blog-entry .byline {
  display: block;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
.toggle-btn.active,
.btn-block.hover {
  background-color: #005892 !important;
}
#breadcrumb a {
  color: #9e9e9e;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}
#breadcrumb a:hover {
  color: #858585;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin-top: 5em;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
padding: 1rem;
}
#asides #search-thomas-pod {
  margin-top: 4.6em;
}
#filterbuttons a {
  background-color: transparent;
  color: #0085b8;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #003b52;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #0085b8;
  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: #003b52;
}
body#bio #content {
  background: linear-gradient(to right, #fff 50%, #f4f6f7 50%);
}
@media (max-width: 991px) {
  body#bio #content {
    background: #fff;
  }
}
body#bio #content .topbannerarea {
  position: relative;
}
body#bio #content .topbannerarea .bioquote {
  position: absolute;
  color: #fff;
  width: 60%;
  font-size: 24px;
  bottom: 14px;
  line-height: 33px;
  text-shadow: 0px 1px 27px rgba(20, 20, 20, 0.47);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
@media (max-width: 1250px) {
  body#bio #content .topbannerarea .bioquote {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  body#bio #content .topbannerarea .bioquote {
    width: 80%;
  }
}
@media (max-width: 860px) {
  body#bio #content .topbannerarea .bioquote {
    display: none;
  }
}
body#bio #content .topbannerarea .bioquote .first {
  width: 50%;
  float: left;
  padding-right: 25px;
}
body#bio #content .topbannerarea .bioquote .second {
  padding-bottom: 20px;
}
@media (max-width: 860px) {
  body#bio #content .topbannerarea .bioquote .second {
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 20px;
  }
}
body#bio #content .topbannerarea .bioquote .thirdbig {
  font-size: 22px;
  width: 100%;
  text-align: right;
  margin-top: 10px;
}
@media (max-width: 1250px) {
  body#bio #content .topbannerarea .bioquote .thirdbig {
    font-size: 20px;
  }
}
body#bio #content .topbannerarea .bioquote .fourthbigger {
  color: #eab72e;
  font-size: 63px;
  font-style: italic;
}
@media (max-width: 1250px) {
  body#bio #content .topbannerarea .bioquote .fourthbigger {
    font-size: 48px;
  }
}
@media (max-width: 860px) {
  body#bio #content .topbannerarea .bioquote .fourthbigger {
    font-size: 60px;
    margin-top: 10px;
  }
}
body#bio #content .topbannerarea .bioquote .fourthbigger .doer {
  font-size: 78px;
  text-transform: uppercase;
  font-style: italic;
}
@media (max-width: 1125px) {
  body#bio #content .topbannerarea .bioquote .fourthbigger .doer {
    font-size: 60px;
  }
}
@media (max-width: 800px) {
  body#bio #content .topbannerarea .bioquote .fourthbigger .doer {
    font-size: 60px;
  }
}
body#bio #main_column {
  padding-top: 3em;
  background-color: #fff;
}
body#bio #asides {
  background-color: #f4f6f7;
  padding-top: 3em;
  padding-left: 30px;
}
@media (max-width: 991px) {
  body#bio #asides {
    padding-left: 15px;
    padding-bottom: 3em;
  }
}
body#bio #asides .sidesnippet {
  margin-bottom: 5em;
}
body#bio #asides .sidesnippet .committee .subitem {
  font-size: 20px;
  font-style: italic;
}
body#bio #asides h1 {
  font-size: 34px;
}
body#bio #asides .bioimage {
  width: 100%;
  max-width: 180px;
}
body#bio #asides .bioimage a img {
  width: 100%;
}
body#bio #asides #sam-votingandleg-button .bigbutton .huge-btn {
  background-color: transparent;
  color: #0085b8;
  text-transform: uppercase;
  border: 5px solid #0085b8;
  padding: 25px;
  font-size: 38px;
}
body#bio #asides #sam-votingandleg-button .bigbutton .huge-btn:hover {
  background-color: #0085b8;
  color: #fff;
}
body#bio footer {
  margin-top: 0px!important;
}
@media (max-width: 991px) {
  body#bio footer {
    margin-top: 50px!important;
  }
}
#typenav li a {
  color: #363636;
}
#typenav li.active a {
  color: white;
  background-color: #005892;
}
#typenav.affix {
  top: 0;
}
#voting_record .pagination {
  display: inline-block;
}
#voting_record .pagination .pages_nav {
  width: auto;
  clear: none;
  overflow: auto;
  float: right;
}
#voting_record .pagination .pages {
  margin: 0px;
  width: auto;
  float: left;
}
body#contact .connectButton {
  height: 100%;
  margin-bottom: 1em;
}
body#contact .connectButton a{
  min-height: 170px;
}

body#officelocations .officelocations {
  margin-top: 2em;
  text-align: center;
}
body#officelocations .officelocations .officeareatitle {
  margin: 1em;
}
body#officelocations .officelocations .officeareatitle span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #363636;
  font-size: 26px;
}
body#officelocations .officelocations #office {
  text-align: center;
  color: #363636;
  display: inline-block;
  vertical-align: middle;
  min-height: 320px;
  margin-bottom: 2em;
}
body#officelocations .officelocations #office .cityimage {
  height: 160px;
  width: 160px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 80px;
  margin-bottom: 20px;
}
body#officelocations .officelocations #office .cityimage img {
  width: 100%;
}
body#officelocations .officelocations #office .officetitle {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
body#officelocations .officelocations #office .address {
  display: block;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #eab72e;
  margin-bottom: 10px;
}
body#officelocations .officelocations #office .address:hover {
  text-decoration: underline;
}
body#officelocations .officelocations #office .addresstext {
  display: block;
  font-size: 17px;
}
body#newsroomlanding #content {
  background: #f4f6f7;
  background: linear-gradient(to left, #fff 50%, #f4f6f7 50%);
}
@media (max-width: 991px) {
  body#newsroomlanding #content {
    background: #fff;
  }
}
body#newsroomlanding #content #main_container #breadcrumb {
  display: none;
}
body#newsroomlanding #content #main_container #main_column .leftside,
body#newsroomlanding #content #main_container #main_column .rightside {
  padding-top: 2em;
}
body#newsroomlanding #content #main_container #main_column .rightside {
  background-color: #fff;
}
body#newsroomlanding #content #main_container #main_column .rightside #newscontent .section-header {
  margin-bottom: 35px;
}
body#newsroomlanding #content #main_container #main_column .rightside #newscontent .section-header a {
  color: #363636;
}
body#newsroomlanding #content #main_container #main_column .rightside #newscontent .section-header a:hover {
  color: #005892;
}
body#newsroomlanding #content #main_container #main_column .rightside #newscontent #press,
body#newsroomlanding #content #main_container #main_column .rightside #newscontent #blog,
body#newsroomlanding #content #main_container #main_column .rightside #newscontent #videos,
body#newsroomlanding #content #main_container #main_column .rightside #newscontent #photos,
body#newsroomlanding #content #main_container #main_column .rightside #newscontent #map,
body#newsroomlanding #content #main_container #main_column .rightside #newscontent #social {
  padding: 20px 0px;
}
body#newsroomlanding #content #main_container #main_column .leftside {
  background-color: #f4f6f7;
}
@media (max-width: 991px) {
  body#newsroomlanding #content #main_container #main_column .leftside {
    background: #fff;
  }
}
body#newsroomlanding #photos .instagram_section .instagram {
  width: 100%;
  display: inline-block;
}
body#newsroomlanding #photos .instagram_section .instagram #instamedia {
  position: relative;
  display: table;
  padding: 20px 4px;
}
@media (max-width: 480px) {
  body#newsroomlanding #photos .instagram_section .instagram #instamedia {
    display: block;
  }
}
body#newsroomlanding #photos .instagram_section .instagram #instamedia .instabox {
  display: inline-block;
  position: relative;
  min-height: 210px;
  overflow: hidden;
  margin-bottom: 1em;
}
@media (max-width: 600px) {
  body#newsroomlanding #photos .instagram_section .instagram #instamedia .instabox {
    width: 50%;
  }
}
@media (max-width: 480px) {
  body#newsroomlanding #photos .instagram_section .instagram #instamedia .instabox {
    width: 100%;
  }
}
body#newsroomlanding #photos .instagram_section .instagram #instamedia .instabox a {
  display: table-cell;
  float: left;
  max-width: 205px;
  max-height: 200px;
  width: 100%;
  overflow: hidden;
  margin: 5px;
}
@media (max-width: 600px) {
  body#newsroomlanding #photos .instagram_section .instagram #instamedia .instabox a {
    max-width: 100%;
  }
}
body#newsroomlanding #photos .instagram_section .instagram #instamedia .instabox a .instaimage img {
  width: 100%;
  min-width: 310px;
  min-height: 215px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  left: -2em;
}
@media (max-width: 600px) {
  body#newsroomlanding #photos .instagram_section .instagram #instamedia .instabox a .instaimage img {
    left: 0px;
  }
}
body#newsroomlanding footer {
  margin-top: 0px!important;
}
@media (max-width: 991px) {
  body#newsroomlanding footer {
    margin-top: 50px!important;
  }
}
body#pressreleaseitem #main_container .article {
  padding: 0px 14em;
}
@media (max-width: 1330px) {
  body#pressreleaseitem #main_container .article {
    padding: 0px 12em;
  }
}
@media (max-width: 1199px) {
  body#pressreleaseitem #main_container .article {
    padding: 0px 6em;
  }
}
@media (max-width: 991px) {
  body#pressreleaseitem #main_container .article {
    padding: 0px;
  }
}
.blog_entry {
  padding: 15px 15em;
}
@media (max-width: 1330px) {
  .blog_entry {
    padding: 15px 12em;
  }
}
@media (max-width: 1199px) {
  .blog_entry {
    padding: 15px 6em;
  }
}
@media (max-width: 991px) {
  .blog_entry {
    padding: 10px 0px;
  }
}
#listblocksbg {
  height: 100%;
  display: block;
  position: relative;
}
#listblocksbg .listbackgroundimg {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
#listblocksbg .list-block {
  margin: 0;
  padding: 0;
  border: 15px solid white;
}
#listblocksbg .list-block .block {
  display: table;
  height: 200px;
  position: relative;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  #listblocksbg .list-block .block {
    height: 125px;
  }
}
#listblocksbg .list-block .block a {
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
  color: white;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 29px;
  background-color: rgba(0, 97, 154, 0.7);
  transition: 0.3s ease-in background-color;
}
@media (max-width: 479px) {
  #listblocksbg .list-block .block a {
    font-size: 24px;
    line-height: 26px;
  }
}
#listblocksbg .list-block .block a .media-heading,
#listblocksbg .list-block .block a .media-heading-desc {
  opacity: 1;
  transition: 0.3s ease-in opacity;
}
#listblocksbg .list-block .block a .desc {
  position: absolute;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  top: 0px;
  left: 0px;
  transition: 0.3s ease-in opacity;
}
#listblocksbg .list-block .block a:hover {
  background-color: rgba(0, 97, 154, 0.1);
}
#listblocksbg .list-block .block a:hover .media-heading-desc {
  opacity: 0;
  transition: 0.3s ease-in opacity;
}
#listblocksbg .list-block .block a:hover .desc {
  position: absolute;
  opacity: 1;
  transition: 0.3s ease-in opacity;
}
body#issues .issuesboxes {
  height: 100%;
  display: inline-block;
  position: relative;
}
body#issues .issuesboxes .oregon {
  background-image: url('/themes/wyden/images/oregonissuebg.jpg');
  background-size: cover;
  background-position: center;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media (max-width: 767px) {
  body#issues .issuesboxes {
    width: 100%;
  }
}
body#issues .issuesboxes .help-block {
  margin: 0;
  padding: 0;
  border: 15px solid white;
}
body#issues .issuesboxes .help-block .block {
  display: table;
  height: 200px;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  body#issues .issuesboxes .help-block .block {
    height: 125px;
  }
}
body#issues .issuesboxes .help-block .block a {
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
  color: white;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 29px;
  background-color: rgba(0, 97, 154, 0.7);
  transition: 0.3s ease-in background-color;
}
body#issues .issuesboxes .help-block .block a:hover {
  background-color: rgba(0, 97, 154, 0.1);
}
@media (max-width: 479px) {
  body#issues .issuesboxes .help-block .block a {
    font-size: 24px;
    line-height: 26px;
  }
}
body#issue .one_column .breakout #issuefeed > li {
  padding-bottom: 10px;
}
body#issue .collapseissues {
  margin-top: 3em;
}
body#issue .collapseissues .relatedsubissuepanel {
  display: block;
  margin-bottom: 1em;
}
body#issue .collapseissues .relatedsubissuepanel .subissuebutton {
  width: 100%;
  display: block;
  border-bottom: 5px solid #f4f6f7;
  padding-bottom: 0.5em;
  color: #363636;
  margin-bottom: 1em;
}
body#issue .collapseissues .relatedsubissuepanel .subissuebutton .panel-title {
  font-size: 34px;
  display: block;
  color: #363636;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
body#issue .collapseissues .relatedsubissuepanel .subissuebutton .fa {
  float: right;
  position: relative;
  top: -40px;
  font-size: 30px;
}
body#issue .collapseissues .relatedsubissuepanel .subissuebutton:hover {
  border-bottom: 5px solid #c8caca;
}
body#issue .collapseissues .relatedsubissuepanel .subissuebutton:hover .panel-title {
  text-decoration: none;
}
body#issue .topareatimeline {
  position: relative;
  /* Firefox < 16 */
  /* Safari, Chrome and Opera > 12.1 */
  /* Internet Explorer */
  /* Opera < 12.1 */
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body#issue .topareatimeline .bottomareatimeline .timelistitem li {
  margin: 0 5px;
  padding: 5px;
  text-align: center;
  display: block;
  vertical-align: middle;
  background-color: #005892;
}
body#issue .topareatimeline .bottomareatimeline .timelistitem li a {
  display: block;
  vertical-align: middle;
  padding: 10px;
  color: white;
  font-size: 14px;
}
body#issue .topareatimeline .bottomareatimeline .timelistitem li:hover {
  background-color: #00395f;
}
body#issue .topareatimeline .bottomareatimeline .timelistitem .slick-prev,
body#issue .topareatimeline .bottomareatimeline .timelistitem .slick-next {
  color: #eab72e;
}
body#issue .topareatimeline .bottomareatimeline .timelistitem .slick-prev:before,
body#issue .topareatimeline .bottomareatimeline .timelistitem .slick-next:before {
  color: #eab72e;
}
@media (max-width: 768px) {
  body#issue .topareatimeline .bottomareatimeline .timelistitem .slick-prev,
  body#issue .topareatimeline .bottomareatimeline .timelistitem .slick-next {
    display: none!important;
  }
}
body#issue .topareatimeline .bottomareatimeline .timelistitem .slick-list .slick-track .slick-slide.slick-active {
  background-color: #004f83;
}
body#issue .topareatimeline .bottomareatimeline .timelistitem .slick-list .slick-track .slick-slide.slick-active.slick-center {
  background-color: #00395f;
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .slick-prev,
body#issue .topareatimeline .bottomareatimeline .timelinelist .slick-next {
  color: #eab72e;
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .slick-prev:before,
body#issue .topareatimeline .bottomareatimeline .timelinelist .slick-next:before {
  color: #eab72e;
}
@media (max-width: 768px) {
  body#issue .topareatimeline .bottomareatimeline .timelinelist .slick-prev,
  body#issue .topareatimeline .bottomareatimeline .timelinelist .slick-next {
    display: none!important;
  }
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #005892;
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel {
  margin-bottom: 1em;
  padding: 3rem;
  width: 100%;
  position: relative;
  display: block;
  height: 400px;
  border: 5px solid #819db1;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel {
    padding: 15px;
  }
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel .timelinebutton {
  background-color: #6bb336;
  color: white;
  margin-right: 2em;
  width: 250px;
  padding: 30px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 767px) {
  body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel .timelinebutton {
    display: inline-block;
    width: 100%;
    padding: 15px;
  }
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel .timelinebutton .panel-title {
  color: white;
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel .timelinetextbody {
  display: table-cell;
  text-align: left;
  padding-left: 1em;
  vertical-align: middle;
  padding: 30px;
}
@media (max-width: 767px) {
  body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel .timelinetextbody {
    display: inline-block;
    width: 100%;
    padding: 30px 15px;
    background-color: #f3f3f3;
  }
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel .timelinetextbody .subissuetext p {
  margin-bottom: 0px;
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel:before {
  content: '';
  position: absolute;
  top: -170px;
  left: 50%;
  width: 1px;
  background: #000000;
  z-index: 1;
  transition: height 2.6s;
}
@media (max-width: 1199px) {
  body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel:before {
    top: -190px;
  }
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel:nth-child(odd) {
  background-color: #f3f3f3;
}
@media (max-width: 767px) {
  body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .timelinepanel:nth-child(odd) {
    background-color: #fff;
  }
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .bounce-in {
  visibility: visible;
  -webkit-animation: fadein 0.8s;
  -moz-animation: fadein 0.8s;
  animation: fadein 0.8s;
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .is-hidden {
  visibility: hidden;
}
body#issue .topareatimeline .bottomareatimeline .timelinelist .timelines .is-hidden #imgholder .bioimageblock:before {
  content: '';
  position: absolute;
  top: -170px;
  left: 50%;
  height: 0%;
}
#academyarea {
  padding: 20px;
  position: relative;
}
#academyarea #academy {
  text-align: center;
  margin: 0 auto;
  padding: 1em;
  font-size: 18px;
}
#academyarea #academy .academylogo {
  max-width: 150px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 20px;
}
#academyarea #academy .academylogo img {
  width: 100%;
  position: relative;
  display: block;
}
body#tours #attractions .touritem {
  margin-bottom: 1em;
}
body#tours #attractions .tourimagearea {
  position: relative;
  height: 180px;
  margin-bottom: 1em;
}
body#tours #attractions .tourimagearea .tourimage {
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  position: absolute;
  top: 1px;
  transition: all 0.5s ease-in-out;
}
body#tours #attractions .tourimagearea .imagetitle {
  display: block;
  text-align: center;
  position: relative;
  background-color: rgba(0, 97, 154, 0.7);
  height: 100%;
  width: 100%;
  z-index: 11;
  transition: all 0.5s ease-in-out;
}
body#tours #attractions .tourimagearea .tourtitle {
  position: relative;
  color: #fff;
  z-index: 10;
  font-size: 40px;
  margin: 0 auto;
  text-align: center;
  top: 1em;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
body#tours #attractions .tourimagearea:hover .imagetitle {
  opacity: 0;
}
body#tours #attractions .tourimagearea:hover .tourimage {
  filter: none;
}
body#tours #tourbuttons a {
  font-size: 34px;
  margin-bottom: 1em;
}
body#tours .collapsearea {
  margin-top: 3em;
}
body#tours .collapsearea .monuments,
body#tours .collapsearea .galleries,
body#tours .collapsearea .museums {
  display: block;
  margin-bottom: 1em;
}
body#tours .collapsearea .monuments .tourinfobutton,
body#tours .collapsearea .galleries .tourinfobutton,
body#tours .collapsearea .museums .tourinfobutton {
  width: 100%;
  display: block;
  border-bottom: 5px solid #f4f6f7;
  padding-bottom: 0.5em;
  color: #363636;
  margin-bottom: 1em;
}
body#tours .collapsearea .monuments .tourinfobutton .panel-title,
body#tours .collapsearea .galleries .tourinfobutton .panel-title,
body#tours .collapsearea .museums .tourinfobutton .panel-title {
  font-size: 34px;
  display: block;
  color: #363636;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
body#tours .collapsearea .monuments .tourinfobutton .fa,
body#tours .collapsearea .galleries .tourinfobutton .fa,
body#tours .collapsearea .museums .tourinfobutton .fa {
  float: right;
  position: relative;
  top: -40px;
  font-size: 30px;
}
body#tours .collapsearea .monuments .tourinfobutton:hover,
body#tours .collapsearea .galleries .tourinfobutton:hover,
body#tours .collapsearea .museums .tourinfobutton:hover {
  border-bottom: 5px solid #c8caca;
}
body#tours .collapsearea .monuments .tourinfobutton:hover .panel-title,
body#tours .collapsearea .galleries .tourinfobutton:hover .panel-title,
body#tours .collapsearea .museums .tourinfobutton:hover .panel-title {
  text-decoration: none;
}
body#tours .collapsearea .monuments ul,
body#tours .collapsearea .galleries ul,
body#tours .collapsearea .museums ul {
  padding-left: 20px;
}
body#legislation #voting_record .page:first-child {
  border-top: 0px;
}
body#legislation #voting_record .page .headers .top-date,
body#legislation #voting_record .page .headers .top-bill,
body#legislation #voting_record .page .headers .top-vote,
body#legislation #voting_record .page .headers .top-result,
body#legislation #voting_record .page .headers .top-category {
  font-size: 1.3em;
}
body#legislation #voting_record .page .row {
  padding: 5px 5px 10px 5px;
}
body#legislation #voting_record .page .row .date,
body#legislation #voting_record .page .row .bill,
body#legislation #voting_record .page .row .vote,
body#legislation #voting_record .page .row .result,
body#legislation #voting_record .page .row .category {
  font-size: 18px;
}
body#guestbook #header {
  display: none;
}
body#guestbook #main_container {
  background-color: #f4f6f7;
}
body#guestbook #main_container #breadcrumb {
  display: none;
}
body#guestbook #main_container #main_column {
  padding: 5em;
}
@media (max-width: 991px) {
  body#guestbook #main_container #main_column {
    padding: 2em;
  }
}
@media (max-width: 767px) {
  body#guestbook #main_container #main_column {
    padding: 1em;
  }
}
body#guestbook #main_container #main_column .guestbooklogo {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
  float: none;
  text-align: center;
  padding-bottom: 2em;
}
body#guestbook #main_container #main_column .guestbooklogo img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: -3px;
  position: relative;
}
body#media-view #content {
  color: white;
  background: #363636;
}
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: #005892;
}
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 #0085b8;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #005892;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #0085b8;
}
#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: #005892;
  color: #fff;
}
#multimedia-browser .multimedia-tools select.topics {
  width: 80%!important;
}
#multimedia-browser .pagination {
  background-color: #0085b8;
}
#multimedia-browser .row .media-thumbnail a {
  color: #363636;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #0085b8;
}
@media (max-width: 768px) {
  #multimedia-browser .media-thumbnail {
    text-align: center;
  }
}
body#multimedia.new #breadcrumb {
  display: none;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #newscontent.video .topvideobg {
  width: 100%;
  background-color: #363636;
}
body#multimedia.new #video-content {
  background-color: #363636;
  padding: 40px 28px;
  position: relative;
}
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: 'Roboto', sans-serif;
  font-weight: 600;
  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;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content {
    padding: 40px 40px;
  }
}
@media (max-width: 370px) {
  body#multimedia.new #video-content {
    padding: 40px 10px;
  }
}
body#multimedia.new .media-header {
  color: #005892 !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
  top: 3px;
}
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 20px;
}
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 #0085b8;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #0085b8 !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #005892;
}
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: #005892;
  color: #fff;
font-family: 'Oswald', sans-serif;
font-weight: 400;
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
font-family: 'Oswald', 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: #0085b8;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
font-family: 'Oswald', 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: 'Oswald', 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: #005892;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #005892;
}
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: 'Roboto', sans-serif;
  font-weight: 600;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #0085b8;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #363636;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #0085b8;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #0085b8;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: 0px;
  }
  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: 370px) {
  body#multimedia.new #multimedia-browser {
    padding: 50px 20px;
  }
}
body footer {
  background-color: #f4f6f7;
}
body footer #footernavitems {
  display: block;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 30px 0px;
}
body footer #footernavitems .footer-ul.footernav {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0px;
  margin-right: 15px;
}
body footer #footernavitems .footer-ul.footernav li {
  padding: 10px 20px;
  text-align: center;
}
body footer #footernavitems .footer-ul.footernav li a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #363636;
  font-size: 22px;
}
body footer #footernavitems .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer #footernavitems .footer-ul.footernav .officelocations {
  display: none;
}
body footer #footernavitems .social-list {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 0px;
}
body footer #footernavitems .social-list li {
  padding-right: 1px;
  padding-left: 1px;
}
body footer #footernavitems .social-list li .newsletter {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 20px;
  background-color: transparent;
  border: none;
  margin-right: 5px;
}
body footer #footernavitems .social-list li .socialicon {
  background-color: #fff;
  border: 1px solid #0085b8;
  border-radius: 22px;
  height: 25px;
  width: 25px;
  display: block;
}
body footer #footernavitems .social-list li .socialicon i {
  color: #0085b8;
  font-size: 12px;
  padding: 6px 0px;
  text-align: center;
  vertical-align: middle;
  display: block;
}
body footer #footernavitems .social-list li .socialicon:hover {
  border: 1px solid #005892;
}
body footer #footernavitems .social-list li .socialicon:hover i {
  color: #005892;
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #005892;
}
body footer .subfooternav a {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav ul {
  margin-top: 10px;
}
body footer .subfooternav li {
  padding-top: 3px;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) footer {
  margin-top: 50px;
  border-top: 5px solid #c8caca;
}
body:not(#home) footer #footernavitems .footernav .officelocations {
  display: inline-block;
}
#flagForm #flag-options .head {
  background-color: #0085b8;
  color: #fff;
}
@media (max-width: 990px) {
  #flagForm .sizelabel {
    width: 100%;
  }
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

paste available font families here



font-family:'DIN Next W01 Regular';
font-family:'DINNextW01-CondensedReg';
font-family:'DINNextW01-CondensedBol';
font-family:'DIN Next LT W01 Bold';
font-family:'DINNextW01-CondensedMed';
font-family:'DIN Next W01 Medium';



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.serif {
font-family: 'Roboto', sans-serif;

}
.sans-serif {
font-family: 'Oswald', sans-serif;
font-weight: 400;
}
.bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
.bold-con {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
.med-con {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}
body {
  font-size: 18px;
font-family: 'Roboto', sans-serif;

}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
.section-header {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #0085b8;
  cursor: pointer;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #005892;
}
/* 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: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
h2.title {
  margin-top: 7px;
}
/*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: transparent;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  background-color: #0085b8;
  white-space: normal;
  padding: 5px 10px;
}
.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: #005892;
  color: #fff;
}
.pager li .btn.more,
.btn.more,
.btn-defualt.more,
.btn:visited.more,
.btn-defualt:visited.more,
btn:focus.more,
.btn-default:focus.more,
.search-media-btn.more,
#main_column form .btn.more {
  font-size: 18px;
}
.pager li .btn.btn-lrg,
.btn.btn-lrg,
.btn-defualt.btn-lrg,
.btn:visited.btn-lrg,
.btn-defualt:visited.btn-lrg,
btn:focus.btn-lrg,
.btn-default:focus.btn-lrg,
.search-media-btn.btn-lrg,
#main_column form .btn.btn-lrg {
  padding: 25px;
  font-size: 26px;
  border: 5px solid #0085b8;
}
.pager li .btn.huge-btn,
.btn.huge-btn,
.btn-defualt.huge-btn,
.btn:visited.huge-btn,
.btn-defualt:visited.huge-btn,
btn:focus.huge-btn,
.btn-default:focus.huge-btn,
.search-media-btn.huge-btn,
#main_column form .btn.huge-btn {
  background-color: transparent;
  color: #0085b8;
  text-transform: uppercase;
  border: 5px solid #0085b8;
  padding: 25px;
  font-size: 38px;
}
.pager li .btn.huge-btn:hover,
.btn.huge-btn:hover,
.btn-defualt.huge-btn:hover,
.btn:visited.huge-btn:hover,
.btn-defualt:visited.huge-btn:hover,
btn:focus.huge-btn:hover,
.btn-default:focus.huge-btn:hover,
.search-media-btn.huge-btn:hover,
#main_column form .btn.huge-btn:hover {
  background-color: #0085b8;
  color: #fff;
}
/*interior page content default styles */
@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;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
body#travels #main_container .row {
  margin-right: 0px;
  margin-left: 0px;
}
body#travels #main_container .row .col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}
body#travels #content {
  display: inline-block;
  width: 100%;
  background-color: #00346b;
  overflow: hidden;
}
@media (max-width: 1100px) {
  body#travels #content {
    height: auto !important;
  }
}
body#travels .cluster {
  color: white;
  position: absolute;
  background-color: #325078;
  opacity: 0.8;
  display: table;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 100%;
  font-family: sans-serif;
}
body#travels .cluster span {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}
body#travels .cluster:hover {
  cursor: pointer;
}
body#travels .cluster-popup {
  position: absolute;
  display: inline-block;
  background-color: white;
  padding: 15px 8px 10px;
  display: none;
  z-index: 5;
  max-width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  max-height: 500px;
  overflow-y: scroll;
}
body#travels .cluster-popup .cluster-event {
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  padding: 10px 13px;
  line-height: 19px;
  color: #005892;
}
body#travels .cluster-popup .cluster-event:nth-child(odd) {
  background-color: #efefef;
}
body#travels .cluster-popup .close {
  position: relative;
  top: -8px;
}
body#travels .cluster-popup:after {
  content: '';
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 50px;
  border-right: 10px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
body#travels .cluster-popup:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -12px;
  top: 50px;
  border-right: 12px solid rgba(0, 0, 0, 0.2);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
body#travels footer {
  display: inline-block;
  width: 100%;
  margin-top: 0px;
  margin-top: -8px;
}
body#travels .travels {
  /* extra small devices (phones, less than 768px); no media query since this is the default in bootstrap */
  height: 100%;
}
body#travels .travels .map-title {
  margin-top: 10px;
}
body#travels .travels #travel-map-container {
  position: relative;
  float: left;
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 100%;
  display: inline-block;
  background-color: white;
  background-image: url(/themes/wyden/images/travels.jpg);
}
@media (max-width: 1370px) {
  body#travels .travels #travel-map-container {
    padding: 0 30px;
  }
}
@media (max-width: 1100px) {
  body#travels .travels #travel-map-container {
    width: 100%;
    float: none;
  }
}
body#travels .travels #travel-map-container h2 {
  font-size: 100px;
  color: white;
  text-transform: uppercase;
  position: relative;
  margin-top: -14px;
  left: 110px;
  display: inline-block;
}
@media (max-width: 1370px) {
  body#travels .travels #travel-map-container h2 {
    left: 80px;
  }
}
@media (max-width: 1280px) {
  body#travels .travels #travel-map-container h2 {
    font-size: 80px;
    left: 30px;
  }
}
@media (max-width: 450px) {
  body#travels .travels #travel-map-container h2 {
    left: 0px;
  }
}
@media (max-width: 410px) {
  body#travels .travels #travel-map-container h2 {
    font-size: 65px;
  }
}
body#travels .travels #travel-map-container h4 {
  font-size: 60px;
  color: white;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0px;
  left: 110px;
}
@media (max-width: 1370px) {
  body#travels .travels #travel-map-container h4 {
    margin-top: 25px;
    left: 80px;
  }
}
@media (max-width: 1280px) {
  body#travels .travels #travel-map-container h4 {
    font-size: 48px;
    left: 30px;
  }
}
@media (max-width: 450px) {
  body#travels .travels #travel-map-container h4 {
    left: 0px;
  }
}
@media (max-width: 410px) {
  body#travels .travels #travel-map-container h4 {
    font-size: 40px;
  }
}
body#travels .travels #travel-map-container #sam-main {
  left: 120px;
  top: -15px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  width: 80%;
  max-width: 500px;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 1370px) {
  body#travels .travels #travel-map-container #sam-main {
    left: 87px;
  }
}
@media (max-width: 1280px) {
  body#travels .travels #travel-map-container #sam-main {
    left: 41px;
  }
}
@media (max-width: 451px) {
  body#travels .travels #travel-map-container #sam-main {
    left: 9px;
  }
}
body#travels .travels #travel-map-container #sam-main .c-icon {
  background-color: #0085b8;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  display: inline-block;
  border: 2px solid #005892;
  vertical-align: sub;
  margin-right: 10px;
}
body#travels .travels #travel-map-container #sam-main .c-icon.upcoming {
  background-color: #eab72e;
}
body#travels .travels #travel-map-container .legend {
  display: inline-block;
  position: relative;
  left: 120px;
  top: -15px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 1370px) {
  body#travels .travels #travel-map-container .legend {
    left: 110px;
  }
}
@media (max-width: 1280px) {
  body#travels .travels #travel-map-container .legend {
    left: 80px;
  }
}
@media (max-width: 575px) {
  body#travels .travels #travel-map-container .legend {
    display: none;
  }
}
body#travels .travels #travel-map-container .legend .c-icon {
  background-color: #0085b8;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  display: inline-block;
  border: 2px solid #005892;
  vertical-align: sub;
  margin-right: 10px;
}
body#travels .travels #travel-map-container .legend .c-icon.upcoming {
  background-color: #eab72e;
}
body#travels .travels #travel-map-container:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  opacity: 1;
  content: '';
  mix-blend-mode: multiply;
  background-blend-mode: multiply;
  background: #007db2;
  background: -moz-linear-gradient(top, #26a8e0 0%, #193f80 100%);
  background: -webkit-linear-gradient(top, #26a8e0 0%, #193f80 100%);
  background: linear-gradient(to bottom, #26a8e0 0%, #193f80 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#26a8e0', endColorstr='#193f80', GradientType=0);
}
body#travels .travels #travel-map-container #travel-map {
  background-image: url(/themes/wyden/images/wydenmap.svg);
  background-size: 100% 100%;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  position: relative;
  top: 3em;
  height: 680px;
  width: 850px;
  display: block;
}
@media (max-width: 1470px) {
  body#travels .travels #travel-map-container #travel-map {
    width: 750px;
    height: 600px;
  }
}
@media (max-width: 1370px) {
  body#travels .travels #travel-map-container #travel-map {
    width: 650px;
    height: 520px;
  }
}
@media (max-width: 1280px) {
  body#travels .travels #travel-map-container #travel-map {
    width: 560px;
    height: 448px;
  }
}
@media (max-width: 1100px) {
  body#travels .travels #travel-map-container #travel-map {
    width: 850px;
    height: 680px;
  }
}
@media (max-width: 890px) {
  body#travels .travels #travel-map-container #travel-map {
    width: 750px;
    height: 600px;
  }
}
@media (max-width: 780px) {
  body#travels .travels #travel-map-container #travel-map {
    width: 650px;
    height: 520px;
  }
}
@media (max-width: 670px) {
  body#travels .travels #travel-map-container #travel-map {
    width: 560px;
    height: 448px;
  }
}
@media (max-width: 580px) {
  body#travels .travels #travel-map-container #travel-map {
    width: 440px;
    height: 352px;
    margin-bottom: 45px;
  }
}
@media (max-width: 575px) {
  body#travels .travels #travel-map-container #travel-map {
    display: none;
  }
}
body#travels .travels #travel-map-container #travel-map .circle-icon {
  position: absolute;
  content: "";
  display: block;
  transition: all, 0.1s, ease-in;
  color: #eab72e;
}
body#travels .travels #travel-map-container #travel-map .circle-icon .fa-circle {
  color: #eab72e;
  font-size: 16px;
  -webkit-text-stroke: 2px #c59516;
}
body#travels .travels #travel-map-container #travel-map .circle-icon.marker-past {
  color: #0085b8;
}
body#travels .travels #travel-map-container #travel-map .circle-icon.marker-past .fa-circle {
  color: #0085b8;
  font-size: 16px;
  -webkit-text-stroke: 2px #005892;
}
body#travels .travels #travel-map-container #travel-map .circle-icon.office {
  color: #eab72e;
  z-index: 1;
}
body#travels .travels #travel-map-container #travel-map .circle-icon.office .fa-circle {
  color: #00356a;
  font-size: 16px;
  -webkit-text-stroke: 2px #005892;
}
body#travels .travels #travel-map-container #travel-map .circle-icon:hover {
  position: absolute;
  display: block;
  transform: scale(1.3);
  transition: all, 0.1s, ease-in;
  z-index: 2;
}
body#travels .travels .map-right {
  text-align: right;
  display: inline-block;
  float: right;
  background-color: #00346b;
}
@media (max-width: 1100px) {
  body#travels .travels .map-right {
    float: none;
    width: 100%;
    text-align: left;
  }
}
body#travels .travels #map-restrictor {
  display: inline-block;
  max-width: 270px;
  background-color: #00346b;
  text-align: left;
  vertical-align: top;
  padding: 70px 25px;
  position: relative;
}
@media (max-width: 1200px) {
  body#travels .travels #map-restrictor {
    max-width: 220px;
  }
}
@media (max-width: 1100px) {
  body#travels .travels #map-restrictor {
    max-width: 100%;
    width: 100%;
    padding: 35px 25px 50px;
  }
}
body#travels .travels #map-restrictor:before {
  content: '';
  position: absolute;
  right: -30px;
  top: 70px;
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-bottom: 45px solid transparent;
  border-left: 30px solid #00346b;
}
body#travels .travels #map-restrictor h3 {
  color: white;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0px;
}
body#travels .travels #map-restrictor .past {
  color: #0085b8;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  display: block;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  body#travels .travels #map-restrictor .past {
    margin-bottom: 10px;
  }
}
body#travels .travels #map-restrictor .form-inline {
  width: 100%;
  display: inline-block;
  position: relative;
}
body#travels .travels #map-restrictor .form-inline #map-form {
  bottom: 29px;
}
body#travels .travels #map-restrictor .form-inline .form-group {
  display: block;
}
@media (max-width: 1100px) {
  body#travels .travels #map-restrictor .form-inline .form-group {
    display: inline-block;
    width: 33%;
    padding-right: 1%;
  }
}
@media (max-width: 915px) {
  body#travels .travels #map-restrictor .form-inline .form-group {
    width: 32%;
  }
}
@media (max-width: 775px) {
  body#travels .travels #map-restrictor .form-inline .form-group {
    width: 100%;
  }
}
body#travels .travels #map-restrictor .form-inline label {
  color: #fff;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 15px;
}
@media (min-width: 767px) {
  body#travels .travels #map-restrictor .form-inline label {
    font-size: 16px;
  }
}
@media (min-width: 994px) {
  body#travels .travels #map-restrictor .form-inline label {
    font-size: 18px;
  }
}
body#travels .travels #map-restrictor .form-inline input[type="text"],
body#travels .travels #map-restrictor .form-inline input[type="email"],
body#travels .travels #map-restrictor .form-inline textarea,
body#travels .travels #map-restrictor .form-inline select {
  height: 50px;
  width: 100%;
  padding: 10px 15px;
}
body#travels .travels #map-restrictor .form-inline select {
  font-size: 18px;
}
body#travels .travels #map-restrictor .form-inline .btn {
  position: relative;
  margin: 0em 0 0 1em;
  padding: 0;
  background-color: transparent;
  line-height: 1;
  width: 100%;
  color: #fff;
  width: 200px;
}
body#travels .travels #map-restrictor .form-inline .btn:hover {
  color: white;
}
body#travels .travels #map-restrictor .form-inline #map-reset {
  margin: 0;
  padding: 0px 20px;
  width: 40%;
  float: right;
  margin-top: 42px;
}
@media (max-width: 1100px) {
  body#travels .travels #map-restrictor .form-inline #map-reset {
    width: 100px;
    padding: 19px 20px;
  }
}
body#travels .travels #map-restrictor .form-inline #map-reset:hover {
  text-decoration: underline;
}
body#travels .travels #map-restrictor .form-inline .btn-primary {
  margin: 0 0 0 1em;
  padding: 0.5em 1em;
  background-color: #00346b;
  color: #0085b8;
  border: 1px solid #0085b8;
  float: right;
  margin-top: 42px;
  width: 180px;
  margin-left: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1100px) {
  body#travels .travels #map-restrictor .form-inline .btn-primary {
    margin-right: 10px;
  }
}
body#travels .travels #map-restrictor .form-inline .btn-primary:hover {
  border-color: white;
  color: white;
}
body#travels .travels .eventskeybar {
  background-color: #e5e5e5;
  height: auto;
  position: absolute;
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  left: 0px;
}
@media (max-width: 767px) {
  body#travels .travels .eventskeybar {
    display: none;
  }
}
body#travels .travels .eventskeybar #pin-list li {
  padding-right: 10px;
  padding-left: 10px;
}
body#travels .travels .eventskeybar #pin-list li .fa-circle {
  -webkit-text-stroke: 2px #315178;
  height: 40px;
  width: 40px;
  border-radius: 30px;
  font-size: 25px;
  padding: 5px;
}
@media (max-width: 767px) {
  body#travels .travels .eventskeybar #pin-list {
    display: none;
  }
}
@media (min-width: 767px) {
  body#travels .travels .visible {
    display: block;
  }
  body#travels .travels .map-entry + .visible {
    border-top: none;
  }
}
.map-listing {
  padding-top: 70px;
  padding-left: 40px;
  max-width: 350px;
  background-color: white;
  max-height: 100vh;
  height: 100%;
  float: right;
  display: inline-block;
  text-align: left;
  overflow-y: scroll;
}
@media (max-width: 1333px) {
  .map-listing {
    max-width: 300px;
  }
}
@media (max-width: 1150px) {
  .map-listing {
    max-width: 260px;
  }
}
@media (max-width: 1100px) {
  .map-listing {
    max-width: 100%;
    width: 100%;
  }
}
.map-listing > h3 {
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  padding: 0 13px;
}
@media (max-width: 767px) {
  .map-listing {
    margin-top: 15px;
  }
}
.map-listing .map-entry {
  padding: 20px 0;
  font-size: 15px;
  font-weight: normal !important;
}
.map-listing .map-entry.office {
  display: none;
}
.map-listing .map-entry h3 {
  display: none;
}
.map-listing .map-entry h2 {
  color: #eab72e;
}
.map-listing .map-entry h4 {
  margin: 0 0 0.2em 0;
  font-size: 18px;
}
.map-listing .map-entry .address-entry,
.map-listing .map-entry .desc-entry {
  margin-top: 1em;
}
.map-listing .map-entry .address-entry a,
.map-listing .map-entry .desc-entry a {
  font-size: 13px;
  font-weight: bold;
}
.map-listing .map-entry .address-entry img,
.map-listing .map-entry .desc-entry img {
  width: 100%;
  height: auto;
}
.map-listing .map-entry .address-entry .map-entry-link,
.map-listing .map-entry .desc-entry .map-entry-link {
  font-weight: normal !important;
}
.map-listing .map-entry.past h2 {
  color: #0085b8;
}
.map-listing .map-entry + .map-entry {
  padding-top: 00px;
}
@media (min-width: 767px) {
  .map-listing .visible {
    display: block;
  }
  .map-listing .map-entry + .visible {
    border-top: none;
  }
}
.map-title {
  margin-top: 20px;
  max-width: 350px;
  margin: 30px auto;
}
.popover-map,
.popover {
  width: 100%;
  font-size: 14px;
  z-index: 999999 !important;
  background-color: white !important;
  border-radius: 0;
}
.popover-map.left > .arrow,
.popover.left > .arrow {
  right: -19px;
  margin-top: 0px;
  border-top-color: rgba(0, 0, 0, 0.1);
  border-width: 0px;
}
.popover-map .fade.in,
.popover .fade.in {
  background-color: #005892;
}
.popover-map .popover-title,
.popover .popover-title {
  margin: 0;
  padding: 18px 14px 7px 14px;
  background: none;
  font-size: 22px;
  line-height: 1;
  border: none;
  color: #eab72e;
  text-align: center;
}
.popover-map .close,
.popover .close {
  margin-right: 7px;
  color: blue;
}
.popover-map .popover-content,
.popover .popover-content {
  font-size: 14px;
  line-height: 1.3em;
  color: #363636;
}
.popover-map .popover-content .popover-date,
.popover .popover-content .popover-date {
  position: relative;
  top: -5px;
  text-align: center;
font-family: 'Roboto', sans-serif;

}
.popover-map .popover-content a,
.popover .popover-content a {
  color: #005892;
  font-weight: bold;
  width: 100%;
  text-align: center;
  display: inline-block;
}
.popover-map .popover-content a:hover,
.popover .popover-content a:hover {
  color: #00395f;
}
.popover-map .popover-content p,
.popover .popover-content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3em;
}
.popover-map .popover-content p + p,
.popover .popover-content p + p {
  margin-top: 1em;
}
.popover-map .popover-content .popover-img,
.popover .popover-content .popover-img {
  margin: 0 1em 0 0;
  height: 115px;
  text-align: center;
  overflow: hidden;
  float: left;
}
.popover-map .popover-content .popover-img img,
.popover .popover-content .popover-img img {
  width: 100%;
}
.popover-map.office,
.popover.office {
  text-align: center;
}
.popover-map.office .popover-content,
.popover.office .popover-content {
  padding-bottom: 18px;
}
.popover-map.office .popover-date,
.popover.office .popover-date {
  display: none;
}
.popover-map.office .popover-title,
.popover.office .popover-title {
  color: #005892;
}
.popover-map.past .popover-title,
.popover.past .popover-title {
  color: #005892;
}
