/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
@import url("//fonts.googleapis.com/css?family=Yanone+Kaffeesatz:200,300,400");
#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.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.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;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #0f4d50;
}
#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: #cc3e32;
}
#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: #7a251e;
}
body #header {
  height: 114px;
  width: 100%;
  padding: 11px 0px;
  background-color: #fbf9f0;
  border-bottom: 6px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 425px) {
  body #header {
    height: 87px;
  }
}
body #header a.logo-hold {
  max-width: 360px;
  width: 100%;
  position: absolute;
  display: block;
}
@media (max-width: 479px) {
  body #header a.logo-hold {
    max-width: 300px;
  }
}
@media (max-width: 425px) {
  body #header a.logo-hold {
    max-width: 220px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
@media (max-width: 425px) {
  body #header .nav-hold {
    padding: 13px 0 !important;
  }
}
body#home #header {
  position: absolute;
  padding: 12px 0px;
  background-color: transparent;
  border: none;
}
body#home a.logo-hold {
  max-width: 490px;
  width: 100%;
}
@media (max-width: 1200px) {
  body#home a.logo-hold {
    max-width: 350px;
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  body#home a.logo-hold {
    max-width: 290px;
    margin-top: 10px;
  }
}
@media (max-width: 425px) {
  body#home a.logo-hold {
    max-width: 220px;
  }
}
#newsroom #filtermodal .modal-dialog {
  padding: 50px;
}
#newsroom #filtermodal .modal-dialog .modal-content .close {
  color: black !important;
}
#newsroom #filtermodal .modal-dialog .modal-content .modal-header {
  padding-bottom: 15px;
}
#newsroom #filtermodal .modal-dialog .modal-content .modal-header h1 {
  color: #cc3e32;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  text-transform: uppercase;
}
#newsroom #filtermodal .modal-dialog .modal-content .modal-body form select {
  width: 100%;
  color: #000;
  border: 1px solid !important;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 20px !important;
  height: 43px !important;
}
#newsroom #filtermodal .modal-dialog .modal-content .modal-body .btn {
  padding: 9px 30px;
}
#newsroom #filtermodal .modal-backdrop.in {
  background-color: #fbf9f0;
}
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: #0f4d50;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #444444;
  text-transform: uppercase;
  text-decoration: none;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #cc3e32;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: #359999;
  text-decoration: underline;
}
body .navbar .togglemenu {
  color: #0f4d50;
  font-size: 28px;
}
@media (max-width: 425px) {
  body .navbar .togglemenu {
    font-size: 21px;
  }
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #0f4d50;
  font-size: 26px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
@media (max-width: 425px) {
  body .navbar .srchbuttonmodal {
    font-size: 19px;
  }
}
body .navbar .srchbutton {
  color: #0f4d50;
}
body .navbar .srchbutton:hover {
  color: #359999;
}
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 {
  background-color: transparent !important;
  color: #0f4d50 !important;
  border-bottom: 3px solid #0f4d50 !important;
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #0f4d50 !important;
}
body .navbar #search #sitesearch #search-field::-moz-placeholder {
  color: #0f4d50 !important;
}
body .navbar #search #sitesearch #search-field:-moz-placeholder {
  color: #0f4d50 !important;
}
body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: #0f4d50 !important;
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .navbar .nav-pills > li a {
  color: white;
}
body#home .navbar .nav-pills > li .dropdown-menu li a {
  color: #444444;
  text-decoration: none;
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
  color: white;
}
body#home .navbar .nav-pills > li:hover {
  color: white;
}
body#home .navbar .nav-pills > li:hover a {
  color: white;
  text-decoration: underline;
}
body#home .navbar .nav-pills > li.selected {
  color: white;
  text-decoration: underline;
}
body#home .navbar .togglemenu {
  color: white;
}
body#home .navbar .srchbuttonmodal {
  color: white;
}
body#home .navbar .srchbutton {
  color: white;
}
body#home .navbar #search #sitesearch #search-field {
  background-color: transparent;
  color: #ffffff !important;
  border-bottom: 3px solid #ffffff !important;
}
body#home .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #fff !important;
}
body#home .navbar #search #sitesearch #search-field::-moz-placeholder {
  color: #fff !important;
}
body#home .navbar #search #sitesearch #search-field:-moz-placeholder {
  color: #fff !important;
}
body#home .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: #fff !important;
}
#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;*/
  font-weight: 700;
  margin-right: 20px;
}
#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-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  font-size: 40px;
}
#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 {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  color: white;
  font-size: 24px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 20px 0;
  float: right;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: transparent;
  color: white;
  border-bottom: 3px solid white;
}
#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: white;
}
#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: white;
}
#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: white;
}
#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: white;
}
#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: white;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
body#home #header {
  position: absolute;
  z-index: 3;
}
body#home .banner {
  height: 700px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 479px) {
  body#home .banner {
    height: 525px;
  }
}
body#home .banner .banner-feature {
  background-color: rgba(251, 249, 240, 0.7);
  width: 87%;
  padding: 30px 40px;
  z-index: 2;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  font-size: 32px;
  color: #444444;
  position: absolute;
  bottom: 60px;
  margin: 0 auto;
  right: 0;
  left: 0;
}
@media (max-width: 991px) {
  body#home .banner .banner-feature {
    font-size: 26px;
    padding: 20px 25px;
  }
}
@media (max-width: 479px) {
  body#home .banner .banner-feature {
    font-size: 20px;
    padding: 20px 25px;
  }
}
body#home .banner .banner-feature a {
  color: #444444;
}
body#home .banner .banner-feature a:hover {
  color: #0f4d50;
}
body#home .banner .banner-feature .red {
  color: #cc3e32;
}
.action-bar .services {
  display: table;
  width: 100%;
}
.action-bar .services a {
  background-color: #359999;
  display: table-cell;
  width: 14.28%;
  color: white;
  padding: 16px 0px;
}
@media (max-width: 767px) {
  .action-bar .services a {
    width: 15.2%;
  }
}
.action-bar .services a .service {
  display: inline-block;
  vertical-align: middle;
  padding: 11px;
  width: 100%;
}
.action-bar .services a .service h3 {
  text-align: center;
  font-size: 18px;
  margin: 0;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .action-bar .services a .service h3 {
    font-size: 16px;
  }
}
.action-bar .services a:hover {
  background-color: #278585;
}
.action-bar .services a + a {
  border-left: 1px solid #278585;
}
.action-bar .services.long {
  border-bottom: 1px solid #278585;
}
.action-bar .services.short {
  border-bottom: 1px solid #278585;
}
.action-bar .services.short a {
  width: 17%;
}
@media (max-width: 659px) {
  .action-bar .services.short a {
    width: 21%;
  }
}
@media (max-width: 492px) {
  .action-bar .services.short a {
    width: 28%;
  }
}
@media (max-width: 330px) {
  .action-bar .services.short a {
    width: 34%;
  }
}
#press {
  margin: 50px 0px;
}
#press .wrap,
.youtube .wrap {
  width: 100%;
  display: table;
  padding: 10px 20px;
  height: 360px;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  font-size: 20px;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 991px) {
  #press .wrap,
  .youtube .wrap {
    height: auto;
    margin-bottom: 20px;
    font-size: 22px;
    padding: 50px 30px;
  }
}
#press .wrap .press-title,
.youtube .wrap .press-title {
  color: #fff;
}
#press .wrap.all-text,
.youtube .wrap.all-text,
#press .wrap.video,
.youtube .wrap.video {
  background-color: #cc3e32;
  font-size: 26px;
  transition: 0.2s ease-in background-color;
  color: white;
}
@media (max-width: 991px) {
  #press .wrap.all-text,
  .youtube .wrap.all-text,
  #press .wrap.video,
  .youtube .wrap.video {
    font-size: 22px;
  }
}
#press .wrap.all-text .press-title,
.youtube .wrap.all-text .press-title,
#press .wrap.video .press-title,
.youtube .wrap.video .press-title,
#press .wrap.all-text h3,
.youtube .wrap.all-text h3,
#press .wrap.video h3,
.youtube .wrap.video h3 {
  display: table-cell;
  vertical-align: middle;
}
#press .wrap.all-text:hover,
.youtube .wrap.all-text:hover,
#press .wrap.video:hover,
.youtube .wrap.video:hover {
  background-color: #0f4d50;
}
#press .wrap.video .video-type,
.youtube .wrap.video .video-type {
  font-size: 34px;
}
@media (max-width: 991px) {
  #press .wrap.video .video-type,
  .youtube .wrap.video .video-type {
    font-size: 26px;
  }
}
#press .wrap.video h3,
.youtube .wrap.video h3 {
  font-size: 26px;
  line-height: 37px;
}
@media (max-width: 991px) {
  #press .wrap.video h3,
  .youtube .wrap.video h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
#press .wrap.with-img,
.youtube .wrap.with-img {
  background-size: cover;
  padding: 0;
  position: relative;
}
#press .wrap.with-img .background-image,
.youtube .wrap.with-img .background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
}
#press .wrap.with-img:after,
.youtube .wrap.with-img:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
}
#press .wrap.with-img .press-title,
.youtube .wrap.with-img .press-title {
  display: table-cell;
  vertical-align: bottom;
  font-size: 20px;
  position: relative;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.2s ease-in background-color;
}
#press .wrap.with-img .press-title:hover,
.youtube .wrap.with-img .press-title:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.social-media {
  background-color: #fbf9f0;
  margin-top: 50px;
  padding: 50px 0px;
}
.social-media .social-header a {
  color: #444444;
  font-size: 24px;
}
.social-media .social-header a:hover {
  color: #359999;
}
@media (max-width: 767px) {
  .social-media .social-header {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .social-media .facebook-area {
    text-align: center;
  }
}
.social-media .facebook-area iframe {
  background-color: white;
}
.social-media .facebook-area ._2lqh {
  display: none !important;
}
@media (max-width: 550px) {
  .social-media .facebook-area.visible-sm {
    display: block !important;
  }
}
@media (max-width: 550px) {
  .social-media .facebook-area.hidden-sm {
    display: none !important;
  }
}
.social-media .twitter-area {
  background-color: white;
  border: 1px solid #dfe0e4;
  border-radius: 3px;
  padding: 40px 70px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .social-media .twitter-area {
    padding: 40px 25px 0;
  }
}
@media (max-width: 767px) {
  .social-media .twitter-area {
    width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  .social-media .twitter-area {
    width: 100%;
  }
}
.social-media .twitter-area h3 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 3px;
}
.social-media .twitter-area h3 img {
  width: 25px;
  margin-left: 5px;
  vertical-align: top;
}
.social-media .twitter-area h5 {
  margin-top: 0;
}
.social-media .twitter-area h5 a {
  color: #444444;
  font-weight: 400;
  font-size: 18px;
}
.social-media .twitter-area h5 a:hover {
  color: #359999;
}
.social-media .twitter-area #twitter {
  margin: 40px 0px;
  font-size: 22px;
}
@media (max-width: 1200px) {
  .social-media .twitter-area #twitter {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .social-media .twitter-area #twitter {
    font-size: 19px;
    margin: 20px 0;
  }
}
.social-media .twitter-area #twitter .tweet {
  height: 180px;
  word-break: break-word;
}
.social-media .twitter-area #twitter ul {
  list-style: none;
  padding: 0;
}
.social-media .twitter-area #twitter a {
  color: #0f4d50;
}
.social-media .twitter-area #twitter a:hover {
  color: #359999;
}
.social-media .twitter-area #twitter p {
  line-height: 36px;
}
@media (max-width: 991px) {
  .social-media .twitter-area #twitter p {
    line-height: 25px;
  }
}
.social-media .twitter-area .interact a {
  color: #aab8c3 !important;
  padding: 0 25px;
}
.social-media .twitter-area .interact a:hover {
  color: #359999 !important;
}
#office-locations {
  padding: 50px 0px;
}
#office-locations .social-header {
  font-size: 24px;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  #office-locations img {
    display: none;
  }
}
#office-locations .address {
  width: 50%;
  display: inline-block;
  min-height: 200px;
  float: left;
  font-weight: 200;
  font-size: 16px;
  line-height: 29px;
}
@media (max-width: 330px) {
  #office-locations .address {
    font-size: 15px;
    line-height: 24px;
  }
}
#office-locations .address a {
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  color: #359999;
}
#office-locations .address a:hover {
  color: #0f4d50;
  cursor: pointer;
}
@media (max-width: 330px) {
  #office-locations .address h4 {
    font-size: 16px;
  }
}
#office-locations .address:hover {
  cursor: pointer;
}
@media (max-width: 991px) {
  #office-locations .cirlces {
    display: none;
  }
}
@media (max-width: 991px) {
  #office-locations svg {
    display: none;
  }
}
#office-locations .circle {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #cc3e32;
  position: absolute;
  display: inline-block;
  z-index: 1;
}
#office-locations .circle#Carlsbad {
  top: 471px;
  left: 426px;
}
@media (max-width: 1200px) {
  #office-locations .circle#Carlsbad {
    top: 414px;
    left: 373px;
  }
}
#office-locations .circle#Las_Cruces {
  top: 468px;
  left: 205px;
}
@media (max-width: 1200px) {
  #office-locations .circle#Las_Cruces {
    top: 406px;
    left: 180px;
  }
}
#office-locations .circle#Santa_Fe {
  top: 131px;
  left: 281px;
}
@media (max-width: 1200px) {
  #office-locations .circle#Santa_Fe {
    top: 112px;
    left: 244px;
  }
}
#office-locations .circle#Portales {
  top: 290px;
  left: 502px;
}
@media (max-width: 1200px) {
  #office-locations .circle#Portales {
    top: 260px;
    left: 445px;
  }
}
#office-locations .circle#Albuquerque {
  top: 195px;
  left: 221px;
}
@media (max-width: 1200px) {
  #office-locations .circle#Albuquerque {
    top: 169px;
    left: 192px;
  }
}
#office-locations svg {
  position: absolute;
  top: 0;
  height: 594px;
  width: 535px;
  fill: transparent;
}
@media (max-width: 1200px) {
  #office-locations svg {
    top: -7px;
    height: 531px;
    width: 468px;
  }
}
#office-locations svg .st0#Carlsbad:hover {
  fill: url(#Carlsbad);
  cursor: pointer;
}
#office-locations svg .st0#Las_Cruces:hover {
  fill: url(#Las_Cruces);
  cursor: pointer;
}
#office-locations svg .st0#Santa_Fe:hover {
  fill: url(#Santa_Fe);
  cursor: pointer;
}
#office-locations svg .st0#Portales:hover {
  fill: url(#Portales);
  cursor: pointer;
}
#office-locations svg .st0#Albuquerque:hover {
  fill: url(#Albuquerque);
  cursor: pointer;
}
#office-locations.Carlsbad .address#Carlsbad h4 {
  color: #cc3e32;
}
#office-locations.Carlsbad .address#Carlsbad i.hidden {
  display: inline-block !important;
}
#office-locations.Carlsbad .st0#Carlsbad {
  fill: url(#Carlsbad);
}
#office-locations.Carlsbad .circle#Carlsbad {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #444444;
}
#office-locations.Las_Cruces .address#Las_Cruces h4 {
  color: #cc3e32;
}
#office-locations.Las_Cruces .address#Las_Cruces i.hidden {
  display: inline-block !important;
}
#office-locations.Las_Cruces .st0#Las_Cruces {
  fill: url(#Las_Cruces);
}
#office-locations.Las_Cruces .circle#Las_Cruces {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #444444;
}
#office-locations.Santa_Fe .address#Santa_Fe h4 {
  color: #cc3e32;
}
#office-locations.Santa_Fe .address#Santa_Fe i.hidden {
  display: inline-block !important;
}
#office-locations.Santa_Fe .st0#Santa_Fe {
  fill: url(#Santa_Fe);
}
#office-locations.Santa_Fe .circle#Santa_Fe {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #444444;
}
#office-locations.Portales .address#Portales h4 {
  color: #cc3e32;
}
#office-locations.Portales .address#Portales i.hidden {
  display: inline-block !important;
}
#office-locations.Portales .st0#Portales {
  fill: url(#Portales);
}
#office-locations.Portales .circle#Portales {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #444444;
}
#office-locations.Albuquerque .address#Albuquerque h4 {
  color: #cc3e32;
}
#office-locations.Albuquerque .address#Albuquerque i.hidden {
  display: inline-block !important;
}
#office-locations.Albuquerque .st0#Albuquerque {
  fill: url(#Albuquerque);
}
#office-locations.Albuquerque .circle#Albuquerque {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #444444;
}
@media (max-width: 330px) {
  .social-media .facebook-area.hidden-xxs {
    display: none !important;
  }
}
.social-media .facebook-area.visible-xxs {
  display: none;
}
@media (max-width: 330px) {
  .social-media .facebook-area.visible-xxs {
    display: block !important;
  }
}
/*
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;
}
.main_page_title {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  text-transform: uppercase;
  font-size: 56px;
  color: #cc3e32;
}
#press .main_page_title {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  text-transform: none;
  font-size: 46px;
  color: #0f4d50;
  margin-bottom: 30px;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #359999;
}
@media (max-width: 414px) {
  #breadcrumb {
    font-size: 12px;
  }
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#form_thomas_search #thomas_search {
  height: 41px;
}
#form_thomas_search #side-search-btn {
  padding: 5px 14px;
}
#filter-legislation {
  margin-top: 110px;
}
#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: #359999;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #0f4d50;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #cc3e32;
  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: #0f4d50;
}
.contact-button {
  background-color: #0f4d50;
  color: white;
  display: table;
  height: 340px;
  padding: 20px 30px;
  width: 100%;
  margin-bottom: 80px;
  margin-top: 30px;
}
.contact-button h2 {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
}
.contact-button:hover {
  background-color: #359999;
  color: white;
}
@media (max-width: 767px) {
  .contact-button {
    height: 200px;
    margin-bottom: 30px;
  }
}
@media (max-width: 414px) {
  .contact-button {
    height: 150px;
  }
}
.contact-address {
  display: inline-block;
  min-height: 200px;
  float: left;
  font-weight: 400;
  width: 100%;
  text-align: center;
  padding: 0 55px 60px;
  font-size: 16px;
  line-height: 29px;
}
@media (max-width: 991px) {
  .contact-address {
    padding: 0 17px 60px;
    min-height: 255px;
  }
}
@media (max-width: 767px) {
  .contact-address {
    width: 33%;
  }
}
@media (max-width: 660px) {
  .contact-address {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .contact-address {
    width: 100%;
  }
}
.contact-address a {
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  color: #359999;
}
body#priorities .issue-row {
  margin-top: 40px;
}
body#priorities .leg-button {
  background-color: #0f4d50;
  color: white;
  padding: 10px 15px;
  position: absolute;
  font-size: 22px;
  text-transform: uppercase;
  display: inline-block;
  font-family: 'Cervo Neue W00 Bold Neue';
  right: 15px;
  top: 33px;
  transition: 0.3s ease-in background-color;
}
@media (max-width: 510px) {
  body#priorities .leg-button {
    position: relative;
    float: none !important;
    top: 10px;
    right: 0px;
  }
}
body#priorities .leg-button:hover {
  background-color: #359999;
}
@media (max-width: 650px) {
  body#priorities .col-xs-6 {
    width: 100%;
  }
}
body#priorities .issue-block {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 0px;
  margin-bottom: 30px;
  cursor: pointer;
  position: relative;
}
body#priorities .issue-block .img {
  width: 100%;
  height: 330px;
  border-radius: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 12em rgba(15, 77, 80, 0.5);
}
@media (max-width: 650px) {
  body#priorities .issue-block .img {
    height: 190px;
  }
}
body#priorities .issue-block .img:before {
  border-radius: 0px;
  box-shadow: inset 0 0 0 12em rgba(15, 77, 80, 0.5);
}
body#priorities .issue-block .img .filter h2 {
  margin: 140px auto;
  text-align: center;
  position: absolute;
  display: block;
  padding: 5px;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  width: 100%;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  body#priorities .issue-block .img .filter h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  body#priorities .issue-block .img .filter h2 {
    font-size: 36px;
  }
}
@media (max-width: 650px) {
  body#priorities .issue-block .img .filter h2 {
    margin: 70px auto;
  }
}
body#priorities .issue-block:hover .img {
  box-shadow: inset 0 0 0 12em rgba(15, 77, 80, 0.8);
}
body#priorities .ih-item.circle {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 0px;
  margin-bottom: 30px;
  cursor: pointer;
}
body#priorities .ih-item.circle .img {
  width: 100%;
  height: 370px;
  border-radius: 0px;
  background-repeat: no-repeat;
  background-size: cover;
}
body#priorities .ih-item.circle .img:before {
  border-radius: 0px;
  box-shadow: inset 0 0 0 12em rgba(15, 77, 80, 0.5);
}
body#priorities .ih-item.circle .img .filter h2 {
  margin: 140px auto;
  text-align: center;
  position: absolute;
  display: block;
  padding: 5px;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  width: 100%;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  body#priorities .ih-item.circle .img .filter h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.circle .img .filter h2 {
    font-size: 36px;
  }
}
body#priorities .ih-item.circle a {
  cursor: pointer;
}
body#priorities .ih-item.circle .info {
  border-radius: 0px;
}
body#priorities .ih-item.circle .info h3 {
  height: auto;
  font-size: 32px;
  padding: 0px 18px;
  padding-top: 20px;
  margin: 0 auto;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
}
body#priorities .ih-item.circle .info .info-back {
  border-radius: 0px;
  background: #0f4d50;
  text-align: left;
}
@media (max-width: 1199px) {
  body#priorities .ih-item.circle .info .info-back h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.circle .info .info-back h3 {
    font-size: 32px;
  }
}
body#priorities .ih-item.circle .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.circle .info .info-back p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.circle .info .info-back p {
    font-size: 16px;
    line-height: 24px;
  }
}
#typenav .nav {
  background-color: #fbf9f0;
  padding: 20px 0px;
}
#typenav li a {
  color: #444444;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  font-size: 24px;
  font-family: 'Cervo Neue W00 Bold Neue';
  padding: 9px 82px 10px 29px;
}
#typenav li.active a {
  color: white;
  background-color: #cc3e32;
}
#typenav.affix {
  top: 0;
}
.tab-pane {
  min-height: 300px;
}
.beige-col {
  background-color: #fbf9f0;
  padding: 0 20px;
  margin-top: -45px;
  position: relative;
  padding-top: 45px;
}
.beige-col:after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 20000px;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  background-color: #fbf9f0;
}
#content {
  overflow: hidden;
  width: 100%;
}
body#issue .beige-col {
  padding-top: 162px;
}
@media (max-width: 991px) {
  body#issue .beige-col {
    padding-top: 40px;
  }
}
#asides {
  background-color: #fbf9f0;
  padding: 0 20px;
  margin-top: -45px;
  position: relative;
  padding-top: 75px;
}
@media (max-width: 991px) {
  #asides {
    margin-top: 0;
  }
}
#asides:after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 20000px;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  background-color: #fbf9f0;
}
body#issue .beige-col iframe {
  width: 100%;
  height: 200px;
}
body#issue .beige-col .latestheader {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  color: #0f4d50;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
body#issue h3.related-video {
  color: #444444;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 34px;
}
body#issue .breakout {
  margin-top: 20px !important;
  border: none !important;
}
body#issue .breakout .news,
body#issue .breakout .update,
body#issue .breakout li {
  border: none !important;
  margin-bottom: 20px !important;
}
body#issue .breakout .news h2.title,
body#issue .breakout .update h2.title,
body#issue .breakout li h2.title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 36px;
  font-weight: bold;
}
body#issue .breakout .news h2.title a,
body#issue .breakout .update h2.title a,
body#issue .breakout li h2.title a {
  color: #444444;
}
body#issue .breakout .news h2.title a:hover,
body#issue .breakout .update h2.title a:hover,
body#issue .breakout li h2.title a:hover {
  color: #359999;
}
body#issue .issuebody h2,
body#issue .issuebody h3,
body#issue .issuebody h4,
body#issue .issuebody h5 {
  color: #cc3e32;
  margin-top: 30px;
}
body#issue .issuebody p {
  font-weight: 400;
}
body#issue .tab-pane#stand {
  min-height: 300px;
  padding: 30px 0px 5px;
  margin-bottom: 30px;
  line-height: 37px !important;
}
body#issue .tab-pane#stand #sam-main {
  border-bottom: 5px solid #cc3e32;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 35px;
}
@media (max-width: 479px) {
  body#issue .tab-pane#stand #sam-main {
    font-size: 18px;
  }
}
body#issue .tab-pane#stand #sam-main p {
  line-height: 37px !important;
}
@media (max-width: 479px) {
  body#issue .tab-pane#stand #sam-main p {
    line-height: 31px !important;
  }
}
body#issue .nav-tabs {
  margin-top: 40px;
}
body#issue .nav-tabs li a {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  font-size: 40px;
  color: #359999;
  border-radius: 0;
}
@media (max-width: 991px) {
  body#issue .nav-tabs li a {
    font-size: 27px;
  }
}
@media (max-width: 479px) {
  body#issue .nav-tabs li a {
    font-size: 22px;
  }
}
@media (max-width: 370px) {
  body#issue .nav-tabs li a {
    padding: 10px 7px;
    font-size: 20px;
  }
}
body#issue .nav-tabs li.active a {
  color: #cc3e32;
}
body#issue .tab-pane#working {
  padding-top: 20px;
}
body#issue .tab-pane#working .blog-issue {
  padding: 25px 0px;
}
body#issue .tab-pane#working .date {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: none;
  color: #444444;
  font-weight: 500;
  font-size: 15px;
}
body#issue .tab-pane#working h3.title {
  margin-top: 5px;
}
body#issue .tab-pane#working h3.title a {
  color: #0f4d50;
  line-height: 34px;
}
body#issue .tab-pane#working h3.title a:hover {
  color: #359999;
}
body#issue .tab-pane#working .summary p {
  font-weight: 400;
}
body#issue .tab-pane#working .continue {
  color: #0f4d50;
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-top: -20px;
}
body#issue .tab-pane#working .continue:hover {
  color: #359999;
}
body#about #asides {
  padding-top: 147px;
}
@media (max-width: 991px) {
  body#about #asides {
    padding-top: 80px;
  }
}
body#about #sam-main p {
  font-weight: 400;
  line-height: 38px;
}
@media (max-width: 479px) {
  body#about #sam-main p {
    line-height: 32px;
  }
}
body#about #sam-main blockquote {
  border: none;
  border-top: 5px solid #cc3e32;
  border-bottom: 5px solid #cc3e32;
  font-size: 32px;
  text-align: center;
  font-weight: 100;
  padding: 50px 20px;
  margin: 50px 0;
}
@media (max-width: 479px) {
  body#about #sam-main blockquote {
    font-size: 24px;
  }
}
body#about #sam-main blockquote p {
  line-height: 55px;
}
@media (max-width: 479px) {
  body#about #sam-main blockquote p {
    line-height: 40px;
  }
}
body#about #sam-main blockquote a {
  color: #0f4d50;
  font-weight: 500;
}
body#about #sam-main blockquote a:hover {
  color: #359999;
}
body#about .official-portriat {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  text-transform: uppercase;
  font-size: 44px;
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 70px;
}
.about-btn {
  width: 100%;
  display: inline-block;
  height: 270px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
  display: table;
}
@media (max-width: 479px) {
  .about-btn {
    height: 220px;
  }
}
.about-btn#committee {
  background-image: url(/themes/tomudall/images/committee.jpg);
}
.about-btn#contact {
  background-image: url(/themes/tomudall/images/contect.jpg);
}
.about-btn#learn {
  background-image: url(/themes/tomudall/images/learn.jpg);
}
.about-btn h3 {
  text-align: center;
  display: inline-block;
  height: 270px;
  width: 100%;
  margin: 0;
  background-color: rgba(19, 76, 76, 0.52);
  margin-bottom: -10px;
  font-size: 32px;
  text-transform: uppercase;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  display: table;
  transition: 0.2s background-color ease-in;
}
@media (max-width: 479px) {
  .about-btn h3 {
    height: 220px;
  }
}
.about-btn h3 span {
  display: table-cell;
  vertical-align: middle;
}
.about-btn h3:hover {
  background-color: rgba(19, 76, 76, 0.82);
  color: white;
}
.about-btn h2 {
  font-family: 'Cervo Neue W00 Thin Neue', Trebuchet MS, sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-size: 60px;
  margin-bottom: 0;
}
.dele-header {
  color: #0f4d50;
  border-bottom: 5px solid #0f4d50;
  text-transform: uppercase;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  font-size: 40px;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
.fancy_font {
  font-family: 'Cervo Neue W00 Thin Neue Itali';
  color: #359999;
  margin-bottom: 30px;
  font-size: 47px;
}
#sam-statefacts {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  text-transform: uppercase;
}
#sam-statefacts a {
  text-transform: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0f4d50;
}
#sam-statefacts a:hover {
  color: #359999;
}
.vcard .media-body {
  width: 200px;
  text-align: center;
  height: 90px;
}
.vcard .media-body a {
  color: #444444;
}
.vcard .media-body a:hover {
  color: #359999;
}
#gallery.photos {
  margin-top: 40px;
}
#newscontent #photos h2.title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#newscontent #photos h2.title a {
  color: #444444;
}
#newscontent #photos h2.title a:hover {
  color: #359999;
}
#newscontent #photos .date.black {
  color: #0f4d50;
}
body.newsroom_landing #content {
  overflow: auto;
  padding-bottom: 0 !important;
}
body.newsroom_landing .white-col {
  background-color: white;
  padding-top: 40px;
  padding-right: 40px;
}
body.newsroom_landing #breadcrumb {
  display: none;
}
body.newsroom_landing #main_container {
  background-color: #fbf9f0;
}
body.newsroom_landing .news-header {
  color: #cc3e32;
  border-bottom: 5px solid #cc3e32;
  text-transform: uppercase;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  font-size: 40px;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
body.newsroom_landing .news-header a {
  color: #cc3e32;
}
body.newsroom_landing .news-header a:hover {
  color: #444444;
}
body.newsroom_landing .beige-col {
  padding-left: 50px;
}
body.newsroom_landing #typenav {
  padding-top: 40px;
}
body.newsroom_landing #typenav a {
  color: #cc3e32;
  text-transform: uppercase;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
}
body.newsroom_landing #typenav li.active a {
  color: #0f4d50;
  background-color: transparent;
}
body.newsroom_landing a.play,
body.newsroom_landing a.pause {
  color: #359999;
  width: 40px;
  height: 40px;
  background: none;
  float: left;
}
body.newsroom_landing .play,
body.newsroom_landing .pause {
  width: 40px;
  height: 40px;
  display: block;
  clear: both;
}
body.newsroom_landing .play:before,
body.newsroom_landing .pause:before,
body.newsroom_landing .play:after,
body.newsroom_landing .pause:after {
  display: block;
  content: "";
  position: absolute;
}
body.newsroom_landing .play:before {
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 35px solid #359999;
  margin: 0px 0 0 0px;
}
body.newsroom_landing .pause:before {
  background: #359999;
  margin: 0px 20px 0 0px;
  width: 15px;
  height: 40px;
}
body.newsroom_landing .pause:after {
  background: #359999;
  margin: 0px 20px 0 20px;
  width: 15px;
  height: 40px;
}
body.newsroom_landing .audio-stuff {
  height: 80px;
  padding: 1px 0;
}
body.newsroom_landing .audio-title {
  margin-bottom: 0;
  margin-left: 60px;
  margin-top: 8px;
}
body.newsroom_landing .audio-title a {
  color: #444444;
}
body.newsroom_landing .audio-title a:hover {
  color: #359999;
}
body.newsroom_landing #audio {
  padding-bottom: 50px;
}
body.newsroom_landing #audio img {
  width: 100%;
}
body.newsroom_landing .news-item .date {
  color: #0f4d50 !important;
  font-size: 24px;
}
@media (max-width: 991px) {
  body.newsroom_landing .news-item .date {
    font-size: 18px;
  }
}
body.newsroom_landing .news-item h2.title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  margin-bottom: 70px;
  line-height: 45px;
  font-weight: 400;
}
@media (max-width: 991px) {
  body.newsroom_landing .news-item h2.title {
    font-size: 21px;
    line-height: 30px;
  }
}
body.newsroom_landing .news-item h2.title a {
  color: #444444;
}
body.newsroom_landing .news-item h2.title a:hover {
  color: #359999;
}
body.newsroom_landing h2.title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  margin-bottom: 70px;
  line-height: 45px;
  font-weight: 400;
}
@media (max-width: 991px) {
  body.newsroom_landing h2.title {
    font-size: 21px;
    line-height: 30px;
  }
}
body.newsroom_landing h2.title a {
  color: #444444;
}
body.newsroom_landing h2.title a:hover {
  color: #359999;
}
body.newsroom_landing #press {
  margin: 0;
}
body.newsroom_landing #videos h2.title {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 991px) {
  body.newsroom_landing #videos h2.title {
    font-size: 21px;
  }
}
/* Font Family
================================================== */
/* CSS Reset
================================================== */
#audio .column div,
#audio .column span,
#audio .column h6,
#audio .column p,
#audio .column a,
#audio .column ul,
#audio .column li,
#audio .column audio {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  vertical-align: baseline;
}
body #audio {
  line-height: 1;
}
ul {
  list-style: none;
  padding: 0;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
/* Typography
================================================== */
#audio h6,
#audio p {
  color: #808080;
  font-weight: 200;
}
#audio h6 {
  font-size: 18px;
  line-height: 20px;
  margin: 4px 0 20px;
}
#audio p {
  font-size: 18px;
  line-height: 20px;
  margin: 0 0 2px;
}
/* Links
================================================== */
#audio a,
#audio a:visited {
  color: #a2a0a0;
  outline: 0;
  font-size: 42px;
}
#audio a:hover,
#audio a:focus {
  color: #bbb;
}
#audio p a,
#audio p a:visited {
  line-height: inherit;
}
#audio h1 a {
  color: #cc3e32 !important;
}
#audio .column #npTitle {
  color: #0f4d50;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}
/* Misc.
================================================== */
.add-bottom {
  margin-bottom: 20px !important;
}
.left {
  float: left;
}
.right {
  float: right;
}
.center {
  text-align: center;
}
/* Custom Styles
================================================== */
/* Highlight Styles */
#audio ::selection {
  background-color: #262223;
  color: #444;
}
/* Audio Player Styles
================================================== */
/* Default / Desktop / Firefox */
#audio .column #audiowrap audio {
  margin: 0 15px 0 14px;
  width: 670px;
}
#audiowrap {
  background-color: white;
  margin: 0 auto;
}
#plwrap {
  margin: 0 auto;
}
#tracks {
  position: relative;
  text-align: center;
}
#nowPlay {
  display: inline;
}
#npTitle {
  margin: 0;
  padding: 21px;
  text-align: right;
}
#npAction {
  padding: 21px;
}
#plList {
  margin: 0;
}
#plList li {
  background-color: white;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 21px 0;
}
#plList li:hover {
  background-color: #262223;
}
.plItem {
  position: relative;
}
.plTitle {
  left: 50px;
  overflow: hidden;
  position: absolute;
  right: 65px;
  text-overflow: ellipsis;
  top: 0;
  white-space: nowrap;
}
.plNum {
  padding-left: 21px;
  width: 25px;
}
.plLength {
  padding-left: 21px;
  position: absolute;
  right: 21px;
  top: 0;
}
.plSel,
.plSel:hover {
  background-color: #262223!important;
  cursor: default!important;
}
a[id^="btn"] {
  background-color: #231F20;
  color: #C8C7C8;
  cursor: pointer;
  display: inline-block;
  font-size: 50px;
  margin: 0;
  padding: 21px 27px;
  text-decoration: none;
}
a[id^="btn"]:last-child {
  margin-left: -4px;
}
a[id^="btn"]:hover,
a[id^="btn"]:active {
  background-color: #262223;
}
a[id^="btn"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* IE 9 */
html[data-useragent*="MSIE 9.0"] #audio .column #audiowrap audio {
  margin-left: 9px;
  outline: none;
  width: 680px;
}
html[data-useragent*="MSIE 9.0"] #audiowrap {
  background-color: #000;
}
html[data-useragent*="MSIE 9.0"] a[id^="btn"] {
  background-color: #000;
}
html[data-useragent*="MSIE 9.0"] a[id^="btn"]:hover {
  background-color: #080808;
}
html[data-useragent*="MSIE 9.0"] #plList li {
  background-color: #000;
}
html[data-useragent*="MSIE 9.0"] #plList li:hover {
  background-color: #080808;
}
html[data-useragent*="MSIE 9.0"] .plSel,
html[data-useragent*="MSIE 9.0"] .plSel:hover {
  background-color: #080808!important;
}
/* IE 10 */
html[data-useragent*="MSIE 10.0"] #audio .column #audiowrap audio {
  margin-left: 6px;
  width: 687px;
}
html[data-useragent*="MSIE 10.0"] #audiowrap {
  background-color: #000;
}
html[data-useragent*="MSIE 10.0"] a[id^="btn"] {
  background-color: #000;
}
html[data-useragent*="MSIE 10.0"] a[id^="btn"]:hover {
  background-color: #080808;
}
html[data-useragent*="MSIE 10.0"] #plList li {
  background-color: #000;
}
html[data-useragent*="MSIE 10.0"] #plList li:hover {
  background-color: #080808;
}
html[data-useragent*="MSIE 10.0"] .plSel,
html[data-useragent*="MSIE 10.0"] .plSel:hover {
  background-color: #080808!important;
}
/* IE 11 */
html[data-useragent*="rv:11.0"] #audio .column #audiowrap audio {
  margin-left: 2px;
  width: 695px;
}
html[data-useragent*="rv:11.0"] #audiowrap {
  background-color: #000;
}
html[data-useragent*="rv:11.0"] a[id^="btn"] {
  background-color: #000;
}
html[data-useragent*="rv:11.0"] a[id^="btn"]:hover {
  background-color: #080808;
}
html[data-useragent*="rv:11.0"] #plList li {
  background-color: #000;
}
html[data-useragent*="rv:11.0"] #plList li:hover {
  background-color: #080808;
}
html[data-useragent*="rv:11.0"] .plSel,
html[data-useragent*="rv:11.0"] .plSel:hover {
  background-color: #080808!important;
}
/* All Apple Products */
html[data-useragent*="Apple"] #audio .column #audiowrap audio {
  margin: 0;
  width: 100%;
}
html[data-useragent*="Apple"] #audiowrap {
  background-color: #2a2a2a;
}
html[data-useragent*="Apple"] a[id^="btn"] {
  background-color: #2a2a2a;
}
html[data-useragent*="Apple"] a[id^="btn"]:hover {
  background-color: #080808;
}
html[data-useragent*="Apple"] #plList li {
  background-color: #f3f3f3;
}
html[data-useragent*="Apple"] #plList li:hover {
  background-color: #e6e6e6 !important;
}
html[data-useragent*="Apple"] .plSel,
html[data-useragent*="Apple"] .plSel:hover {
  background-color: #e6e6e6!important;
}
html[data-useragent*="Apple"] #audio .column #npTitle {
  color: white !important;
}
/* IOS 7 */
html[data-useragent*="OS 7"] body {
  color: #373837;
}
html[data-useragent*="OS 7"] audio {
  margin-left: 3px;
  width: 690px;
}
html[data-useragent*="OS 7"] #audiowrap {
  background-color: #e6e6e6;
}
html[data-useragent*="OS 7"] a[id^="btn"] {
  background-color: #e6e6e6;
  color: #373837;
}
html[data-useragent*="OS 7"] a[id^="btn"]:hover {
  background-color: #eee;
}
html[data-useragent*="OS 7"] #plList li {
  background-color: #e6e6e6;
}
html[data-useragent*="OS 7"] #plList li:hover {
  background-color: #eee;
}
html[data-useragent*="OS 7"] .plSel,
html[data-useragent*="OS 7"] .plSel:hover {
  background-color: #eee!important;
}
/* IOS 8 */
html[data-useragent*="OS 8"] body {
  color: #373837;
}
html[data-useragent*="OS 8"] audio {
  margin-left: 6px;
  width: 694px;
}
html[data-useragent*="OS 8"] #audiowrap {
  background-color: #e4e4e4;
}
html[data-useragent*="OS 8"] a[id^="btn"] {
  background-color: #e4e4e4;
  color: #373837;
}
html[data-useragent*="OS 8"] a[id^="btn"]:hover {
  background-color: #eee;
}
html[data-useragent*="OS 8"] #plList li {
  background-color: #e4e4e4;
}
html[data-useragent*="OS 8"] #plList li:hover {
  background-color: #eee;
}
html[data-useragent*="OS 8"] .plSel,
html[data-useragent*="OS 8"] .plSel:hover {
  background-color: #eee!important;
}
/* IOS 9 */
html[data-useragent*="OS 9"] body {
  color: #373837;
}
html[data-useragent*="OS 9"] audio {
  margin-left: 6px;
  width: 694px;
}
html[data-useragent*="OS 9"] #audiowrap {
  background-color: #d5d5d5;
}
html[data-useragent*="OS 9"] a[id^="btn"] {
  background-color: #d5d5d5;
  color: #373837;
}
html[data-useragent*="OS 9"] a[id^="btn"]:hover {
  background-color: #eee;
}
html[data-useragent*="OS 9"] #plList li {
  background-color: #d5d5d5;
}
html[data-useragent*="OS 9"] #plList li:hover {
  background-color: #eee;
}
html[data-useragent*="OS 9"] .plSel,
html[data-useragent*="OS 9"] .plSel:hover {
  background-color: #eee!important;
}
/* Chrome */
html[data-useragent*="Mozilla"] #audio .column #audiowrap audio {
  margin: 0;
  width: 100%;
}
html[data-useragent*="Mozilla"] #audiowrap {
  background-color: #2a2a2a;
}
html[data-useragent*="Mozilla"] a[id^="btn"] {
  background-color: #2a2a2a;
}
html[data-useragent*="Mozilla"] a[id^="btn"]:hover {
  background-color: #080808;
}
html[data-useragent*="Mozilla"] #plList li {
  background-color: #f3f3f3;
}
html[data-useragent*="Mozilla"] #plList li:hover {
  background-color: #e6e6e6 !important;
}
html[data-useragent*="Mozilla"] .plSel,
html[data-useragent*="Mozilla"] .plSel:hover {
  background-color: #e6e6e6!important;
}
html[data-useragent*="Mozilla"] #audio .column #npTitle {
  color: white !important;
}
html[data-useragent*="Chrome"] body {
  color: #5a5a5a;
}
html[data-useragent*="Chrome"] audio {
  margin-left: 9px;
  width: 677px;
}
html[data-useragent*="Chrome"] #audiowrap {
  background-color: #fafafa !important;
}
html[data-useragent*="Chrome"] a[id^="btn"] {
  background-color: #fafafa;
  color: #5a5a5a;
}
html[data-useragent*="Chrome"] a[id^="btn"]:hover {
  background-color: #eee;
}
html[data-useragent*="Chrome"] #plList li {
  background-color: #fafafa;
}
html[data-useragent*="Chrome"] #plList li:hover {
  background-color: #eee;
}
html[data-useragent*="Chrome"] .plSel,
html[data-useragent*="Chrome"] .plSel:hover {
  background-color: #eee!important;
}
html[data-useragent*="Chrome"] #audio .column #npTitle {
  color: #0F4D50 !important;
}
/* Chrome / Android / Tablet */
html[data-useragent*="Chrome"][data-useragent*="Android"] body {
  color: #373837;
}
html[data-useragent*="Chrome"][data-useragent*="Android"] audio {
  margin-left: 4px;
  width: 689px;
}
html[data-useragent*="Chrome"][data-useragent*="Android"] #audiowrap {
  background-color: #fafafa;
}
html[data-useragent*="Chrome"][data-useragent*="Android"] a[id^="btn"] {
  background-color: #fafafa;
  color: #373837;
}
html[data-useragent*="Chrome"][data-useragent*="Android"] a[id^="btn"]:hover {
  background-color: #eee;
}
html[data-useragent*="Chrome"][data-useragent*="Android"] #plList li {
  background-color: #fafafa;
}
html[data-useragent*="Chrome"][data-useragent*="Android"] #plList li:hover {
  background-color: #eee;
}
html[data-useragent*="Chrome"][data-useragent*="Android"] .plSel,
html[data-useragent*="Chrome"][data-useragent*="Android"] .plSel:hover {
  background-color: #eee!important;
}
/* Audio Player Media Queries
================================================== */
/* Tablet Portrait */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  audio {
    width: 526px;
  }
  html[data-useragent*="MSIE 9.0"] audio {
    width: 536px;
  }
  html[data-useragent*="MSIE 10.0"] audio {
    width: 543px;
  }
  html[data-useragent*="rv:11.0"] audio {
    width: 551px;
  }
  html[data-useragent*="OS 7"] audio {
    width: 546px;
  }
  html[data-useragent*="OS 8"] audio {
    width: 550px;
  }
  html[data-useragent*="OS 9"] audio {
    width: 550px;
  }
  html[data-useragent*="Chrome"] audio {
    width: 533px;
  }
  html[data-useragent*="Chrome"][data-useragent*="Android"] audio {
    margin-left: 4px;
    width: 545px;
  }
}
/* Mobile Landscape */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  audio {
    width: 390px;
  }
  html[data-useragent*="MSIE 9.0"] audio {
    width: 400px;
  }
  html[data-useragent*="MSIE 10.0"] audio {
    width: 407px;
  }
  html[data-useragent*="rv:11.0"] audio {
    width: 415px;
  }
  html[data-useragent*="OS 7"] audio {
    width: 410px;
  }
  html[data-useragent*="OS 8"] audio {
    width: 414px;
  }
  html[data-useragent*="OS 9"] audio {
    width: 414px;
  }
  html[data-useragent*="Chrome"] audio {
    width: 397px;
  }
  html[data-useragent*="Chrome"][data-useragent*="Mobile"] audio {
    margin-left: 4px;
    width: 410px;
  }
  #npTitle {
    width: 245px;
  }
}
/* Mobile Portrait */
@media only screen and (max-width: 479px) {
  audio {
    width: 270px;
  }
  html[data-useragent*="MSIE 9.0"] audio {
    width: 280px;
  }
  html[data-useragent*="MSIE 10.0"] audio {
    width: 287px;
  }
  html[data-useragent*="rv:11.0"] audio {
    width: 295px;
  }
  html[data-useragent*="OS 7"] audio {
    width: 290px;
  }
  html[data-useragent*="OS 8"] audio {
    width: 294px;
  }
  html[data-useragent*="OS 9"] audio {
    width: 294px;
  }
  html[data-useragent*="Chrome"] audio {
    width: 277px;
  }
  html[data-useragent*="Chrome"][data-useragent*="Mobile"] audio {
    margin-left: 4px;
    width: 290px;
  }
  #npTitle {
    width: 167px;
  }
}
#audio.detail #plList {
  display: none;
}
#browser_table thead tr th {
  font-size: 1em;
}
#pagination-container .pager li .btn {
  padding: 5px 14px;
}
.btn.toggle-btn.active {
  background-color: #359999;
}
#dcmeetingfields,
#eventfields {
  height: auto;
  transition: 0.3s ease-in opacity;
  overflow: hidden;
}
#dcmeetingfields.hide,
#eventfields.hide {
  height: 0;
  transition: 0.3s ease-in opacity;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #cc3e32;
}
#multimedia-browser ul.nav-tabs li a {
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  text-transform: uppercase;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #359999;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #cc3e32;
}
#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: #cc3e32;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #0f4d50;
}
#multimedia-browser .row .media-thumbnail a {
  color: #444444;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #359999;
}
body footer {
  position: relative;
  height: 130px;
  background-color: #0f4d50;
}
@media (max-width: 1200px) {
  body footer {
    height: auto;
  }
}
body footer .footer-ul.footernav {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
}
@media (max-width: 1200px) {
  body footer .footer-ul.footernav {
    position: relative;
  }
}
body footer .footer-ul.footernav li {
  padding: 30px 25px 20px;
  text-align: center;
}
@media (max-width: 767px) {
  body footer .footer-ul.footernav li {
    padding: 30px 14px 3px;
  }
}
@media (max-width: 479px) {
  body footer .footer-ul.footernav li {
    padding: 30px 8px 3px;
  }
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  body footer .footer-ul.footernav li a {
    font-size: 22px;
  }
}
@media (max-width: 540px) {
  body footer .footer-ul.footernav li a {
    font-size: 19px;
  }
}
@media (max-width: 430px) {
  body footer .footer-ul.footernav li a {
    font-size: 26px;
  }
}
body footer .social-media-list {
  padding: 35px 0px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  body footer .social-media-list {
    float: none !important;
  }
}
body footer .social-media-list a {
  color: white;
  padding: 10px 10px;
}
body footer .social-media-list a:hover {
  color: #cc3e32;
}
@media (max-width: 540px) {
  body footer .social-media-list a {
    font-size: 16px;
    padding: 10px 5px;
  }
}
body footer .social-media-list.visible-lg {
  display: block !important;
}
@media (max-width: 1200px) {
  body footer .social-media-list.visible-lg {
    display: none !important;
  }
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #0f4d50;
  padding: 35px 0px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  body footer .subfooternav {
    float: none !important;
  }
}
body footer .subfooternav a {
  color: white;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav li {
  padding-top: 0px;
  height: 17px;
  line-height: 13px;
}
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-left: 10px;
}
body footer .subfooternav.visible-lg {
  display: block !important;
}
@media (max-width: 1200px) {
  body footer .subfooternav.visible-lg {
    display: none !important;
  }
}
body .bottom-footer {
  text-align: center;
}
body .bottom-footer .social-media-list {
  display: inline-block;
  padding-top: 0;
}
body .bottom-footer .subfooternav {
  display: inline-block;
  margin-left: 20px;
  padding-top: 0;
}
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) #content {
  padding-bottom: 50px;
}
#flagForm #flag-options .head {
  background-color: #359999;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form a.active {
  background-color: #359999;
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
font-family:'Cervo Neue W00 Thin Neue';
font-family:'Cervo Neue W00 Thin Neue Itali';
font-family:'Cervo Neue W00 Light Neue';
font-family:'Cervo Neue W00 Light Neue It';
font-family:'Cervo Neue W00 Regular Neue';
font-family:'Cervo Neue W00 Regular Neue It';
font-family:'Cervo Neue W00 Bold Neue';
font-family:'Cervo Neue W00 Bold Neue Itali';
font-family:'Cervo Neue W00 Black Neue';
font-family:'Cervo Neue W00 Black Neue It';

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.bold {
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
}
.regular {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
}
.thin {
  font-family: 'Cervo Neue W00 Thin Neue', Trebuchet MS, sans-serif;
}
.helvetica {
  font-family: "Helvetica Neue", Helvetica, Arial, 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;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #359999;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #0f4d50;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
#press .date,
.blog-entry .date,
.video .date {
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
  text-transform: uppercase;
  color: #444444;
}
h2.title {
  margin-top: 7px;
  font-family: 'Cervo Neue W00 Regular Neue', Trebuchet MS, sans-serif;
}
h2.title a {
  color: #0f4d50;
}
h2.title a:hover {
  color: #359999;
}
/*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: #0f4d50;
  color: white;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  font-size: 20px;
  padding: 20px 30px;
}
.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: #359999;
  color: white;
}
.prevarticle,
.nextarticle {
  padding: 10px 16px;
}
#actions .btn-xs {
  font-size: 13px !important;
}
/*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;
}
.fancybox-slide--iframe .fancybox-content {
  max-width: 630px;
  max-height: 430px;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 30px solid #cc3e32;
}
body.option1 {
  padding: 20px;
  background-color: #fff;
  position: relative;
}
.option1 .body {
  background-color: #fff;
}
.option1 .body .title .imglogo {
  background-image: url('/themes/tomudall/images/redlogo.png');
  background-size: cover;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  position: absolute;
  top: 9px;
  left: 6px;
}
.option1 .body .title h1 {
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  text-transform: uppercase;
  color: #cc3e32;
  margin-top: 8px;
  margin-bottom: 20px;
  margin-left: 2em;
}
.option1 .body form {
  margin-top: 40px;
}
.option1 .body form input[type="text"] {
  padding: 13px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 14px;
  background-color: #f1f1f1;
  border: none;
}
.option1 .body form input#firstname {
  width: 104%;
}
.option1 .body form input#lastname {
  width: 104%;
  margin-left: -11px;
}
.option1 .body form input#zip {
  width: 104%;
  margin-left: -11px;
}
.option1 .body form input#county {
  width: 104%;
}
.option1 .body form input[type="submit"] {
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  font-size: 20px;
  margin-top: 10px;
  padding: 10px;
  color: #cc3e32;
  background-color: #fbd000;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
}
.option1 .body .loaded h1 {
  text-align: center;
  font-family: 'Cervo Neue W00 Bold Neue', Trebuchet MS, sans-serif;
  margin-top: 16%;
  text-transform: uppercase;
}
.fc-tbx {
  padding: 9px 14px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.fc-tbx .arrow,
.fc-tbx .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.fc-tbx .arrow {
  border-width: 11px;
}
.fc-tbx .arrow:after {
  content: "";
  border-width: 10px;
}
.fc-tbx .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.fc-tbx .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.fc-tbx ul.error-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-tbx ul.error-list li p {
  margin: 0;
  font-size: 18px;
  color: #464646;
}
