/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb {
  height: 25px;
}
.alert {
  padding: 0px;
}
.alert a {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  background-color: #333333;
  color: #fff;
  margin-top: -1px;
  margin-bottom: -1px;
}
.alert a:hover {
  background-color: #000000;
  color: #fff;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #10c8cd;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close,
#ContactModal .modal-dialog .modal-content .modal-header .close {
  position: relative;
  right: 15px;
  opacity: 1;
}
#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;
  font-family: "bebas-neue";
  text-transform: uppercase;
}
#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: #333333;
}
#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: #000000;
}
body #header {
  height: auto;
  width: 100%;
  background-color: #333333;
}
body #header a.logo-hold {
  width: 220px;
  position: relative;
  display: block;
  top: 10px;
  float: left;
  left: 15px;
}
@media (max-width: 991px) {
  body #header a.logo-hold {
    left: 0px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
@media (max-width: 400px) {
  body #header .interiorright {
    width: 100%;
    padding: 0px;
  }
}
@media (max-width: 400px) {
  body #header .interiorright .logoholder {
    width: 100%;
    display: inline-block;
    height: auto;
    position: relative;
    padding: 10px;
    background-color: #232323;
  }
}
@media (max-width: 400px) {
  body #header .interiorright .logoholder a.logo-hold {
    left: 0px;
    top: 0px;
    margin: 0 auto;
    float: none;
  }
}
@media (max-width: 400px) {
  body #header .interiorright .interiornavright {
    width: 100%;
    padding: 0px;
  }
}
@media (max-width: 400px) {
  body #header .interiorright .interiornavright .right {
    position: relative;
    right: 15px;
  }
}
@media (max-width: 400px) {
  body #header .interiorright .interiornavright .nav-hold {
    left: 15px;
    float: left!important;
    right: 0px;
  }
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #fff;
  font-family: "bebas-neue";
  text-transform: uppercase;
  font-size: 20px;
  padding: 20px 18px;
  border-radius: 0px;
  cursor: pointer;
}
@media (max-width: 1330px) {
  body .navbar .nav-pills > li a {
    padding: 20px 13px;
    font-size: 18px;
  }
}
body .navbar .nav-pills > li a:hover {
  color: #232323;
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li a {
    padding: 20px 10px;
  }
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
  display: none;
  border: 0px solid transparent;
  top: 100%;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  cursor: pointer;
  color: #232323;
  text-transform: uppercase;
  padding: 10px 10px;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #10c8cd;
  color: #ffd600;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover,
body .navbar .nav-pills > li.selected {
  background-color: #232323;
  /*		&:after{
						content:'';
						position: absolute;
						bottom:0px;
						right: 0;
						left: 0;
						width: 0;
						height: 0;
						border-left: 20px solid transparent;
						border-right: 20px solid transparent;

						border-bottom: 20px solid white;
						border-color: transparent transparent white transparent;
					}*/
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: #ffd600;
  /*color: @yellow;*/
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
body .navbar .srchbutton {
  color: #fff;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-size: 45px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  text-align: center;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold {
  display: flex;
  float: left;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 0px;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
  height: auto;
  border: none;
  display: flex;
}
@media (max-width: 991px) {
  #header .nav-hold.right-slide-search .navbar,
  #header .nav-hold.right-search-modal .navbar {
    display: inline-block;
    top: 20px;
  }
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 0px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: -20px;
  position: absolute;
  top: 25px;
  z-index: 2;
  font-size: 14px;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 20px 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: transparent;
  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: transparent;
  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: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
#header .right {
  float: right;
  display: inline-block;
  padding: 15px 0px;
}
@media (max-width: 1200px) {
  #header .right .social-list .newsletter a {
    padding: 3px 7px;
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  body#home #header .right .social-list .newsletter a {
    margin-left: 0;
  }
}
body:not(#home) #header .nav-hold {
  float: right;
  display: inline-block;
  position: relative;
  right: 30px;
}
@media (max-width: 991px) {
  body:not(#home) #header .nav-hold {
    right: 10px;
  }
}
.lujanbody {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
body#home #header {
  position: fixed;
  background-color: transparent;
  display: inline-block;
  z-index: 100;
}
body#home #header #insideheader {
  background-color: #333333;
  transition: all 0.2s ease-in-out;
  max-width: 1500px;
  display: inline-block;
  margin: 0 auto;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
}
body#home .homepage {
  overflow: hidden;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: top;
  background-image: url('/themes/lujan/images/homepagebg.jpg');
}
body#home .homepage .toparea {
  display: inline-block;
  width: 100%;
  height: 600px;
  position: relative;
  margin-top: 200px;
}
@media (max-width: 991px) {
  body#home .homepage .toparea {
    height: 640px;
  }
}
body#home .homepage .toparea #logohome {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
body#home .homepage .toparea #buttons {
  margin-top: 5rem;
}
body#home .homepage .toparea #buttons .button {
  margin-bottom: 2rem;
}
body#home .homepage .toparea #buttons .button a {
  display: inline-block;
  width: 100%;
  align-items: center;
  text-align: center;
  background-color: #10c8cd;
  color: white;
  font-size: 40px;
  padding: 10px;
  border: 5px solid #0c9a9e;
  transition: all 0.2s ease-in-out;
  font-family: "bebas-neue";
  text-transform: uppercase;
}
body#home .homepage .toparea #buttons .button a:hover {
  border: 5px solid #10c8cd;
  background-color: #0c9a9e;
}
body#home .homepage #blockareasection {
  background-image: linear-gradient(#e2ceb8, #ebebeb);
  box-shadow: 0 -20px 190px 115px #e3ceb7;
  padding-bottom: 15rem;
  padding-top: 2rem;
}
@media (max-width: 480px) {
  body#home .homepage #blockareasection {
    padding-bottom: 15rem;
  }
}
body#home .homepage #blockareasection .blocksection {
  margin: -90px auto;
}
@media (max-width: 991px) {
  body#home .homepage #blockareasection .blocksection {
    margin: -30px auto;
  }
}
body#home .homepage #blockareasection .blocksection #blocks {
  display: table;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock {
  display: block;
  height: 400px;
  margin-bottom: 30px;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock .media-block {
  background-color: white;
  border: 1px solid #cecece;
  height: 100%;
  display: block;
  position: relative;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock .media-block .pressicons {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  padding: 20px 0px 0px;
  height: 90px;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock .media-block .pressicons .social-icons-area {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #b9092e;
  color: white;
  padding: 10px;
  font-size: 30px;
  border-radius: 50px;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock .media-block .press-right {
  padding: 20px 25px;
  text-align: center;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock .media-block .press-right a {
  color: #232323;
  font-family: "Gotham SSm A", "Gotham SSm B", serif;
  font-size: 18px;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock .media-block .tagline {
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #facebook-block .pressicons a {
  background-color: #3b5998;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #facebook-block .press-right #facebook #facebook-posts li {
  text-align: center;
  word-break: break-word;
  overflow: hidden;
  max-height: 200px;
  text-overflow: ellipsis;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #twitter-block .pressicons a {
  background-color: #00aced;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #twitter-block .press-right #twitter .tweet {
  text-align: center;
  word-break: break-word;
  overflow: hidden;
  max-height: 210px;
  text-overflow: ellipsis;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #twitter-block .press-right #twitter .timePosted {
  color: #b9092e;
  position: absolute;
  width: 100%;
  bottom: 1em;
  left: 0;
  right: 0;
  text-align: center;
  margin-bottom: 0px;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #twitter-block .press-right #twitter .timePosted a {
  font-size: 14px;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #news-block .pressicons a {
  padding: 0px;
  background-color: #ffd600;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #news-block .pressicons a img {
  width: 100%;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #news-block .press-right a h2 {
  font-weight: bold;
  text-transform: capitalize;
  font-size: 36px;
}
@media (max-width: 480px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block {
    height: auto;
    display: inline-block;
  }
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .pressicons a {
  background-color: #bb0000;
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea {
  display: table;
  height: 250px;
}
@media (max-width: 767px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea {
    display: block;
  }
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .preview {
  height: 100%;
  display: table-cell;
  padding: 0;
}
@media (max-width: 767px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .preview {
    display: block;
    width: 50%;
  }
}
@media (max-width: 480px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .preview {
    width: 100%;
    margin-bottom: 20px;
  }
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .preview .videolinkoverlay {
  vertical-align: middle;
  display: table;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .preview .videolinkoverlay {
    display: block;
  }
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .preview .videolinkoverlay .overlay {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .preview .videolinkoverlay .overlay {
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .preview .videolinkoverlay .overlay img {
    position: absolute;
    top: 30%;
    left: 0px;
    right: 0px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .info {
    display: block;
    width: 50%;
  }
}
@media (max-width: 480px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .info {
    width: 100%;
  }
}
@media (max-width: 480px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .info a {
    display: block;
    margin-bottom: 2em;
  }
}
body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .info a h2 {
  font-weight: bold;
  text-align: left;
  margin-top: 0px;
  text-transform: none;
}
@media (max-width: 480px) {
  body#home .homepage #blockareasection .blocksection #blocks .homepageblock #youtube-block .contentarea .info a h2 {
    margin-bottom: 7rem;
  }
}
body#home .homepage #officelocations {
  display: table;
  width: 100%;
  height: auto;
}
body#home .homepage #officelocations .topbar {
  width: 100%;
  max-width: 1500px;
  display: inline-block;
  margin: 0 auto;
  color: white;
  background-color: #232323;
}
body#home .homepage #officelocations .topbar .title {
  display: inline-block;
  font-family: "bebas-neue";
  text-transform: uppercase;
  font-size: 36px;
  color: white;
  padding: 15px 35px 15px 0px;
  vertical-align: middle;
}
@media (max-width: 991px) {
  body#home .homepage #officelocations .topbar .title {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
  }
}
body#home .homepage #officelocations .topbar #officelist {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}
body#home .homepage #officelocations .topbar #officelist li {
  display: inline-block;
}
body#home .homepage #officelocations .topbar #officelist li a {
  font-family: "bebas-neue";
  text-transform: uppercase;
  color: white;
  font-size: 24px;
  padding: 27px 18px;
}
body#home .homepage #officelocations .topbar #officelist li a:hover {
  color: #ffd600;
  background-color: #333333;
}
body#home .homepage #officelocations .topbar #officelist li.clickSelected a,
body#home .homepage #officelocations .topbar #officelist li.hoverSelected a {
  background-color: #333333;
  color: #ffd600;
}
@media (max-width: 991px) {
  body#home .homepage #officelocations .topbar #officelist {
    display: none;
  }
}
body#home .homepage #officelocations .imagearea {
  min-height: 600px;
  height: 100%;
  position: relative;
  display: block;
  background-image: url('/themes/lujan/images/officelocationsimage.jpg');
  background-size: cover;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  body#home .homepage #officelocations .imagearea {
    background-image: none;
  }
}
body#home .homepage #officelocations .imagearea .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 164, 170, 0.644);
}
@media (max-width: 600px) {
  body#home .homepage #officelocations .imagearea .overlay {
    background-color: #10c8cd;
  }
}
body#home .homepage #officelocations .imagearea .overlayoffices {
  display: block;
  padding: 7.5rem 0px;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder {
  min-height: 190px;
}
@media (max-width: 991px) {
  body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder,
  body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder,
  body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder {
    text-align: center;
  }
}
@media (max-width: 676px) {
  body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder,
  body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder,
  body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder {
    margin-bottom: 1rem;
  }
}
@media (max-width: 400px) {
  body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder,
  body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder,
  body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder {
    margin-bottom: 3rem;
    width: 100%;
    display: block;
  }
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office {
  color: white;
  display: block;
  min-height: 190px;
  vertical-align: middle;
  position: relative;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office .officedir,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office .officedir,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office .officedir {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: #b9092e;
  width: 75px;
  border-radius: 30px;
  margin: 0 auto;
  padding: 3px;
  font-size: 12px;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office .officedir:hover,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office .officedir:hover,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office .officedir:hover {
  background-color: white;
  color: #b9092e;
}
@media (max-width: 991px) {
  body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office .officedir,
  body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office .officedir,
  body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office .officedir {
    display: none;
  }
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office .officetitle,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office .officetitle,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office .officetitle {
  font-family: "bebas-neue";
  font-size: 24px;
  text-transform: uppercase;
  position: relative;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office .officetitle #smallicon,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office .officetitle #smallicon,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office .officetitle #smallicon {
  display: none;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office .officetitle #smallicon .icon,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office .officetitle #smallicon .icon,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office .officetitle #smallicon .icon {
  width: 100%;
  display: block;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office .officeaddress,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office .officeaddress,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office .officeaddress {
  display: block;
  font-weight: 600;
  font-size: 14px;
  font-family: "Gotham SSm A", "Gotham SSm B", serif;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office .officeaddress .phone,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office .officeaddress .phone,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office .officeaddress .phone {
  display: block;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.clickSelected .officetitle,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.clickSelected .officetitle,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.clickSelected .officetitle,
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.hoverSelected .officetitle,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.hoverSelected .officetitle,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.hoverSelected .officetitle {
  color: #ffd600;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.clickSelected .officetitle #smallicon,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.clickSelected .officetitle #smallicon,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.clickSelected .officetitle #smallicon,
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.hoverSelected .officetitle #smallicon,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.hoverSelected .officetitle #smallicon,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.hoverSelected .officetitle #smallicon {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: -35px;
  top: 5px;
}
@media (max-width: 991px) {
  body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.clickSelected .officetitle #smallicon,
  body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.clickSelected .officetitle #smallicon,
  body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.clickSelected .officetitle #smallicon,
  body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.hoverSelected .officetitle #smallicon,
  body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.hoverSelected .officetitle #smallicon,
  body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.hoverSelected .officetitle #smallicon {
    display: none;
  }
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.clickSelected .officetitle #smallicon img,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.clickSelected .officetitle #smallicon img,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.clickSelected .officetitle #smallicon img,
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.hoverSelected .officetitle #smallicon img,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.hoverSelected .officetitle #smallicon img,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.hoverSelected .officetitle #smallicon img {
  display: block;
  width: 100%;
  height: auto;
}
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.clickSelected .officedir,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.clickSelected .officedir,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.clickSelected .officedir,
body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.hoverSelected .officedir,
body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.hoverSelected .officedir,
body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.hoverSelected .officedir {
  display: block;
}
@media (max-width: 991px) {
  body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.clickSelected .officedir,
  body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.clickSelected .officedir,
  body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.clickSelected .officedir,
  body#home .homepage #officelocations .imagearea .overlayoffices .firstrow .officeholder .office.hoverSelected .officedir,
  body#home .homepage #officelocations .imagearea .overlayoffices .secondrow .officeholder .office.hoverSelected .officedir,
  body#home .homepage #officelocations .imagearea .overlayoffices .thirdrow .officeholder .office.hoverSelected .officedir {
    display: none;
  }
}
body#home.bg1 .homepage {
  background-image: url('/themes/lujan/images/bg/chacocanyon.jpg');
}
body#home.bg2 .homepage {
  background-image: url('/themes/lujan/images/bg/sangredecristo.jpg');
}
body#home.bg3 .homepage {
  background-image: url('/themes/lujan/images/homepagebg.jpg');
}
body#home footer.footer {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
body.no-breadcrumbs #breadcrumb {
  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: #333333 !important;
}
#breadcrumb a {
  color: #b9092e;
  font-weight: normal;
  font-size: 16px;
  font-family: "bebas-neue";
  text-transform: uppercase;
}
#breadcrumb a:hover {
  color: #10c8cd;
}
#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: #10c8cd;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #096c6e;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #10c8cd;
  font-weight: bold;
  color: white;
  transition: 0.3s background-color ease-in;
  font-family: "Gotham SSm A", "Gotham SSm B", serif;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #096c6e;
}
#listblocksbg .list-block .block a {
  font-family: "bebas-neue";
  text-transform: uppercase;
  font-size: 36px;
}
#typenav li a {
  color: #232323;
}
#typenav li.active a {
  color: white;
  background-color: #333333;
}
#typenav.affix {
  top: 0;
}
#about #content {
  overflow: hidden;
}
#about #sam-biobottom {
  display: none;
}
@media (max-width: 991px) {
  #about #sam-biobottom {
    display: block;
  }
}
#about #sam-biobottom img {
  max-width: 375px;
  position: relative;
  margin: 0 auto;
}
#about #sam-biobottom .bigbuttons a {
  margin-bottom: 2rem;
}
#about #asides {
  margin-top: 7px;
  display: block;
  height: 100%;
  z-index: 10;
  background-color: #e4e4e4;
  position: relative;
}
@media (max-width: 991px) {
  #about #asides {
    display: none;
  }
}
#about #asides:before {
  content: '';
  display: block;
  position: absolute;
  width: 340px;
  top: 0px;
  right: -100px;
  background-color: #e4e4e4;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1330px) {
  #about #asides:before {
    width: 370px;
    right: -77px;
  }
}
@media (max-width: 1200px) {
  #about #asides:before {
    right: -120px;
  }
}
@media (max-width: 991px) {
  #about #asides:before {
    display: none;
  }
}
#about #asides:after {
  content: '';
  display: block;
  position: absolute;
  width: 533px;
  top: -52px;
  right: -100px;
  background-color: #e4e4e4;
  height: 100%;
  z-index: -2;
}
@media (max-width: 1330px) {
  #about #asides:after {
    width: 467px;
    right: -77px;
  }
}
@media (max-width: 1200px) {
  #about #asides:after {
    right: -144px;
  }
}
@media (max-width: 991px) {
  #about #asides:after {
    display: none;
  }
}
#about #asides #sidescroller {
  padding: 20px;
}
#about #asides #sidescroller #sam-aboutsidepod {
  padding: 0px;
  display: block;
  height: 100%;
}
#about #asides #sidescroller #sam-buttons {
  padding: 0px;
  display: block;
  height: 100%;
}
#about #asides #sidescroller #sam-buttons .bigbuttons .large-button {
  margin-bottom: 10px;
}
#about #asides #sidescroller.affix {
  width: 403.33px;
  top: 20px;
}
@media (max-width: 1330px) {
  #about #asides #sidescroller.affix {
    width: 360px;
  }
}
@media (max-width: 1200px) {
  #about #asides #sidescroller.affix {
    width: 293.33px;
  }
}
#about #asides #sidescroller.affix-bottom {
  position: absolute;
  width: 403.33px;
}
@media (max-width: 1330px) {
  #about #asides #sidescroller.affix-bottom {
    width: 360px;
  }
}
@media (max-width: 1200px) {
  #about #asides #sidescroller.affix-bottom {
    width: 293.33px;
  }
}
#about footer {
  margin-top: 0px!important;
}
body#newsroom_landing_page {
  height: 100%;
}
body#newsroom_landing_page #content {
  width: 100%;
  overflow: hidden;
  position: relative;
}
body#newsroom_landing_page #leftside {
  background-color: #e4e4e4;
  position: relative;
}
body#newsroom_landing_page #leftside:before {
  content: '';
  display: block;
  position: absolute;
  width: 340px;
  top: 0px;
  left: -100px;
  background-color: #e4e4e4;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1330px) {
  body#newsroom_landing_page #leftside:before {
    width: 370px;
    left: -77px;
  }
}
@media (max-width: 1200px) {
  body#newsroom_landing_page #leftside:before {
    left: -120px;
  }
}
@media (max-width: 991px) {
  body#newsroom_landing_page #leftside:before {
    display: none;
  }
}
body#newsroom_landing_page #leftside:after {
  content: '';
  display: block;
  position: absolute;
  width: 425px;
  top: -45px;
  left: -100px;
  background-color: #e4e4e4;
  height: 100%;
  z-index: -2;
}
@media (max-width: 1330px) {
  body#newsroom_landing_page #leftside:after {
    width: 370px;
    left: -77px;
  }
}
@media (max-width: 1200px) {
  body#newsroom_landing_page #leftside:after {
    left: -120px;
  }
}
@media (max-width: 991px) {
  body#newsroom_landing_page #leftside:after {
    display: none;
  }
}
body#newsroom_landing_page #rightside {
  padding-left: 60px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  body#newsroom_landing_page #rightside {
    padding-left: 15px;
  }
}
body#newsroom_landing_page #newscontent .section-header {
  font-size: 32px;
}
body#newsroom_landing_page #newscontent .section-header a {
  color: #b9092e;
  text-decoration: none;
}
body#newsroom_landing_page #newscontent .section-header a:hover {
  color: #ffd600;
}
body#newsroom_landing_page #newscontent h2.title a {
  color: #232323;
}
body#newsroom_landing_page #newscontent h2.title a:hover {
  color: #ffd600;
}
body#newsroom_landing_page #newscontent .date.black {
  font-size: 14px;
}
body#newsroom_landing_page #newscontent .summary a {
  font-size: 14px;
  font-family: "bebas-neue";
  text-transform: uppercase;
}
body#newsroom_landing_page #newscontent .more {
  margin-top: 15px;
}
body#newsroom_landing_page #newscontent #videos iframe {
  margin-top: 1rem;
}
body#newsroom_landing_page #typenav {
  width: 100%;
  padding: 0px 60px 0px 0px;
}
@media (max-width: 1330px) {
  body#newsroom_landing_page #typenav {
    padding: 0px 25px 0px 0px;
  }
}
@media (max-width: 1200px) {
  body#newsroom_landing_page #typenav {
    padding: 0px 25px 0px 0px;
  }
}
body#newsroom_landing_page #typenav h1 {
  text-align: right;
}
body#newsroom_landing_page #typenav .nav-pills li {
  text-align: right;
  display: block;
}
body#newsroom_landing_page #typenav .nav-pills li a {
  color: #333333;
  display: inline-block;
  padding: 10px 0px;
  font-family: "bebas-neue";
  text-transform: uppercase;
  border-radius: 0px;
  font-size: 28px;
  border-bottom: 2px solid transparent;
}
body#newsroom_landing_page #typenav .nav-pills li a:hover {
  color: #ffd600;
}
body#newsroom_landing_page #typenav .nav-pills li.active a,
body#newsroom_landing_page #typenav .nav-pills li:hover a {
  background-color: transparent;
  color: #232323;
  border-radius: 0px;
  border-bottom: 2px solid #232323;
}
body#newsroom_landing_page #typenav.affix {
  width: 295px;
  top: 20px;
}
@media (max-width: 1330px) {
  body#newsroom_landing_page #typenav.affix {
    width: 262.5px;
  }
}
@media (max-width: 1200px) {
  body#newsroom_landing_page #typenav.affix {
    width: 212.5px;
  }
}
body#newsroom_landing_page #typenav.affix-bottom {
  position: absolute;
  width: 295px;
}
@media (max-width: 1330px) {
  body#newsroom_landing_page #typenav.affix-bottom {
    width: 262.5px;
  }
}
@media (max-width: 1200px) {
  body#newsroom_landing_page #typenav.affix-bottom {
    width: 212.5px;
  }
}
body#newsroom_landing_page footer {
  margin-top: 0px!important;
}
body#listblocksbg .list-block .block a,
body#issues_blocks .list-block .block a {
  background-color: rgba(0, 164, 170, 0.644);
}
body#district #map {
  margin: 0 0 45px 0;
  width: 100%;
  height: 500px;
}
body#district #map iframe #footer {
  display: none!important;
}
#voting_record .pagination .pages {
  float: left;
  display: inline-block;
  width: auto;
}
#voting_record .pagination .pages_nav {
  width: auto;
  display: inline-block;
  float: right;
  clear: none;
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: 1px;
  position: relative;
}
body#media-view #content {
  color: white;
  background: #232323;
}
body#media-view #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}
body#media-view #featured-details-header a {
  color: #fff;
}
body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}
body#media-view #featured-details-description {
  color: #fff;
}
body#media-view #featured-details-description .main_page_title {
  color: #fff;
}
body#media-view #featured-details-description p {
  line-height: 25px;
}
body#media-view #share-footer a {
  color: #333333;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons li {
  float: right;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #10c8cd;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #333333;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #10c8cd;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #333333;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #10c8cd;
}
#multimedia-browser .row .media-thumbnail a {
  color: #232323;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #10c8cd;
}
body#multimedia.new #content {
  overflow: hidden;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #video-content {
  background-color: #232323;
  padding: 40px 80px;
  position: relative;
}
@media (max-width: 991px) {
  body#multimedia.new #video-content {
    padding: 40px 0px;
  }
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #232323;
  display: inline-block;
  position: absolute;
  width: 115px;
  height: 100%;
  right: -115px;
  top: 0;
}
@media (max-width: 1199px) {
  body#multimedia.new #video-content:after {
    width: 150px;
    right: -150px;
  }
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #232323;
  display: inline-block;
  position: absolute;
  width: 115px;
  height: 100%;
  left: -115px;
  top: 0;
}
@media (max-width: 1199px) {
  body#multimedia.new #video-content:before {
    width: 150px;
    left: -150px;
  }
}
body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  color: #333333 !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #10c8cd;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #10c8cd !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #333333;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
body#multimedia.new #multimedia-browser legend {
  display: none;
}
body#multimedia.new #multimedia-browser .loading div#search-results-header {
  display: none;
}
body#multimedia.new #multimedia-browser .status {
  background-color: #333333;
  color: #fff;
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #10c8cd;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #232323;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #232323;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #333333;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #333333;
}
body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}
body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #232323;
  height: 165px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #10c8cd;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #232323;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #10c8cd;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #10c8cd;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 70px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
body footer {
  background-color: #333333;
}
body footer .footer-ul.footernav {
  text-align: left;
  float: left;
  display: inline-block;
  padding: 10px 0px;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  body footer .footer-ul.footernav {
    float: none;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
}
body footer .footer-ul.footernav li {
  padding: 10px 15px;
  text-align: center;
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
  font-family: "bebas-neue";
  text-transform: uppercase;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  body footer .footer-ul.footernav li {
    padding: 10px 10px;
  }
}
body footer .subfooternav {
  background-color: #232323;
}
body footer .subfooternav a {
  color: white;
  font-family: "bebas-neue";
  text-transform: uppercase;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav ul {
  margin-top: 10px;
}
body footer .subfooternav ul li {
  padding-top: 0px;
}
body footer .subfooternav ul li + li {
  border-left: 1px solid white;
  padding-left: 12px;
}
body footer .social-list {
  display: inline-block;
  float: right;
  padding: 19px 0px;
  margin-top: 0px;
}
@media (max-width: 991px) {
  body footer .social-list {
    float: none;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  body footer .social-list .newsletter {
    display: block;
    margin-top: 20px;
  }
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) footer {
  margin-top: 50px;
}
.interioroffices #officelocations {
  display: table;
  width: 100%;
  height: auto;
}
.interioroffices #officelocations .topbar {
  width: 100%;
  display: inline-block;
  margin: 0 auto;
  color: white;
  background-color: #232323;
}
.interioroffices #officelocations .topbar .title {
  font-family: "bebas-neue";
  text-transform: uppercase;
  font-size: 28px;
  color: white;
  padding: 10px 15px;
  vertical-align: middle;
  background-color: #333333;
}
@media (max-width: 1200px) {
  .interioroffices #officelocations .topbar .title {
    font-size: 28px;
    padding: 15px 0px;
  }
}
@media (max-width: 991px) {
  .interioroffices #officelocations .topbar .title {
    width: 100%;
    text-align: center;
  }
}
.interioroffices #officelocations .topbar #officelist {
  display: block;
  margin-bottom: 0;
  height: auto;
}
.interioroffices #officelocations .topbar #officelist .officebutton {
  width: 14.28571429%;
  text-align: center;
}
@media (max-width: 1200px) {
  .interioroffices #officelocations .topbar #officelist .officebutton {
    width: 14.28571429%;
  }
}
@media (max-width: 991px) {
  .interioroffices #officelocations .topbar #officelist .officebutton {
    width: 50%;
    float: left;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .interioroffices #officelocations .topbar #officelist .officebutton {
    width: 100%;
  }
}
.interioroffices #officelocations .topbar #officelist .officebutton a {
  font-family: "bebas-neue";
  text-transform: uppercase;
  color: white;
  font-size: 24px;
  padding: 10px 0px;
  display: block;
}
@media (max-width: 1200px) {
  .interioroffices #officelocations .topbar #officelist .officebutton a {
    font-size: 20px;
    padding: 24px 0px;
  }
}
.interioroffices #officelocations .topbar #officelist .officebutton a:hover {
  color: #ffd600;
}
.interioroffices #officelocations .topbar #officelist .officebutton.clickSelected:before,
.interioroffices #officelocations .topbar #officelist .officebutton.hoverSelected:before {
  content: '';
  width: 0;
  position: absolute;
  bottom: -4px;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 13px solid #10c8cd;
  left: 41%;
}
.interioroffices #officelocations .topbar #officelist .officebutton.clickSelected a,
.interioroffices #officelocations .topbar #officelist .officebutton.hoverSelected a {
  color: #ffd600;
}
@media (max-width: 991px) {
  .interioroffices #officelocations .topbar #officelist {
    display: none;
  }
}
.interioroffices #officelocations .imagearea {
  height: 100%;
  position: relative;
  display: block;
  background-size: cover;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.interioroffices #officelocations .imagearea .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #10c8cd;
}
.interioroffices #officelocations .imagearea .overlayoffices {
  display: block;
  padding: 0;
}
@media (max-width: 1330px) {
  .interioroffices #officelocations .imagearea .overlayoffices {
    padding-bottom: 15px;
  }
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox {
  width: 14.28571429%;
  text-align: center;
  padding: 0px 5px;
}
@media (max-width: 1200px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox {
    width: 14.28571429%;
  }
}
@media (max-width: 991px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox {
    width: 50%;
    float: left;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox {
    width: 100%;
  }
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office {
  color: white;
  display: block;
  min-height: 190px;
  vertical-align: middle;
  padding-top: 2rem;
}
@media (max-width: 1199px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office {
    min-height: 160px;
  }
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officetitle {
  display: none;
  font-family: "bebas-neue";
  font-size: 22px;
  text-transform: uppercase;
  position: relative;
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officetitle #smallicon {
  display: none;
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officetitle #smallicon .icon {
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officetitle #smallicon {
    display: none!important;
  }
}
@media (max-width: 991px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officetitle {
    display: block;
  }
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officeaddress {
  display: block;
  font-weight: 600;
  font-size: 14px;
  font-family: "Gotham SSm A", "Gotham SSm B", serif;
}
@media (max-width: 1200px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officeaddress {
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officeaddress {
    font-size: 14px;
  }
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officeaddress .phone {
  display: block;
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officedir {
  display: none;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  background-color: #b9092e;
  width: 75px;
  border-radius: 30px;
  margin: 0 auto;
  padding: 3px;
  font-size: 12px;
}
@media (max-width: 1330px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officedir {
    bottom: 0px;
  }
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officedir:hover {
  background-color: white;
  color: #b9092e;
}
@media (max-width: 991px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office .officedir {
    display: none;
  }
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.clickSelected .officedir,
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.hoverSelected .officedir {
  display: block;
}
@media (max-width: 991px) {
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.clickSelected .officedir,
  .interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.hoverSelected .officedir {
    display: none;
  }
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.clickSelected .officetitle,
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.hoverSelected .officetitle {
  color: #ffd600;
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.clickSelected .officetitle #smallicon,
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.hoverSelected .officetitle #smallicon {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: -35px;
  top: 5px;
}
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.clickSelected .officetitle #smallicon img,
.interioroffices #officelocations .imagearea .overlayoffices #officeareabox .office.hoverSelected .officetitle #smallicon img {
  display: block;
  width: 100%;
  height: auto;
}
#flagForm #flag-options .head {
  background-color: #10c8cd;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

paste available font families here

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.gotham {
  font-family: "Gotham SSm A", "Gotham SSm B", serif;
}
.bebas {
  font-family: "bebas-neue";
  text-transform: uppercase;
}
.bebas-sans {
  font-family: "bebas-neue", sans-serif;
}
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
body {
  font-size: 18px;
  font-family: "Gotham SSm A", "Gotham SSm B", serif;
}
body:not(#home) {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "bebas-neue";
  text-transform: uppercase;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #7b061e;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #ffd600;
}
a:focus,
.light-bg-link:focus,
a:visited,
.light-bg-link:visited {
  color: #232323;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 0px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
h2.title {
  margin-top: 7px;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #10c8cd;
  color: white;
  font-family: "bebas-neue";
  text-transform: uppercase;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #096c6e;
  color: white;
}
.large-button {
  display: inline-block;
  width: 100%;
  align-items: center;
  text-align: center;
  background-color: #10c8cd;
  color: white;
  padding: 1rem;
  font-size: 26px;
  border: 5px solid #0c9a9e;
  transition: all 0.2s ease-in-out;
  font-family: "bebas-neue";
  text-transform: uppercase;
}
.large-button:hover {
  border: 5px solid #10c8cd;
  background-color: #0c9a9e;
  color: white;
}
.large-button:visited {
  color: white;
}
/*interior page content default styles */
.social-list {
  margin-bottom: 0px;
  margin-top: 3px;
}
.social-list li a {
  padding: 5px;
  border-radius: 50px;
  color: #232323;
  background-color: white;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  font-family: "bebas-neue";
  text-transform: uppercase;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
}
.social-list li a:hover {
  background-color: #232323;
  color: white;
}
.social-list .newsletter a {
  background-color: #b9092e;
  color: white;
  padding: 3px 20px;
  font-size: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.social-list .newsletter a:hover {
  background-color: white;
  color: #b9092e;
}
@media (max-width: 1200px) {
  .social-list li {
    padding: 0px;
  }
  .social-list .newsletter a {
    padding: 3px 15px;
    font-size: 16px;
  }
}
@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;
}
