/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb {
  height: 25px;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #4e5d97;
}
#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: #e66b25;
}
#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: #944111;
}
body #header {
  height: 100px;
  width: 100%;
  z-index: 2;
  background-color: transparent;
  border-bottom: 2px solid #cfcfd2;
}
@media (max-width: 550px) {
  body #header {
    height: 136px;
  }
}
body #header .espanol {
  border: 1px solid #e66b25;
  padding: 5px 12px;
  text-transform: uppercase;
  display: inline-block;
  color: #e66b25;
  font-family: 'DINNextW01-CondensedBol';
  font-size: 1em;
  position: relative;
  bottom: 22px;
  padding-top: 7px;
  transition: 0.2s ease-in all;
}
@media (max-width: 1200px) {
  body #header .espanol {
    top: -14px;
    position: relative;
  }
}
@media (max-width: 550px) {
  body #header .espanol {
    display: none;
  }
}
body #header .espanol:hover {
  background-color: #e66b25;
  color: white;
  border-color: #e66b25;
}
body #header .right {
  float: right;
  margin-top: 10px;
}
@media (max-width: 1200px) {
  body #header .right {
    margin-top: 15px;
  }
}
body #header a.logo-hold {
  margin-top: 10px;
  width: 360px;
  display: inline-block;
}
@media (max-width: 1200px) {
  body #header a.logo-hold {
    width: 280px;
    margin-top: 23px;
  }
}
@media (max-width: 400px) {
  body #header a.logo-hold {
    width: 260px;
  }
}
@media (max-width: 370px) {
  body #header a.logo-hold {
    width: 208px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
body #header .nav-hold {
  display: inline-block;
}
@media (max-width: 430px) {
  body #header .nav-hold {
    padding-right: 0 !important;
  }
}
@media (max-width: 430px) {
  body #header .nav-hold .togglemenu {
    margin-left: 3px !important;
  }
}
.espanol-mobile {
  display: none;
}
@media (max-width: 550px) {
  .espanol-mobile {
    display: inline-block;
    width: 100%;
    background-color: #e66b25;
    color: white;
    text-align: center;
    padding: 4px;
    font-family: 'DINNextW01-CondensedBol';
  }
}
.alert {
  background-color: #4e5d97;
  background: #798ee1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#798ee1', endColorstr='#4e5d97', GradientType=0);
  /* IE6-9 */
  color: white;
  border-radius: 0;
  font-size: 25px;
}
.alert a {
  color: white;
  font-family: 'DINNextW01-CondensedMed';
  text-transform: uppercase;
}
.alert a:hover {
  color: white;
  text-decoration: underline;
}
body#home .espanol-mobile {
  background-color: #4e5d97;
}
body#home #header {
  position: absolute;
  border: 0px;
}
body#home #header .espanol {
  border: 1px solid white;
  color: white;
}
body#home #header .logo-hold {
  width: 350px;
  height: 252px;
  position: absolute;
  display: block;
  margin-top: 20px;
}
@media (max-width: 570px) {
  body#home #header .logo-hold {
    width: 200px;
    margin-top: -28px;
    height: auto;
  }
}
body#home #header .logo-hold image,
body#home #header .logo-hold svg {
  width: 100%;
}
@media (max-width: 570px) {
  body#home #header .logo-hold img {
    margin-top: 45px;
  }
}
body#home #header.es .right {
  margin-top: 18px;
}
body#home #header.es .right .espanol {
  top: -29px;
}
@media (max-width: 1330px) {
  body#home #header.es .right .espanol {
    top: -15px;
  }
}
@media (max-width: 1200px) {
  body#home #header.es .right .espanol {
    top: -25px;
  }
}
@media (max-width: 991px) {
  body#home #header.es .right .espanol {
    top: -17px;
  }
}
@media (max-width: 550px) {
  body#home #header .espanol {
    display: none;
  }
}
@media (max-width: 430px) {
  body#home #header .espanol {
    display: block;
    margin-top: 12px;
  }
}
@media (max-width: 350px) {
  body#home #header .espanol {
    font-size: 14px;
    padding: 7px 7px 3px;
  }
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
@media (max-width: 1200px) {
  body .navbar .nav-pills {
    font-size: 0.8em;
  }
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  padding: 0 15px;
  max-width: 304px;
  line-height: 25px;
  display: table-cell;
  vertical-align: middle;
  /*border-bottom: 0px solid !important;*/
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li {
    padding: 0 11px;
  }
}
body .navbar .nav-pills > li a {
  color: #546171;
  font-family: 'DINNextW01-CondensedMed';
  font-size: 1.8em;
  text-transform: uppercase;
  padding: 0;
  position: relative;
  text-decoration: none;
}
@media (max-width: 1330px) {
  body .navbar .nav-pills > li a {
    font-size: 1.3em;
  }
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li a {
    font-size: 1.7em;
  }
}
body .navbar .nav-pills > li a:hover {
  color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu {
  display: none !important;
  background-color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #000;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #4e5d97;
  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: #e66b25;
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
@media (max-width: 995px) {
  body .navbar .togglemenu {
    color: #546171;
    position: relative;
    top: -9px;
    padding-top: 0px;
  }
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #546171;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
@media (max-width: 995px) {
  body .navbar .srchbuttonmodal {
    padding-top: 20px;
  }
}
body .navbar .srchbuttonmodal:hover {
  color: #e66b25;
}
body .navbar .srchbutton {
  color: #fff;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
#header.en .nav-hold.right-slide-search,
#header.en .nav-hold.right-search-modal {
  padding-top: 28px !important;
}
#header.en .nav-hold.right-search-modal .srchbuttonmodal {
  top: -7px !important;
}
#header.en .espanol {
  top: -11px;
  bottom: auto;
}
@media (max-width: 991px) {
  #header.en .togglemenu {
    top: -6px;
  }
}
#header.en .right {
  margin-top: 14px;
}
@media (max-width: 991px) {
  #header.en .right {
    margin-top: -3px;
  }
}
#header.es .navbar .nav-pills > li {
  max-width: 210px;
}
@media (max-width: 1200px) {
  #header.es .navbar .nav-pills > li {
    max-width: 150px;
  }
}
#header.es .nav-hold.right-search-modal {
  padding-top: 12px;
}
#header.es .nav-hold.right-search-modal .srchbuttonmodal {
  top: -21px !important;
}
@media (max-width: 1330px) {
  #header.es .nav-hold.right-search-modal .srchbuttonmodal {
    top: -10px !important;
  }
}
@media (max-width: 1200px) {
  #header.es .nav-hold.right-search-modal .srchbuttonmodal {
    top: -25px !important;
  }
}
@media (max-width: 991px) {
  #header.es .nav-hold.right-search-modal .srchbuttonmodal {
    top: -10px !important;
  }
}
#header.es .espanol {
  top: -20px;
}
@media (max-width: 991px) {
  #header.es .espanol {
    top: -14px;
  }
}
body#home .navbar .nav-pills {
  top: 8px;
}
body#home .navbar .nav-pills > li a {
  color: #fff;
  padding-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
body#home .navbar .nav-pills > li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #e66b25;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
body#home .navbar .nav-pills > li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scale(1);
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body#home .navbar .srchbuttonmodal {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
#NavMobileModal .fade.in {
  background: #798ee1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#798ee1', endColorstr='#4e5d97', GradientType=0);
  /* IE6-9 */
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  margin-right: 30px;
  font-size: 70px;
  opacity: 1;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'DINNextW01-CondensedMed';
  font-size: 45px;
  text-transform: uppercase;
}
#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;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
  font-family: 'DIN Next W01 Regular';
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 20px 20px 0;
}
#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: #4e5d97;
  color: #fff;
  border-bottom: 3px solid #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #4e5d97;
  color: #fff;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: 1.2em;
  top: -18px;
  right: 10px;
}
@media (max-width: 1200px) {
  #header .nav-hold.right-search-modal .srchbuttonmodal {
    font-size: 1em;
    top: -13px;
  }
}
@media (max-width: 991px) {
  #header .nav-hold.right-search-modal .srchbuttonmodal {
    font-size: 1.1em;
    top: -11px;
  }
}
#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 .banner {
  background-image: url('/themes/cortezmasto/images/mountains.jpg');
  width: 100%;
  height: 615px;
  top: 0;
  background-position: center;
  background-size: cover;
  z-index: 1;
  position: relative;
}
@media (max-width: 479px) {
  body#home .banner {
    height: 525px;
  }
}
body#home .banner .container {
  position: relative;
  height: 100%;
}
body#home .banner a {
  position: absolute;
  bottom: 0;
  color: white;
  text-transform: uppercase;
  background: #ff8700;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ff8700 0%, #e66b25 50%, #ab2800 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ff8700 0%, #e66b25 50%, #ab2800 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ff8700 0%, #e66b25 50%, #ab2800 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8700', endColorstr='#ab2800', GradientType=0);
  /* IE6-9 */
  right: 15px;
  text-align: center;
  line-height: 20px;
  padding: 30px 25px 15px;
  transition: 0.3s all ease-in-out;
}
body#home .banner a:hover {
  color: #fff;
  padding-bottom: 30px;
}
body#home .banner .help {
  font-size: 46px;
  font-family: 'DINNextW01-CondensedBol';
}
body#home .banner .click {
  font-size: 24px;
  font-family: 'DINNextW01-CondensedReg';
}
.newslink {
  font-family: 'DINNextW01-CondensedMed';
  font-size: 36px;
  color: #546171;
  padding-bottom: 28px;
  display: inline-block;
  text-align: center;
}
.newslink:hover {
  color: #4e5d97;
}
.officelocations {
  position: relative;
  background-image: url('/themes/cortezmasto/images/OfficeImage.jpg');
  background-position: center 37%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f1edcb;
  height: 675px;
}
@media (max-width: 2072px) {
  .officelocations {
    background-position: center 40%;
  }
}
@media (max-width: 1672px) {
  .officelocations {
    background-position: center 41%;
  }
}
@media (max-width: 1275px) {
  .officelocations {
    background-position: center 42%;
  }
}
@media (max-width: 1108px) {
  .officelocations {
    background-position: center 49%;
  }
}
@media (max-width: 991px) {
  .officelocations {
    background-position: center 49%;
  }
}
@media (max-width: 684px) {
  .officelocations {
    background-position: center -154px;
  }
}
@media (max-width: 684px) {
  .officelocations {
    height: 995px;
  }
}
@media (max-width: 479px) {
  .officelocations {
    height: 885px;
  }
}
@media (max-width: 684px) {
  .officelocations .col-xs-6 {
    width: 100%;
  }
}
.locations {
  position: absolute;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.officelocations h1 {
  font-family: 'DINNextW01-CondensedMed';
  text-align: center;
  color: #fff;
  font-size: 36px;
  margin: 50px 0 200px 0;
}
@media (max-width: 330px) {
  .officelocations h1 {
    margin: 50px 0 150px 0;
  }
}
.address {
  color: #546171;
  font-family: 'Helvetica Neue LT W01_41488878';
  text-align: center;
  line-height: 1.8em;
  margin-bottom: 35px;
}
@media (max-width: 479px) {
  .address {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.vegas {
  font-size: 22px;
  font-family: 'DINNextW01-CondensedMed';
  padding-bottom: 5px;
}
.featured-content {
  background-color: #e1e9f2;
  padding: 40px 80px;
  text-align: center;
}
@media (max-width: 479px) {
  .featured-content {
    padding: 40px 0px;
  }
}
.featured-content h2 {
  margin-top: 0;
}
.featured-content p {
  margin-bottom: 0;
}
.featured-content a {
  display: inline-block;
  margin-top: 15px;
  font-family: 'DINNextW01-CondensedMed';
  width: 100%;
}
.dc {
  font-size: 22px;
  font-family: 'DINNextW01-CondensedMed';
  padding-bottom: 5px;
}
.reno {
  font-size: 22px;
  font-family: 'DINNextW01-CondensedMed';
  padding-bottom: 5px;
}
.mobile {
  background-color: #fff;
  border: 1px solid #e66b25;
  width: 313px;
  height: auto;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
}
@media (max-width: 370px) {
  .mobile {
    width: 100%;
  }
}
.mobile .address {
  margin-bottom: 0px;
}
.mobileoffice {
  font-family: 'DINNextW01-CondensedMed';
  color: #e66b25;
  font-size: 22px;
}
.comingsoon {
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 26px;
  font-style: italic;
  color: #e66b25;
}
.facebookIcon,
.facebook-icon {
  color: #fff;
  font-size: 1em;
  padding: 10px;
  border-radius: 50%;
  background-color: #537bbd;
  margin: 0 5px;
  width: 40px;
  height: 40px;
}
.facebookIcon:hover {
  color: #8a939f;
  font-size: 1.01em;
}
.facebook {
  font-family: 'DINNextW01-CondensedMed';
  font-size: 36px;
  color: #546171;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: 6px;
  padding: 0 0 0 5px;
}
@media (max-width: 767px) {
  .facebook {
    text-align: center;
  }
}
.facebook:hover {
  color: #537bbd;
}
.socialmedia {
  max-width: 985px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .socialmedia {
    text-align: center;
  }
}
.timeline-Widget {
  border: 1px solid #e9ebee;
}
.fa-facebook-f:before,
.fa-facebook:before {
  position: relative;
  top: 1px;
}
.fa-twitter-f:before,
.fa-twitter:before {
  position: relative;
  top: 1px;
}
.fa-youtube-play-f:before,
.fa-youtube-play:before {
  position: relative;
  top: 1px;
}
.youtube-icon {
  color: #fff;
  font-size: 1em;
  padding: 10px;
  border-radius: 50%;
  background-color: #e9654b;
  margin: 0 5px;
  width: 40px;
  height: 40px;
}
.youtube-icon:hover {
  color: #8a939f;
  font-size: 1.01em;
}
.twitter-icon {
  color: #fff;
  font-size: 1em;
  padding: 10px;
  border-radius: 50%;
  background-color: #78cdf0;
  margin: 0 5px;
  width: 40px;
  height: 40px;
}
.twitter-icon:hover {
  color: #8a939f;
  font-size: 1.01em;
}
.twitter {
  font-family: 'DINNextW01-CondensedMed';
  font-size: 36px;
  color: #546171;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: 6px;
  padding: 0 0 0 5px;
}
.twitter:hover {
  color: #78cdf0;
}
.instagram-icon {
  background-color: #c32aa3;
  color: #fff;
  font-size: 1em;
  padding: 10px;
  border-radius: 50%;
  margin: 0 5px;
  width: 40px;
  height: 40px;
}
.instagram-icon:hover {
  color: #8a939f;
  font-size: 1.01em;
}
.medium-icon {
  background-color: #12100e;
  color: #fff;
  font-size: 1em;
  padding: 10px;
  border-radius: 50%;
  margin: 0 5px;
  width: 40px;
  height: 40px;
}
.medium-icon:hover {
  color: #8a939f;
  font-size: 1.01em;
}
.facebookcontainer {
  width: 465px;
}
@media (max-width: 991px) {
  .facebookcontainer {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
  }
}
@media (max-width: 550px) {
  .facebookcontainer {
    width: auto;
  }
}
.twittercontainer {
  width: 465px;
  margin-bottom: 70px;
  border: 1px solid #e9ebee;
}
@media (max-width: 991px) {
  .twittercontainer {
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  .twittercontainer {
    width: auto;
  }
}
.centered {
  margin: 0 auto;
  text-align: center;
  padding: 68px 0 28px 0;
}
.centered-bottom {
  margin: 0 auto;
  text-align: center;
  padding: 68px 0 0 0;
}
.presscontent {
  font-family: 'Helvetica Neue LT W01_71488914';
  color: #4e5d97;
  font-size: 22px;
  padding-bottom: 48px;
  max-width: 635px;
  display: inline-block;
}
@media (max-width: 608px) {
  .presscontent {
    margin-right: 20px;
    font-size: 1em;
  }
}
@media (max-width: 600px) {
  .presscontent {
    margin-right: 20px;
  }
}
@media (max-width: 550px) {
  .presscontent {
    margin-right: 20px;
    text-align: middle;
  }
}
.presscontent:hover {
  color: #848cab;
}
.date {
  font-family: 'Helvetica Neue LT W01_41488878';
  font-size: 16px;
}
body#home #press {
  background-color: #f5f8fb;
  text-align: center;
  padding-top: 68px;
}
body#home #press .wrap {
  padding: 10px;
  text-align: center;
  display: block;
  vertical-align: middle;
  max-width: 635px;
  width: 100%;
  margin: 0 auto;
}
body#home #press .wrap .press-title {
  color: #fff;
  font-family: 'DINNextW01-CondensedMed';
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.clearfix {
  clear: both;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
body.no-breadcrumbs #breadcrumb a {
  display: none;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.daca-ticker {
  background-color: #e66b25;
  color: white;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  display: inline-block;
  padding: 30px 15px;
}
.daca-ticker h2 {
  font-size: 50px;
  color: white;
  min-width: 330px;
}
@media (max-width: 1356px) {
  .daca-ticker h2 {
    font-size: 40px;
    min-width: 280px;
  }
}
@media (max-width: 1088px) {
  .daca-ticker h2 {
    font-size: 36px;
  }
}
@media (max-width: 1050px) {
  .daca-ticker h2 {
    font-size: 31px;
    min-width: 220px;
  }
}
@media (max-width: 350px) {
  .daca-ticker h2 {
    font-size: 30px;
  }
}
.daca-ticker h2 .not-loaded {
  color: #e66b25;
}
.daca-ticker h2 .digit {
  background-color: #2b3035;
  color: white;
  margin-left: 5px;
  border-radius: 5px;
  padding: 8px 15px 3px;
}
@media (max-width: 1050px) {
  .daca-ticker h2 .digit {
    padding: 8px 10px 3px;
  }
}
.daca-ticker h2 .comma {
  margin-left: 7px;
}
.daca-ticker h3 {
  color: white;
  font-size: 31px;
  font-family: 'DINNextW01-CondensedMed';
}
@media (max-width: 1241px) {
  .daca-ticker h3 {
    font-size: 24px;
  }
}
@media (max-width: 985px) {
  .daca-ticker h3 {
    font-size: 26px;
  }
}
@media (max-width: 640px) {
  .daca-ticker h3 {
    font-size: 25px;
  }
}
@media (max-width: 470px) {
  .daca-ticker h3 {
    font-size: 20px;
  }
}
.daca-ticker.horizontal {
  padding-bottom: 20px;
}
.daca-ticker.horizontal h2,
.daca-ticker.horizontal h3 {
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
}
@media (max-width: 935px) {
  .daca-ticker.horizontal h2,
  .daca-ticker.horizontal h3 {
    display: block;
  }
}
.daca-ticker.horizontal h3 {
  margin-left: 23px;
  text-align: left;
  margin-top: 0px;
  margin-bottom: 0px;
  vertical-align: middle;
}
@media (max-width: 1050px) {
  .daca-ticker.horizontal h3 {
    margin-bottom: 0px;
    margin-top: -5px;
  }
}
@media (max-width: 985px) {
  .daca-ticker.horizontal h3 {
    margin-top: 15px;
  }
}
@media (max-width: 935px) {
  .daca-ticker.horizontal h3 {
    margin-top: 12px;
    text-align: center;
  }
}
.daca-ticker.horizontal .hashtag {
  font-family: 'DINNextW01-CondensedBol';
  font-size: 50px;
  margin-left: 26px;
  position: relative;
  top: 3px;
  color: #2b3035;
  border-left: 2px solid white;
  padding-left: 21px;
  padding-bottom: 0px;
  line-height: 58px;
  display: inline-block;
}
@media (max-width: 1386px) {
  .daca-ticker.horizontal .hashtag {
    font-size: 40px;
    line-height: 50px;
    top: 1px;
  }
}
@media (max-width: 1241px) {
  .daca-ticker.horizontal .hashtag {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (max-width: 985px) {
  .daca-ticker.horizontal .hashtag {
    font-size: 24px;
    line-height: 35px;
    padding-left: 15px;
    margin-left: 10px;
  }
}
@media (max-width: 935px) {
  .daca-ticker.horizontal .hashtag {
    border-left: 0px;
    padding: 0px;
  }
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
#breadcrumb a {
  color: #bcbfc2;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #4e5d97;
}
#main_column form .btn#side-search-btn {
  margin-top: 0;
  font-size: 14px;
  padding: 6px 12px;
  width: 100%;
}
#search-thomas-pod {
  margin-top: 90px;
}
#search-thomas-pod h1 {
  font-size: 24px;
}
aside.list h1 {
  font-size: 24px;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin: 0;
  margin-top: 92px;
}
#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;
  padding: 0;
}
#filterbuttons a {
  background-color: transparent;
  color: #4e5d97;
  padding-left: 0px;
  padding-right: 20px;
  font-size: 18px;
  background: none;
}
#filterbuttons a:hover {
  color: #2b3454;
}
body.press-detail #content,
body#issue #content {
  background: #f5f8fb;
  margin-bottom: -70px;
}
body.press-detail #content #main_container,
body#issue #content #main_container {
  background-color: white;
  padding: 0 30px;
  max-width: 930px;
  padding-bottom: 50px;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 150px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  color: white;
  line-height: 38px;
  background-color: #4e5d97;
  background: #798ee1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#798ee1', endColorstr='#4e5d97', GradientType=0);
  /* IE6-9 */
  text-transform: uppercase;
  font-size: 2em;
  font-family: 'DINNextW01-CondensedMed';
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background: none;
  background-color: #4e5d97;
}
#typenav li a {
  color: #000;
}
#typenav li.active a {
  color: white;
  background-color: #e66b25;
}
#typenav.affix {
  top: 0;
}
body#about #content {
  background-color: #e6e8ea;
}
body#about footer {
  margin-top: 0 !important;
}
body#about .main_page_title {
  font-family: 'DINNextW01-CondensedMed';
  text-transform: uppercase;
  color: #546171;
  border-bottom: 1px solid #546171;
}
body#about .shape {
  position: relative;
  top: -50px;
  shape-outside: url(/themes/cortezmasto/images/catherine.png);
  shape-margin: 26px;
  max-width: 450px;
}
@media (max-width: 767px) {
  body#about .shape {
    shape-margin: 66px;
  }
}
@media (max-width: 550px) {
  body#about .shape {
    shape-margin: 110px;
  }
}
@media (max-width: 400px) {
  body#about .shape {
    shape-margin: 89px;
    top: 0px;
  }
}
body#about .shape img {
  border-bottom: 1px solid #546171;
}
@media (max-width: 1190px) {
  body#about .shape img {
    padding-left: 10px;
  }
}
@media (max-width: 672px) {
  body#about .shape img {
    padding-left: 25px;
    margin-left: 15px;
    max-width: 300px;
  }
}
@media (max-width: 550px) {
  body#about .shape img {
    border: 0px;
    padding-left: 25px;
    margin-left: 15px;
    max-width: 200px;
    shape-margin: 50px;
  }
}
@media (max-width: 550px) {
  body#about .shape figcaption {
    margin-left: 25px;
    padding-left: 10px;
    max-width: 150px;
    font-size: 0.7em;
  }
}
body#about .shape .download-link {
  text-transform: uppercase;
  color: #546171;
  font-family: 'DINNextW01-CondensedMed';
  font-size: 24px;
  margin-top: 10px;
  line-height: 22px;
}
body#about .shape .download-link span {
  color: #e66b25;
}
body#about #sam-main {
  font-family: 'Helvetica Neue LT W01_55 Roman';
  color: #546171;
}
.about-btn {
  height: 200px;
  width: 100%;
  color: white;
  text-align: center;
  margin-bottom: 30px;
  background-size: cover;
}
.about-btn span {
  background-color: rgba(0, 0, 0, 0.6);
  font-family: 'DINNextW01-CondensedMed';
  font-size: 46px;
  text-transform: uppercase;
}
.about-btn#priorities {
  background-image: url(/themes/cortezmasto/images/priorities.jpg);
}
.about-btn#committees {
  background-image: url(/themes/cortezmasto/images/committees.jpg);
}
.about-btn#legislation {
  background-image: url(/themes/cortezmasto/images/legislation.jpg);
}
.about-btn#votes {
  background-image: url(/themes/cortezmasto/images/votes.jpg);
}
.about-btn#about-catherine {
  background-image: url(/themes/cortezmasto/images/about-button.jpeg);
}
.about-btn:hover {
  color: white;
}
.about-btn:hover span {
  background: #798ee1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#798ee1', endColorstr='#4e5d97', GradientType=0);
  /* IE6-9 */
}
@media (max-width: 1330px) and (min-width: 1200px) {
  .hidden-lgg {
    display: none !important;
  }
}
@media (max-width: 5000px) and (min-width: 1330px) {
  .hidden-xl {
    display: none !important;
  }
}
@media (max-width: 479px) {
  .hidden-xxs {
    display: none;
  }
}
.visible-xxs {
  display: none;
}
@media (max-width: 479px) {
  .visible-xxs {
    display: block;
  }
}
.newsroom_landing .newsbody {
  background-color: white;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .newsroom_landing .newsbody {
    padding-bottom: 10px;
  }
}
.newsroom_landing #main_container {
  background-color: #f6f7f8;
  overflow-x: hidden;
}
.newsroom_landing #breadcrumb {
  display: none;
}
.newsroom_landing #press,
.newsroom_landing #typenav {
  padding-top: 50px;
}
.newsroom_landing #content {
  padding-bottom: 0px !important;
}
.newsroom_landing .centered {
  text-align: left;
}
.newsroom_landing .centered span {
  text-align: center;
}
.newsroom_landing .socialmedia {
  margin-bottom: 50px;
}
.newsroom_landing .facebookcontainer {
  width: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .newsroom_landing .facebookcontainer {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .newsroom_landing .facebookcontainer {
    text-align: center;
  }
}
.newsroom_landing .twittercontainer {
  padding: 0;
  width: auto;
}
@media (max-width: 991px) {
  .newsroom_landing .twittercontainer {
    width: 442px;
  }
}
@media (max-width: 767px) {
  .newsroom_landing .twittercontainer {
    margin: 0 auto;
  }
}
@media (max-width: 497px) {
  .newsroom_landing .twittercontainer {
    width: auto;
  }
}
.newsroom_landing .twittercontainer a.twitter-timeline {
  color: #e66b25;
}
.newsroom_landing #typenav {
  width: 100%;
}
.newsroom_landing #typenav li a {
  color: #546171;
  font-family: 'DINNextW01-CondensedMed';
  font-size: 30px;
}
@media (max-width: 1200px) {
  .newsroom_landing #typenav li a {
    font-size: 28px;
    padding: 11px 15px;
  }
}
@media (max-width: 991px) {
  .newsroom_landing #typenav li a {
    font-size: 22px;
    padding: 16px 0px 16px 15px;
  }
}
.newsroom_landing #typenav li.active:before {
  width: 0;
  height: 0;
  border-top: 31px solid transparent;
  border-bottom: 31px solid transparent;
  border-right: 20px solid #e66b25;
  position: absolute;
  content: "";
  display: inline-block;
  left: -20px;
}
.newsroom_landing #typenav li.active a {
  color: white;
  background-color: #e66b25;
  font-family: 'DINNextW01-CondensedBol';
  font-size: 30px;
}
@media (max-width: 1200px) {
  .newsroom_landing #typenav li.active a {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .newsroom_landing #typenav li.active a {
    font-size: 22px;
  }
}
.newsroom_landing #typenav.affix {
  top: 0;
  width: calc(1300px*0.25);
  position: fixed !important;
}
@media (max-width: 1200px) {
  .newsroom_landing #typenav.affix {
    width: calc(970px*0.25);
  }
}
@media (max-width: 991px) {
  .newsroom_landing #typenav.affix {
    width: calc(750px*0.25);
  }
}
.newsroom_landing .newsHeader {
  font-family: 'DINNextW01-CondensedMed';
  color: #546171;
  margin-bottom: 40px;
}
.newsroom_landing .newsHeader a {
  color: #546171;
}
.newsroom_landing .newsHeader a:hover {
  color: #e66b25;
}
.newsroom_landing .date {
  margin-top: 10px;
  display: inline-block;
}
.newsroom_landing #videos .title {
  margin-bottom: 60px;
}
.newsroom_landing .title {
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 22px;
  line-height: 35px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .newsroom_landing .title {
    font-size: 19px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .newsroom_landing .title {
    font-size: 22px;
    line-height: 35px;
  }
}
.newsroom_landing .noPadding {
  padding-right: 0px;
  padding-left: 0px;
  position: relative;
}
.newsroom_landing .main_page_title {
  display: none;
}
@media (max-width: 991px) {
  .newsroom_landing .videoiframe {
    height: 300px;
  }
}
#filtermodal .modal-backdrop.in {
  background-color: #4e5d97;
}
#legislation #asides {
  margin-top: 40px;
}
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(0, 0, 0, 0.41);
}
body#priorities .ih-item.circle .img .filter h2 {
  margin: 140px auto;
  text-align: center;
  position: absolute;
  display: block;
  padding: 5px;
  width: 100%;
  font-family: 'DINNextW01-CondensedMed';
  color: #fff;
  font-size: 48px;
  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: 'DINNextW01-CondensedMed';
}
body#priorities .ih-item.circle .info .info-back {
  border-radius: 0px;
  background: #4e5d97;
  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;
  }
}
.connectButton {
  margin-bottom: 20px;
}
.connectButton a {
  display: table-cell;
  vertical-align: middle;
  color: white;
  background-color: #4e5d97;
  background: #798ee1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#798ee1', endColorstr='#4e5d97', GradientType=0);
  /* IE6-9 */
  text-transform: uppercase;
  font-size: 2em;
  font-family: 'DINNextW01-CondensedMed';
  width: 100%;
  display: table;
  height: 100px;
}
.connectButton a .media-heading {
  top: 2px;
}
.connectButton a:hover {
  background: none;
  background-color: #4e5d97 !important;
}
.connectButton a h1 {
  display: table-cell;
  vertical-align: middle;
}
body#issue .main_page_title {
  font-family: 'DINNextW01-CondensedMed';
}
body#issue h2,
body#issue .latestheader {
  font-family: 'DINNextW01-CondensedMed';
  color: #546171;
  text-transform: uppercase;
  margin-bottom: 40px;
}
body#issue #ipsum,
body#issue p {
  line-height: 30px;
  font-size: 1.1em;
}
body#issue .one_column .breakout #issueFeed > li {
  border-bottom: none;
  padding-bottom: 15px;
  margin-bottom: 5px;
}
body#issue .one_column .breakout {
  border-top: 2px solid #e66b25;
  text-align: center;
}
body#issue .one_column .breakout #issueFeed > li .imghold img {
  left: 0;
}
body#multimedia {
  overflow-x: hidden;
}
#newscontent #photos .title {
  font-family: 'Helvetica Neue LT W01_71488914';
  color: #546171;
}
#newscontent #photos .title a {
  font-family: 'Helvetica Neue LT W01_71488914';
  color: #8a939f;
}
#sam-main p {
  font-size: 1.1em;
  line-height: 1.7em;
  font-family: 'Helvetica Neue LT W01_41488878';
}
#sam-main .btn-lrg {
  font-style: normal;
  font-weight: bold;
  font-size: 1.3em;
}
#sam-main .btn-lrg:hover {
  background-color: #546171;
}
#dcEventSpeaking {
  white-space: normal;
}
@media (max-width: 1200px) {
  #dcScheduleMeeting {
    padding: 35px 45px 35px 45px !important;
  }
}
@media (max-width: 991px) {
  #dcScheduleMeeting {
    padding: 20px 45px 20px 45px !important;
  }
}
#main_column form .btn.toggle-btn {
  font-family: 'DINNextW01-CondensedMed';
  text-transform: uppercase;
  padding-top: 30px !important;
  background-color: #4e5d97;
  height: 100px;
  font-size: 29px !important;
  background: #798ee1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#798ee1', endColorstr='#4e5d97', GradientType=0);
  /* IE6-9 */
}
#main_column form .btn.toggle-btn:hover {
  background: #4e5d97 !important;
}
@media (max-width: 995px) {
  body#home .togglemenu {
    color: white;
  }
}
.btn-block.active,
.btn-block.hover {
  background: #29376e !important;
}
.tour-btn .table-display {
  background-color: #4e5d97;
  color: white;
  text-align: center;
}
.tour-btn:hover .table-display {
  background-color: #2b3454;
}
@media (max-width: 400px) {
  width: 260px;
}
@media (max-width: 400px) {
  width: 260px;
}
@media (min-width: 769px) and (max-width: 999px) {
  .flownLabel {
    margin-left: 10px;
  }
}
.submitFlag {
  font-family: 'DINNextW01-CondensedMed';
  font-size: 2em !important;
  margin-bottom: 25px;
  max-width: 250px;
}
.flagPaymentChoice {
  font-family: 'DINNextW01-CondensedMed';
  font-size: 28px;
  color: white;
  line-height: 38px;
  background: transparent;
  display: table-cell;
  background-color: #4e5d97;
  background: #798ee1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#798ee1', endColorstr='#4e5d97', GradientType=0);
  /* IE6-9 */
}
.flagPaymentChoice:hover {
  background: none;
  background-color: #4e5d97;
}
.payChoiceRow {
  margin-bottom: 50px;
}
.payChoiceRow .pull-down {
  display: table;
  width: 100%;
  height: 100px;
  font-family: 'DINNextW01-CondensedMed';
}
body#guestbook {
  background-image: url('/themes/cortezmasto/images/guestbookbackground.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center center;
  color: #fff;
  font-size: 16px;
}
body#guestbook .alert {
  display: none;
}
body#guestbook #header {
  display: none;
}
body#guestbook #content {
  padding-bottom: 65px !important;
}
body#guestbook #content .guestbooklogo {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
body#guestbook #content .guestbooklogo img {
  width: 100%;
}
body#guestbook #content #main_container {
  max-width: 900px;
  width: 100%;
}
body#guestbook #content #main_container .main_page_title {
  margin: 0px 0px 10px 0px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
body#guestbook #content #main_container .goodbyetext {
  text-align: center;
  margin-top: 1em;
  text-transform: uppercase;
  font-size: 180px;
}
body#guestbook #content #main_container #sam-main p {
  color: #fff;
}
body#guestbook #content #main_container #sam-main .amend-form-container form fieldset {
  margin: 20px 0 0 0;
}
body#guestbook #content #main_container #sam-main .amend-form-container form fieldset legend {
  display: none;
}
body#guestbook #content #main_container #sam-main .amend-form-container form .btn {
  padding: 5px !important;
  margin-top: 2em;
  width: 100%;
}
body#guestbook #content #main_container #sam-main .amend-form-container form .row + .control-group {
  margin-top: 10px;
}
body#guestbook #content #main_container #sam-main .amend-form-container form .row + .row {
  margin-top: 10px;
}
body#guestbook #content #main_container #sam-main .amend-form-container form textarea {
  min-height: 90px !important;
}
body#guestbook #content #main_container #sam-main .amend-form-container .finishbutton {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
body#guestbook #content #main_container #sam-main .amend-form-container .finishbutton a {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  max-width: 300px;
  font-size: 30px;
  padding: 20px;
}
/* /news/newsletter */
.section__form--news-letter-sign-up {
  padding-bottom: 12rem;
}
/* /news */
.grid2x2 {
  min-height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 1200px) {
  .grid2x2 {
    flex-direction: row;
  }
}
.grid2x2 > .grid2x2-article {
  display: flex;
  flex-basis: auto;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .grid2x2 > .grid2x2-article {
    flex-basis: calc(50% - 40px);
  }
}
.grid2x2 > .grid2x2-article > .grid2x2-article-inner {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  flex-grow: 1;
  justify-content: stretch;
}
.grid2x2-article {
  margin: 20px 0;
}
@media (min-width: 1200px) {
  .grid2x2-article {
    margin: 20px 40px 0 0;
  }
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: -3px;
  position: relative;
}
body#media-view #content {
  color: white;
  background: #292d33;
}
body#media-view #breadcrumb a:hover {
  color: #e66b25;
}
body#media-view #featured-details-header {
  color: #fff;
  font-family: 'DINNextW01-CondensedBol';
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}
body#media-view #featured-details-header a {
  color: #fff;
}
body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}
body#media-view #featured-details-description {
  color: #fff;
}
body#media-view #featured-details-description .main_page_title {
  color: #fff;
}
body#media-view #featured-details-description p {
  line-height: 25px;
}
body#media-view #share-footer a {
  color: #e66b25;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons li {
  float: right;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #4e5d97;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #e66b25;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #4e5d97;
}
#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: #e66b25;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #4e5d97;
}
#multimedia-browser .row .media-thumbnail a {
  color: #000;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #4e5d97;
}
body#multimedia.new #breadcrumb {
  display: none;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #video-content {
  background-color: #292d33;
  padding: 40px 80px;
  position: relative;
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #292d33;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #292d33;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}
body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-family: 'DINNextW01-CondensedBol';
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  font-family: 'DIN Next W01 Regular';
  color: #e66b25 !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #4e5d97;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  font-family: 'DIN Next W01 Regular';
  color: #4e5d97 !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #e66b25;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
body#multimedia.new #multimedia-browser legend {
  display: none;
}
body#multimedia.new #multimedia-browser .loading div#search-results-header {
  display: none;
}
body#multimedia.new #multimedia-browser .status {
  background-color: #e66b25;
  color: #fff;
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #4e5d97;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #706e6e;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #706e6e;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #000;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #000;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #e66b25;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #e66b25;
}
body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}
body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #000;
  height: 165px;
  overflow: hidden;
  font-family: 'DIN Next W01 Regular';
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #4e5d97;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #000;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #4e5d97;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #4e5d97;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 70px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
body footer {
  background-color: #4e5d97;
  border-top: 2px solid #e66b25;
}
body footer .footer-ul.footernav {
  text-align: center;
}
@media (max-width: 550px) {
  body footer .footer-ul.footernav {
    padding-top: 20px;
  }
}
body footer .footer-ul.footernav li {
  padding: 30px 15px 20px;
  text-align: center;
}
@media (max-width: 550px) {
  body footer .footer-ul.footernav li {
    padding: 10px 15px 0px;
  }
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 27px;
  font-family: 'DINNextW01-CondensedMed';
  text-transform: uppercase;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .subfooternav {
  /*float:left;*/
  margin-bottom: 60px;
}
body footer .subfooternav a {
  color: white;
  font-family: 'DINNextW01-CondensedReg';
  text-transform: uppercase;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav li {
  padding-top: 3px;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) #content {
  padding-bottom: 70px;
}
body .vegas,
body .dc,
body .reno {
  color: #e66b25;
  text-decoration: none;
}
body .vegas:hover,
body .dc:hover,
body .reno:hover {
  color: #546171;
}
body .vegas:visited,
body .dc:visited,
body .reno:visited {
  text-decoration: none;
  decoration: none;
}
#flagForm #flag-options .head {
  background-color: #4e5d97;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

paste available font families here

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.helvetica {
  font-family: 'Helvetica Neue LT W01_41488878';
}
.helvetica-bold {
  font-family: 'Helvetica Neue LT W01_71488914';
}
.roman {
  font-family: 'Helvetica Neue LT W01_55 Roman';
}
.condensed-medium {
  font-family: 'DINNextW01-CondensedMed';
}
.condensed-light {
  font-family: 'DIN Next W01 Light';
}
.regular {
  font-family: 'DIN Next W01 Regular';
}
.condensed-bold {
  font-family: 'DINNextW01-CondensedBol';
}
.condensed {
  font-family: 'DINNextW01-CondensedReg';
}
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
body {
  font-size: 18px;
  font-family: 'DIN Next W01 Regular';
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'DINNextW01-CondensedMed';
  color: #546171;
}
.main_page_title {
  font-family: 'DINNextW01-CondensedMed';
  text-transform: uppercase;
  color: #546171;
  margin: 50px 0px 30px 0px;
  font-size: 42px;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #4e5d97;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #2b3454;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 0px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
h2.title {
  margin-top: 7px;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #4e5d97;
  color: white;
  white-space: normal;
  font-size: 24px;
  line-height: 20px;
  background: #798ee1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #798ee1 0%, #54639f 50%, #4e5d97 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#798ee1', endColorstr='#4e5d97', GradientType=0);
  /* IE6-9 */
  font-family: 'DINNextW01-CondensedMed';
}
.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: #4e5d97;
  background: #4e5d97;
  color: white;
}
.btn-xs {
  font-size: 15px;
}
#main_column form .btn {
  line-height: 32px;
  font-size: 28px;
  text-transform: uppercase;
  padding: 15px !important;
}
/*interior page content default styles */
.orangebg {
  background: #ff8700 !important;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ff8700 0%, #e66b25 50%, #ab2800 99%) !important;
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ff8700 0%, #e66b25 50%, #ab2800 99%) !important;
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ff8700 0%, #e66b25 50%, #ab2800 99%) !important;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8700', endColorstr='#ab2800', GradientType=0) !important;
  /* IE6-9 */
}
.orangebg:hover {
  background-color: #e66b25 !important;
  background: #e66b25 !important;
  color: white;
}
@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;
}
/*# sourceMappingURL=common.css.map */