/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb {
  height: 25px;
}
#breadcrumb.alert-breadcrumb {
  margin-top: 55px;
}
@media (max-width: 1250px) {
  #breadcrumb.alert-breadcrumb {
    margin-top: 87px;
  }
}
@media (max-width: 900px) {
  #breadcrumb.alert-breadcrumb {
    margin-top: 102px;
  }
}
@media (max-width: 500px) {
  #breadcrumb.alert-breadcrumb {
    margin-top: 127px;
  }
}
body.no-breadcrumbs #breadcrumb.alert-breadcrumb {
  display: block;
  visibility: hidden;
}
.hasbanner #breadcrumb.alert-breadcrumb {
  margin-top: 20px;
}
#content.alert-hasbanner {
  margin-top: 105px;
}
@media (max-width: 1250px) {
  #content.alert-hasbanner {
    margin-top: 145px;
  }
}
@media (max-width: 900px) {
  #content.alert-hasbanner {
    margin-top: 150px;
  }
}
@media (max-width: 500px) {
  #content.alert-hasbanner {
    margin-top: 170px;
  }
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #243d51;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #f8ef32;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #beb506;
}
body#home #header {
  position: fixed;
  transition: all 1s;
}
body .skip-links__container {
  width: 0;
  height: 0;
  overflow: hidden;
}
body .skip-links__container:focus,
body .skip-links__container:focus-within {
  display: block;
  position: fixed;
  background: white;
  top: 0;
  left: 0;
  z-index: 101;
  width: auto;
  height: auto;
  text-align: center;
  border: 1px solid gray;
  padding: 10px;
}
body .skip-links__link {
  display: block;
}
body #header {
  height: auto;
  width: 100%;
  background-color: #243d51;
}
body #header .alert {
  padding: 12px;
  font-size: 18px;
  border: none;
  background-color: #B41026;
  height: 50px;
  text-align: left;
  border-radius: 0px;
}
@media (max-width: 1250px) {
  body #header .alert {
    height: 85px;
  }
}
@media (max-width: 900px) {
  body #header .alert {
    height: 100px;
  }
}
@media (max-width: 500px) {
  body #header .alert {
    height: 125px;
  }
}
body #header .alert .alertIcn {
  color: #fff;
}
body #header .alert .headline {
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
body #header .alert .headline a {
  color: #fff;
}
body #header .alert .headline a:hover {
  color: #f8ef32;
}
body #header #mainnavbox {
  height: 60px;
}
@media (max-width: 769px) {
  body #header #mainnavbox {
    padding: 0px 27px;
  }
}
body #header #mainnavbox a.logo-hold {
  width: auto;
  padding: 7px 0px;
  float: left;
  display: block;
  width: 175px;
}
body #header #mainnavbox a.logo-hold img {
  width: 100%;
}
body #header #mainnavbox a.logo-hold .interiorlogomobile {
  width: 175px;
}
body #header #mainnavbox .newsletter-nav {
  background-color: white;
  height: 100%;
  text-align: center;
  width: 200px;
  padding: 15px 0;
  margin-left: 50px;
  text-transform: uppercase;
  opacity: 0.8;
}
@media (max-width: 1199px) {
  body #header #mainnavbox .newsletter-nav {
    width: 175px;
    margin-left: 25px;
    font-size: 0.9em;
  }
}
body #header #mainnavbox .social-list {
  margin: 13px 0px;
}
@media (max-width: 390px) {
  body #header #mainnavbox .social-list {
    display: none;
  }
}
body #header #mainnavbox #halfCircle {
  position: absolute;
  margin-left: 32em;
  bottom: -60px;
}
@media (max-width: 1199px) {
  body #header #mainnavbox #halfCircle {
    margin-left: 26em;
    bottom: -54px;
  }
}
@media (max-width: 991px) {
  body #header #mainnavbox #halfCircle {
    display: none;
  }
}
body #header #mainnavbox #halfCircle #innerHalfCircle {
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0) 50%, #f8ef32 50%, #f8ef32 100%);
  width: 110px;
  height: 110px;
  border-radius: 60px;
}
@media (max-width: 1199px) {
  body #header #mainnavbox #halfCircle #innerHalfCircle {
    width: 100px;
    height: 100px;
  }
}
body #header #mainnavbox #halfCircle #innerHalfCircle .torch {
  height: 100%;
  max-height: 100px;
  max-width: 100px;
  width: 100%;
  border: 10px solid #fff;
  border-radius: 60px;
  background-color: #fff;
  position: absolute;
  top: 5px;
  left: 5px;
}
@media (max-width: 1199px) {
  body #header #mainnavbox #halfCircle #innerHalfCircle .torch {
    max-height: 90px;
    max-width: 90px;
  }
}
body #header #homeNavBox {
  width: 100%;
}
body #header #homeNavBox .topNavItems {
  display: flex;
  justify-content: space-between;
  background-color: #243d51;
  padding: 0 40px;
}
@media (max-width: 400px) {
  body #header #homeNavBox .topNavItems {
    padding: 0px 20px;
  }
}
body #header #homeNavBox .topNavItems .logo-container {
  display: block;
  overflow: hidden;
  max-width: 327px;
  padding: 15px 0;
}
body #header #homeNavBox .topNavItems .logo-container img {
  width: 100%;
}
@media (max-width: 1035px) {
  body #header #homeNavBox .topNavItems .logo-container {
    max-width: 270px;
  }
}
@media (max-width: 500px) {
  body #header #homeNavBox .topNavItems .logo-container {
    min-width: 180px;
    width: 30%;
  }
}
body #header #homeNavBox .topNavItems .nav-hold {
  display: flex;
  align-items: center;
}
body #header #homeNavBox .contact-social-container {
  display: flex;
  justify-content: flex-end;
  padding: 0px 36px;
}
body #header #homeNavBox .contact-social-container .home-social-list {
  display: flex;
  flex-direction: row;
}
body #header #homeNavBox .contact-social-container .home-social-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body #header #homeNavBox .contact-social-container .home-social-list a {
  width: 36px;
  height: 36px;
  color: #fff;
  text-align: center;
  font-size: 21px;
  display: inline-block;
  padding: 3px;
}
body #header #homeNavBox .contact-social-container .home-social-list .facebook {
  background-color: #3a5897;
}
body #header #homeNavBox .contact-social-container .home-social-list .facebook:hover {
  background-color: #4569a8;
}
body #header #homeNavBox .contact-social-container .home-social-list .twitter {
  background-color: #00acec;
}
body #header #homeNavBox .contact-social-container .home-social-list .twitter:hover {
  background-color: #41cef8;
}
body #header #homeNavBox .contact-social-container .home-social-list .youtube {
  background-color: #cc171e;
}
body #header #homeNavBox .contact-social-container .home-social-list .youtube:hover {
  background-color: #f7253e;
}
body #header #homeNavBox .contact-social-container .home-social-list .instagram {
  background-color: #bb2a8d;
}
body #header #homeNavBox .contact-social-container .home-social-list .instagram:hover {
  background-color: #d538aa;
}
body #header #homeNavBox .contact-social-container .newsletter {
  background-color: #f8ef32;
  height: 36px;
  text-transform: uppercase;
  padding: 0 16px;
  color: #253d51;
}
body #header #homeNavBox .contact-social-container .newsletter a {
  text-align: center;
  vertical-align: middle;
  vertical-align: -webkit-baseline-middle;
}
body #header #homeNavBox .contact-social-container .newsletter:hover {
  background-color: #304f6d;
}
body #header #homeNavBox .contact-social-container .newsletter:hover a {
  color: #f8ef32;
}
.social-list li {
  padding-right: 0px;
  padding-left: 0px;
}
.social-list a {
  color: #fff;
  width: 25px;
  height: 25px;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  padding-top: 2px;
}
.social-list a img {
  width: 15px;
}
body#home {
  max-width: 1500px;
  margin: auto;
  padding-top: 108px;
}
body#home #header {
  height: auto;
  background-color: transparent;
  z-index: 100;
  border-bottom: none;
  max-width: 1500px;
}
body#home #header #halfCircle {
  margin-left: 31.9em;
}
@media (max-width: 1199px) {
  body#home #header #halfCircle {
    margin-left: 26em;
    top: 5px;
  }
}
@media (max-width: 991px) {
  body#home #header #halfCircle {
    display: none;
  }
}
@media (max-width: 1035px) {
  body#home {
    padding-top: 94px;
  }
}
@media (max-width: 501px) {
  body#home {
    padding-top: 73px;
  }
}
body #header {
  border-bottom: 5px #f8ef32 solid;
}
#header.affix .alert .alertIcn .glyphicon {
  color: #fff;
}
body:not(#home) .nav-hold {
  margin-left: 35px;
}
@media (max-width: 1330px) {
  body:not(#home) .nav-hold {
    margin-left: 19px;
  }
}
@media (max-width: 1200px) {
  body:not(#home) .nav-hold {
    margin-left: 19px;
  }
}
@media (max-width: 1199px) {
  body:not(#home) .nav-hold {
    margin-left: 15px;
  }
}
@media (max-width: 991px) {
  body:not(#home) .nav-hold {
    padding: 10px 0px;
  }
}
body:not(#home) .navbar {
  background-color: transparent;
  margin-left: 30px;
  border: none;
  display: inline-block;
}
@media (max-width: 1199px) {
  body:not(#home) .navbar {
    margin-left: 0px;
  }
}
body:not(#home) .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body:not(#home) .navbar .nav-pills > li {
  border: none;
  width: auto;
  display: inline-block;
}
body:not(#home) .navbar .nav-pills > li a {
  text-transform: uppercase;
  font-family: "ITC Avant Garde Gothic W01 Dm";
  font-size: 18px;
  padding: 15px 10px 5px;
  color: #fff;
  border-radius: 0px;
}
body:not(#home) .navbar .nav-pills > li a::after {
  content: " ";
  display: block;
  border-bottom: 1px solid transparent;
  width: inherit;
}
body:not(#home) .navbar .nav-pills > li a:hover {
  color: #f8ef32;
}
body:not(#home) .navbar .nav-pills > li a:hover::after {
  border-bottom: 1px solid #f8ef32;
}
@media (max-width: 1199px) {
  body:not(#home) .navbar .nav-pills > li a {
    font-size: 16px;
    padding: 15px 6px;
  }
}
body:not(#home) .navbar .nav-pills > li:nth-child(3) {
  margin-left: 128px;
}
@media (max-width: 1199px) {
  body:not(#home) .navbar .nav-pills > li:nth-child(3) {
    margin-left: 105px;
  }
}
body:not(#home) .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
  border-top: none;
  border: none;
  top: 100%;
}
body:not(#home) .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.41);
}
body:not(#home) .navbar .nav-pills > li .dropdown-menu li a {
  color: #243d51;
  text-transform: uppercase;
}
body:not(#home) .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body:not(#home) .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #243d51;
  color: black;
}
body:not(#home) .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #f8ef32;
  background-color: transparent;
}
body:not(#home) .navbar .nav-pills > li.selected a::after {
  content: " ";
  display: block;
  border-bottom: 1.5px solid #f8ef32;
  width: inherit;
}
body:not(#home) .navbar .nav-pills > li.selected a:hover {
  color: #f8ef32;
}
body:not(#home) .navbar .nav-pills > li.selected a:hover::after {
  border-bottom: 1px solid #f8ef32;
}
body:not(#home) .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body:not(#home) .navbar .togglemenu .menulabel {
  display: inline-block;
  font-family: "ITC Avant Garde Gothic W01 Dm";
  top: -1px;
  position: relative;
}
body:not(#home) .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 21px;
  position: relative;
  right: -35px;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
@media (max-width: 991px) {
  body:not(#home) .navbar .srchbuttonmodal {
    right: 0px !important;
  }
}
body:not(#home) .navbar .srchbutton {
  color: #fff;
}
body:not(#home) .navbar .srchbutton:hover span {
  color: #f8ef32;
}
body:not(#home) .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body:not(#home) .navbar #search.showme {
  /*width: 96%;*/
}
body:not(#home) .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body:not(#home) .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body:not(#home) .navbar .glyphicon-search {
  top: 17px;
}
@media (max-width: 991px) {
  body:not(#home) .navbar .glyphicon-search {
    top: 13px;
  }
}
body:not(#home) .interior-social-container {
  width: 100%;
  text-align: right;
}
body:not(#home) .interior-social-container .social-list {
  display: flex;
  justify-content: flex-end;
}
body:not(#home) .interior-social-container .social-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body:not(#home) .interior-social-container .social-list a {
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  font-size: 21px;
  display: inline-block;
  padding: 1px;
}
@media (max-width: 1329px) {
  body:not(#home) .interior-social-container .social-list a {
    width: 30px;
    height: 30px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    display: inline-block;
    padding: 1px;
  }
}
body:not(#home) .interior-social-container .social-list .facebook {
  background-color: #3a5897;
}
body:not(#home) .interior-social-container .social-list .facebook:hover {
  background-color: #4569a8;
}
body:not(#home) .interior-social-container .social-list .twitter {
  background-color: #00acec;
}
body:not(#home) .interior-social-container .social-list .twitter:hover {
  background-color: #41cef8;
}
body:not(#home) .interior-social-container .social-list .youtube {
  background-color: #cc171e;
}
body:not(#home) .interior-social-container .social-list .youtube:hover {
  background-color: #f7253e;
}
body:not(#home) .interior-social-container .social-list .instagram {
  background-color: #bb2a8d;
}
body:not(#home) .interior-social-container .social-list .instagram:hover {
  background-color: #d538aa;
}
@media (max-width: 1200px) {
  body:not(#home) .interior-social-container {
    display: none;
  }
}
body#home .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body#home .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body#home .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
  display: inline-block !important;
}
body#home .navbar .nav-pills > li a {
  text-transform: uppercase;
  font-family: "ITC Avant Garde Gothic W01 Dm";
  padding: 15px 25px;
  color: #fff;
  font-size: 1.1em;
  border-radius: 0px !important;
}
body#home .navbar .nav-pills > li a::after {
  content: " ";
  display: block;
  border-bottom: 1px solid transparent;
  width: inherit;
}
body#home .navbar .nav-pills > li a:hover {
  color: #f8ef32;
}
body#home .navbar .nav-pills > li a:hover::after {
  border-bottom: 1px solid #f8ef32;
}
@media (max-width: 1199px) {
  body#home .navbar .nav-pills > li a {
    font-size: 1em;
    padding: 15px 12px;
  }
}
body#home .navbar .nav-pills > li .dropdown-menu {
  border-top: 1px white solid;
  margin: -1px;
}
body#home .navbar .nav-pills > li .dropdown-menu li {
  background-color: white;
}
body#home .navbar .nav-pills > li .dropdown-menu li a {
  color: #243d51;
  font-size: 19.8px;
  padding-right: -10px;
}
body#home .navbar .nav-pills > li .dropdown-menu li:hover a {
  background-color: #243d51;
  color: #f8ef32;
}
body#home .navbar .nav-pills > li.selected {
  background-color: white;
}
body#home .navbar .togglemenu .menulabel {
  color: white;
  top: 14px;
  position: relative;
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
body#home .glyphicon-search {
  top: 0px;
  color: #fff;
}
@media (max-width: 991px) {
}
body#home #header.affix {
  transition: background-color 0.5s;
}
body#home #header.affix .nav-hold .navbar .nav li a {
  color: #fff;
}
body#home #header.affix .nav-hold .navbar .nav li a:hover {
  background-color: #243d51;
  color: white;
}
body#home #header.affix .right .social-list li a {
  color: #243d51;
}
body#home #header.affix .newsletter-nav {
  display: none;
}
body#home #header.affix .glyphicon {
  color: #243d51;
  color: #fff;
}
body#home #header.affix .togglemenu .menulabel {
  color: #243d51;
  color: #fff;
}
body#home #header.affix.interiorlike {
  border-bottom: 5px solid #f8ef32;
  background-color: #243d51;
}
body#home #header.affix.interiorlike .nav-hold {
  margin-left: 35px;
}
@media (max-width: 1199px) {
  body#home #header.affix.interiorlike .nav-hold {
    margin-left: 15px;
  }
}
@media (max-width: 991px) {
  body#home #header.affix.interiorlike .nav-hold {
    padding: 10px 0px;
  }
}
body#home #header.affix.interiorlike .navbar {
  background-color: transparent;
  margin-left: 30px;
  border: none;
  display: inline-block;
}
@media (max-width: 1199px) {
  body#home #header.affix.interiorlike .navbar {
    margin-left: 0px;
  }
}
body#home #header.affix.interiorlike .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body#home #header.affix.interiorlike .navbar .nav-pills > li {
  border: none;
  width: auto;
  display: inline-block;
}
body#home #header.affix.interiorlike .navbar .nav-pills > li a {
  text-transform: uppercase;
  font-family: "ITC Avant Garde Gothic W01 Dm";
  font-size: 18px;
  padding: 15px 10px 5px;
  color: #fff;
  border-radius: 0px;
}
body#home #header.affix.interiorlike .navbar .nav-pills > li a:hover {
  border-bottom: 1px solid #f8ef32;
}
@media (max-width: 1199px) {
  body#home #header.affix.interiorlike .navbar .nav-pills > li a {
    font-size: 16px;
    padding: 15px 6px;
  }
}
body#home #header.affix.interiorlike .navbar .nav-pills > li:nth-child(3) {
  margin-left: 128px;
}
@media (max-width: 1199px) {
  body#home #header.affix.interiorlike .navbar .nav-pills > li:nth-child(3) {
    margin-left: 105px;
  }
}
body#home #header.affix.interiorlike .navbar .nav-pills > li:hover a,
body#home #header.affix.interiorlike .navbar .nav-pills > li.selected a {
  color: #f8ef32;
  border-bottom: 1px solid #f8ef32;
}
body#home #header.affix.interiorlike .glyphicon {
  color: #fff;
}
@media (max-width: 991px) {
}
body#home #header.affix.interiorlike .togglemenu {
  margin-left: 5px;
}
body#home #header.affix.interiorlike .togglemenu .menulabel {
  color: #fff;
}
body#home #header.affix.interiorlike .right .social-list li a {
  color: white;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-size: 45px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  text-align: center;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header {
  position: fixed;
  top: 0;
  z-index: 100;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  float: left;
}
@media (max-width: 991px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    float: right;
  }
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 9px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #243d51;
  color: #fff;
  border-bottom: 3px solid #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #243d51;
  color: #fff;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -15px;
  right: -15px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
#header #homeNavBox .navbar {
  display: flex;
  align-items: center;
}
#header #homeNavBox .navbar #main-nav {
  display: flex;
}
#home .banner {
  background-image: url(/themes/young/images/young_hompage-banner1.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 660px;
  width: 100%;
  text-align: center;
  position: relative;
  border-bottom: 7px solid #f8ef32;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  #home .banner {
    background-position: center top;
    height: 550px;
  }
}
@media (max-width: 670px) {
  #home .banner {
    height: 475px;
  }
}
@media (max-width: 599px) {
}
@media (max-width: 500px) {
  #home .banner {
    height: 420px;
  }
}
@media (max-width: 400px) {
  #home .banner {
    height: 385px;
  }
}
@media (max-width: 360px) {
  #home .banner {
    background-position: right -140px center;
  }
}
@media (max-width: 700px) {
  #home .banner:before {
    content: "";
    height: 100%;
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=1);
  }
}
#home .banner .home-logo {
  width: auto;
  max-width: 400px;
  margin-left: 15px;
  padding-top: 160px;
}
@media (max-width: 991px) {
  #home .banner .home-logo {
    max-width: 44%;
  }
}
@media (max-width: 740px) {
  #home .banner .home-logo {
    max-width: 38%;
  }
}
@media (max-width: 670px) {
  #home .banner .home-logo {
    padding-top: 125px;
  }
}
@media (max-width: 700px) {
  #home .banner .home-logo {
    position: relative;
    z-index: 2;
  }
}
#home .banner .home-logo img {
  width: 100%;
}
#home .banner .home-logo h3,
#home .banner .home-logo a {
  color: #fff;
}
#home .banner .home-logo h3 {
  margin-top: 55px;
  margin-bottom: 35px;
}
@media (max-width: 740px) {
  #home .banner .home-logo h3 {
    font-size: 19px;
  }
}
@media (max-width: 670px) {
  #home .banner .home-logo h3 {
    margin-top: 38px;
    margin-bottom: 22px;
  }
}
@media (max-width: 415px) {
  #home .banner .home-logo h3 {
    font-size: 16px;
  }
}
#home .banner .home-logo a.contact-me {
  border: 2px solid white;
  padding: 10px 10px;
}
@media (max-width: 740px) {
  #home .banner .home-logo a.contact-me {
    font-size: 15px;
  }
}
@media (max-width: 415px) {
  #home .banner .home-logo a.contact-me {
    font-size: 12px;
  }
}
#home .banner .banner-press {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 70%;
  width: 100%;
}
#home .banner .banner-press a {
  color: white;
  font-family: "ITC Avant Garde Gothic W01 Dm";
  font-size: 30px;
}
#home .banner .banner-press a:hover {
  color: #efe408;
}
@media (max-width: 565px) {
  #home .banner .banner-press a {
    font-size: 25px;
  }
}
@media (max-width: 465px) {
  #home .banner .banner-press a {
    font-size: 24px;
  }
}
#home .banner #halfCircle2 {
  position: absolute;
  margin-left: 46%;
  bottom: -3.5em;
  z-index: 3;
}
@media (max-width: 991px) {
  #home .banner #halfCircle2 {
    margin-left: 43%;
  }
}
@media (max-width: 767px) {
  #home .banner #halfCircle2 {
    margin-left: 41%;
  }
}
@media (max-width: 580px) {
  #home .banner #halfCircle2 {
    margin-left: 39%;
    transform: scale(0.8);
  }
}
@media (max-width: 414px) {
  #home .banner #halfCircle2 {
    margin-left: 35%;
    transform: scale(0.6);
  }
}
@media (max-width: 375px) {
  #home .banner #halfCircle2 {
    margin-left: 33%;
  }
}
@media (max-width: 320px) {
  #home .banner #halfCircle2 {
    margin-left: 32%;
  }
}
#home .banner #halfCircle2 #innerHalfCircle {
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0) 50%, #f8ef32 50%, #f8ef32 100%);
  width: 110px;
  height: 110px;
  border-radius: 60px;
}
#home .banner #halfCircle2 #innerHalfCircle .torch {
  height: 100%;
  max-height: 100px;
  max-width: 100px;
  width: 100%;
  border: 10px solid #fff;
  border-radius: 60px;
  background-color: #fff;
  position: absolute;
  top: 5px;
  left: 5px;
}
#home #homevideoModal .modal-backdrop {
  background-color: #243d51;
  opacity: 1;
}
#home #homevideoModal .modal-dialog {
  margin: 60px auto;
}
#home #homevideoModal .modal-dialog .close {
  position: absolute;
  float: none;
  right: -30px;
  top: -10px;
  color: #fff;
  opacity: 1;
  text-shadow: none;
  font-size: 34px;
}
#home #homevideoModal .modal-dialog .modal-content {
  border: 0px;
  border-radius: 0px;
}
#home #homevideoModal .modal-dialog .modal-content .modal-body {
  padding-bottom: 0px;
}
#home #homevideoModal .modal-dialog .modal-content .modal-body iframe {
  width: 100%;
  height: 475px;
}
#home #homevideoModal .modal-dialog .modal-content .modal-header {
  border-bottom: 0px;
}
#home #homevideoModal .modal-dialog .modal-content .modal-header .modal-title {
  text-align: center;
}
#home #homevideoModal .modal-dialog .modal-content .modal-header .modal-title a {
  color: #243d51;
}
#home #homevideoModal .modal-dialog .modal-content .modal-header .modal-title a:hover {
  color: #243d51;
  text-decoration: underline;
}
body#home #press {
  padding: 50px 0px;
}
body#home #press .press-image,
body#home #press .video-image {
  height: 230px;
  width: 100%;
  margin-bottom: 10px;
  background-position: center;
  position: relative;
  z-index: 1;
}
body#home #press .press-image:hover span,
body#home #press .video-image:hover span {
  border-bottom: 5px #f8ef32 solid;
}
body#home #press .press-title {
  border-top: 15px solid #f8ef32;
  padding: 20px 0px;
  color: black;
  width: 100%;
}
body#home #press .wrap:hover span {
  border-bottom: 5px #f8ef32 solid;
}
body#home #press .video .press-title {
  margin-top: 6px;
}
body#home #press .video:hover {
  cursor: pointer;
}
body#home #press .video:hover .holder .playbutton .fa-play-circle {
  color: transparent;
  transition: color 0.2s ease-in;
}
body#home #press .video:hover .holder .video-image {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
body#home #press .video:hover .press-title span {
  border-bottom: 5px #f8ef32 solid;
  padding-bottom: 0px;
}
body#home #press .video .holder {
  background-color: black;
}
body#home #press .video .holder .playbutton {
  position: absolute;
  display: block;
  padding: 20px;
  height: auto;
  top: 3em;
  left: 8.5em;
  z-index: 2;
  opacity: 1;
}
body#home #press .video .holder .playbutton .fa-play-circle {
  font-size: 70px;
  color: #fff;
}
@media (max-width: 1199px) {
  body#home #press .video .holder .playbutton {
    left: 40%;
  }
}
body#home #press .video .holder .video-image {
  opacity: 0.6;
  position: relative;
  z-index: 1;
}
.mainMap {
  height: auto;
  padding: 15px 0px;
  background: url("/themes/young/images/map.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  box-shadow: inset 0 0 8em rgba(0, 0, 0, 0.35);
  position: relative;
}
.mainMap:hover {
  box-shadow: inset 0 0 8em #000000;
  transition: box-shadow 1s;
}
.mainMap a:hover #senatorMap,
.mainMap a:hover #youngMap,
.mainMap a:hover #aroundMap,
.mainMap a:hover #indianaMap {
  opacity: 1;
  color: #243d51;
  transition: all 1s;
}
#senatorMap,
#youngMap,
#aroundMap {
  opacity: 0.8;
  color: rgba(41, 68, 94, 0.4);
  font-size: 77px;
  font-family: "ITC Avant Garde GothicW01DmObl";
  z-index: 3;
}
@media (max-width: 768px) {
  #senatorMap,
  #youngMap,
  #aroundMap {
    font-size: 70px;
  }
}
@media (max-width: 568px) {
  #senatorMap,
  #youngMap,
  #aroundMap {
    font-size: 60px;
  }
}
#senatorMap {
  padding-top: 10;
  margin-left: 23%;
  margin-bottom: 0px;
}
@media (max-width: 525px) {
  #senatorMap {
    font-size: 65px;
    margin-left: 14%;
  }
}
@media (max-width: 375px) {
  #senatorMap {
    font-size: 50px;
    margin-left: 8%;
  }
}
#youngMap {
  padding: 0px;
  margin-top: -39px;
  margin-left: 35%;
}
@media (max-width: 525px) {
  #youngMap {
    font-size: 65px;
    margin-left: 24%;
  }
}
@media (max-width: 375px) {
  #youngMap {
    font-size: 50px;
    margin-left: 18%;
    margin-top: -30px;
  }
}
#aroundMap {
  padding-top: 0;
  margin-left: 40%;
  margin-bottom: 0px;
}
@media (max-width: 525px) {
  #aroundMap {
    font-size: 65px;
    margin-left: 8%;
  }
}
@media (max-width: 375px) {
  #aroundMap {
    font-size: 50px;
    margin-left: 6%;
  }
}
#indianaMap {
  opacity: 0.9;
  color: rgba(41, 68, 94, 0.7);
  font-size: 138px;
  font-family: "ITC Avant Garde GothicW01BdObl";
  margin-left: 40%;
  margin-top: -51px;
  z-index: 3;
}
@media (max-width: 1046px) {
  #indianaMap {
    margin-left: 25%;
  }
}
@media (max-width: 880px) {
  #indianaMap {
    margin-left: 15%;
  }
}
@media (max-width: 768px) {
  #indianaMap {
    margin-left: 10%;
    font-size: 120px;
  }
}
@media (max-width: 768px) {
  #indianaMap {
    margin-left: 6%;
    font-size: 115px;
  }
}
@media (max-width: 568px) {
  #indianaMap {
    font-size: 110px;
    margin-left: 4%;
  }
}
@media (max-width: 525px) {
  #indianaMap {
    font-size: 80px;
    margin-left: 5%;
    margin-top: -25px;
  }
}
@media (max-width: 375px) {
  #indianaMap {
    font-size: 65px;
    margin-left: 3%;
    margin-top: -25px;
  }
}
.pins {
  width: 100%;
  height: 100%;
  z-index: 2;
}
.pins .pin {
  background-color: #c0bebe;
  height: 18px;
  width: 18px;
  border-radius: 18px;
  position: absolute;
  left: 20%;
  top: 20%;
  transition: 0.2s all ease-in;
}
.pins .pin:before {
  content: "";
  display: inline-block;
  background-color: #cbcbcb;
  width: 3px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  left: 8px;
}
.pins .pin:nth-child(1) {
  top: 80%;
  left: 80%;
}
.pins .pin:nth-child(2) {
  top: 40%;
  left: 70%;
}
.pins .pin:nth-child(3) {
  top: 70%;
  left: 40%;
}
.pins .pin:nth-child(4) {
  top: 20%;
  left: 20%;
}
.pins .pin:nth-child(5) {
  top: 60%;
  left: 16%;
}
.pins .pin:nth-child(6) {
  top: 40%;
  left: 40%;
}
.pins .pin:nth-child(7) {
  top: 80%;
  left: 90%;
}
.pins .pin:nth-child(8) {
  top: 10%;
  left: 70%;
}
.pins .pin:nth-child(9) {
  top: 50%;
  left: 80%;
}
.pins .pin:nth-child(10) {
  top: 10%;
  left: 10%;
}
.pins .pin:nth-child(11) {
  top: 80%;
  left: 80%;
}
.pins .pin:nth-child(12) {
  top: 10%;
  left: 90%;
}
.pins .pin:nth-child(13) {
  top: 85%;
  left: 10%;
}
.pins .pin:nth-child(14) {
  top: 76%;
  left: 34%;
}
.pins .pin:nth-child(15) {
  top: 50%;
  left: 26%;
}
.officeLocations {
  height: auto;
  min-height: 475px;
  background-color: #243d51;
  text-align: center;
  background: url("/themes/young/images/camo.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.officeLocations .officearea {
  padding-bottom: 30px;
}
.officeLocations h2 {
  color: white;
  text-align: center;
  margin-top: 0px;
  font-family: "ITC Avant Garde Gothic W01 Dm";
  padding-top: 65px;
  font-size: 28px;
}
.officeLocations .col-md-3 {
  width: 20%;
}
@media (max-width: 767px) {
  .officeLocations .col-md-3 {
    width: inherit;
  }
}
.officeLocations .col-md-offset-1 {
  margin-left: 5.333333%;
}
@media (max-width: 767px) {
  .officeLocations .col-md-offset-1 {
    margin-left: inherit;
  }
}
.officeLocations .office {
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin-top: 43px;
  min-height: 280px;
  height: auto;
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 767px) {
  .officeLocations .office {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 430px) {
  .officeLocations .office {
    margin-top: 0px;
  }
}
.officeLocations .office .officeLocationTitle {
  color: white;
  font-size: 20px;
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
.officeLocations .office .officeLocationTitle span {
  border-bottom: 1px solid white;
}
.officeLocations .office p {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: lighter;
  padding: 10px 0px;
  line-height: 26px;
  margin-bottom: 10px;
}
.officeLocations .office .phonenumber {
  color: #fff;
}
.officeLocations .office .officeDirections {
  bottom: 0px;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.officeLocations .office .officeDirections a {
  color: #f8ef32;
  font-size: 14px;
}
.officeLocations .office .officeDirections a .glyphicon {
  font-size: 10px;
  top: -1px;
}
.officeLocations .office .officeDirections a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .officeLocations .office .officeDirections {
    width: 90%;
    bottom: 30px;
  }
}
@media (max-width: 430px) {
  .officeLocations .office .officeDirections {
    bottom: 50px;
  }
}
a[href^="tel"] {
  /* css */
  color: inherit;
  text-decoration: none;
}
body#home .glyphicon-menu-hamburger {
  color: white;
}
body#home .social-widgets {
  background-color: #e5e5e5;
  padding: 85px 0;
}
body#home .social-widgets .facebook,
body#home .social-widgets .twitter,
body#home .social-widgets .instagram-container {
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 991px) {
  body#home .social-widgets .facebook,
  body#home .social-widgets .twitter {
    margin-bottom: 20px;
  }
}
body#home .social-widgets .facebook {
  padding-right: 0;
}
body#home .social-widgets .show1330 {
  display: none;
}
@media (max-width: 1330px) {
  body#home .social-widgets .show1330 {
    display: block;
  }
}
@media (max-width: 1200px) {
  body#home .social-widgets .show1330 {
    display: none;
  }
}
@media (max-width: 991px) {
  body#home .social-widgets .show1330 {
    display: none;
  }
}
@media (max-width: 450px) {
  body#home .social-widgets .show1330 {
    display: block;
  }
}
@media (max-width: 375px) {
  body#home .social-widgets .show1330 {
    display: none;
  }
}
body#home .social-widgets .show1200 {
  display: none;
}
@media (max-width: 1200px) {
  body#home .social-widgets .show1200 {
    display: block;
  }
}
@media (max-width: 991px) {
  body#home .social-widgets .show1200 {
    display: none;
  }
}
@media (max-width: 375px) {
  body#home .social-widgets .show1200 {
    display: block;
  }
}
body#home .social-widgets .hide1330 {
  display: block;
}
@media (max-width: 1330px) {
  body#home .social-widgets .hide1330 {
    display: none;
  }
}
@media (max-width: 991px) {
  body#home .social-widgets .hide1330 {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  body#home .social-widgets .hide1330 {
    display: none;
    margin: 0 auto;
  }
}
body#home .social-widgets .instagram-container {
  height: 500px;
  text-align: center;
  max-width: 420px;
  background-color: white;
  padding-top: 20px;
}
body#home .social-widgets .instagram-container #instamedia > a {
  padding: 5px;
  display: inline-block;
  width: 33%;
}
body#home .social-widgets .instagram-container > img {
  height: 120px;
  margin: 10px auto;
  border-radius: 60px;
}
body#home .social-widgets .instagram-container h4 {
  margin-top: 13px;
}
body#home .social-widgets .instagram-container .instagram-follow {
  margin-bottom: 10px;
  border-radius: 5px;
  font-family: "ITC Avant Garde Gothic W01 Md";
}
body#home .social-widgets .instagram-container .instaimage {
  overflow: hidden;
  height: 120px;
  width: 100%;
  background-size: cover;
}
body#home .social-widgets .instagram-container .instaimage img {
  width: 100%;
  min-width: 200px;
  min-height: 150px;
}
body#home .homeVideo-container {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 660px;
  overflow: hidden;
  border-bottom: 7px solid #f8ef32;
}
body#home .homeVideo-container video {
  width: 100%;
}
@media (max-width: 1164px) {
  body#home .homeVideo-container video {
    width: 117%;
  }
}
.video .press-title,
.video .press-image {
  display: inline-block;
}
.glyphicon-play {
  color: #f8ef32;
}
.twitterprofilecard {
  width: 100%;
  margin: 0 auto;
  height: auto;
  text-align: center;
}
.twitterprofilecard a {
  color: #fff;
  font-family: "ITC Avant Garde Gothic W01 Bd";
}
.twitterprofilecard a .twittername .name {
  font-size: 32px;
}
.twitterprofilecard a .twittername .handle {
  font-size: 22px;
}
.twitterprofilecard a:hover {
  color: #000;
  text-decoration: underline;
}
@media (max-width: 791px) {
  #twitter-carousel {
    margin-top: 3px;
  }
}
#twitter-carousel #carousel .carousel-inner {
  text-align: center;
  height: 120px;
}
@media (max-width: 991px) {
  #twitter-carousel #carousel .carousel-inner {
    overflow: hidden;
  }
}
@media (max-width: 450px) {
  #twitter-carousel #carousel .carousel-inner {
    height: 140px;
  }
}
#twitter-carousel #carousel .carousel-inner .item {
  margin: 0 auto;
  padding: 0 0px;
  color: #fff;
  font-family: "ITC Avant Garde Gothic W01 Dm";
  font-size: 22px;
}
#twitter-carousel #carousel .carousel-inner .item a {
  color: #fff;
  font-size: 22px;
}
#twitter-carousel #carousel .carousel-inner .item a:hover {
  text-decoration: underline;
  transition: 0.5s;
  color: #f8ef32;
}
@media (max-width: 767px) {
  #twitter-carousel #carousel .carousel-inner .item a {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  #twitter-carousel #carousel .carousel-inner .item a {
    font-size: 16px;
  }
}
#twitter-carousel #carousel .carousel-inner .item .tweet {
  word-break: break-word;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #twitter-carousel #carousel .carousel-inner .item .tweet {
    line-height: 20px;
  }
}
#twitter-carousel #carousel .carousel-inner .item .tweet p {
  color: white;
}
@media (max-width: 767px) {
  #twitter-carousel #carousel .carousel-inner .item {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  #twitter-carousel #carousel .carousel-inner .item {
    font-size: 16px;
  }
}
#twitter-carousel #carousel .carousel-indicators {
  bottom: -35px;
  padding-right: 14px;
}
#twitter-carousel #carousel .carousel-indicators li {
  border: 1px solid #f8ef32;
}
#twitter-carousel #carousel .carousel-indicators li.active {
  background-color: #243d51;
}
#twitter-carousel #carousel .carousel-control {
  background-image: none;
  background-repeat: none;
  text-shadow: none;
  opacity: 1;
  top: 0em;
}
#twitter-carousel #carousel .carousel-control i {
  font-size: 30px;
  color: #f8ef32;
  position: absolute;
}
#twitter-carousel #carousel .carousel-control:hover i {
  color: #e5db08;
}
#twitter-carousel #carousel .left {
  left: -2em;
}
#twitter-carousel #carousel .left i {
  left: 0px;
}
#twitter-carousel #carousel .right {
  right: -2em;
}
#twitter-carousel #carousel .right i {
  right: 0px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.sitebannerimage {
  height: 435px;
  background-position: center;
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 1100px) {
  .sitebannerimage {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .sitebannerimage {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .sitebannerimage {
    height: 320px;
  }
}
@media (max-width: 551px) {
  .sitebannerimage {
    height: 300px;
  }
}
@media (max-width: 414px) {
  .sitebannerimage {
    height: 280px;
  }
}
@media (max-width: 350px) {
  .sitebannerimage {
    height: 250px;
  }
}
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
#content {
  margin-top: 60px;
}
#content #main_column {
  padding-bottom: 60px;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
body.no-breadcrumbs #breadcrumb {
  display: none;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
.toggle-btn.active,
.btn-block.hover {
  background-color: #f8ef32 !important;
}
#breadcrumb a {
  color: #243d51;
  font-family: "ITC Avant Garde Gothic W01 Dm";
  font-size: 16px;
}
#breadcrumb a:hover {
  color: #243d51;
  text-decoration: underline;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#filterbuttons a {
  background-color: transparent;
  color: #243d51;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #05080a;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  color: white;
  transition: 0.3s background-color ease-in;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #f8ef32;
  color: #243d51;
}
body#newsroomlanding {
  margin-top: 0px;
}
body#newsroomlanding #main_column {
  padding-bottom: 0px;
}
body#newsroomlanding .newspage {
  background-color: #f7f8f9;
  margin-top: -60px;
}
body#newsroomlanding .newspage .leftcontent {
  background-color: white;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 80px;
  padding-bottom: 50px;
}
body#newsroomlanding .newspage .rightnav {
  position: relative;
  padding: 105px 50px;
}
body#newsroomlanding .newspage .rightnav #typenav li .fa-caret-right {
  display: none;
  position: absolute;
  top: 13px;
  font-size: 24px;
}
body#newsroomlanding .newspage .rightnav #typenav li a {
  color: #253d51;
  font-size: 24px;
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
body#newsroomlanding .newspage .rightnav #typenav li.active {
  position: relative;
}
body#newsroomlanding .newspage .rightnav #typenav li.active .fa-caret-right {
  display: block;
  color: #315178;
}
body#newsroomlanding .newspage .rightnav #typenav li.active a {
  color: #315178;
  background-color: transparent;
}
body#newsroomlanding .newspage .rightnav #typenav.affix {
  top: 5em;
}
body#newsroomlanding .newspage .section-header {
  border-bottom: 2px solid #243d51;
  font-size: 30px;
}
body#newsroomlanding .newspage #newscontent hr {
  border-top: 1px solid transparent;
}
body#newsroomlanding .newspage #newscontent #press .title {
  font-size: 26px;
}
body#newsroomlanding .newspage #newscontent #press .title a {
  color: #252525;
}
body#newsroomlanding .newspage #newscontent #press .title a:hover {
  color: #4875a0;
}
body#newsroomlanding .newspage #newscontent #press .date {
  font-size: 16px;
}
body#newsroomlanding .newspage #newscontent #press .summary {
  display: none;
}
body#newsroomlanding .newspage #newscontent #videos .title a {
  color: #252525;
  font-size: 26px;
}
body#newsroomlanding .newspage #newscontent #videos .title a:hover {
  color: #4875a0;
}
body#newsroomlanding .newspage #newscontent #newsletter .title {
  font-size: 26px;
}
body#newsroomlanding .newspage #newscontent #newsletter .title a {
  color: #252525;
}
body#newsroomlanding .newspage #newscontent #newsletter .title a:hover {
  color: #4875a0;
}
body#newsroomlanding .newspage #newscontent .btn {
  font-weight: bold;
}
#about {
  /* Firefox < 16 */
  /* Safari, Chrome and Opera > 12.1 */
  /* Internet Explorer */
  /* Opera < 12.1 */
}
#about .shaded {
  background-color: #f7f8fa;
}
#about .col-md-9 {
  padding-left: 0px;
}
#about .aboutSubTitle {
  color: #243d51;
}
#about #content {
  margin-top: 0px;
}
@media (max-width: 667px) {
  #about .bioimageblock img {
    display: none;
  }
}
#about #firstblock {
  margin-bottom: 40px;
}
#about #firstblock #imgholder .bioimageblock {
  position: relative;
  z-index: 2;
}
#about #firstblock #imgholder .bioimageblock #sam-bio-image img {
  width: 100%!important;
  height: auto!important;
}
@media (max-width: 991px) {
  #about #firstblock #imgholder {
    display: none;
  }
}
#about .topbiobanner {
  position: relative;
  display: block;
  height: 435px;
  margin-top: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  #about .topbiobanner {
    margin-top: 55px;
  }
}
@media (max-width: 767px) {
  #about .topbiobanner {
    height: 330px;
  }
}
@media (max-width: 580px) {
  #about .topbiobanner {
    height: 260px;
  }
}
@media (max-width: 430px) {
  #about .topbiobanner {
    height: 200px;
  }
}
#about .topbiobanner .overlay {
  position: absolute;
  top: 25px;
}
@media (max-width: 991px) {
  #about .topbiobanner .overlay {
    display: none;
  }
}
#about .topbiobanner .overlay #sam-bio-list-left {
  color: #fff;
}
#about .topbiobanner .overlay #sam-bio-list-left h2 {
  font-size: 24px;
}
#about .topbiobanner .overlay #sam-bio-list-left p {
  font-size: 16px;
}
@media (max-width: 991px) {
  #about .topbiobanner .overlay #sam-bio-list-left p {
    line-height: 25px;
  }
}
@media (max-width: 715px) {
  #about .topbiobanner .overlay #sam-bio-list-left p {
    line-height: 20px;
  }
}
@media (max-width: 593px) {
  #about .topbiobanner .overlay #sam-bio-list-left p {
    font-size: 14px;
    line-height: 16px;
  }
}
#about .topbiobanner .overlay #sam-bio-list-left p strong {
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
#about .topbiobanner .overlay #sam-bio-list-right {
  padding-top: 10em;
  color: #fff;
}
#about .topbiobanner .overlay #sam-bio-list-right p {
  font-size: 16px;
}
#about .topbiobanner .overlay #sam-bio-list-right p a {
  color: #f8ef32;
}
#about .topbiobanner .overlay #sam-bio-list-right p a:hover {
  text-decoration: underline;
}
#about .topbiobanner .overlay #sam-bio-list-right p .portraitlink,
#about .topbiobanner .overlay #sam-bio-list-right p .biolink {
  font-size: 14px;
}
@media (max-width: 1199px) {
  #about .topbiobanner .overlay #sam-bio-list-right {
    padding-top: 1em;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#about .bioblocks {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}
#about .bioblocks .is-hidden {
  visibility: hidden;
}
#about .bioblocks .is-hidden #imgholder .bioimageblock:before {
  content: '';
  position: absolute;
  top: -170px;
  left: 50%;
  height: 0%;
}
#about .bioblocks .bounce-in {
  visibility: visible;
  -webkit-animation: fadein 0.8s;
  -moz-animation: fadein 0.8s;
  animation: fadein 0.8s;
}
#about .bioblocks .bounce-in #imgholder .bioimageblock:before {
  height: 100%;
  transition: height 0.7s;
}
@media (max-width: 991px) {
  #about .bioblocks .bounce-in #imgholder .bioimageblock:before {
    display: none;
  }
}
#about .bioblocks:nth-child(odd) #biorow {
  background-color: #f3f3f3;
}
#about .bioblocks #biorow #imgholder {
  position: relative;
}
#about .bioblocks #biorow #imgholder .bioimageblock {
  padding: 80px 0px;
  z-index: 2;
}
#about .bioblocks #biorow #imgholder .bioimageblock img {
  width: 100%;
  border: 1px solid #252525;
  z-index: 2;
  position: relative;
}
#about .bioblocks #biorow #imgholder .bioimageblock:before {
  content: '';
  position: absolute;
  top: -170px;
  left: 50%;
  width: 1px;
  background: #000000;
  z-index: 1;
  transition: height 2.6s;
}
@media (max-width: 1199px) {
  #about .bioblocks #biorow #imgholder .bioimageblock:before {
    top: -190px;
  }
}
@media (max-width: 991px) {
  #about .bioblocks #biorow #imgholder .bioimageblock {
    display: none;
  }
}
#about .biobottomarea {
  background-image: url('/themes/young/images/biobottombanner.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 365px;
  padding: 40px;
}
#about .biobottomarea #bionavitems {
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 auto;
}
#about .biobottomarea #bionavitems li {
  margin: 40px auto;
}
#about .biobottomarea #bionavitems li a {
  color: #f8ef32;
}
#about .biobottomarea #bionavitems li a:hover {
  color: #efe408;
  text-decoration: underline;
}
#about .biobottomarea #bionavitems li a h1 {
  text-transform: uppercase;
}
#about .alert-biobanner {
  margin-top: 115px;
}
@media (max-width: 1250px) {
  #about .alert-biobanner {
    margin-top: 145px;
  }
}
@media (max-width: 900px) {
  #about .alert-biobanner {
    margin-top: 150px;
  }
}
#about #breadcrumb.alert-breadcrumb {
  display: none;
}
#asides #filter-legislation {
  margin-top: 91px;
}
#asides #filter-legislation h3 {
  margin-top: 40px;
}
#pagination-container .pager .next a {
  margin-right: 42px;
}
.fa {
  margin-top: 3px;
}
.table tbody tr td {
  padding-top: 20px;
}
body#priorities h1.main_page_title {
  margin-top: 30px;
}
body#priorities .ih-item.square {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 0px;
  margin-bottom: 30px;
  cursor: pointer;
  border: none;
}
body#priorities .ih-item.square .img {
  width: 100%;
  height: 370px;
  border-radius: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body#priorities .ih-item.square .img:before {
  border-radius: 0px;
  box-shadow: inset 0 0 0 12em rgba(0, 0, 0, 0.41);
}
body#priorities .ih-item.square .img .filter {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.28);
}
body#priorities .ih-item.square .img .filter h2 {
  margin: 140px auto;
  text-align: center;
  position: absolute;
  display: block;
  padding: 5px;
  width: 100%;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  body#priorities .ih-item.square .img .filter h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.square .img .filter h2 {
    font-size: 36px;
  }
}
body#priorities .ih-item.square a {
  cursor: pointer;
}
body#priorities .ih-item.square .info {
  border-radius: 0px;
}
body#priorities .ih-item.square .info h3 {
  height: auto;
  font-size: 32px;
  padding: 0px 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
}
body#priorities .ih-item.square .info .info-back {
  border-radius: 0px;
  background: #243d51;
  height: 100%;
  text-align: left;
}
@media (max-width: 1199px) {
  body#priorities .ih-item.square .info .info-back h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.square .info .info-back h3 {
    font-size: 32px;
  }
}
body#priorities .ih-item.square .info .info-back p {
  margin: 0px 10px;
  line-height: 24px;
  font-style: normal;
  color: #fff;
  font-size: 16px;
  border-top: none;
}
@media (max-width: 1199px) {
  body#priorities .ih-item.square .info .info-back p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.square .info .info-back p {
    font-size: 16px;
    line-height: 24px;
  }
}
body.listblocks {
  background-color: white;
}
body.listblocks #content .clearfix #listblocks li .block {
  background-color: #243d51;
  height: 175px;
}
body.listblocks #content .clearfix #listblocks li .block a:hover {
  background-color: #4875a0;
  color: #f8ef32;
  transition: background-color 0.6s;
}
.internbutton {
  width: 100%;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.internbutton a {
  height: 100px;
  font-weight: bold;
  padding: 30px;
  white-space: normal;
  font-size: 22px;
}
.officeLocationsPage {
  height: auto;
  min-height: 475px;
  text-align: center;
}
.officeLocationsPage .officeareaPage {
  padding-bottom: 30px;
}
.officeLocationsPage .officePage {
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin-top: 43px;
  min-height: 280px;
  height: auto;
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 767px) {
  .officeLocationsPage .officePage {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 430px) {
  .officeLocationsPage .officePage {
    margin-top: 0px;
  }
}
.officeLocationsPage .officePage .officeLocationTitle {
  color: #243d51;
  font-size: 20px;
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
.officeLocationsPage .officePage .officeLocationTitle span {
  border-bottom: 1px solid #243d51;
}
.officeLocationsPage .officePage p {
  color: #4875a0;
  text-align: center;
  font-size: 16px;
  font-weight: lighter;
  padding: 10px 0px;
  line-height: 26px;
  margin-bottom: 10px;
}
.officeLocationsPage .officePage .officeDirections {
  bottom: 0px;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.officeLocationsPage .officePage .officeDirections a {
  color: #243d51;
  font-size: 14px;
}
.officeLocationsPage .officePage .officeDirections a .glyphicon {
  font-size: 10px;
  top: -1px;
}
.officeLocationsPage .officePage .officeDirections a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .officeLocationsPage .officePage .officeDirections {
    width: 90%;
    bottom: 30px;
  }
}
@media (max-width: 430px) {
  .officeLocationsPage .officePage .officeDirections {
    bottom: 50px;
  }
}
body#contact h2 {
  font-size: 22px;
  margin-top: 29px;
}
body#contact #content #contactbuddin,
body#contact #content #contactbuddin2 {
  height: 150px;
  color: #fff;
  background-color: #243d51;
  border: 1px #243d51 solid;
  font-weight: bold;
  padding: 30px;
  white-space: normal;
}
body#contact #content #contactbuddin h2,
body#contact #content #contactbuddin2 h2 {
  font-size: 22px;
}
body#contact #content #contactbuddin:hover,
body#contact #content #contactbuddin2:hover {
  background-color: #4875a0;
  color: #f8ef32;
  transition: background-color 0.6s;
}
body#committeeAssignments h2 {
  color: #243d51;
}
body#committeeAssignments h2:hover {
  color: #4875a0;
}
#newscontent.video {
  padding: 0;
}
body#media-view #breadcrumb a {
  color: #fff;
  z-index: 2;
  position: relative;
}
body#media-view #content {
  background-color: #181818;
}
body#media-view .video #mediaview #tags {
  display: none;
}
body#media-view .video #mediaview .main_page_title {
  color: #fff;
}
body#media-view .video #mediaview .date {
  color: #fff;
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
body#media-view .video #mediaview #featured-details-description p {
  color: #fff;
}
body#media-view .video #mediaview #media-view-container #media-player iframe {
  height: 500px;
}
@media (max-width: 991px) {
  body#media-view .video #mediaview #media-view-container #media-player iframe {
    height: 350px;
  }
}
@media (max-width: 767px) {
  body#media-view .video #mediaview #media-view-container #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#media-view .video #mediaview #media-view-container #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#media-view .video #share-footer #social-container {
  padding-left: 0px;
}
body#media-view .video #share-footer #social-container #share-buttons {
  padding: 20px 0px;
  float: left;
}
body#media-view .video #share-footer #social-container #share-buttons li #share-link-button-container #copyTarget {
  width: 65px;
}
body#multimedia #breadcrumb a {
  color: #fff;
  z-index: 2;
  position: relative;
}
body#multimedia #content {
  margin-top: 55px;
}
body#multimedia .darkbackground {
  height: 791px;
  position: absolute;
  background-color: #181818;
  width: 100%;
}
@media (max-width: 1329px) {
  body#multimedia .darkbackground {
    height: 796px;
  }
}
@media (max-width: 1199px) {
  body#multimedia .darkbackground {
    height: 826px;
  }
}
@media (max-width: 991px) {
  body#multimedia .darkbackground {
    height: 595px;
  }
}
body#multimedia #main_column {
  padding-left: 0px;
  padding-right: 0px;
}
#video-content {
  background-color: #181818;
  padding: 70px 80px;
}
@media (max-width: 991px) {
  #video-content {
    padding: 40px 80px;
  }
}
#video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
#video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 991px) {
  #video-content #media-player iframe {
    height: 350px;
  }
}
@media (max-width: 767px) {
  #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
#video-content #featured-details-header {
  color: white;
  font-family: "ITC Avant Garde Gothic W01 Bd";
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  #video-content #featured-details-header {
    font-size: 26px;
  }
}
#video-content #featured-details-header a {
  color: white;
}
#video-content #featured-details-header a:hover {
  text-decoration: underline;
}
#video-content #featured-details-description {
  color: white;
}
#video-content #featured-details-description p {
  line-height: 25px;
}
#video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
.media-header {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
#share-buttons {
  float: right;
  padding: 18px;
}
@media (max-width: 991px) {
  #share-buttons {
    padding: 17px 10px;
  }
}
#share-buttons #share-youtube a {
  color: white;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#share-buttons #share-link-button-container {
  display: grid;
}
#share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
#share-footer #share-buttons {
  float: right;
  padding: 18px;
}
#share-footer #share-buttons #share-youtube a {
  color: white;
}
#share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
#share-footer #share-buttons #share-link-button-container {
  display: grid;
}
#share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
#multimedia-browser {
  padding: 50px 80px;
}
@media (max-width: 991px) {
  #multimedia-browser {
    padding: 50px 0px;
  }
}
#multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #243d51;
  border-bottom: 0px;
  display: none;
}
#multimedia-browser ul.nav-tabs li a {
  font-family: "ITC Avant Garde Gothic W01 Dm";
  color: #243d51 !important;
  font-size: 52px;
  text-transform: uppercase;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #f8ef32;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
#multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
#multimedia-browser legend {
  display: none;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  color: #fff;
  padding: 0 13px;
  margin-top: -18px;
}
#multimedia-browser .multimedia-tools #search-mm input {
  text-transform: uppercase;
  font-size: 13px;
}
#multimedia-browser .multimedia-tools .date-btn,
#multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #243d51;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #multimedia-browser .multimedia-tools .date-btn,
  #multimedia-browser .multimedia-tools .search-media-btn {
    font-size: 15px!important;
  }
}
#multimedia-browser .multimedia-tools .date-btn:hover,
#multimedia-browser .multimedia-tools .search-media-btn:hover {
  color: #f8ef32;
  background-color: #14222e;
}
#multimedia-browser .multimedia-tools select {
  text-transform: uppercase;
  font-size: 13px;
}
#multimedia-browser .multimedia-tools input[type="text"] {
  text-transform: uppercase;
  font-size: 13px;
}
@media (max-width: 1300px) {
  #multimedia-browser .has-issues .multimedia-tools select.topics {
    width: 75%;
  }
}
@media (max-width: 450px) {
  #multimedia-browser .has-issues .multimedia-tools select.topics {
    width: 70%;
  }
}
@media (max-width: 1300px) {
  #multimedia-browser .has-issues .multimedia-tools input[type="text"].topics {
    width: 75% !important;
  }
}
@media (max-width: 450px) {
  #multimedia-browser .has-issues .multimedia-tools input[type="text"].topics {
    width: 70% !important;
  }
}
@media (max-width: 1300px) {
  #multimedia-browser .has-issues .multimedia-tools .month,
  #multimedia-browser .has-issues .multimedia-tools .year {
    width: 34%;
  }
}
#multimedia-browser .pagination {
  background-color: white;
  color: #252525;
}
@media (max-width: 420px) {
  #multimedia-browser .pagination .listing-jump {
    width: 92%;
    text-align: center;
  }
}
@media (max-width: 420px) {
  #multimedia-browser .pagination .listing-increment {
    text-align: center;
    width: 114%;
  }
}
#multimedia-browser .pagination .listing-increment a {
  color: #252525;
}
#multimedia-browser .pagination .listing-increment a:hover {
  color: #4875a0;
}
#multimedia-browser .pagination .listing-increment a.selected {
  color: #4875a0;
}
#multimedia-browser .pagination.first-one {
  display: none !important;
}
#multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
#multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
#multimedia-browser .media-thumbnail .image a {
  color: #252525;
  height: 165px;
  overflow: hidden;
  font-family: "ITC Avant Garde Gothic W01 Bd";
  display: inline-block;
}
#multimedia-browser .media-thumbnail .image a:hover {
  color: #243d51;
}
@media (max-width: 991px) {
  #multimedia-browser .media-thumbnail .image a {
    height: auto;
  }
}
#multimedia-browser .media-thumbnail a {
  color: #252525;
  font-family: "ITC Avant Garde Gothic W01 Bk";
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
#multimedia-browser .media-thumbnail a:hover {
  color: #243d51;
}
#multimedia-browser .media-thumbnail:hover a {
  color: #000;
}
@media (max-width: 1300px) {
  #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1330px) {
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 75% !important;
  }
}
@media (max-width: 1230px) {
  #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 72% !important;
  }
}
@media (max-width: 990px) {
  #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}
@media (max-width: 900px) {
  #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 75%;
  }
}
@media (max-width: 768px) {
  #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  #share-buttons {
    padding: 0;
  }
  #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 73%;
  }
}
@media (max-width: 480px) {
  #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 72%;
  }
}
@media (max-width: 430px) {
  #share-buttons {
    padding: 0;
  }
  #multimedia-browser {
    padding: 50px 70px;
  }
  #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 70%;
  }
}
.seeAllVideos {
  width: 90%;
  margin-top: 20px;
}
body footer {
  background-color: #e5e5e5;
}
body footer .footer-ul.footernav {
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 55px;
  margin: 25px auto;
  color: #cbcbcb;
}
body footer .footer-ul.footernav li {
  padding: 0px 25px;
  text-align: center;
}
@media (max-width: 991px) {
  body footer .footer-ul.footernav li {
    padding: 0px 5px;
  }
}
body footer .footer-ul.footernav li a {
  color: black;
  font-size: 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .footer-ul.footernav li.newsletter a {
  font-family: "ITC Avant Garde Gothic W01 Bd";
  color: #315178;
  position: relative;
}
@media (max-width: 760px) {
  body footer .footer-ul.footernav li {
    text-align: center;
  }
}
body footer .footer-ul.footernav .social-list li {
  padding: 0px;
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #e6e6e6;
}
body footer .subfooternav a {
  color: white;
  color: #243d51;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  font-weight: bold;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav li {
  padding-top: 3px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) footer {
  margin-top: 0px;
}
body.option1 {
  overflow-y: hidden;
}
body.option1 label {
  display: none;
}
body.option1 .controls input {
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
  border: 0;
  padding: 0 20px;
}
@media (max-width: 767px) {
  body.option1 .controls input {
    font-size: 24px;
  }
}
body.option1 .controls input[type='submit'] {
  background-color: #f8ef32;
  color: #243d51;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "ITC Avant Garde Gothic W01 Bd";
  margin-top: 40px;
  position: relative;
}
#newsletterModal .modal-backdrop.in {
  background-color: rgba(36, 61, 81, 0.96);
  background-position: center center;
  background-size: cover;
  opacity: 1;
}
#newsletterModal .modal-dialog {
  background: transparent;
  border: 0;
  width: 85%;
}
#newsletterModal .modal-dialog .modal-content {
  box-shadow: none;
  background: transparent;
  border: 0;
}
#newsletterModal .modal-dialog .modal-content .modal-header {
  border: 0;
}
#newsletterModal .modal-dialog .modal-content .modal-header .close {
  color: white;
  opacity: 1;
  text-transform: uppercase;
  font-size: 18px;
  display: inline-block;
  font-weight: 400;
  font-family: "ITC Avant Garde Gothic W01 Bk";
}
#newsletterModal .modal-dialog .modal-content .modal-header .close span {
  width: 33px;
  height: 33px;
  border-radius: 25px;
  background-color: white;
  color: #243d51;
  margin-left: 7px;
  font-size: 28px;
  display: inline-block;
}
#newsletterModal .modal-dialog .modal-content .modal-body {
  background: transparent;
  margin-top: 3%;
}
#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container {
  max-width: 620px;
  margin: 0 auto;
}
#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container h2 {
  color: white;
  font-family: "ITC Avant Garde Gothic W01 Bk";
  font-size: 34px;
  margin-bottom: 50px;
}
#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container .newsletterimage {
  margin-bottom: 30px;
}
#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container .newsletterimage img {
  width: auto;
}
#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
#newsletterModal .modal-dialog .modal-content .modal-body iframe {
  border: 0;
  width: 100%;
  overflow-y: hidden;
  height: 400px;
}
#newsletterModal .modal-dialog .modal-content .modal-body iframe html {
  overflow-y: hidden;
}
#newsletterModal .modal-dialog .modal-content .modal-body iframe input {
  width: 100%;
}
#flagformonline {
  height: 100px;
  font-weight: bold;
  padding: 30px;
  white-space: normal;
  font-size: 22px;
}
#flagForm #flag-options .head {
  background-color: #243d51;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
@media (max-width: 540px) {
  #content .amend-form-container form .controls .interncheckboxes > div {
    width: 100%!important;
  }
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

font-family:'SocialGothicW01-Regular';
font-family:'ITC Avant Garde Gothic W01 Md';
font-family:'ITC Avant Garde Gothic W01 Dm';
font-family:'ITC Avant Garde Gothic W01 Bd';
font-family:'ITC Avant Garde Gothic W01 Bk';
font-family:'ITC Avant Garde GothicW01DmObl';
font-family:'ITC Avant Garde GothicW01BdObl';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.book {
  font-family: "ITC Avant Garde Gothic W01 Bk";
}
.medium,
.sans-serif,
.serif {
  font-family: "ITC Avant Garde Gothic W01 Md";
}
.bold {
  font-family: "ITC Avant Garde Gothic W01 Bd";
}
.demi {
  font-family: "ITC Avant Garde Gothic W01 Dm";
}
.bold-obl {
  font-family: "ITC Avant Garde GothicW01BdObl";
}
.demi-obl {
  font-family: "ITC Avant Garde GothicW01DmObl";
}
body {
  font-size: 18px;
  font-family: "ITC Avant Garde Gothic W01 Bk";
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ITC Avant Garde Gothic W01 Md";
}
h2.subtitle {
  font-style: italic;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #243d51;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #4875a0;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  line-height: 30px;
}
h2.title {
  margin-top: 7px;
  font-family: "ITC Avant Garde Gothic W01 Bk";
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #243d51;
  color: white;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #4875a0;
  color: #f8ef32;
}
.btn-lg {
  padding: 30px;
  font-weight: bold;
  font-size: 22px;
  white-space: normal;
  background-color: #243d51;
  color: white;
  border-radius: 0px;
}
.btn-lg:hover {
  background-color: #4875a0;
  color: #f8ef32;
}
.btn-md {
  padding: 15px;
  font-size: 18px;
  background-color: #243d51;
  color: white;
  border-radius: 0px;
}
.btn-md:hover {
  background-color: #4875a0;
  color: #f8ef32;
}
a:hover {
  cursor: pointer;
}
/*interior page content default styles */
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
body#travels #main_container .row {
  margin-right: 0px;
  margin-left: 0px;
}
body#travels #main_container .row .col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}
#main_column #grayback {
  width: 100%;
  position: absolute;
  background: -webkit-linear-gradient(left, #243d51 50%, #f8f8f8 50%);
  background: linear-gradient(to right, #243d51 50%, #f8f8f8 50%);
  opacity: 1;
  height: 875px;
}
@media (max-width: 994px) {
  #main_column #grayback {
    height: 500px;
  }
}
@media (max-width: 767px) {
  #main_column #grayback {
    height: 537px;
    background: #243d51;
  }
}
#main_column #travels {
  /* extra small devices (phones, less than 768px); no media query since this is the default in bootstrap */
}
#main_column #travels .map-title {
  margin-top: 10px;
}
#main_column #travels .row.gray {
  position: relative;
  width: 100%;
  top: 0px;
  color: #fff;
}
@media (max-width: 767px) {
  #main_column #travels .row.gray {
    background-color: #243d51;
  }
}
@media (max-width: 994px) {
  #main_column #travels .row.gray .amend-textarea {
    display: none;
  }
}
@media (max-width: 767px) {
  #main_column #travels .row.gray .light-grey {
    height: 0px;
  }
}
#main_column #travels #map-container {
  position: relative;
  background-color: #f8f8f8;
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 875px;
}
@media (max-width: 994px) {
  #main_column #travels #map-container {
    height: 500px;
  }
}
@media (max-width: 767px) {
  #main_column #travels #map-container {
    display: none;
  }
}
#main_column #travels #map-container #map {
  display: none;
  position: absolute;
  background-image: url(/themes/young/images/indianamap.png);
  background-size: 100% 100%;
  right: 0px;
  top: 3em;
  height: 754px;
  width: 481px;
  display: block;
}
@media (max-width: 994px) {
  #main_column #travels #map-container #map {
    height: 450px;
    width: 335px;
    left: 80px;
    top: 2em;
  }
}
#main_column #travels #map-container #map .circle-icon {
  position: absolute;
  content: "";
  display: block;
  transition: all, 0.1s, ease-in;
}
#main_column #travels #map-container #map .circle-icon .fa-circle {
  font-size: 22px;
  -webkit-text-stroke: 2px #315178;
}
#main_column #travels #map-container #map .opportunity {
  color: #fbee33;
}
#main_column #travels #map-container #map .other_visits {
  color: #e50000;
}
#main_column #travels #map-container #map .staff_visits {
  color: #01a00d;
}
#main_column #travels #map-container #map .circle-icon:hover {
  position: absolute;
  display: block;
  transform: scale(1.6);
  transition: all, 0.1s, ease-in;
}
#main_column #travels #map-restrictor {
  display: none;
  border-top: 2px solid #f8ef32;
  padding-top: 30px;
}
@media (min-width: 320px) {
  #main_column #travels #map-restrictor {
    display: block;
  }
}
@media (max-width: 994px) {
  #main_column #travels #map-restrictor {
    height: 338px;
    padding: 20px 0px;
  }
}
@media (max-width: 994px) {
  #main_column #travels #map-restrictor #map-form {
    bottom: 78px;
  }
}
#main_column #travels #map-restrictor h3 {
  color: #243d51;
  font-size: 40px;
  font-weight: 500;
}
@media (min-width: 767px) {
  #main_column #travels #map-restrictor h3 {
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  #main_column #travels #map-restrictor h3 {
    margin-top: 10px;
  }
}
#main_column #travels #map-restrictor .form-inline {
  width: 100%;
  display: inline-block;
  position: relative;
}
#main_column #travels #map-restrictor .form-inline #map-form {
  bottom: 29px;
}
#main_column #travels #map-restrictor .form-inline .form-group {
  display: block;
}
@media (max-width: 767px) {
  #main_column #travels #map-restrictor .form-inline .form-group {
    margin-bottom: 0px;
  }
}
#main_column #travels #map-restrictor .form-inline label {
  color: #fff;
  font-weight: 200;
  width: 100%;
  margin-top: 15px;
}
@media (min-width: 767px) {
  #main_column #travels #map-restrictor .form-inline label {
    font-size: 16px;
  }
}
@media (min-width: 994px) {
  #main_column #travels #map-restrictor .form-inline label {
    font-size: 18px;
  }
}
#main_column #travels #map-restrictor .form-inline input[type="text"],
#main_column #travels #map-restrictor .form-inline input[type="email"],
#main_column #travels #map-restrictor .form-inline textarea,
#main_column #travels #map-restrictor .form-inline select {
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: none;
  height: 42px;
  text-align-last: center;
  text-align: center;
  width: 100%;
  padding: 10px;
  vertical-align: baseline;
  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;
}
#main_column #travels #map-restrictor .form-inline select {
  font-size: 18px;
}
#main_column #travels #map-restrictor .form-inline .btn {
  position: relative;
  margin: 0em 0 0 1em;
  padding: 0;
  background-color: transparent;
  line-height: 1;
  width: 100%;
  color: #fff;
  letter-spacing: 0px;
  height: 42px;
  font-weight: bold;
  width: 200px;
}
@media (min-width: 767px) {
  #main_column #travels #map-restrictor .form-inline .btn {
    font-size: 16px;
  }
}
@media (min-width: 994px) {
  #main_column #travels #map-restrictor .form-inline .btn {
    font-size: 17px;
  }
}
#main_column #travels #map-restrictor .form-inline .btn:hover {
  color: white;
}
#main_column #travels #map-restrictor .form-inline #map-reset {
  margin: 0;
  padding: 0px 20px;
  width: 40%;
  float: right;
  margin-top: 42px;
}
#main_column #travels #map-restrictor .form-inline #map-reset:hover {
  text-decoration: underline;
}
#main_column #travels #map-restrictor .form-inline .btn-primary {
  margin: 0 0 0 1em;
  padding: 0.5em 1em;
  background-color: #315178;
  color: #f8ef32;
  border: 0;
  float: right;
  margin-top: 42px;
  width: 60%;
  margin-left: 0;
}
@media (max-width: 994px) {
  #main_column #travels #map-restrictor .form-inline .btn-primary {
    margin-left: -8px;
    padding: 0.5em;
  }
}
@media (max-width: 365px) {
  #main_column #travels #map-restrictor .form-inline .btn-primary {
    font-size: 20px;
  }
}
#main_column #travels #map-restrictor .form-inline .btn-primary:hover {
  background-color: #223954;
  color: #f8ef32;
}
#main_column #travels .eventskeybar {
  background-color: #e5e5e5;
  height: auto;
  position: absolute;
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  left: 0px;
}
@media (max-width: 767px) {
  #main_column #travels .eventskeybar {
    display: none;
  }
}
#main_column #travels .eventskeybar #pin-list li {
  padding-right: 10px;
  padding-left: 10px;
}
#main_column #travels .eventskeybar #pin-list li .fa-circle {
  -webkit-text-stroke: 2px #315178;
  height: 40px;
  width: 40px;
  border-radius: 30px;
  font-size: 25px;
  padding: 5px;
}
#main_column #travels .eventskeybar #pin-list #location-opportunity .fa-circle {
  color: #fbee33;
}
#main_column #travels .eventskeybar #pin-list #location-other_visits .fa-circle {
  color: #e50000;
}
#main_column #travels .eventskeybar #pin-list #location-staff_visits .fa-circle {
  color: #01a00d;
}
@media (max-width: 767px) {
  #main_column #travels .eventskeybar #pin-list {
    display: none;
  }
}
#main_column #travels #map-listing {
  margin-top: 74px;
}
@media (max-width: 767px) {
  #main_column #travels #map-listing {
    margin-top: 15px;
  }
}
#main_column #travels #map-listing .map-entry {
  padding: 25px 0;
  font-size: 15px;
}
@media (min-width: 767px) {
  #main_column #travels #map-listing .map-entry {
    padding: 25px;
  }
}
@media (min-width: 994px) {
  #main_column #travels #map-listing .map-entry {
    padding: 25px 60px;
  }
}
#main_column #travels #map-listing .map-entry h3 {
  margin: 0 0 0.1em 0;
  color: #243d51;
}
#main_column #travels #map-listing .map-entry h4 {
  margin: 0 0 0.2em 0;
  font-size: 18px;
}
#main_column #travels #map-listing .map-entry .address-entry,
#main_column #travels #map-listing .map-entry .desc-entry {
  margin-top: 1em;
}
#main_column #travels #map-listing .map-entry .address-entry a,
#main_column #travels #map-listing .map-entry .desc-entry a {
  font-size: 13px;
  font-weight: bold;
}
#main_column #travels #map-listing .map-entry .address-entry .map-entry-link,
#main_column #travels #map-listing .map-entry .desc-entry .map-entry-link {
  display: none;
}
@media (min-width: 767px) {
  #main_column #travels #map-listing .map-entry .address-entry .map-entry-link,
  #main_column #travels #map-listing .map-entry .desc-entry .map-entry-link {
    display: block;
  }
}
#main_column #travels #map-listing .map-entry + .map-entry {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #dadada;
}
@media (min-width: 767px) {
  #main_column #travels #map-listing .visible {
    display: block;
  }
  #main_column #travels #map-listing .map-entry + .visible {
    border-top: none;
  }
}
@media (min-width: 767px) {
  #main_column #travels .visible {
    display: block;
  }
  #main_column #travels .map-entry + .visible {
    border-top: none;
  }
}
.map-title {
  margin-top: 20px;
  max-width: 350px;
  margin: 30px auto;
}
.popover-map,
.popover {
  width: 100%;
  font-size: 14px;
  z-index: 999999 !important;
  background-color: white !important;
  border: 8px solid white;
  border-radius: 0;
}
.popover-map.left > .arrow,
.popover.left > .arrow {
  right: -19px;
  margin-top: 0px;
  border-top-color: rgba(0, 0, 0, 0.1);
  border-width: 0px;
}
.popover-map .fade.in,
.popover .fade.in {
  background-color: #243d51;
}
.popover-map .popover-title,
.popover .popover-title {
  margin: 0;
  padding: 18px 14px 7px 14px;
  background: none;
  font-size: 22px;
  line-height: 1;
  border: none;
  color: #243d51;
  text-align: center;
}
.popover-map .close,
.popover .close {
  margin-right: 7px;
  color: blue;
}
.popover-map .popover-content,
.popover .popover-content {
  font-size: 14px;
  line-height: 1.3em;
  color: #252525;
}
.popover-map .popover-content .popover-date,
.popover .popover-content .popover-date {
  position: relative;
  top: -5px;
  text-align: center;
}
.popover-map .popover-content a,
.popover .popover-content a {
  color: #243d51;
  font-weight: bold;
  width: 100%;
  text-align: center;
  display: inline-block;
}
.popover-map .popover-content a:hover,
.popover .popover-content a:hover {
  color: #14222e;
}
.popover-map .popover-content p,
.popover .popover-content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3em;
}
.popover-map .popover-content p + p,
.popover .popover-content p + p {
  margin-top: 1em;
}
.popover-map .popover-content .popover-img,
.popover .popover-content .popover-img {
  margin: 0 1em 0 0;
  height: 115px;
  text-align: center;
  overflow: hidden;
  float: left;
}
.popover-map .popover-content .popover-img img,
.popover .popover-content .popover-img img {
  width: 100%;
}


/* ---- Guestbook Sign Up ---- */

body#guestbook{
  background-color:  #243d51;
}

body#guestbook #content{
  margin-top: 0;
}

body#guestbook #header{
  display: none;
}

body#guestbook .guestbooklogo{
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

body#guestbook .guestbooklogo img{
  width: 100%;
}

body#guestbook .main_page_title{
  color: #fbee33;
  text-align: center;
  padding-bottom: 3rem;
}

body#guestbook #sam-main{
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  text-align: center;
}

body#guestbook .controls input{
  width: 100%;
  height: 60px!important;
  margin-bottom: 15px!important;
  border: 0;
  padding: 0 20px;
}

body#guestbook .controls input[type='submit'] {
  background-color: #f8ef32;
  color: #243d51;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "ITC Avant Garde Gothic W01 Bd";
  margin-top: 40px;
  position: relative;
}

body#guestbook #breadcrumb{
  display: none;
}