/* 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);
  }
}

#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog,
#ContactModal .modal-dialog {
  margin: 10% auto;
  width: 100%;
  max-width: 600px;
}

#NavMobileModal .modal-dialog .modal-content,
#SearchModal .modal-dialog .modal-content,
#ContactModal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

#NavMobileModal .modal-dialog .modal-content .modal-header,
#SearchModal .modal-dialog .modal-content .modal-header,
#ContactModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  z-index: 100;
  float: left;
  width: 100%;
}

#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  color: #fff;
  text-shadow: 0 1px 0 #000;
}

#NavMobileModal .modal-dialog .modal-content .btn,
#SearchModal .modal-dialog .modal-content .btn,
#ContactModal .modal-dialog .modal-content .btn {
  font-size: 30px;
}

#NavMobileModal .modal-dialog .modal-content .modal-header,
#SearchModal .modal-dialog .modal-content .modal-header,
#ContactModal .modal-dialog .modal-content .modal-header {
  border: none;
}

#NavMobileModal .modal-dialog .modal-content .modal-header h1,
#SearchModal .modal-dialog .modal-content .modal-header h1,
#ContactModal .modal-dialog .modal-content .modal-header h1 {
  font-size: 50px;
}

#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close,
#ContactModal .modal-dialog .modal-content .modal-header .close {
  font-size: 40px;
  color: #fff;
  opacity: 0.8;
  font-weight: 300;
}

#NavMobileModal .modal-dialog .modal-content .modal-header .close:hover,
#SearchModal .modal-dialog .modal-content .modal-header .close:hover,
#ContactModal .modal-dialog .modal-content .modal-header .close:hover {
  opacity: 1;
}

#NavMobileModal .modal-dialog .modal-content .modal-body,
#SearchModal .modal-dialog .modal-content .modal-body,
#ContactModal .modal-dialog .modal-content .modal-body {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

#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: #fff;
}

#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 {
  background-color: transparent;
}

#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch {
  padding: 40px 40px 0px 0px;
  width: 100%;
}

#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  color: rgba(0, 0, 0, 0.8);
  width: 88%;
  font-size: 34px;
  font-weight: 300;
  border: none;
  padding: 10px;
  float: left;
  margin: 0;
}

#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 {
  border: none;
  font-size: 28px;
  padding: 14px;
  width: 12%;
}

body.swc #NavMobileModal .modal-backdrop.in,
body.swc #SearchModal .modal-backdrop.in,
body.swc #ContactModal .modal-backdrop.in {
  opacity: 1;
  background-color: #fff;
}

body.swc #NavMobileModal .modal-dialog,
body.swc #SearchModal .modal-dialog,
body.swc #ContactModal .modal-dialog {
  margin: 10% auto;
  width: 100%;
  max-width: 600px;
}

body.swc #NavMobileModal .modal-dialog .modal-content,
body.swc #SearchModal .modal-dialog .modal-content,
body.swc #ContactModal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-header,
body.swc #SearchModal .modal-dialog .modal-content .modal-header,
body.swc #ContactModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  z-index: 100;
  float: left;
  width: 100%;
}

body.swc #NavMobileModal .modal-dialog .modal-content .close,
body.swc #SearchModal .modal-dialog .modal-content .close,
body.swc #ContactModal .modal-dialog .modal-content .close {
  color: #000;
  text-shadow: 0 0px 0 #000;
  padding: 20px;
}

body.swc #NavMobileModal .modal-dialog .modal-content .btn,
body.swc #SearchModal .modal-dialog .modal-content .btn,
body.swc #ContactModal .modal-dialog .modal-content .btn {
  font-size: 30px;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-header,
body.swc #SearchModal .modal-dialog .modal-content .modal-header,
body.swc #ContactModal .modal-dialog .modal-content .modal-header {
  border: none;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-header h1,
body.swc #SearchModal .modal-dialog .modal-content .modal-header h1,
body.swc #ContactModal .modal-dialog .modal-content .modal-header h1 {
  font-size: 50px;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-header .close,
body.swc #SearchModal .modal-dialog .modal-content .modal-header .close,
body.swc #ContactModal .modal-dialog .modal-content .modal-header .close {
  font-size: 40px;
  color: #000;
  opacity: 1;
  font-weight: 300;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-header .close:hover,
body.swc #SearchModal .modal-dialog .modal-content .modal-header .close:hover,
body.swc #ContactModal .modal-dialog .modal-content .modal-header .close:hover {
  opacity: 1;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-body,
body.swc #SearchModal .modal-dialog .modal-content .modal-body,
body.swc #ContactModal .modal-dialog .modal-content .modal-body {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-body a,
body.swc #SearchModal .modal-dialog .modal-content .modal-body a,
body.swc #ContactModal .modal-dialog .modal-content .modal-body a {
  color: #fff;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
body.swc #SearchModal .modal-dialog .modal-content .modal-body a:hover,
body.swc #ContactModal .modal-dialog .modal-content .modal-body a:hover {
  background-color: transparent;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-body .nav li a,
body.swc #SearchModal .modal-dialog .modal-content .modal-body .nav li a,
body.swc #ContactModal .modal-dialog .modal-content .modal-body .nav li a {
  color: #10213f;
  font-size: 28px;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
body.swc #SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
body.swc #ContactModal .modal-dialog .modal-content .modal-body #sitesearch {
  padding: 20px;
  width: 100%;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
body.swc #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
body.swc #ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  color: rgba(0, 0, 0, 0.8);
  width: 85%;
  font-size: 34px;
  font-weight: 300;
  border: none;
  padding: 10px;
  float: left;
  margin: 0;
}

body.swc #NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
body.swc #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
body.swc #ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  border: none;
  font-size: 28px;
  padding: 14px;
  width: 15%;
  background-color: #10213f;
}

body {
  background-color: #fff;
  padding-top: 155px;
}

body #header {
  height: 155px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1039;
  padding-top: 0px;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
}

body #header .logo-col {
  overflow: hidden;
  height: 155px;
}

body #header .logo {
  text-align: left;
  float: none;
  display: block;
  top: 55px;
  position: relative;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  margin: 0px;
}

body #header .logo a {
  float: none;
  display: block;
  color: #10213f;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Soho W01 Bold Condensed';
  font-size: 58px;
  font-weight: lighter;
  line-height: 30px;
  text-align: left;
  letter-spacing: -1px;
}

body #header .logo a small {
  color: #6598af;
  font-size: 22px;
  letter-spacing: -0.5px;
}

body #header .logo:hover a {
  color: #6598af;
}

body #header .logo.up {
  top: -45px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

body #header .logosmall {
  text-align: left;
  float: none;
  display: block;
  top: 140px;
  position: relative;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  width: 285px;
  margin: 0px;
}

body #header .logosmall a {
  float: none;
  display: block;
  color: #10213f;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Soho W01 Bold Condensed';
  font-size: 52px;
  font-weight: lighter;
  text-align: left;
  letter-spacing: -1px;
  line-height: 40px;
}

body #header .logosmall a small {
  color: #6598af;
  font-size: 20px;
  line-height: 33px;
  display: block;
  letter-spacing: -0.5px;
}

body #header .logosmall:hover a {
  color: #6598af;
}

body #header .logosmall.up {
  top: 10px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

body #header .signup {
  position: absolute;
  top: 0px;
  right: 0px;
  margin: 0px;
  background-color: #6598af;
  color: #fff;
}

body #header .header-mobile-steves-travels {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 0px;
  background-color: #6598af;
  color: #fff;
}

body #header .signup:hover,
body #header .header-mobile-steves-travels:hover {
  background-color: #10213f;
}

body #header.fixed {
  top: -75px;
}

body #header .travelsimage {
  display: block;
  float: left;
}

body #content {
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 90px;
}

body #content.hasbanner #main_container {
  padding-top: 40px;
}

body #content.hasbanner #breadcrumb {
  display: none;
}

body #content.hasbanner .main_page_title {
  display: none;
}

body #content #banner {
  height: 420px;
  overflow: hidden;
  position: relative;
  background-color: #10213f;
}

body #content #banner img {
  opacity: 0.8;
}

body #content #banner .bannertext {
  width: 100%;
  position: absolute;
  height: 100%;
  bottom: 0px;
}

body #content #banner .bannertext #breadcrumb {
  display: block;
}

body #content #banner .bannertext #breadcrumb a {
  color: #fff;
}

body #content #banner .bannertext .main_page_title {
  display: block;
  color: #fff;
  position: absolute;
  bottom: 0px;
}

body#newsroom .modal-title {
  color: #333;
}

body#newsroom .modal-dialog .modal-content .close {
  font-size: 40px;
  color: #333;
  opacity: 0.8;
  font-weight: 300;
}

body#newsroom .modal-dialog .modal-content .modal-body form select {
  width: 100%;
  color: #333;
  border: 1px solid #333;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

body#newsroom .modal-backdrop.in {
  opacity: 0.98;
  background-color: #fff;
}

.modal-backdrop.in {
  opacity: 0.98;
  background-color: #fff;
}

.row.full {
  margin: 0px;
}

.ieonly {
  display: none !important;
}

.ieoldonly {
  display: none !important;
}

.ie7only {
  display: none !important;
}

#swcheader {
  background-image: url('/themes/daines/images/swc/swcheader.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 260px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1039;
  padding-top: 0px;
  background-color: #fff;
}

@media (max-width: 500px) {
  #swcheader {
    height: 200px;
  }
}

#swcheader .logo-col {
  overflow: hidden;
  height: 155px;
}

#swcheader .logo {
  text-align: center;
  float: none;
  display: block;
  top: 55px;
  left: 0px;
  position: absolute;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  margin: 0px;
  width: 100%;
}

#swcheader .logo a .senate {
  float: none;
  display: inline-block;
  color: #fff;
  width: 100%;
}

#swcheader .logo a .senate .text {
  font-size: 24px;
  letter-spacing: 20px;
  text-align: center;
  margin-left: 20px;
}

@media (max-width: 991px) {
  #swcheader .logo a .senate .text {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  #swcheader .logo a .senate .text {
    letter-spacing: 18px;
  }
}

@media (max-width: 500px) {
  #swcheader .logo a .senate .text {
    letter-spacing: 14px;
  }
}

@media (max-width: 450px) {
  #swcheader .logo a .senate .text {
    font-size: 12px;
    letter-spacing: 10px;
    margin-left: 13px;
  }
}

@media (max-width: 330px) {
  #swcheader .logo a .senate .text {
    letter-spacing: 9px;
    font-size: 10px;
  }
}

#swcheader .logo a .senate .left {
  float: left;
  margin-top: 12px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 180px;
  height: 1px;
}

@media (max-width: 991px) {
  #swcheader .logo a .senate .left {
    margin-top: 7px;
    max-width: 130px;
  }
}

@media (max-width: 767px) {
  #swcheader .logo a .senate .left {
    max-width: 100px;
  }
}

@media (max-width: 640px) {
  #swcheader .logo a .senate .left {
    max-width: 80px;
  }
}

@media (max-width: 560px) {
  #swcheader .logo a .senate .left {
    max-width: 55px;
  }
}

@media (max-width: 450px) {
  #swcheader .logo a .senate .left {
    max-width: 50px;
    margin-top: 10px;
  }
}

#swcheader .logo a .senate .right {
  float: right;
  margin-top: 12px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 180px;
  height: 1px;
}

@media (max-width: 991px) {
  #swcheader .logo a .senate .right {
    margin-top: 7px;
    max-width: 130px;
  }
}

@media (max-width: 767px) {
  #swcheader .logo a .senate .right {
    max-width: 100px;
  }
}

@media (max-width: 640px) {
  #swcheader .logo a .senate .right {
    max-width: 80px;
  }
}

@media (max-width: 560px) {
  #swcheader .logo a .senate .right {
    max-width: 55px;
  }
}

@media (max-width: 450px) {
  #swcheader .logo a .senate .right {
    max-width: 50px;
    margin-top: 10px;
  }
}

#swcheader .logo a large {
  color: #fff;
  font-size: 80px;
  line-height: 80px;
  display: block;
  letter-spacing: -4px;
  font-family: 'ITC Garamond W01 Book Cond';
}

@media (max-width: 767px) {
  #swcheader .logo a large {
    font-size: 65px;
  }
}

@media (max-width: 500px) {
  #swcheader .logo a large {
    font-size: 60px;
    line-height: 50px;
  }
}

@media (max-width: 450px) {
  #swcheader .logo a large {
    font-size: 50px;
    line-height: 40px;
  }
}

#swcheader .logo:hover a {
  color: #6598af;
}

#swcheader .logo.up {
  top: -45px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

#swcheader .logosmall {
  text-align: left;
  float: none;
  display: none;
  top: 140px;
  position: relative;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  width: 285px;
  margin: 0px;
}

#swcheader .logosmall a .senate {
  float: none;
  display: block;
  color: #10213f;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Soho W01 Bold Condensed';
  font-size: 24px;
  font-weight: lighter;
  text-align: left;
  letter-spacing: -1px;
  line-height: 40px;
}

#swcheader .logosmall a large {
  color: #6598af;
  font-size: 40px;
  line-height: 33px;
  display: block;
  letter-spacing: -4px;
}

#swcheader .logosmall:hover a {
  color: #6598af;
}

#swcheader .navbar {
  background: transparent;
  position: relative;
  margin-top: 45px;
}

@media (max-width: 499px) {
  #swcheader .navbar {
    right: 0px;
  }
}

#swcheader .navbar .nav-pills {
  width: 95%;
  float: left;
}

#swcheader .navbar .nav-pills>li {
  display: inline-block;
  margin-bottom: 15px;
}

#swcheader .navbar .nav-pills>li a {
  height: auto;
  padding: 5px 18px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 22px;
  text-transform: none;
  color: #fff;
  font-family: 'ITC Garamond W01 Book';
  font-weight: 500;
}

#swcheader .navbar .nav-pills>li.selected a {
  color: #10213f;
  background: #fff;
  border-radius: 15px;
}

#swcheader .navbar .nav-pills>li:last-child .dropdown-menu {
  right: 0px;
}

#swcheader .navbar .nav-pills>li .dropdown-menu {
  -webkit-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  border: none;
  background: #696969;
  min-width: 100%;
}

#swcheader .navbar .nav-pills>li .dropdown-menu li a {
  background-color: #fff;
  font-size: 15px;
  color: #fff;
  padding: 10px;
}

#swcheader .navbar .nav-pills>li .dropdown-menu li:hover a {
  color: #6598af;
}

#swcheader .navbar .nav-pills>li:hover a {
  background: #fff;
  color: #10213f;
  border-radius: 5px;
}

#swcheader .navbar .nav-pills li+li {
  margin-left: 0px;
}

#swcheader .navbar .togglemenu {
  float: right;
  font-size: 28px;
  margin-right: 0px;
  font-family: 'Soho W01 Bold';
  font-weight: 300;
  color: #fff;
}

#swcheader .navbar .togglemenu span {
  top: 3px;
}

#swcheader #swcsearch {
  float: right;
  right: 0em;
  top: -10em;
}

#swcheader #swcsearch .srchbutton,
#swcheader #swcsearch .srchbuttonmodal {
  float: right;
  padding: 5px 0px;
  color: #fff;
}

#swcheader #swcsearch .srchbutton span,
#swcheader #swcsearch .srchbuttonmodal span {
  font-size: 18px;
}

#swcheader #swcsearch .srchbutton:hover,
#swcheader #swcsearch .srchbuttonmodal:hover {
  color: #6598af;
}

#swcheader #swcsearch #search {
  float: left;
  width: 0;
  position: absolute;
  right: 33px;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  margin-right: 10px;
}

#swcheader #swcsearch #search.showme {
  width: 95%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

#swcheader #swcsearch #search #sitesearch {
  width: 100%;
  float: left;
  padding: 0px 15px 0px;
  position: relative;
  height: 40px;
  border: none;
}

#swcheader #swcsearch #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 38px;
  padding: 5px;
}

#swcheader #swcsearch #search #sitesearch #search-field:focus {
  outline: none;
  border: none;
  filter: none;
}

#swcheader #swcsearch #search #sitesearch button {
  position: absolute;
  background-color: #10213f;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}

#swcheader #swcsearch #search #sitesearch button:hover {
  background-color: #002a77;
}

#swcheader .buffalo {
  margin: 0 auto;
  position: absolute;
  bottom: -20px;
  right: 50%;
  left: 50%;
}

#swcheader .buffalo .buffimage {
  background-color: #fff;
  padding: 10px 5px;
  border-radius: 30px;
}

@media (max-width: 500px) {
  #swcheader .buffalo {
    right: 43%;
    left: auto;
  }
}

#header .container {
  position: relative;
}

.travels-btn {
  position: relative;
  display: inline-block;
  top: 70px;
  left: 25px;
  cursor: pointer;
}

.nav-col {
  position: relative;
  right: 0;
  width: 450px;
  top: 55px;
}

@media (min-width: 1201px) {
  .nav-col {
    top: 55px;
  }
}

#header.fixed .travels-btn {
  top: 95px;
}

#header.fixed .nav-col {
  top: 72px;
}

.navbar {
  background: transparent;
  position: relative;
  top: 27px;
  text-align: right;
  width: 450px;
}

@media (max-width: 767px) {
  .navbar {
    width: auto;
  }
}

.navbar .nav-pills {
  position: relative;
  right: 13px;
  display: inline-block;
}

.navbar .nav-pills>li {
  display: inline-block;
}

.navbar .nav-pills>li a {
  height: auto;
  padding: 5px 18px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 22px;
  text-transform: uppercase;
  color: #10213f;
  font-family: 'Soho W01 Medium';
}

.navbar .nav-pills>li.selected a {
  color: #fff;
  background: #10213f;
}

.navbar .nav-pills>li:last-child .dropdown-menu {
  right: 0px;
}

.navbar .nav-pills>li .dropdown-menu {
  -webkit-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  border: none;
  background: #696969;
  min-width: 100%;
}

.navbar .nav-pills>li .dropdown-menu li a {
  background-color: #fff;
  font-size: 15px;
  color: #10213f;
  padding: 10px;
}

.navbar .nav-pills>li .dropdown-menu li:hover a {
  color: #6598af;
}

.navbar .nav-pills>li:hover a {
  background: #10213f;
  color: #fff;
}

.navbar .togglemenu {
  float: right;
  font-size: 22px;
  margin-right: 30px;
  font-family: 'Soho W01 Bold';
  font-weight: 300;
}

.navbar .togglemenu span {
  top: 3px;
}

.navbar .srchbutton,
.navbar .srchbuttonmodal {
  float: right;
  padding: 5px 0px;
  color: #10213f;
}

.navbar .srchbutton span,
.navbar .srchbuttonmodal span {
  font-size: 18px;
}

.navbar .srchbutton:hover,
.navbar .srchbuttonmodal:hover {
  color: #6598af;
}

.navbar #search {
  float: left;
  width: 0;
  position: absolute;
  right: 33px;
  top: 0;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.navbar #search.showme {
  width: 95%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.navbar #search #sitesearch {
  width: 100%;
  float: left;
  padding: 0px 15px 0px;
  position: relative;
  height: 40px;
  border: 1px solid #6598af;
}

.navbar #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  top: 0;
  height: 38px;
  padding: 5px;
}

.navbar #search #sitesearch #search-field:focus {
  outline: none;
  border: none;
  filter: none;
}

.navbar #search #sitesearch button {
  position: absolute;
  background-color: #6598af;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}

.navbar #search #sitesearch button:hover {
  background-color: #10213f;
}

.navbar-toggle {
  display: block;
  position: relative;
  float: left;
  margin: 0px;
  padding: 0;
  background-color: transparent;
  background-image: none;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  opacity: 1;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 6px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: #fff;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 3px;
}

.navbar-toggle:after {
  content: "MENU";
  display: block;
  position: absolute;
  color: #fff;
  top: 0px;
  left: 140%;
  font-size: 30px;
  font-weight: 700;
  line-height: 24px;
}

.navbar-toggle:hover .icon-bar {
  background-color: #ccc;
}

.navbar-toggle:hover:after {
  color: #fff;
}

#NavMobileModal .modal-dialog {
  margin: 2% auto 5%;
  width: 80%;
  max-width: 900px;
}

#NavMobileModal .modal-dialog .modal-content {
  position: relative;
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

#NavMobileModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  z-index: 100;
  float: left;
  width: 100%;
}

#NavMobileModal .modal-dialog .modal-content .close {
  color: #10213f;
  text-shadow: 0 1px 0 #000;
}

#NavMobileModal .modal-dialog .modal-content .btn {
  font-size: 30px;
}

#NavMobileModal .modal-dialog .modal-content .modal-header {
  /*border: none;
				position: absolute;
				top: 0px;
				right: -40px;
				width: 40px;*/
}

#NavMobileModal .modal-dialog .modal-content .modal-header h1 {
  font-size: 50px;
}

#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  color: #10213f;
  text-shadow: 0 1px 0 #000;
}

#NavMobileModal .modal-dialog .modal-content .modal-body {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: #6a6a6a;
}

#NavMobileModal .modal-dialog .modal-content .modal-body a:hover {
  background-color: transparent;
  color: red;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav {
  float: left;
  width: 100%;
  display: block;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li {
  float: left;
  width: 100%;
  display: block;
  border-bottom: 1px solid #ccc;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:last-child {
  border: none;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li>a {
  float: left;
  width: 45%;
  font-size: 24px;
  padding: 10px;
  margin: 0px;
  display: block;
  color: #6598af;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu {
  position: relative;
  z-index: 1000;
  display: block;
  float: left;
  margin: 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  background-clip: padding-box;
  width: 50%;
  padding: 0px;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li {
  float: left;
  width: 100%;
  display: block;
  margin: 0px;
  padding: 0px;
  /*border-bottom: 1px solid rgba(255,255,255,.25);
								&:last-child{
									border:none;
								}*/
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a {
  display: block;
  padding: 10px 0px;
  clear: both;
  margin: 0px;
  font-weight: normal;
  line-height: 22px;
  white-space: normal;
  font-size: 20px;
  width: 100%;
  float: left;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a:hover {
  color: #10213f;
}

#top {
  max-width: 1440px;
  margin: 0 auto;
  background-image: url('/themes/daines/images/bg.jpg');
  background-size: cover;
  background-attachment: scroll;
  background-position: center bottom;
  background-color: transparent;
  position: relative;
  background-repeat: no-repeat;
  min-height: 730px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

#top.bg1 {
  background-image: url('/themes/daines/images/bg.jpg');
}

#top.bg2 {
  background-image: url('/themes/daines/images/bg2.jpg');
}

#top.bg3 {
  background-image: url('/themes/daines/images/bg3.jpg');
  background-position: center top;
}

#top.bg4 {
  background-image: url('/themes/daines/images/bg4.jpg');
  background-position: center center;
}

#top iframe {
  width: 100%;
  height: 730px;
}

#top .content {
  position: absolute;
  text-align: center;
  bottom: 40px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

#top .content h1 {
  width: 80%;
  display: block;
  float: none;
  margin: 0 auto;
}

#top .content h1 a {
  color: #fff;
  font-size: 44px;
}

#top .content h1:hover a {
  color: #6598af;
}

#top .content .sociallinks {
  margin-top: 40px;
}

#top .content .sociallinks a {
  background-color: #fff;
  padding: 7px;
  font-size: 26px;
  display: block;
  height: 50px;
  width: 54px;
  text-align: center;
}

#top .content .sociallinks a.instagrm {
  background-color: #507aa0;
  color: white;
}

#top .content .sociallinks a.instagrm:hover {
  background-color: #fff;
  color: #507aa0;
}

#top .content .sociallinks a.you-tube {
  background-color: #c0221e;
  color: white;
}

#top .content .sociallinks a.you-tube:hover {
  background-color: #fff;
  color: #c0221e;
}

#top .content .sociallinks a.twttr {
  background-color: #539ece;
  color: white;
}

#top .content .sociallinks a.twttr:hover {
  background-color: #fff;
  color: #539ece;
}

#top .content .sociallinks a.facebk {
  background-color: #3f5997;
  color: white;
}

#top .content .sociallinks a.facebk:hover {
  background-color: #fff;
  color: #3f5997;
}

#top .content .sociallinks a.newsletter {
  background-color: #4681a3;
  color: white;
}

#top .content .sociallinks a.newsletter:hover {
  background-color: #fff;
  color: #4681a3;
}

#lower {
  padding: 30px 0px 0px;
  background-color: #fff;
  max-width: 1440px;
  margin: 0 auto;
}

.travels {
  box-sizing: border-box;
  margin: 30px auto;
}

.travels .btn.travel {
  box-sizing: border-box;
  background: url('/themes/daines/images/travelsbuttonbg.png') #518aa4;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  font-size: 22px;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 30px;
}

.travels .btn.travel:hover {
  box-sizing: border-box;
  background: url('/themes/daines/images/travelsbuttonbg-rollover.png') #345b6d;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.social {
  margin: 30px auto;
}

.social .instagram {
  float: left;
  margin-bottom: 30px;
}

.social .instagram #instamedia a {
  float: left;
  width: 145px;
  height: 145px;
  margin: 10px;
}

.social .instagram #instamedia a img {
  width: 100%;
  height: auto;
}

.social .twitter {
  float: left;
  margin-bottom: 30px;
}

.social .twitter #twitter h2 {
  clear: both;
}

.social .twitter #twitter ul {
  margin: 0;
  padding: 0;
}

.social .twitter #twitter ul li {
  list-style: none;
  overflow: hidden;
}

.social .twitter #twitter .user {
  display: none;
}

.social .twitter #twitter .tweet {
  width: 88%;
  font-size: 18px;
  padding: 0 5px 0 5px;
}

.social .twitter #twitter .tweet a {
  color: #6598af;
  font-size: 16px;
}

.social .twitter #twitter .timePosted {
  display: none;
}

.social .twitter #twitter .interact {
  clear: both;
  overflow: auto;
  width: 100%;
  float: left;
}

.social .twitter #twitter .interact a {
  color: #6a6a6a;
  margin-left: 12px;
  float: left;
}

.social .twitter #twitter .interact a:hover {
  color: #6598af;
}

.social .videos {
  float: left;
  margin-bottom: 30px;
}

.social .videos .videocontent {
  margin-bottom: 0px;
  float: left;
  width: 100%;
}

.social .videos .videocontent .holder {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
}

@media (max-width: 1199px) {
  .social .videos .videocontent .holder {
    height: 335px;
  }
}

@media (max-width: 991px) {
  .social .videos .videocontent .holder {
    height: 240px;
  }
}

@media (max-width: 400px) {
  .social .videos .videocontent .holder {
    height: 200px;
  }
}

.social .videos .videocontent .holder img {
  display: block;
  position: absolute;
  top: -70px;
  z-index: 2;
  width: 100%;
}

@media (max-width: 400px) {
  .social .videos .videocontent .holder img {
    top: -30px;
  }
}

.social .videos .videocontent .holder .blocker {
  position: absolute;
  top: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 0px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.social .videos .videocontent .holder .blocker span {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0.3;
  font-size: 90px;
  color: #fff;
  top: 45%;
}

@media (max-width: 991px) {
  .social .videos .videocontent .holder .blocker span {
    top: 30%;
  }
}

@media (max-width: 400px) {
  .social .videos .videocontent .holder .blocker span {
    top: 25%;
  }
}

.social .videos .videocontent .holder .blocker:hover {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.social .videos .videocontent .holder .blocker:hover span {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0.9;
}

.social .videos .videocontent .link {
  background: #10213f;
  padding: 10px;
  float: left;
  width: 100%;
}

.social .videos .videocontent .link a {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  float: left;
  font-family: 'Helvetica Neue LT W06_55 Roman';
}

.social .videos .videocontent .link a:hover {
  color: #fff;
  text-decoration: none;
}

.press {
  background-color: #f6f6f5;
  margin: 0px auto;
  padding: 30px 60px;
  font-family: 'Helvetica Neue LT W06_55 Roman';
  font-size: 26px;
}

.press .pressrow {
  margin-top: 0px;
  margin-bottom: 30px;
}

.press .pressrow .pressitem {
  float: left;
  margin-bottom: 30px;
}

.press time {
  display: block;
  font-size: 16px;
  color: #6a6a6a;
}

.officelocations {
  margin: 30px auto;
}

.officelocations #offices li {
  display: block;
  float: left;
  width: 20%;
  padding: 5px;
  font-family: 'Helvetica Neue LT W06_55 Roman';
  margin-bottom: 30px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

@media (max-width: 991px) {
  .officelocations #offices li {
    width: 33%;
  }
}

@media (max-width: 550px) {
  .officelocations #offices li {
    width: 50%;
  }
}

.officelocations #offices li h4 {
  font-size: 17px;
  margin-bottom: 0px;
}

.officelocations #ceMap,
.officelocations #ceMap2 {
  position: relative;
  height: 372px;
}

.officelocations #ceMap img,
.officelocations #ceMap2 img {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.officelocations #ceMap #locations,
.officelocations #ceMap2 #locations {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.officelocations #ceMap #locations .location,
.officelocations #ceMap2 #locations .location {
  position: absolute;
  top: 0px;
  left: 0px;
}

.officelocations #ceMap #locations .location .circle-icon:before,
.officelocations #ceMap2 #locations .location .circle-icon:before {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 0px;
  width: 26px;
  height: 26px;
  background-color: #fff;
  border: 2px solid #10213f;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.officelocations #ceMap #locations .location:hover .circle-icon:before,
.officelocations #ceMap2 #locations .location:hover .circle-icon:before,
.officelocations #ceMap #locations .location.hover .circle-icon:before,
.officelocations #ceMap2 #locations .location.hover .circle-icon:before {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  left: -10px;
  top: -10px;
  background-color: #6598af;
  border: 2px solid #10213f;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.officelocations #ceMap #locations .location#kalispell,
.officelocations #ceMap2 #locations .location#kalispell {
  top: 57px;
  left: 82px;
}

.officelocations #ceMap #locations .location#missoula,
.officelocations #ceMap2 #locations .location#missoula {
  top: 155px;
  left: 94px;
}

.officelocations #ceMap #locations .location#greatfalls,
.officelocations #ceMap2 #locations .location#greatfalls {
  top: 122px;
  left: 236px;
}

.officelocations #ceMap #locations .location#sidney,
.officelocations #ceMap2 #locations .location#sidney {
  left: 611px;
  top: 88px;
}

.officelocations #ceMap #locations .location#helena,
.officelocations #ceMap2 #locations .location#helena {
  top: 183px;
  left: 199px;
}

.officelocations #ceMap #locations .location#bozeman,
.officelocations #ceMap2 #locations .location#bozeman {
  top: 257px;
  left: 250px;
}

.officelocations #ceMap #locations .location#billings,
.officelocations #ceMap2 #locations .location#billings {
  top: 256px;
  left: 394px;
}

.officelocations #ceMap #locations .location#hardin,
.officelocations #ceMap2 #locations .location#hardin {
  top: 268px;
  left: 431px;
}

#topper {
  padding: 5px;
  display: block;
  width: 100%;
  text-align: center;
  top: 150px;
  z-index: 1;
  position: absolute;
  margin: 0 auto;
  background-color: #B41026;
}

@media(max-width:767px){
  #topper {
    top: 130px;
  }
}

#topper h1 a {
  color: #fff;
  width: 100%;
  font-size: 26px;
  text-align: center;
}

#topper h1 a:hover {
  color: #6598af;
}

@media (max-width: 500px) {
  #topper h1 a {
    font-size: 30px;
  }
}

.modal-content {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.modal-content .modal-header .close {
  float: right;
  font-size: 46px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  filter: alpha(opacity=100);
  opacity: 1;
}

.modal-content .modal-body iframe {
  width: 100%;
  height: 488px;
}

#content {
  background-color: #fff;
  padding-top: 50px;
}

#newscontent {
  margin-top: 20px;
}

#newscontent #press #vid-ih3puhc4 {
  width: 750px;
  margin: 0 auto;
}

#newscontent .subtitle {
  font-family: 'Helvetica Neue LT W01_77 Bd Cn';
  font-size: 28px;
  font-style: italic;
}

#breadcrumb>ol>li {
  font-size: 14px;
}

#breadcrumb>ol>li:first-child {
  display: inline-block;
}

#breadcrumb>ol>li:after {
  color: #6598af;
}

.quicknav {
  margin-top: 20px;
  margin-bottom: 30px;
}

.quicknav .nav>li a {
  text-align: center;
  background-color: #f6f6f5;
  color: #10213f;
  font-family: 'Soho W01 Regular';
  margin-bottom: 1px;
}

.quicknav .nav>li a:hover {
  background-color: #6598af;
  color: #fff;
}

.quicknav .nav>li.active a {
  background-color: #6598af;
  color: #fff;
}

.quicknav .nav>li.active a:hover {
  background-color: #10213f;
  color: #fff;
}

#typenav .nav-pills>li>a {
  text-align: center;
  background-color: #f6f6f5;
  color: #10213f;
  font-family: 'Soho W01 Regular';
  margin-bottom: 1px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

#typenav .nav-pills>li>a:hover {
  background-color: #10213f;
  color: #fff;
}

#typenav .nav-pills>li.active>a {
  background-color: #6598af;
  color: #fff;
}

#typenav .nav-pills>li.active>a:hover {
  background-color: #10213f;
  color: #fff;
}

.filtertext {
  padding-top: 10px;
}

.follow {
  margin-top: 5em;
}

.button-connect {
  width: 100%;
  height: 110px;
  padding: 38px;
  margin-bottom: 20px;
}

.button-connect .caption {
  color: white;
  font-size: 25px;
}

.table th {
  font-family: 'Soho W01 Regular';
}

.newsroomlanding #photos li .imghold {
  height: 167px;
}

aside {
  background-color: #f6f6f5;
}

aside h1 {
  padding: 10px 20px;
  background-color: #6598af;
  margin: 0px;
  color: #fff;
  font-family: 'Soho W01 Regular';
  font-size: 28px;
}

aside h1 a {
  color: #fff;
}

aside h1 a:hover {
  color: #10213f;
}

aside h2 {
  padding: 10px 20px;
  background-color: #6598af;
  margin: 0px;
  color: #fff;
  font-family: 'Soho W01 Regular';
  font-size: 24px;
}

aside h2 a {
  color: #fff;
}

aside h2 a:hover {
  color: #10213f;
}

aside h3 {
  padding: 10px 20px;
  background-color: #6598af;
  margin: 0px;
  color: #fff;
  font-family: 'Soho W01 Regular';
  font-size: 20px;
}

aside h3 a {
  color: #fff;
}

aside h3 a:hover {
  color: #10213f;
}

aside ul {
  margin: 0px;
  padding: 20px;
  padding-left: 40px;
  border-bottom: 1px solid #fff;
}

aside .twitter {
  display: block;
  position: relative;
}

aside .twitter h3 {
  padding: 0px;
  margin: 0px;
  color: #fff;
  font-family: 'Soho W01 Regular';
  font-size: 20px;
}

aside .twitter h3 a {
  background-color: #6598af;
  padding: 10px 20px;
  display: block;
  width: 100%;
  color: #fff;
}

aside .twitter h3 a:hover {
  background-color: #10213f;
  color: #fff;
}

aside .twitter ul {
  list-style: none;
  padding: 0px;
}

aside .twitter ul li {
  padding: 10px 20px;
}

aside .twitter ul li a:hover {
  text-decoration: none;
}

aside .twitter ul li img {
  width: 33px;
}

aside .twitter ul li span[data-scribe="element:name"] {
  font-size: 16px;
  font-family: 'Soho W01 Regular';
  padding-left: 6px;
}

aside .twitter ul li span[data-scribe="element:verified_badge"] {
  display: none;
}

aside .twitter ul li span[data-scribe="element:screen_name"] {
  display: none;
  font-size: 16px;
  position: relative;
}

aside .twitter ul li span[data-scribe="element:screen_name"]:hover {
  color: #6598af;
}

aside .twitter ul li .timePosted {
  font-size: 14px;
  margin-bottom: 9px;
}

aside .twitter ul li .tweet {
  margin-top: 10px;
  word-wrap: break-word;
}

aside .twitter ul li:hover {
  background-color: #eee;
}

aside .twitter ul li:hover a {
  color: #6598af;
}

aside .twitter .interact a {
  padding-right: 29px;
}

aside .facebook-feed-col h3 {
  padding: 0px;
  margin: 0px;
  color: #fff;
  font-family: 'Soho W01 Regular';
  font-size: 20px;
}

aside .facebook-feed-col h3 a {
  background-color: #6598af;
  padding: 10px 20px;
  display: block;
  width: 100%;
  color: #fff;
}

aside .facebook-feed-col h3 a:hover {
  background-color: #10213f;
  color: #fff;
}

aside .facebook-feed-col #facebook {
  padding: 0;
}

aside .facebook-feed-col #facebook ul {
  list-style: none;
  padding: 0;
}

aside .facebook-feed-col #facebook ul li {
  padding: 10px 20px;
}

aside .facebook-feed-col #facebook ul li a {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

aside .facebook-feed-col #facebook ul li:hover {
  background-color: #eee;
}

aside .facebook-feed-col #facebook ul li:hover a {
  color: #6598af;
}

aside .facebook-feed-col #facebook #fb-time {
  font-size: 14px;
}

aside .instagram h3 {
  padding: 0px;
  margin: 0px;
  color: #fff;
  font-family: 'Soho W01 Regular';
  font-size: 20px;
}

aside .instagram h3 a {
  background-color: #6598af;
  padding: 10px 20px;
  display: block;
  width: 100%;
  color: #fff;
}

aside .instagram h3 a:hover {
  background-color: #10213f;
  color: #fff;
}

aside .instagram #instamedia {
  text-align: center;
  padding: 20px;
  float: left;
  width: 100%;
  display: block;
  background-color: #f6f6f5;
}

aside .instagram #instamedia a {
  display: block;
  float: left;
  width: 31%;
  margin-bottom: 10px;
  margin-right: 10px;
}

aside .instagram #instamedia a img {
  width: 100%;
  display: block;
  height: auto;
}

aside .instagram #instamedia a:hover img {
  opacity: 0.5;
}

aside .instagram #instamedia a:nth-child(3n) {
  margin-right: 0px;
}

aside #search-thomas-pod h1 {
  padding: 10px 20px;
  background-color: transparent;
  margin: 0px;
  font-size: 24px;
  color: #333;
  font-family: 'Soho W01 Medium';
}

aside #search-thomas-pod form {
  padding: 0px 20px 20px;
  display: block;
}

aside #search-thomas-pod form select {
  font-size: 18px;
}

#filter-legislation h1,
#search-thomas h1 {
  padding: 10px 20px;
  background-color: transparent;
  margin: 0px;
  font-size: 24px;
  color: #333;
  font-family: 'Soho W01 Medium';
}

#filter-legislation form,
#search-thomas form {
  padding: 0px 20px;
  display: block;
}

#filter-legislation form select,
#search-thomas form select {
  font-size: 18px;
}

#search-thomas form {
  padding: 0px 20px 20px;
}

#search-issues-results {
  margin-top: 40px;
  padding: 0px;
  background-color: #fff;
}

#search-issues-results .result {
  display: block;
  padding: 10px;
  width: 100%;
}

#search-issues-results .result h3 {
  margin: 0;
  font-size: 1em;
}

#search-issues-results .result p {
  margin: 0px;
  width: 100%;
  font-size: 0.9em;
}

#search-issues-results .result p+p {
  margin-top: 1em;
}

#search-issues-results .result hr {
  display: none;
}

#search-issues-results .result+.result {
  border-top: 1px dotted #aaa;
}

#issueFeed>li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}

body#delegation hr {
  border-top: 1px solid #6a6a6a;
}

.ce_youtube_video {
  margin: 0 auto;
}

body#swchome #content {
  margin-bottom: 0px;
  padding-top: 40px;
}

body#swchome #content #breadcrumb {
  display: none;
}

body#swchome .press {
  background-color: #fff;
  margin: 0px auto;
  padding: 0px 0px;
  padding-bottom: 50px;
  font-size: 24px;
}

body#swchome .press h3 {
  font-family: 'Helvetica Neue LT W01_77 Bd Cn';
  text-transform: uppercase;
  margin-bottom: 30px;
}

body#swchome .press .pressrow .pressitem time {
  color: #363636;
}

body#swchome .press .pressrow .pressitem a {
  color: #363636;
}

body#swchome .press .pressrow .pressitem a:hover {
  color: #002a77;
}

body#swchome .bottompart {
  background-color: #10213f;
  min-height: 300px;
  height: auto;
}

body#swchome .bottompart .socialstuff {
  padding: 4em 1em;
}

body#swchome .bottompart .socialstuff .twitter {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  body#swchome .bottompart .socialstuff .twitter {
    margin-bottom: 5em;
  }
}

body#swchome .bottompart .socialstuff .twitter .fa-twitter {
  color: #10213f;
  background-color: #fff;
  padding: 8px 10px;
  border-radius: 37px;
  font-size: 30px;
}

body#swchome .bottompart .socialstuff .twitter #twitter ul li .tweet {
  color: #fff;
  font-size: 25px;
  max-height: 170px;
  overflow: hidden;
}

body#swchome .bottompart .socialstuff .twitter #twitter ul li .tweet a {
  color: #fff;
  text-decoration: underline;
}

body#swchome .bottompart .socialstuff .twitter #twitter ul li .tweet a:hover {
  color: #002a77;
}

body#swchome .bottompart .socialstuff .facebook {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  body#swchome .bottompart .socialstuff .facebook {
    margin-bottom: 2em;
  }
}

body#swchome .bottompart .socialstuff .facebook .fa-facebook {
  color: #10213f;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 37px;
  font-size: 30px;
}

body#swchome .bottompart .socialstuff .facebook .facebookfeed .item {
  max-height: 170px;
  overflow: hidden;
}

body#swchome .bottompart .socialstuff .facebook .facebookfeed .item a {
  font-size: 25px;
  color: #fff;
}

body#swc,
#swchome,
.swc {
  padding-top: 260px;
}

@media (max-width: 500px) {

  body#swc,
  #swchome,
  .swc {
    padding-top: 200px;
  }
}

body#swc #content {
  padding-top: 20px;
}

body#swc .members .toparea {
  padding-top: 20px;
}

body#swc .members .toparea #chairman {
  height: 321.5px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #e0e0e0;
}

@media (max-width: 500px) {
  body#swc .members .toparea #chairman {
    height: auto;
  }
}

body#swc .members .toparea #chairman h1 {
  font-size: 40px;
}

body#swc .members .toparea #chairman .party {
  font-size: 26px;
}

body#swc .members .toparea #chairman .link a {
  font-size: 26px;
  color: #002a77;
}

body#swc .members .toparea #chairman img {
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 500px) {
  body#swc .members .toparea #chairman #chairmanmaintitle {
    width: 100%;
    display: block;
    text-align: center;
  }
}

@media (max-width: 500px) {
  body#swc .members .toparea #chairman #chairmanimage {
    width: 100%;
    display: block;
  }
}

body#swc a {
  color: #002a77;
}

body#swc .btn {
  background-color: #10213f;
  color: #fff;
}

body#swc #filtermodal .modal-title {
  color: #333;
}

body#swc #filtermodal .modal-dialog .modal-content .close {
  font-size: 40px;
  color: #333;
  opacity: 0.8;
  font-weight: 300;
}

body#swc #filtermodal .modal-dialog .modal-content .modal-body form select {
  width: 100%;
  color: #333;
  border: 1px solid #333;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

body#swc #filtermodal .modal-backdrop.in {
  opacity: 0.98;
  background-color: #fff;
}

.ce_youtube_video {
  max-width: 750px;
  max-height: 422px;
  overflow: hidden;
}

.ce_youtube_video iframe {
  max-width: 750px;
  max-height: 422px;
}

#content .embed-responsive,
#content .embed-responsive-16by9 {
  padding-bottom: 38.25%;
}

#share-buttons #share-copy-link {
  cursor: pointer;
}

#multimedia-browser ul.nav-tabs {
  border-color: #6598af;
}

#multimedia-browser ul.nav-tabs li a {
  color: #10213f;
  background-color: #f6f6f5;
}

#multimedia-browser ul.nav-tabs li a:hover {
  background-color: #10213f;
}

#multimedia-browser ul.nav-tabs li.active a {
  background-color: #6598af;
}

#multimedia-browser ul.nav-tabs li.active a:hover {
  background-color: #10213f;
}

#multimedia-browser form.multimedia-search {
  float: left;
  margin-top: 40px;
  width: 100%;
  display: block;
}

#multimedia-browser legend {
  font-family: 'Soho W01 Regular';
}

#multimedia-browser .loading div#search-results-header {
  display: none;
}

#multimedia-browser .multimedia-tools fieldset {
  width: 49%;
}

#multimedia-browser .pagination {
  background-color: #6598af;
}

#multimedia-browser .row .media-thumbnail {
  width: 215px;
}

@media (max-width: 1200px) {
  #multimedia-browser .row .media-thumbnail {
    width: 180px;
  }
}

@media (max-width: 990px) {
  #multimedia-browser .row .media-thumbnail {
    width: 136px;
  }
}

@media (max-width: 768px) {
  #multimedia-browser .row .media-thumbnail {
    width: 49%;
  }

  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 75%;
  }

  #multimedia-browser .multimedia-tools select {
    width: 35%;
  }
}

@media (max-width: 480px) {
  #multimedia-browser .row .media-thumbnail {
    width: 100%;
    height: auto;
  }

  #multimedia-browser .multimedia-tools fieldset {
    width: 100%;
  }
}

footer.footer {
  background-color: #10213f;
  text-align: center;
  margin: 30px auto 0px;
  padding: 30px 0px 0px;
}

footer.footer li a {
  color: #fff;
  font-size: 22px;
  font-family: 'Soho W01 Bold';
  text-transform: uppercase;
}

footer.footer li:hover a {
  color: #6598af;
}

footer.Subfooter {
  background-color: #10213f;
  text-align: center;
  margin: 0px auto 0px;
}

footer.Subfooter li a {
  color: #fff;
  font-size: 12px;
  font-family: 'Soho W01 Bold';
}

footer.Subfooter li:hover a {
  color: #6598af;
}

footer.Subfooter li:nth-child(2):before,
footer.Subfooter li:nth-child(3):before {
  content: "|";
  position: relative;
  display: inline-block;
  left: -6px;
  font-size: 18px;
  color: #fff;
}

footer.swcfooter {
  background-color: #e1e1e1;
  text-align: center;
  margin: 0 auto;
  padding: 35px;
  height: 100px;
}

footer.swcfooter li {
  padding-right: 15px;
  padding-left: 15px;
}

footer.swcfooter li a {
  color: #10213f;
  font-size: 22px;
  font-family: 'ITC Garamond W01 Book';
  text-transform: none;
}

footer.swcfooter li:hover a {
  color: #002a77;
}

#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}

#content .amend-form-container form legend {
  font-family: 'Soho W01 Regular';
}

#content .amend-form-container form .required {
  color: #ff0000;
}

.fc-tbx ul.error-list li p {
  color: #FF0000 !important;
}

/*flag form styles */
#flagForm legend {
  font-family: 'Soho W01 Regular';
}

#flagForm #flag-options .head {
  margin: 15px 0 15px 0;
  font-size: 20px;
  border-bottom: 2px solid #10213f;
  background-color: #6598af;
  color: #fff;
  font-family: 'Soho W01 Regular';
  font-weight: lighter;
}

#flagForm #flag-options .row {
  padding: 15px 10px 10px 10px;
  border-bottom: 2px solid #f6f6f5;
}

#flagForm #flag-options .row label {
  display: none;
}

#flagForm #flag-options .row .qty {
  padding: 0 20px 0 20px;
  max-width: 75px;
  margin: 0;
  height: 35px;
}

#flagForm .shipping_total {
  margin: 5px 0 0 0;
  padding: 20px;
  font-family: 'Soho W01 Regular';
  /*background-color: rgba(2,153,230,0.025);*/
}

#flagForm .subtotal {
  padding: 25px 0 0 0;
  font-size: 22px;
  font-weight: 800;
  font-family: 'Soho W01 Regular';
}

#flagForm .subtotal label {
  font-size: 22px;
  font-weight: 800;
}

#min_flag {
  margin: 0;
  padding: 0;
  opacity: 0;
}

/*font-family:'Soho W01 Regular';
font-family:'Soho W01 Italic';
font-family:'Soho W01 Medium';
font-family:'Soho W01 Medium Italic';
font-family:'Soho W01 Bold';
font-family:'Soho W01 Bold Italic';
font-family:'Soho W01 Bold Condensed';
font-family:'Helvetica Neue LT W06_55 Roman';
*/
/* Western Caucus Fonts
font-family:'ITC Garamond W01 Book Narrow';
font-family:'ITC Garamond W01 Book Cond';
font-family:'ITC Garamond W01 Book Cond It';
font-family:'ITC Garamond W01 Book';
font-family:'ITC Garamond W01 Light Italic';
font-family:'ITC Garamond W01 Light';
font-family:'Helvetica Neue LT W01_77 Bd Cn';
*/
.swcserif {
  font-family: 'ITC Garamond W01 Light';
}

.swcsans {
  font-family: 'ITC Garamond W01 Book Narrow';
}

.swcsans-bold {
  font-family: 'ITC Garamond W01 Book';
}

.swcsans-boldcon {
  font-family: 'ITC Garamond W01 Book Cond';
}

.swchel {
  font-family: 'Helvetica Neue LT W01_77 Bd Cn';
}

@font-face {
  font-family: 'socicon';
  src: url('/themes/daines/fonts/social/socicon-webfont.eot');
  src: url('/themes/daines/fonts/social/socicon-webfont.eot?#iefix') format('embedded-opentype'), url('/themes/daines/fonts/social/socicon-webfont.woff') format('woff'), url('/themes/daines/fonts/social/socicon-webfont.woff2') format('woff2'), url('/themes/daines/fonts/social/socicon-webfont.ttf') format('truetype'), url('/themes/daines/fonts/social/socicon-webfont.svg#sociconregular') format('svg');
  font-weight: normal;
  font-style: normal;
  text-transform: initial;
}

.socicon {
  font-family: 'socicon' !important;
}

.socicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'socicon';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.socicon:empty {
  width: 1em;
}

.socicon-twitter:before {
  content: "a";
}

.socicon-facebook:before {
  content: "b";
}

.socicon-google:before {
  content: "c";
}

.socicon-youtube:before {
  content: "r";
}

.socicon-instagram:before {
  content: "x";
}

.serif {
  font-family: 'Soho W01 Regular';
}

.sans {
  font-family: 'Helvetica Neue LT W06_55 Roman';
}

body {
  font-family: 'Helvetica Neue LT W06_55 Roman';
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Soho W01 Medium';
  font-weight: 300;
  line-height: 1.1;
  color: inherit;
}

.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #10213f;
}

.h1:hover a,
.h2:hover a,
.h3:hover a,
.h4:hover a,
.h5:hover a,
.h6:hover a,
h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  color: #6598af;
}

.title a {
  color: #6598af;
}

.title:hover a {
  text-decoration: none;
  color: #10213f;
}

a {
  color: #6598af;
}

a:hover {
  text-decoration: none;
  color: #10213f;
}

a:focus,
a:visited,
a:link {
  text-decoration: none;
  outline: none;
  filter: none;
  border: none;
}

.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  font-family: 'Soho W01 Medium';
  background-color: #6598af;
  color: #FFF;
  border: none;
  white-space: normal;
  /*.border-radius(10px);*/
  font-weight: 300;
}

.pager li .btn:active,
.btn:active,
.btn-defualt:active,
.btn:visited:active,
.btn-defualt:visited:active,
btn:focus:active,
.btn-default:focus:active,
.search-media-btn:active,
#main_column form .btn:active {
  border: none;
}

.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 {
  border: none;
  color: #FFF;
  background-color: #345b6d;
}

#content {
  font-size: 18px;
}

footer {
  color: #6a6a6a;
}

aside h1,
aside h2 {
  margin-top: 0px;
}

#listblocks .block {
  font-family: 'Soho W01 Medium';
  background-color: #6598af;
  color: #FFF;
  border: none;
  white-space: normal;
  font-weight: 300;
}

#listblocks .block a {
  display: table;
  vertical-align: middle;
}

#listblocks .block a .media-heading {
  display: table-cell !important;
  vertical-align: middle;
  float: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#listblocks .block:hover {
  border: none;
  color: #FFF;
  background-color: #345b6d;
}

@media (max-width: 1200px) {
  body #header .logo a {
    font-size: 54px;
    line-height: 24px;
    padding-top: 4px;
  }

  body #header .logo a small {
    font-size: 20px;
  }

  body #header .logosmall.up {
    top: 17px;
  }

  .navbar .nav-pills>li a {
    font-size: 18px;
    padding: 5px 15px;
  }

  .navbar .srchbutton span {
    font-size: 18px;
  }

  .officelocations #offices li {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .officelocations #offices li h4 {
    font-size: 18px;
  }

  .officelocations #ceMap,
  .officelocations #ceMap2 {
    height: 306px;
  }

  .officelocations #ceMap #locations .location .circle-icon:before,
  .officelocations #ceMap2 #locations .location .circle-icon:before {
    width: 20px;
    height: 20px;
  }

  .officelocations #ceMap #locations .location:hover .circle-icon:before,
  .officelocations #ceMap2 #locations .location:hover .circle-icon:before,
  .officelocations #ceMap #locations .location.hover .circle-icon:before,
  .officelocations #ceMap2 #locations .location.hover .circle-icon:before {
    left: -10px;
    top: -10px;
    width: 40px;
    height: 40px;
  }

  .officelocations #ceMap #locations .location#kalispell,
  .officelocations #ceMap2 #locations .location#kalispell {
    top: 40px;
    left: 65px;
  }

  .officelocations #ceMap #locations .location#missoula,
  .officelocations #ceMap2 #locations .location#missoula {
    top: 125px;
    left: 79px;
  }

  .officelocations #ceMap #locations .location#greatfalls,
  .officelocations #ceMap2 #locations .location#greatfalls {
    top: 98px;
    left: 192px;
  }

  .officelocations #ceMap #locations .location#sidney,
  .officelocations #ceMap2 #locations .location#sidney {
    left: 499px;
    top: 69px;
  }

  .officelocations #ceMap #locations .location#helena,
  .officelocations #ceMap2 #locations .location#helena {
    top: 151px;
    left: 160px;
  }

  .officelocations #ceMap #locations .location#bozeman,
  .officelocations #ceMap2 #locations .location#bozeman {
    top: 216px;
    left: 205px;
  }

  .officelocations #ceMap #locations .location#billings,
  .officelocations #ceMap2 #locations .location#billings {
    top: 203px;
    left: 330px;
  }

  .officelocations #ceMap #locations .location#hardin,
  .officelocations #ceMap2 #locations .location#hardin {
    top: 215px;
    left: 365px;
  }

  aside .instagram #instamedia a {
    display: block;
    float: left;
    width: 31%;
    margin-bottom: 5px;
    margin-right: 5px;
  }

  .newsroomlanding #photos li .imghold {
    height: 137px;
  }
}

@media (max-width: 991px) {
  .newsroomlanding #photos li .imghold {
    height: 167px;
  }

  body #content #banner {
    height: auto;
  }

  body #header .logo {
    text-align: left;
    float: none;
    display: block;
    max-width: 312px;
    top: 58px;
  }

  #SearchModal .modal-dialog .modal-content .modal-header .close {
    color: #10213f;
  }

  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search] {
    box-shadow: 4px 10px 5px #d5cccc;
  }

  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
    background-color: #6598af;
    box-shadow: 4px 10px 5px #d5cccc;
  }

  .navbar .togglemenu span {
    z-index: -1;
  }

  #photos li .imghold {
    height: 158px;
  }
}

@media (max-width: 767px) {
  #top {
    min-height: 500px;
  }

  #top iframe {
    height: 500px;
  }

  .newsroomlanding #photos li .imghold {
    height: auto;
  }

  body {
    padding-top: 0px;
  }

  body #header {
    position: relative !important;
    height: 130px;
  }

  body #header .logo-col {
    height: 130px;
  }

  body #header #content #banner {
    height: auto;
  }

  body #header .nav-col {
    position: relative;
    height: 130px;
  }

  body #header .logo {
    display: none;
  }

  body #header .logosmall {
    display: block;
    position: absolute;
    width: auto;
    top: auto !important;
    bottom: 15px;
  }

  body #header .signup {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 10;
  }

  body .travels {
    margin: 30px auto;
  }

  body .travels .btn.travel {
    background: url('/themes/daines/images/travelsbuttonsmall.png') #518aa4;
  }

  body .travels .btn.travel:hover {
    background: url('/themes/daines/images/travelsbuttonbg-rollover-small.png') #345b6d;
  }

  body .social .instagram #instamedia a {
    margin: 5px;
  }

  .navbar {
    bottom: 15px;
    right: 15px;
    margin-top: 0px;
  }

  #photos li .imghold {
    height: auto;
  }
}

@media (max-width: 610px) {
  body #content #banner {
    height: auto;
  }

  #header .nav-col {
    position: relative;
    height: 130px;
    width: 34%;
    float: right;
  }

  #header .logo-col {
    height: 130px;
    width: 66%;
  }

  #header .logosmall {
    display: block;
    position: absolute;
    width: auto;
    top: auto !important;
    bottom: 25px;
  }

  #header .logosmall a {
    font-size: 36px;
    font-weight: lighter;
    text-align: left;
    letter-spacing: -1px;
    line-height: 40px;
  }

  #header .logosmall a small {
    color: #6598af;
    font-size: 14px;
    line-height: 14px;
    display: block;
    letter-spacing: -0.5px;
  }

  #header .navbar .togglemenu {
    float: right;
    font-size: 22px;
    margin-right: 20px;
    font-family: 'Soho W01 Bold';
    font-weight: 300;
  }

  #header .navbar .togglemenu span {
    top: 5px;
  }

  #header .navbar .togglemenu .menulabel {
    font-size: 14px;
  }

  #NavMobileModal .modal-dialog .modal-content,
  #SearchModal .modal-dialog .modal-content,
  #ContactModal .modal-dialog .modal-content {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  #NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
  #ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
    width: 82%;
    margin: 0 0 0 12px;
  }

  #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 {
    left: 0px;
    position: relative;
    width: 14%;
  }
}

@media (max-width: 479px) {
  .travels .btn.travel {
    font-size: 18px;
  }

  body #header {
    height: 160px;
  }

  body #header .nav-col {
    position: relative;
    height: 50px;
    width: 100%;
    float: right;
  }

  body #header .logo-col {
    height: 110px;
    width: 100%;
    text-align: center;
  }

  body #header .logosmall {
    display: block;
    position: absolute;
    width: 100%;
    top: auto !important;
    bottom: 0px;
  }

  body #header .logosmall a {
    text-align: center;
  }

  body #header .navbar {
    width: 100%;
    right: auto;
    top: 0;
    position: absolute;
  }

  body #header .navbar .togglemenu {
    float: left;
    font-size: 22px;
    margin-right: 20px;
    font-family: 'Soho W01 Bold';
    font-weight: 300;
  }

  body #header .navbar .togglemenu span {
    top: 5px;
  }

  body #header .navbar .togglemenu .menulabel {
    font-size: 14px;
    display: none;
  }

  body .officelocations #offices li {
    width: 100%;
  }
}

@media (max-width: 330px) {
  .list-inline>li {
    display: none;
  }
}

/*IPHONE STYLES HERE*/
body.mobiledevice #top .content h1 a {
  font-size: 40px;
}

body.mobiledevice .travels .btn.travel {
  font-size: 14px;
}

body.mobiledevice .officelocations #offices li {
  width: 100%;
}

.ieold .ieoldonly {
  display: block !important;
}

.ieold #header {
  border-bottom: 1px solid #f6f6f5;
}

.ieold .navbar .nav-pills>li:hover .dropdown-menu {
  border: 1px solid #f6f6f5;
  border-top: none;
}

.ie8 .facebook-feed-col,
.ie9 .facebook-feed-col,
.ie7 .facebook-feed-col {
  display: none;
}

.ie8 .modal,
.ie9 .modal,
.ie7 .modal {
  background-color: #fff;
}

.ie8 .modal-backdrop.in,
.ie9 .modal-backdrop.in,
.ie7 .modal-backdrop.in {
  opacity: 1 !important;
  background-color: #fff;
}

.ie8 .circle-icon {
  display: none;
}

.ie8 #multimedia-browser .row .media-thumbnail {
  margin-right: 12px;
}

.ie .social .instagram #instamedia a {
  width: 99px;
  height: 99px;
}

.ie .ieonly {
  display: block !important;
}

.ie .notie {
  display: none !important;
}

.ie7 .ie7only {
  display: block !important;
}

.ie7 .navbar-toggle {
  display: block !important;
}

@media print {
  html {
    margin: 0px !important;
    padding: 0px !important;
    height: 100% !important;
    width: 100% !important;
    overflow: visible;
  }

  html body {
    margin: 0px !important;
    padding: 0px !important;
    height: 100% !important;
    width: 100% !important;
  }

  html #actions,
  html .prevarticle,
  html .nextarticle,
  html #alerts,
  html #header,
  html #press+hr,
  html #pagetools+hr {
    display: none !important;
  }

  html #logo,
  html .logohold,
  html .navbar,
  html #toolbar,
  html .footer,
  html footer,
  html #breadcrumb {
    display: none !important;
  }

  html .rss-subscribe:after {
    content: "";
  }

  html #asides #sam-officialportraitpod {
    display: none !important;
  }

  html .nav {
    display: none !important;
  }

  html .container {
    color: #333333 !important;
    width: 100%;
  }

  html .container ul {
    width: 100%;
  }

  html .container ul li {
    color: #ccc !important;
    width: 100%;
  }

  html .container div {
    color: #333333 !important;
    width: 100%;
  }

  html .container div * {
    color: #333333 !important;
  }

  html .container img:after,
  html .container a:after {
    content: "";
  }

  html .container #asides .social,
  html .container #asides .servicespod {
    display: none;
  }

  html .container img {
    margin: 10px;
  }

  html .container .inline-search {
    display: none;
  }

  html .container #search-issues-page-container,
  html .container #search-issues-page-results {
    display: none;
  }

  html .container .media-list .media {
    page-break-inside: avoid;
  }

  html .container .media-list a.pull-left,
  html .container .media-body {
    display: block;
    float: left;
    width: 15%;
  }

  html .container .media-list a.pull-left {
    margin-right: 5% !important;
  }

  html .container .media-list a img {
    width: 100%;
  }

  html .container .media-body {
    width: 80%;
  }

  #content .container #main_column {
    border-right: none;
  }

  #issue #asides {
    display: none;
  }
}

#steves-travels,
#steves-travels2 {
  /* extra small devices (phones, less than 768px); no media query since this is the default in bootstrap */
  /* small devices (tablets, 768px and up) */
  /* medium devices (desktops, 992px and up) */
  /* large devices (large desktops, 1200px and up) */
}

#steves-travels #map-container,
#steves-travels2 #map-container,
#steves-travels #map-container2,
#steves-travels2 #map-container2 {
  position: relative;
  padding: 20px;
  background-image: url(/themes/daines/images/mt-map-bg.png);
  background-size: 100% auto;
}

#steves-travels #map-container h1,
#steves-travels2 #map-container h1,
#steves-travels #map-container2 h1,
#steves-travels2 #map-container2 h1 {
  font-size: 50px;
  color: #fff;
  line-height: 1;
}

#steves-travels #map-container #ceMap,
#steves-travels2 #map-container #ceMap,
#steves-travels #map-container2 #ceMap,
#steves-travels2 #map-container2 #ceMap,
#steves-travels #map-container #ceMap2,
#steves-travels2 #map-container #ceMap2,
#steves-travels #map-container2 #ceMap2,
#steves-travels2 #map-container2 #ceMap2 {
  display: none;
  position: absolute;
  background-image: url(/themes/daines/images/mt-map.png);
  background-size: 100% 100%;
}

#steves-travels #map-container #ceMap .circle-icon,
#steves-travels2 #map-container #ceMap .circle-icon,
#steves-travels #map-container2 #ceMap .circle-icon,
#steves-travels2 #map-container2 #ceMap .circle-icon,
#steves-travels #map-container #ceMap2 .circle-icon,
#steves-travels2 #map-container #ceMap2 .circle-icon,
#steves-travels #map-container2 #ceMap2 .circle-icon,
#steves-travels2 #map-container2 #ceMap2 .circle-icon {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 0px;
  width: 22px;
  height: 22px;
  background-color: #10213f;
  border: 2px solid #6598af;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

#steves-travels #map-container #ceMap .circle-icon:hover,
#steves-travels2 #map-container #ceMap .circle-icon:hover,
#steves-travels #map-container2 #ceMap .circle-icon:hover,
#steves-travels2 #map-container2 #ceMap .circle-icon:hover,
#steves-travels #map-container #ceMap2 .circle-icon:hover,
#steves-travels2 #map-container #ceMap2 .circle-icon:hover,
#steves-travels #map-container2 #ceMap2 .circle-icon:hover,
#steves-travels2 #map-container2 #ceMap2 .circle-icon:hover {
  position: absolute;
  content: "";
  display: block;
  background-color: #6598af;
  border: 2px solid #10213f;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

#steves-travels .map-restrictor,
#steves-travels2 .map-restrictor {
  display: flex;
  flex-direction: column;
  border: 1px solid #ebebeb;
  background-color: #ebebeb;
}

#steves-travels .map-restrictor h3,
#steves-travels2 .map-restrictor h3 {
  display: inline-block;
  color: #6698af;
  text-align: center;
}

#steves-travels .map-restrictor .form-inline,
#steves-travels2 .map-restrictor .form-inline {
  display: inline-block;
  position: relative;
  top: -4px;
  margin: 0 auto;
}

#steves-travels .map-restrictor .form-inline label,
#steves-travels2 .map-restrictor .form-inline label {
  color: #6a6a6a;
}

#steves-travels .map-restrictor .form-inline input[type="text"],
#steves-travels2 .map-restrictor .form-inline input[type="text"],
#steves-travels .map-restrictor .form-inline input[type="email"],
#steves-travels2 .map-restrictor .form-inline input[type="email"],
#steves-travels .map-restrictor .form-inline textarea,
#steves-travels2 .map-restrictor .form-inline textarea,
#steves-travels .map-restrictor .form-inline select,
#steves-travels2 .map-restrictor .form-inline select {
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#steves-travels .map-restrictor .form-inline select,
#steves-travels2 .map-restrictor .form-inline select {
  font-size: 18px;
}

#steves-travels .map-restrictor .form-inline .btn,
#steves-travels2 .map-restrictor .form-inline .btn {
  position: relative;
  margin: 0.5em 0 0 1em;
  padding: 0;
  background-color: transparent;
  line-height: 1;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0px;
}

#steves-travels .map-restrictor .form-inline .btn-primary,
#steves-travels2 .map-restrictor .form-inline .btn-primary {
  margin: 0 0 0 1em;
  padding: 0.5em 1em;
  background-color: #10213f;
  color: #fff;
}

#steves-travels #map-listing .map-entry,
#steves-travels2 #map-listing .map-entry,
#steves-travels #map-listing2 .map-entry,
#steves-travels2 #map-listing2 .map-entry {
  padding: 25px 0;
  font-size: 15px;
}

#steves-travels #map-listing .map-entry h3,
#steves-travels2 #map-listing .map-entry h3,
#steves-travels #map-listing2 .map-entry h3,
#steves-travels2 #map-listing2 .map-entry h3 {
  margin: 0 0 0.1em 0;
  color: #6a6a6a;
}

#steves-travels #map-listing .map-entry h4,
#steves-travels2 #map-listing .map-entry h4,
#steves-travels #map-listing2 .map-entry h4,
#steves-travels2 #map-listing2 .map-entry h4 {
  margin: 0 0 0.2em 0;
  font: normal normal bold 18px/1 'Helvetica Neue LT W06_55 Roman';
  color: #6a6a6a;
}

#steves-travels #map-listing .map-entry .address-entry,
#steves-travels2 #map-listing .map-entry .address-entry,
#steves-travels #map-listing2 .map-entry .address-entry,
#steves-travels2 #map-listing2 .map-entry .address-entry,
#steves-travels #map-listing .map-entry .desc-entry,
#steves-travels2 #map-listing .map-entry .desc-entry,
#steves-travels #map-listing2 .map-entry .desc-entry,
#steves-travels2 #map-listing2 .map-entry .desc-entry {
  margin-top: 1em;
}

#steves-travels #map-listing .map-entry .address-entry a,
#steves-travels2 #map-listing .map-entry .address-entry a,
#steves-travels #map-listing2 .map-entry .address-entry a,
#steves-travels2 #map-listing2 .map-entry .address-entry a,
#steves-travels #map-listing .map-entry .desc-entry a,
#steves-travels2 #map-listing .map-entry .desc-entry a,
#steves-travels #map-listing2 .map-entry .desc-entry a,
#steves-travels2 #map-listing2 .map-entry .desc-entry a {
  font-size: 13px;
  font-weight: bold;
}

#steves-travels #map-listing .map-entry .address-entry .map-entry-link,
#steves-travels2 #map-listing .map-entry .address-entry .map-entry-link,
#steves-travels #map-listing2 .map-entry .address-entry .map-entry-link,
#steves-travels2 #map-listing2 .map-entry .address-entry .map-entry-link,
#steves-travels #map-listing .map-entry .desc-entry .map-entry-link,
#steves-travels2 #map-listing .map-entry .desc-entry .map-entry-link,
#steves-travels #map-listing2 .map-entry .desc-entry .map-entry-link,
#steves-travels2 #map-listing2 .map-entry .desc-entry .map-entry-link {
  display: none;
}

#steves-travels #map-listing .map-entry+.map-entry,
#steves-travels2 #map-listing .map-entry+.map-entry,
#steves-travels #map-listing2 .map-entry+.map-entry,
#steves-travels2 #map-listing2 .map-entry+.map-entry {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #dadada;
}

@media (min-width: 768px) {

  #steves-travels #map-container,
  #steves-travels2 #map-container,
  #steves-travels #map-container2,
  #steves-travels2 #map-container2 {
    padding: 0;
    height: 352px;
  }

  #steves-travels #map-container h1,
  #steves-travels2 #map-container h1,
  #steves-travels #map-container2 h1,
  #steves-travels2 #map-container2 h1 {
    position: absolute;
    top: 215px;
    left: 20px;
    width: 200px;
    font-size: 35px;
  }

  #steves-travels #map-container #ceMap,
  #steves-travels2 #map-container #ceMap,
  #steves-travels #map-container2 #ceMap,
  #steves-travels2 #map-container2 #ceMap,
  #steves-travels #map-container #ceMap2,
  #steves-travels2 #map-container #ceMap2,
  #steves-travels #map-container2 #ceMap2,
  #steves-travels2 #map-container2 #ceMap2 {
    display: block;
    left: 180px;
    top: 25px;
    width: 514px;
    height: 289px;
  }

  #steves-travels .map-restrictor,
  #steves-travels2 .map-restrictor {
    display: block;
    padding: 25px 25px 10px 25px;
    border: 1px solid #ebebeb;
    background-color: #ebebeb;
  }

  #steves-travels .map-restrictor h3,
  #steves-travels2 .map-restrictor h3 {
    margin: 0;
    font-size: 19px;
  }

  #steves-travels .map-restrictor .form-inline label,
  #steves-travels2 .map-restrictor .form-inline label {
    font-size: 14px;
    margin: 0 0.2em 0 0.2em;
    color: #6a6a6a;
  }

  #steves-travels .map-restrictor .form-inline #map-radius,
  #steves-travels2 .map-restrictor .form-inline #map-radius,
  #steves-travels .map-restrictor .form-inline #map-radius2,
  #steves-travels2 .map-restrictor .form-inline #map-radius2 {
    width: 65px;
  }

  #steves-travels .map-restrictor .form-inline #map-postcode,
  #steves-travels2 .map-restrictor .form-inline #map-postcode,
  #steves-travels .map-restrictor .form-inline #map-postcode2,
  #steves-travels2 .map-restrictor .form-inline #map-postcode2 {
    width: 65px;
  }

  #steves-travels .map-restrictor .form-inline .btn,
  #steves-travels2 .map-restrictor .form-inline .btn {
    font-size: 15px;
  }

  #steves-travels #map-listing .map-entry,
  #steves-travels2 #map-listing .map-entry,
  #steves-travels #map-listing2 .map-entry,
  #steves-travels2 #map-listing2 .map-entry {
    display: none;
    padding: 25px;
  }

  #steves-travels #map-listing .map-entry .address-entry .map-entry-link,
  #steves-travels2 #map-listing .map-entry .address-entry .map-entry-link,
  #steves-travels #map-listing2 .map-entry .address-entry .map-entry-link,
  #steves-travels2 #map-listing2 .map-entry .address-entry .map-entry-link,
  #steves-travels #map-listing .map-entry .desc-entry .map-entry-link,
  #steves-travels2 #map-listing .map-entry .desc-entry .map-entry-link,
  #steves-travels #map-listing2 .map-entry .desc-entry .map-entry-link,
  #steves-travels2 #map-listing2 .map-entry .desc-entry .map-entry-link {
    display: block;
  }

  #steves-travels #map-listing .visible,
  #steves-travels2 #map-listing .visible,
  #steves-travels #map-listing2 .visible,
  #steves-travels2 #map-listing2 .visible {
    display: block;
  }

  #steves-travels #map-listing .map-entry+.visible,
  #steves-travels2 #map-listing .map-entry+.visible,
  #steves-travels #map-listing2 .map-entry+.visible,
  #steves-travels2 #map-listing2 .map-entry+.visible {
    border-top: none;
  }

  #steves-travels #map-listing.search-results .map-entry,
  #steves-travels2 #map-listing.search-results .map-entry,
  #steves-travels #map-listing2.search-results .map-entry,
  #steves-travels2 #map-listing2.search-results .map-entry {
    display: block;
  }
}

@media (min-width: 992px) {

  #steves-travels #map-container,
  #steves-travels2 #map-container,
  #steves-travels #map-container2,
  #steves-travels2 #map-container2 {
    height: 450px;
  }

  #steves-travels #map-container h1,
  #steves-travels2 #map-container h1,
  #steves-travels #map-container2 h1,
  #steves-travels2 #map-container2 h1 {
    top: 290px;
    left: 55px;
    width: 285px;
    font-size: 40px;
  }

  #steves-travels #map-container #ceMap,
  #steves-travels2 #map-container #ceMap,
  #steves-travels #map-container2 #ceMap,
  #steves-travels2 #map-container2 #ceMap,
  #steves-travels #map-container #ceMap2,
  #steves-travels2 #map-container #ceMap2,
  #steves-travels #map-container2 #ceMap2,
  #steves-travels2 #map-container2 #ceMap2 {
    left: 225px;
    top: 52px;
    width: 660px;
    height: 338px;
  }

  #steves-travels .map-restrictor,
  #steves-travels2 .map-restrictor {
    padding: 25px 60px 10px 60px;
  }

  #steves-travels .map-restrictor h3,
  #steves-travels2 .map-restrictor h3 {
    font-size: 24px;
  }

  #steves-travels .map-restrictor .form-inline label,
  #steves-travels2 .map-restrictor .form-inline label {
    margin: 0 0.25em 0 0.5em;
    font-size: 18px;
  }

  #steves-travels .map-restrictor .form-inline .btn,
  #steves-travels2 .map-restrictor .form-inline .btn {
    top: -3px;
    font-size: 18px;
  }

  #steves-travels #map-listing .map-entry,
  #steves-travels2 #map-listing .map-entry,
  #steves-travels #map-listing2 .map-entry,
  #steves-travels2 #map-listing2 .map-entry {
    padding: 25px 60px;
  }
}

@media (min-width: 1200px) {

  #steves-travels #map-container,
  #steves-travels2 #map-container,
  #steves-travels #map-container2,
  #steves-travels2 #map-container2 {
    height: 557px;
  }

  #steves-travels #map-container h1,
  #steves-travels2 #map-container h1,
  #steves-travels #map-container2 h1,
  #steves-travels2 #map-container2 h1 {
    top: 355px;
    left: 60px;
    font-size: 50px;
  }

  #steves-travels #map-container #ceMap,
  #steves-travels2 #map-container #ceMap,
  #steves-travels #map-container2 #ceMap,
  #steves-travels2 #map-container2 #ceMap,
  #steves-travels #map-container #ceMap2,
  #steves-travels2 #map-container #ceMap2,
  #steves-travels #map-container2 #ceMap2,
  #steves-travels2 #map-container2 #ceMap2 {
    left: 269px;
    top: 52px;
    width: 800px;
    height: 451px;
  }

  #steves-travels .map-restrictor h3,
  #steves-travels2 .map-restrictor h3 {
    margin: 0 25px 0 0;
  }

  #steves-travels .map-restrictor .form-inline #map-radius,
  #steves-travels2 .map-restrictor .form-inline #map-radius,
  #steves-travels .map-restrictor .form-inline #map-radius2,
  #steves-travels2 .map-restrictor .form-inline #map-radius2 {
    width: 80px;
  }

  #steves-travels .map-restrictor .form-inline #map-postcode,
  #steves-travels2 .map-restrictor .form-inline #map-postcode,
  #steves-travels .map-restrictor .form-inline #map-postcode2,
  #steves-travels2 .map-restrictor .form-inline #map-postcode2 {
    width: 125px;
  }
}

.popover-map {
  width: 350px;
  font-size: 12px;
  z-index: 999999 !important;
}

.popover-map .popover-title {
  margin: 0;
  padding: 8px 14px 0 14px;
  background: none;
  font-size: 16px;
  line-height: 1;
  border: none;
  color: #233e5d;
}

.popover-map .close {
  margin-right: 7px;
}

.popover-map .popover-content {
  font-size: 12px;
  line-height: 1.3em;
}

.popover-map .popover-content .popover-date {
  position: relative;
  top: -5px;
}

.popover-map .popover-content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3em;
}

.popover-map .popover-content p+p {
  margin-top: 1em;
}

.popover-map .popover-content .popover-img {
  margin: 0 1em 0 0;
  height: 165px;
  overflow: hidden;
}

.modal#mapModal .modal-dialog {
  margin: 10% auto;
}

.modal#mapModal #steves-travels #map-container h1,
.modal#mapModal #steves-travels2 #map-container2 h1 {
  position: relative;
  padding: 30px;
  width: 100%;
  top: 0px;
  margin-top: 0px;
}

.modal#mapModal #steves-travels #map-container #ceMap,
.modal#mapModal #steves-travels2 #map-container2 #ceMap2 {
  left: 39px;
  top: 93px;
}

.modal#mapModal #steves-travels .map-restrictor,
.modal#mapModal #steves-travels2 .map-restrictor {
  padding: 24px 20px 11px 20px;
}

.modal#mapModal #steves-travels .map-restrictor .form-inline #map-postcode,
.modal#mapModal #steves-travels2 .map-restrictor .form-inline #map-postcode2 {
  width: 87px;
}

@media (max-width: 485px) {
  .line-return {
    display: block;
  }
}

.buttonarea .buttons .issuebutton{
  display: table;
  vertical-align: middle;
  min-height: 160px;
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}

.buttonarea .buttons .issuebutton a{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}