/* 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 {
  background-color: #dae8eb;
  padding: 5px 5px 5px 15px;
}
#breadcrumb > ol {
  padding: 10px 50px 0 50px;
}
#breadcrumb > ol li a {
  color: #464646;
}
#breadcrumb > ol li a:hover {
  color: #a23827;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch {
  height: 75px;
}
#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: #580000;
  padding: 10px;
  box-sizing: border-box;
  height: 55px;
  font-size: 24px;
}
#home #header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 25px 0;
}
/* inner page styles */
#header {
  background-color: #a23827;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  padding: 25px 0;
}
#header a.logo-hold {
  width: 345px;
  display: inline-block;
  margin: 0 0 0 60px;
}
#header a.logo-hold img {
  width: 100%;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  height: 65px;
}
/* this is screwy why is there a news room id on this?? */
.modal-backdrop.in {
  background-color: #a23827;
}
/* nav */
.nav-hold {
  position: relative;
  float: right;
}
.nav-hold .navbar {
  position: relative;
  float: left;
  width: 575px;
  background: none;
}
.nav-hold .navbar .nav-pills {
  position: relative;
  float: left;
  width: 525px;
}
.nav-hold .navbar .nav-pills > li {
  width: auto;
  text-transform: uppercase;
  font-size: 21px;
font-family: 'Roboto Condensed', sans-serif;
font-weight: 700;
}
.nav-hold .navbar .nav-pills > li a {
  color: #FFFFFF;
}
.nav-hold .navbar .nav-pills > li .dropdown-menu {
  padding: 10px 0 10px 0;
  box-shadow: none;
  border-top: none;
  left: -1px;
}
.nav-hold .navbar .nav-pills > li .dropdown-menu li a {
  font-size: 18px;
  color: #a23827;
}
.nav-hold .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: #a23827;
  color: #FFFFFF;
}
.nav-hold .navbar .nav-pills > li:hover a {
  border-bottom: none;
  background-color: #FFFFFF;
  color: #a23827;
  top: 0;
  border-radius: 3px 3px 0px 0px;
}
.nav-hold .navbar .nav-pills > li.selected > a {
  border-bottom: none;
  background-color: #8b2218;
  color: #FFFFFF;
  top: 0;
  border-radius: 3px 3px 3px 3px;
}
.nav-hold .navbar .togglemenu {
  position: absolute;
  color: #FFFFFF;
}
.nav-hold .navbar .srchbutton,
.nav-hold .navbar .srchbuttonmodal {
  position: absolute;
  right: 25px;
  color: #FFFFFF;
  padding: 7px 0px 0px 0px;
  font-size: 15px;
}
.nav-hold .navbar .srchbutton span,
.nav-hold .navbar .srchbuttonmodal span {
  padding: 10px;
  border-radius: 3px;
}
.nav-hold .navbar .srchbutton:hover span,
.nav-hold .navbar .srchbuttonmodal:hover span {
  background-color: #FFFFFF;
  color: #a23827;
}
.nav-hold .navbar #search {
  position: absolute;
  width: 0;
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
}
.nav-hold .navbar #search.showme {
  width: 100%;
}
.nav-hold .navbar #search #sitesearch {
  padding: 0;
  margin: 0;
}
.nav-hold .navbar #search #sitesearch #search-field {
  padding: 5px 20px;
  width: 435px;
}
.nav-hold .navbar #search #sitesearch button {
  width: 50px;
  color: #a23827;
  background-color: #FFFFFF;
  border: none;
  padding: 7px;
}
.nav-hold .navbar #search #sitesearch button:hover {
  color: #FFFFFF;
  background-color: #a23827;
}
.nav-hold.search .nav {
  display: none;
}
.nav-hold.search #search {
  opacity: 1;
  width: 500px;
  float: left;
}
.social-icons {
  margin: 15px 60px 0 0;
  line-height: 0;
}
.social-icons li {
  text-align: center;
  width: 25px;
}
.social-icons li a {
  font-size: 18px;
  color: #FFFFFF;
}
.social-icons li a:hover {
  color: #580000;
}
#NavMobileModal .modal-dialog .modal-content {
  /*
			.modal-header{

			}
		    .close{

		    }
		    .btn{

		    }
		    .modal-header {

				h1{

				}

			    .close{

			    }
		    }
		    */
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
  font-size: 22px;
  clear: both;
  overflow: auto;
  margin: 0 0 35px 0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  margin: 0 0 0 0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  display: block;
  position: relative;
  width: 100%;
  float: none;
  background: none;
  box-shadow: none;
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li {
  text-align: center;
}
#home h2 {
  text-transform: uppercase;
  font-size: 20px;
  padding: 15px 0 15px 0;
  margin: 0;
  color: #a23827;
}
#home h2.bar {
  background-color: #a23827;
  color: #FFFFFF;
  padding: 15px 0 15px 100px;
}
#home .row.margin {
  margin: 50px 0px 50px 0 !important;
}
#home .row.short {
  margin: 50px !important;
}
#home .newsletter {
  position: absolute;
  top: 145px;
  left: 0px;
  clear: both;
  overflow: hidden;
  z-index: 900;
  color: #FFFFFF;
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.25);
}
#home .newsletter .slide {
  float: left;
  background-color: #a23827;
  color: #FFFFFF;
}
#home .newsletter .slide .signup {
  float: left;
  font-size: 18px;
  background-color: #FFFFFF;
  color: #464646;
  width: 0px;
  padding: 0px;
  height: 178px;
  text-align: center;
font-family: 'Poppins', sans-serif;
font-weight: 400;
  overflow: hidden;
  transition: all 0.3s ease;
}
#home .newsletter .slide .signup p {
  opacity: 0;
  width: 350px;
  margin: 0;
  padding: 20px 0 0 0;
}
#home .newsletter .slide .signup a {
  color: #a23827;
  text-transform: uppercase;
font-family: 'Roboto Condensed', sans-serif;
font-weight: 400;
}
#home .newsletter .slide .bar {
  float: left;
  width: 50px;
  height: 178px;
  text-align: center;
  cursor: pointer;
}
#home .newsletter .slide .bar i {
  display: block;
  background-color: #580000;
  font-size: 30px;
  padding: 10px;
  margin: 0;
  cursor: pointer;
}
#home .newsletter .slide .bar .lbl {
  padding-top: 13px;
}
#home .newsletter .slide.open .signup {
  width: 350px;
}
#home .newsletter .slide.open .signup p {
  opacity: 1;
  margin: 0;
  padding: 20px 30px 0 30px;
}
#home .feature {
  position: relative;
  margin: 0 0 0px 0;
  background-color: #464646;
}
#home .feature #cycler {
  position: relative;
  height: 728px;
  overflow: hidden;
}
#home .feature #cycler div {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#home .feature #cycler div.active {
  z-index: 3;
}
#home .feature .carousel {
  position: absolute;
  bottom: 85px;
  width: 600px;
  z-index: 800;
  right: 0;
  left: 0;
  margin: auto;
}
#home .feature .carousel .carousel-inner {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background-color: #FFFFFF;
  color: #464646;
  width: 550px;
  height: 150px;
  opacity: 0.95;
  margin-left: 25px;
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.25);
}
#home .feature .carousel .carousel-inner .item {
  margin: 0;
  font-size: 27px;
  line-height: 36px;
  text-align: center;
  padding: 15px;
  float: left;
  width: 550px;
  height: 150px;
}
#home .feature .carousel .carousel-inner .item a {
  display: block;
  opacity: 0;
  text-decoration: none;
  color: #464646;
}
#home .feature .carousel .carousel-inner .item a:hover {
  color: #a23827;
}
#home .feature .carousel .left,
#home .feature .carousel .right {
  background-color: #FFFFFF;
  color: #a23827;
  font-size: 40px;
  width: 25px;
  height: 50px;
  float: left;
  opacity: 0.95;
  padding-top: 6px;
  margin-top: 50px;
  cursor: pointer;
  background-image: none;
}
#home .feature .carousel .left:hover,
#home .feature .carousel .right:hover {
  color: #580000;
}
#home .feature .carousel .left {
  text-align: right;
  border-radius: 50px 0px 0px 50px;
}
#home .feature .carousel .right {
  text-align: left;
  border-radius: 0px 50px 50px 0px;
}
#home .feature h2.bar {
  padding: 13px 0 15px 175px;
  font-size: 21px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}
#home .feature h2.bar a {
  color: #FFFFFF;
}
#home .feature h2.bar a .cal {
  position: relative;
  border-radius: 0;
  background-color: none;
  padding-top: 0;
  display: none;
  width: 20px;
  height: 20px;
  left: auto;
  top: auto;
  bottom: auto;
  margin: 0 10px 0 0;
}
#home .feature h2.bar a .cal img {
  width: 100%;
  height: auto;
}
#home .feature h2.bar a:hover {
  color: #580000;
}
#home .feature .cal {
  position: absolute;
  left: 60px;
  bottom: -20px;
  background-color: #a23827;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  text-align: center;
  padding-top: 25px;
  z-index: 200;
}
#home .youtube a {
  display: block;
  color: #464646;
  text-decoration: none;
}
#home .youtube a .thumb {
  width: 300px;
  height: 165px;
  background-position: center center;
  background-size: cover;
  text-align: center;
  font-size: 60px;
  padding-top: 40px;
}
#home .youtube a .thumb i {
  color: #FFFFFF;
  text-shadow: 1px 1px 1px 1px black;
}
#home .youtube a .caption {
  width: 300px;
  margin: 20px 0 0 0;
  font-size: 18px;
  line-height: 20px;
}
#home .youtube a:hover {
  color: #a23827;
}
#home .youtube a:hover .thumb i {
  color: #a23827;
}
#home .twitter {
  text-align: center;
  padding: 70px 50px 50px 50px;
  height: 415px;
  color: #FFFFFF;
  font-size: 30px;
  background-color: #a23827;
  background-image: url('/themes/hoeven/images/twitterbg-red.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#home .twitter .icn a {
  color: #580000;
}
#home .twitter #tweet ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#home .twitter #tweet a {
  color: #FFFFFF;
  text-decoration: underline;
}
#home .twitter #tweet .user a {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 400;
  text-decoration: none;
}
#home .twitter #tweet .user a span:nth-child(3),
#home .twitter #tweet .user a span:nth-child(1) {
  display: none;
}
#home .twitter #tweet .user a span:nth-child(4) {
  display: block;
  font-size: 26px;
}
#home .twitter #tweet .tweet {
  width: 75%;
  font-size: 27px;
  margin: 30px auto;
}
#home .twitter #tweet .interact {
  display: block;
}
#home .twitter #tweet .interact a {
  font-size: 22px;
  margin: 0px 10px;
}
#home .twitter #tweet .interact a:hover {
  color: #580000;
}

#home .twitter #tweet.newer .twitter-tweet{
  font-size: 18px;
} 

#home .twitter #tweet.newer .twitter-tweet p{
  font-size: 27px;
} 

#home .instagram #instamedia {
  width: 100%;
  display: inline-block;
  clear: both;
  overflow: auto;
}
#home .instagram #instamedia a {
  /*float:left;
				display:block;
				padding-right:15px;
				width: 25%;*/
}
#home .instagram #instamedia a .instaimg {
  /*border:1px solid @lightgrey;*/
  width: 100%;
  height: 245px;
  background: #fff;
  background-size: cover;
  background-position: center center;
}
#home .working .row {
  margin-left: 0;
  margin-right: 0;
}
#home .working .row .col-xs-12,
#home .working .row .col-sm-4 {
  padding-right: 0;
  padding-left: 0;
  background-color: #8b2218;
}
#home .working a {
  display: block;
  position: relative;
  height: 250px;
  background-position: center center;
  background-size: cover;
  color: #464646;
}
#home .working a div {
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 45%;
  padding: 10px 20px 10px 20px;
  text-align: center;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
#home .working a:hover div {
  right: 0;
  width: 100%;
}
#home #locations .see {
  border: 1px solid red;
}
#home #locations .offices {
  float: left;
  width: 50%;
}
#home #locations .offices .office {
  font-size: 16px;
  line-height: 20px;
  height: 175px;
}
#home #locations .offices .office h3 {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #a23827;
  font-size: 18px;
}
#home #locations .offices .office h3 i {
  position: absolute;
  top: -2px;
  left: -12px;
  font-size: 25px;
  opacity: 0;
  transition: all 0.3s ease;
}
#home #locations .offices .office a {
  font-size: 14px;
  color: #464646;
}
#home #locations .offices .office a i {
  font-size: 11px;
  margin: 3px 0 0 0;
}
#home #locations .offices .office a:hover {
  color: #a23827;
}
#home #locations .offices .office:hover h3 {
  color: #464646;
}
#home #locations .offices .office:hover h3 i {
  opacity: 1;
}
#home #locations .mapholder #map {
  border: 1px solid #eeeeee;
  background-color: #ecf3f5;
  padding: 25px;
}
#home #locations .mapholder #map .img {
  position: relative;
  width: 581px;
  height: 346px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/themes/hoeven/images/map/map.png);
}
#home #locations .mapholder #map .img .dot {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 12.5px;
  background-color: #a23827;
  border: 1px solid #ecf3f5;
  cursor: pointer;
}
#home #locations .mapholder #map .img .dot:hover {
  background-color: #580000;
}
#home #locations .mapholder #map .img .bismarck {
  top: 237px;
  left: 242px;
}
#home #locations .mapholder #map .img .grand-forks {
  top: 100px;
  left: 514px;
}
#home #locations .mapholder #map .img .western-north-dakota {
  top: 76px;
  left: 30px;
}
#home #locations .mapholder #map .img .fargo {
  top: 220px;
  left: 540px;
}
#home #locations .mapholder #map .img .minot {
  top: 85px;
  left: 215px;
}
#home #locations .mapholder h3 {
  border: 1px solid #eeeeee;
  font-size: 26px;
  text-align: center;
  text-transform: uppercase;
  background-color: #FFFFFF;
  padding: 10px;
  margin: 0;
}
#home #locations.bismarck .office.bismarck h3 {
  color: #464646;
}
#home #locations.bismarck .office.bismarck h3 i {
  opacity: 1;
}
#home #locations.bismarck #map .img {
  background-image: url(/themes/hoeven/images/map/bismarck.png);
}
#home #locations.bismarck #map .img .bismarck {
  background-color: #580000;
}
#home #locations.grand-forks .office.grand-forks h3 {
  color: #464646;
}
#home #locations.grand-forks .office.grand-forks h3 i {
  opacity: 1;
}
#home #locations.grand-forks #map .img {
  background-image: url(/themes/hoeven/images/map/grandforks.png);
}
#home #locations.grand-forks #map .img .grand-forks {
  background-color: #580000;
}
#home #locations.western-north-dakota .office.western-north-dakota h3 {
  color: #464646;
}
#home #locations.western-north-dakota .office.western-north-dakota h3 i {
  opacity: 1;
}
#home #locations.western-north-dakota #map .img {
  background-image: url(/themes/hoeven/images/map/williston.png);
}
#home #locations.western-north-dakota #map .img .western-north-dakota {
  background-color: #580000;
}
#home #locations.fargo .office.fargo h3 {
  color: #464646;
}
#home #locations.fargo .office.fargo h3 i {
  opacity: 1;
}
#home #locations.fargo #map .img {
  background-image: url(/themes/hoeven/images/map/fargo.png);
}
#home #locations.fargo #map .img .fargo {
  background-color: #580000;
}
#home #locations.minot .office.minot h3 {
  color: #464646;
}
#home #locations.minot .office.minot h3 i {
  opacity: 1;
}
#home #locations.minot #map .img {
  background-image: url(/themes/hoeven/images/map/minot.png);
}
#home #locations.minot #map .img .minot {
  background-color: #580000;
}
#home .preload {
  display: none;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.one_column,
.two_column {
  background-color: #fff;
}
#moratorium-notice .container {
  background-color: #dae8eb !important;
}
.hasbanner #breadcrumb {
  margin-top: 0px;
}
#content.hasbanner {
  padding-top: 100px;
}
#main_container {
  min-height: 724px;
}
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
/* about section nav active states -------------------------------- */
.biography #asides .nav .biography {
  color: #FFFFFF;
  background-color: #59818e;
}
.committee-assignments #asides .nav .committee-assignments {
  color: #FFFFFF;
  background-color: #59818e;
}
.north-dakota #asides .nav .north-dakota {
  color: #FFFFFF;
  background-color: #59818e;
}
.caucus-membership #asides .nav .caucus-membership {
  color: #FFFFFF;
  background-color: #59818e;
}
/* about north dakaota -------------------------- */
.north-dakota #breadcrumb {
  margin-top: 0;
}
img.banner {
  width: 1300px;
  margin: 0 auto;
}
#sam-serviceacademies {
  margin-top: 80px;
}
#sam-ndfacts h3,
#sam-serviceacademies h3 {
  margin: 35px 0 0 0;
  color: #FFFFFF;
  text-align: center;
  background-color: #59818e;
  text-decoration: none;
  padding: 15px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
#sam-ndfacts h3 span,
#sam-serviceacademies h3 span {
  text-decoration: none !important;
}
#sam-ndfacts ul,
#sam-serviceacademies ul {
  margin: 0 0 0 0;
  padding: 20px;
  border: 1px solid #59818e;
  list-style-type: none;
}
#sam-ndfacts ul.nav,
#sam-serviceacademies ul.nav {
  padding: 0;
  border: none;
}
/* news room ---------------------------------- */
.newsroom #filterbuttons {
  margin: 0 0 35px 0;
}
#pagination-container {
  margin: 35px 0 0 0;
}
/*
#newsroom{
	.modal-backdrop{

	}
	.modal-dialog {

	    .modal-content{

		    .close{

		    }
		    .btn{

		    }
		    .modal-header{

		    }
		    .modal-body{

		    	form{

		    		select{

		    		}
		    	}
		    }

	    }
	}

}
*/
/* tours ---------------------------------------- */
.tours .tours {
  margin: 35px 0 0 0;
  clear: both;
  overflow: auto;
}
.tours .tours .tour {
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 35px 0;
}
.tours .tours .tour .flip-container {
  perspective: 1000;
}
.tours .tours .tour .flip-container .flipper {
  height: 300px;
  width: 100%;
  transition: 0.3s;
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
}
.tours .tours .tour .flip-container .flipper .front,
.tours .tours .tour .flip-container .flipper .back {
  backface-visibility: hidden;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
}
.tours .tours .tour .flip-container .flipper .front {
  background-color: #a23827;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
}
.tours .tours .tour .flip-container .flipper .front h3 {
  position: relative;
  margin: 120px 0 0 0;
  font-size: 26px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
  backface-visibility: hidden;
  opacity: 1;
  transition: all 1s ease;
  text-shadow: 1px 1px 1px black;
}
.tours .tours .tour .flip-container .flipper .back {
  padding: 15px;
  background-color: #a23827;
  line-height: 22px;
  font-size: 18px;
  transform: rotateY(180deg);
  overflow: hidden;
}
.tours .tours .tour .flip-container .flipper .back a {
  color: #580000;
}
.tours .tours .tour .flip-container .flipper.hover {
  transform: rotateY(180deg);
}
.tours .tours .tour .flip-container .flipper.hover .front {
  background: none !important;
}
.tours .tours .tour .flip-container .flipper.hover .front h3 {
  display: none;
  opacity: 0;
}
/* events ---------------------------------------- */
.events {
  margin: 0 0 55px 0;
}
.events .event {
  margin: 0 0 35px 0;
}
.pastevents h2 {
  border-bottom: 1px solid #ecf3f5;
}
.pastevents .event a {
  clear: both;
  overflow: auto;
  display: block;
}
.pastevents .event a .date {
  float: left;
  margin: 0 10px 0 0;
}
.pastevents .event a h4 {
  float: left;
  margin: 0 0 0 0;
}
.office-locations .address {
  height: 500px;
}
.office-locations .address .bgimg {
  height: 175px;
  overflow: hidden;
  margin: 0 0 20px 0;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: repeat !important;
}
#browser_table thead tr th {
  font-size: 18px;
  font-weight: bold;
}
.votingtable tr th,
.legislationtable tr th {
  font-size: 18px;
  font-weight: bold;
}
#filter-legislation,
#search-thomas {
  margin: 0 0 0 0;
}
#filter-legislation h3,
#search-thomas h3 {
  margin: 0 0 0 0;
  color: #FFFFFF;
  text-align: center;
  background-color: #59818e;
  text-decoration: none;
  padding: 15px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
#filter-legislation form,
#search-thomas form {
  padding: 20px;
  border: 1px solid #59818e;
}
#filter-legislation form select,
#search-thomas form select {
  font-size: 18px;
}
#filter-legislation form#congress_form,
#search-thomas form#congress_form {
  border-bottom: none;
  padding: 20px 20px 0 20px;
}
#filter-legislation form#legislation_by_sponsorship,
#search-thomas form#legislation_by_sponsorship {
  border-top: none;
  padding: 0 20px 20px 20px;
  margin-bottom: 35px;
}
#voting_record .page .row {
  /* ----- */
}
#photos .date {
  display: none;
}
.portrait {
  margin: 0 0 50px 0;
}
.portrait .img a {
  display: block;
  position: relative;
}
.portrait .img a img {
  width: 100%;
  height: auto;
}
.portrait .img a i,
.portrait .img a em {
  font-size: 30px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #FFFFFF;
  z-index: 200px;
}
.portrait .img a:hover i,
.portrait .img a:hover em {
  color: #59818e;
}
.portrait .presskit {
  background-color: #dae8eb;
  padding: 10px 20px 10px 20px;
  clear: both;
  overflow: auto;
}
.portrait .presskit .social-icons {
  float: left;
  margin: 10px 0 0 -10px;
  line-height: 0;
}
.portrait .presskit .social-icons li {
  text-align: center;
  width: 35px;
}
.portrait .presskit .social-icons li a {
  font-size: 20px;
  color: #59818e;
}
.portrait .presskit .social-icons li a:hover {
  color: white;
}
.portrait .presskit .social-icons li a span {
  display: none;
}
.portrait .presskit h2 {
  font-size: 25px;
  margin: 5px 0 0 0;
  padding: 0;
  float: right;
}
#asides {
  margin-top: 0;
}
#listblocks .block {
  display: block;
  margin-bottom: 30px;
  width: 100%;
  height: 100px;
}
#listblocks .block a {
  text-align: center;
  display: block;
  font-size: 22px;
  font-weight: 300;
  min-height: 100px;
  color: #FFFFFF;
  padding: 0;
  background-color: #a23827;
}
#listblocks .block a .media-heading {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
}
#listblocks .block a .bgimg {
  opacity: 0;
  width: 100;
  height: 100px;
  background-position: center center;
  background-repeat: repeat;
  background-size: cover;
}
#listblocks .block:hover a {
  background-color: #580000;
}
#listblocks .block:hover a .bgimg {
  opacity: 1;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
#newscontent h2.title {
  margin: 0 0 25px 0;
  padding: 0;
}
#newscontent h2.title a {
  text-transform: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
#newscontent h2.title a:hover {
  text-transform: none;
}
#newscontent p,
#newscontent p.summary {
  margin: 0 0 10px 0;
}
/* press nav 8*/
#typenav ul li.active a {
  background-color: #a23827;
  color: #FFFFFF;
}
#typenav ul li a {
  background-color: #dae8eb;
  color: #464646;
  font-size: 16px;
  transition: all 0.3s ease;
}
#typenav ul li a:hover {
  background-color: #a23827;
  color: #FFFFFF;
}
/*
hearing styles */
body#guestbook .navbar {
  display: none;
}
.amend-textarea ul.nav.nav-list {
  margin: 0 0 50px 0;
  padding: 0;
}
.amend-textarea ul.nav.nav-list li {
  margin: 0 0 5px 0;
  text-align: center;
}
.amend-textarea ul.nav.nav-list li a {
  background-color: #dae8eb;
  color: #464646;
  transition: all 0.5s ease;
}
.amend-textarea ul.nav.nav-list li a:hover {
  color: #FFFFFF;
  background-color: #59818e;
}
.fancybox-title-float-wrap .child {
  white-space: normal !important;
}
#typenav.affix {
  top: 0;
}
#breadcrumb > ol li:after {
  color: #464646;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#share-buttons #share-link-container input {
  line-height: 0;
}
#multimedia-browser {
  margin-top: 30px;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #a23827;
  display: none;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background-color: #a23827;
}
#multimedia-browser ul.nav-tabs li:nth-child(2) {
  display: none;
}
#multimedia-browser ul.nav-tabs li:nth-child(3) {
  display: none;
}
#multimedia-browser ul.nav-tabs li.active a {
  background-color: #580000;
}
#multimedia-browser form.multimedia-search {
  padding: 0;
}
#multimedia-browser legend {
  border: none;
}
#multimedia-browser input {
  height: 40px;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #a23827;
}
#multimedia-browser .multimedia-tools fieldset {
  width: 49%;
}
#multimedia-browser .multimedia-tools select {
  width: 44%;
}
#multimedia-browser .pagination {
  background-color: #a23827;
}
@media (max-width: 1200px) {
  #multimedia-browser .multimedia-tools select {
    width: 41%;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 82%;
  }
}
#home footer .container,
footer .container {
  padding: 50px;
  background-color: #a23827;
}
#home footer .container .footer,
footer .container .footer {
  width: 70%;
  margin: 0 auto;
}
#home footer .container .footer a,
footer .container .footer a {
  font-size: 20px;
  color: #FFFFFF;
}
#home footer .container .footer a:hover,
footer .container .footer a:hover {
  color: #580000;
}
#home footer .container .footer .footernav li,
footer .container .footer .footernav li {
  margin: 0 35px 0 0;
}
#home footer .container .footer .footernav li a,
footer .container .footer .footernav li a {
  text-transform: uppercase;
font-family: 'Roboto Condensed', sans-serif;
font-weight: 400;
}
#home footer .container .footer .footernav li a:hover,
footer .container .footer .footernav li a:hover {
  color: #580000;
  text-decoration: none;
}
#home footer .container .footer .social-icons,
footer .container .footer .social-icons {
  margin: 0px 0 0 0;
  line-height: 0;
}
#home footer .container .footer .social-icons li,
footer .container .footer .social-icons li {
  text-align: center;
  width: 30px;
}
#home footer .container .footer .social-icons li a,
footer .container .footer .social-icons li a {
  font-size: 20px;
  color: #FFFFFF;
}
#home footer .container .footer .social-icons li a:hover,
footer .container .footer .social-icons li a:hover {
  color: #580000;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form legend {
  border: none;
  font-size: 28px;
  color: #464646;
}
.hide-on-submit {
  display: none !important;
}
/*
	
font-family:'ITC Avant Garde Gothic W01 XLt';
font-family:'ITC Avant GardeGothicW01XLtObl';
font-family:'ITC Avant Garde Gothic W01 Bk';
font-family:'ITC Avant Garde GothicW01BkObl';
font-family:'ITC Avant Garde Gothic W01 Md';
font-family:'ITC Avant Garde GothicW01MdObl';
font-family:'ITC Avant Garde Gothic W01 Dm';
font-family:'ITC Avant Garde GothicW01DmObl';
font-family:'ITC Avant Garde Gothic W01 Bd';
font-family:'ITC Avant Garde GothicW01BdObl';
font-family:'ITC Avant Garde GothicW01XLtCn';
font-family:'ITCAvantGardeGothicW01XLtCnObl';
font-family:'ITC Avant Garde Gothic W01BkCn';
font-family:'ITC AvantGardeGothicW01BkCnObl';
font-family:'ITC Avant Garde Gothic W01MdCn';
font-family:'ITC AvantGardeGothicW01MdCnObl';
font-family:'ITC Avant Garde Gothic W01DmCn';
font-family:'ITC AvantGardeGothicW01DmCnObl';
font-family:'ITC Avant Garde Gothic W01BdCn';
font-family:'ITC AvantGardeGothicW01BdCnObl';

*/
/* define site colors here */
/* custom social icons */
@font-face {
  font-family: 'fontello';
  src: url('/themes/hoeven/fonts/custom-icons/fontello.eot?53270886');
  src: url('/themes/hoeven/fonts/custom-icons/fontello.eot?53270886#iefix') format('embedded-opentype'), url('/themes/hoeven/fonts/custom-icons/fontello.woff2?53270886') format('woff2'), url('/themes/hoeven/fonts/custom-icons/fontello.woff?53270886') format('woff'), url('/themes/hoeven/fonts/custom-icons/fontello.ttf?53270886') format('truetype'), url('/themes/hoeven/fonts/custom-icons/fontello.svg?53270886#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?53270886#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-insta:before {
  content: '\e800';
}
/* '' */
.icon-youtube:before {
  content: '\e801';
}
/* '' */
.icon-twitter:before {
  content: '\e802';
}
/* '' */
.icon-fb:before {
  content: '\e803';
}
/* '' */
.social-icons {
  display: inline-block;
}
/* custom social icons */
/*body color and font*/
body {
font-family: 'Poppins', sans-serif;
font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #464646;
  background-color: #ecf3f5;
}
/*header styles*/
.h1,
h1 {
  text-transform: uppercase;
  margin: 0 0 35px 0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #464646;
}
.h1 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #a23827;
}
h1.main_page_title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;
}
/*anchor stlyes*/
a {
  color: #a23827;
}
a:hover {
  text-decoration: none;
  color: #580000;
}
/*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 {
  color: #FFFFFF;
  background-color: #a23827;
  white-space: normal;
}
.pager li .btn:active,
.btn:active,
.btn-defualt:active,
.btn:visited:active,
.btn-defualt:visited:active,
btn:focus:active,
.btn-default:focus:active,
.search-media-btn:active,
#main_column form .btn:active {
  color: #FFFFFF;
  background-color: #580000;
}
.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 {
  color: #FFFFFF;
  background-color: #580000;
}
.btn-lg {
  font-size: 24px;
}
.btn-xl {
  margin-top: 30px;
  padding: 20px 45px;
  font-size: 22px;
}
/*interior page content default styles */
.container {
  max-width: 1300px;
  position: relative;
  padding: 0;
}
#content {
  padding: 80px 0 0 0;
}
#content .two_column.row,
#content .one_column.row {
  margin-left: 0;
  margin-right: 0;
  padding: 40px 50px 50px 50px;
}
#home #content {
  padding: 0;
  background-color: #FFFFFF;
}
@media (max-width: 1350px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
  #header a.logo-hold {
    width: 275px !important;
    margin: 0 0 0 30px !important;
  }
  #home .row.short {
    margin: 50px 20px 50px 20px !important;
  }
}
@media (max-width: 1330px) {
  img.banner {
    width: 1170px;
  }
  #home h2.bar {
    padding: 15px 0px 15px 30px;
  }
}
@media (max-width: 1200px) {
  img.banner {
    width: 970px;
  }
  #home .working a div {
    font-size: 15px;
  }
  #home .row.short {
    margin: 50px 10px 50px 10px !important;
  }
  #home .instagram {
    text-align: center;
  }
  #home .instagram #instamedia a {
    margin: 15px;
  }
  #home .instagram #instamedia a .instaimg {
    height: 190px;
  }
  #home #locations .mapholder #map .img {
    width: 400px;
    height: 280px;
  }
  #home #locations .mapholder #map .img .bismarck {
    top: 158px;
    left: 165px;
  }
  #home #locations .mapholder #map .img .grand-forks {
    top: 69px;
    left: 353px;
  }
  #home #locations .mapholder #map .img .western-north-dakota {
    top: 52px;
    left: 18px;
  }
  #home #locations .mapholder #map .img .fargo {
    top: 151px;
    left: 371px;
  }
  #home #locations .mapholder #map .img .minot {
    top: 58px;
    left: 145px;
  }
  #content .two_column.row,
  #content .one_column.row {
    padding: 40px 25px 50px 25px !important;
  }
  .nav-hold {
    width: 645px;
  }
  .nav li a {
    padding: 5px;
  }
  .navbar {
    width: 455px !important;
  }
  .navbar .nav-pills {
    width: 455x !important;
  }
  .navbar .nav-pills > li {
    width: auto;
    font-size: 20px;
  }
  .navbar .nav-pills > li .dropdown-menu {
    padding: 10px 0 10px 0;
  }
  .navbar .nav-pills > li .dropdown-menu li a {
    font-size: 18px;
    color: #a23827;
  }
  .navbar .nav-pills > li .dropdown-menu li a:hover {
    background-color: #a23827;
    color: #FFFFFF;
  }
  .navbar .nav-pills > li:hover a {
    color: #a23827;
  }
  .navbar .srchbutton {
    position: absolute;
    right: 0 !important;
    padding: 3px 0px 0px 0px !important;
  }
  .navbar .srchbutton:hover {
    color: #a23827;
  }
  .navbar #search {
    width: 0%;
    display: inline-block;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .navbar #search #sitesearch {
    padding: 0;
    margin: 0;
  }
  .navbar #search #sitesearch #search-field {
    padding: 5px 20px;
    width: 345px !important;
  }
  .navbar #search #sitesearch button {
    width: 50px;
    color: #a23827;
    background-color: #FFFFFF;
    border: none;
    padding: 8px;
  }
  .navbar #search #sitesearch button:hover {
    color: #FFFFFF;
    background-color: #a23827;
  }
  .nav-hold.search .nav {
    display: none;
  }
  .nav-hold.search #search {
    opacity: 1;
    width: 500px;
    float: left;
  }
  .social-icons,
  #home .social-icons {
    margin: 5px 30px 0 0;
  }
  .social-icons li,
  #home .social-icons li {
    width: 35px;
  }
  .social-icons li a,
  #home .social-icons li a {
    font-size: 40px;
  }
  #home footer .container .footer,
  footer .container .footer {
    width: 100%;
  }
  #home footer .container .footer .footernav,
  footer .container .footer .footernav {
    width: 595px;
    margin: 0 auto;
    float: none !important;
  }
  #home footer .container .footer .social-icons,
  footer .container .footer .social-icons {
    display: block;
    width: 175px;
    margin: 20px auto;
    float: none !important;
  }
  /*
	#photos{
		li{
			.imghold{

			}
		}
	}
	.videolist{
		.videoiframe{

		}
	}
	.hearingslideshow{


		.item {

		}

		img{

		}
	}
	*/
  #multimedia-browser .row .media-thumbnail {
    width: 170px;
  }
  .portrait .presskit h2 {
    margin: 8px 0 0 0;
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  .portrait .presskit h2 {
    margin: 5px 0 0 0;
    font-size: 25px;
  }
  img.banner {
    width: 750px;
  }
  body {
    border: px solid red;
  }
  #header a.logo-hold {
    margin: 0px 0px 0px 65px !important;
  }
  #header .nav-hold {
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 1000;
    width: 100%;
  }
  #header .nav-hold .navbar {
    width: 100% !important;
  }
  #header .nav-hold .navbar .togglemenu {
    font-size: 25px;
    margin: 10px 0 0 20px;
  }
  #header .nav-hold .navbar .togglemenu .menulabel {
    display: none;
  }
  #header .nav-hold .navbar .srchbutton,
  #header .nav-hold .navbar .srchbuttonmodal {
    margin: -3px 165px 0 0;
  }
  #header .nav-hold .social-icons li {
    width: 30px;
  }
  #header .nav-hold .social-icons li a {
    font-size: 35px;
  }
  #header .social-icons {
    position: absolute;
    top: 0;
    right: 0;
  }
  #home h2.bar {
    padding: 15px 0 15px 20px;
  }
  #home .newsletter {
    display: none;
  }
  #home .feature #cycler {
    height: 500px;
  }
  #home .feature .carousel {
    bottom: 115px;
    width: 500px;
  }
  #home .feature .carousel .carousel-inner {
    width: 450px;
  }
  #home .feature .carousel .carousel-inner .item {
    width: 450px;
    font-size: 19px;
  }
  #home .youtube a .thumb {
    width: 200px;
    height: 110px;
    font-size: 60px;
    padding-top: 40px;
  }
  #home .youtube a .thumb i {
    text-shadow: 1px 1px 1px 1px black;
  }
  #home .youtube a .caption {
    width: 200px;
    margin: 20px 0 0 0;
    font-size: 18px;
    line-height: 20px;
  }
  #home .twitter {
    padding: 40px 20px 20px 20px;
    height: auto;
  }
  #home .twitter #tweet .tweet {
    width: 75%;
    font-size: 18px;
    margin: 20px auto;
  }
  #home .instagram #instamedia a {
    margin: 5px;
  }
  #home .instagram #instamedia a .instaimg {
    height: 155px;
  }
  #home .working a div {
    font-size: 20px;
    width: 100%;
    right: 0;
    border: 1px solid #ecf3f5;
  }
  #home .working a:hover div {
    width: 100%;
    right: 0;
  }
  #home footer .container .footer,
  footer .container .footer {
    width: 100%;
  }
  #home footer .container .footer .footernav,
  footer .container .footer .footernav {
    width: 100%;
  }
  #home footer .container .footer .footernav li,
  footer .container .footer .footernav li {
    margin: 0;
    width: 100%;
    float: none;
    text-align: center;
  }
  #share-buttons #share-link-container {
    width: auto;
  }
  #multimedia-browser .row .media-thumbnail {
    width: 125px;
  }
}
@media (max-width: 767px) {
  img.banner {
    width: 100%;
  }
  #header a.logo-hold {
    margin: 3px 0px 0px 65px !important;
    width: 45% !important;
  }
  .navbar .srchbutton,
  .navbar .srchbuttonmodal {
    position: absolute;
    right: 10px;
    padding: 12px 0px 0px 0px;
  }
  #home .working a div {
    font-size: 20px;
    width: 100%;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #ecf3f5;
  }
  #home .working a:hover div {
    width: 100%;
    right: 0;
    bottom: 0;
  }
  #home .youtube a .thumb {
    width: 100%;
    height: 300px;
    font-size: 60px;
    padding-top: 110px;
  }
  #home .youtube a .thumb i {
    text-shadow: 1px 1px 1px 1px black;
  }
  #home .youtube a .caption {
    width: 100%;
    margin: 20px 0 20px 0;
    font-size: 18px;
    line-height: 20px;
  }
  #home .instagram #instamedia a .instaimg {
    margin-bottom: 10px;
    height: 355px;
  }
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
  #multimedia-browser .multimedia-tools fieldset {
    float: none;
    width: 100%;
  }
  .office-locations .address {
    padding-bottom: 20px;
    height: auto;
  }
}
@media (max-width: 479px) {
  #header .social-icons {
    display: none;
    /*
			position:absolute;
			top:75px;
			left:20px !important;
			*/
  }
  #header .navbar .srchbutton,
  #header .navbar .srchbuttonmodal {
    margin: 0 20px 0 0 !important;
    font-size: 20px !important;
  }
  #home .feature #cycler {
    height: 350px;
  }
  #home .feature .carousel {
    bottom: 115px;
    width: 300px;
  }
  #home .feature .carousel .carousel-inner {
    width: 250px;
    height: 120px;
  }
  #home .feature .carousel .carousel-inner .item {
    padding: 20px 10px 20px 10px;
    width: 250px;
    font-size: 16px;
    line-height: 17px;
    height: 120px;
  }
  #home .feature .carousel .left,
  #home .feature .carousel .right {
    margin-top: 35px;
  }
  #home .feature h2.bar {
    padding: 13px 0 15px 20px;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
  }
  #home .feature h2.bar a {
    color: #FFFFFF;
  }
  #home .feature h2.bar a .cal {
    display: inline-block;
  }
  #home .feature h2.bar a:hover {
    color: #580000;
  }
  #home .feature .cal {
    display: none;
  }
  #home .youtube a .thumb {
    width: 100%;
    height: 200px;
    font-size: 60px;
    padding-top: 65px;
  }
  #home .instagram #instamedia a {
    margin: 0 auto 20px auto;
    float: none;
  }
  #home .instagram #instamedia a .instaimg {
    height: 245px;
  }
}
@media (max-width: 360px) {
  #home .locations .office {
    font-size: 14px;
    height: 225px;
  }
  #home .locations .office h3 {
    font-size: 16px;
  }
  #home .locations .office:hover h3 {
    color: #464646;
  }
  #home .locations .office:hover h3 i {
    opacity: 0;
  }
}
@media (max-width: 360px) {
  #header a.logo-hold {
    width: 180px !important;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie * {
  zoom: 1;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie11 .nav-hold .navbar #search #sitesearch #search-field {
  padding-bottom: 10px;
}
.ie11 .tours .tours .tour .flip-container .flipper {
  transition: all 0.3s ease-in;
}
.ie11 .tours .tours .tour .flip-container .flipper .front,
.ie11 .tours .tours .tour .flip-container .flipper .back {
  backface-visibility: visible;
}
.ie11 .tours .tours .tour .flip-container .flipper .back {
  transform: none;
  opacity: 0;
}
.ie11 .tours .tours .tour .flip-container .flipper.hover {
  transform: none;
}
.ie11 .tours .tours .tour .flip-container .flipper.hover .front {
  opacity: 0;
}
.ie11 .tours .tours .tour .flip-container .flipper.hover .back {
  opacity: 1;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .nav-hold .navbar .srchbutton {
  right: 20px;
}
.ie10 .nav-hold .navbar #search #sitesearch #search-field {
  position: relative;
  top: 5px;
  padding-bottom: 10px;
}
.ie10 #multimedia-browser .multimedia-tools input[type="text"] {
  padding: 0 10px;
}
.ie10 .tours .tours .tour .flip-container .flipper {
  transition: all 0.3s ease-in;
}
.ie10 .tours .tours .tour .flip-container .flipper .front,
.ie10 .tours .tours .tour .flip-container .flipper .back {
  backface-visibility: visible;
}
.ie10 .tours .tours .tour .flip-container .flipper .back {
  transform: none;
  opacity: 0;
}
.ie10 .tours .tours .tour .flip-container .flipper.hover {
  transform: none;
}
.ie10 .tours .tours .tour .flip-container .flipper.hover .front {
  opacity: 0;
}
.ie10 .tours .tours .tour .flip-container .flipper.hover .back {
  opacity: 1;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .nav-hold .navbar #search {
  display: none;
}
.ie9 .nav-hold .navbar #search #search-field {
  position: relative;
  top: 5px;
}
.ie9 .search .navbar #search {
  display: block;
}
.ie9 #home .feature .carousel .left,
.ie9 #home .feature .carousel .right {
  filter: none;
}
.ie9 #home .feature .carousel .carousel-control {
  text-shadow: none;
  background-image: none;
}
.ie9 .tours .tours .tour .flip-container .flipper {
  transition: all 0.3s ease-in;
}
.ie9 .tours .tours .tour .flip-container .flipper .front,
.ie9 .tours .tours .tour .flip-container .flipper .back {
  backface-visibility: visible;
}
.ie9 .tours .tours .tour .flip-container .flipper .back {
  transform: none;
  opacity: 0;
}
.ie9 .tours .tours .tour .flip-container .flipper.hover {
  transform: none;
}
.ie9 .tours .tours .tour .flip-container .flipper.hover .front {
  opacity: 0;
}
.ie9 .tours .tours .tour .flip-container .flipper.hover .back {
  opacity: 1;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .nav-hold .navbar #search {
  display: none;
}
.ie8 .nav-hold .navbar #search #search-field {
  position: relative;
  top: 5px;
}
.ie8 .search .navbar #search {
  display: block;
}
.ie8 #home .feature .carousel .left,
.ie8 #home .feature .carousel .right {
  filter: none;
}
.ie8 #home .feature .carousel .carousel-control {
  text-shadow: none;
  background-image: none;
}
.ie8 .tours .tours .tour .flip-container .flipper {
  transition: all 0.3s ease-in;
}
.ie8 .tours .tours .tour .flip-container .flipper .front,
.ie8 .tours .tours .tour .flip-container .flipper .back {
  backface-visibility: visible;
}
.ie8 .tours .tours .tour .flip-container .flipper .back {
  transform: none;
  opacity: 0;
}
.ie8 .tours .tours .tour .flip-container .flipper.hover {
  transform: none;
}
.ie8 .tours .tours .tour .flip-container .flipper.hover .front {
  opacity: 0;
}
.ie8 .tours .tours .tour .flip-container .flipper.hover .back {
  opacity: 1;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .nav-hold .navbar #search {
  display: none;
}
.ie7 .nav-hold .navbar #search #search-field {
  position: relative;
  top: 5px;
}
.ie7 .search .navbar #search {
  display: block;
}
.ie7 #home .feature .carousel .left,
.ie7 #home .feature .carousel .right {
  filter: none;
}
.ie7 #home .feature .carousel .carousel-control {
  text-shadow: none;
  background-image: none;
}
.ie7 .tours .tours .tour .flip-container .flipper {
  transition: all 0.3s ease-in;
}
.ie7 .tours .tours .tour .flip-container .flipper .front,
.ie7 .tours .tours .tour .flip-container .flipper .back {
  backface-visibility: visible;
}
.ie7 .tours .tours .tour .flip-container .flipper .back {
  transform: none;
  opacity: 0;
}
.ie7 .tours .tours .tour .flip-container .flipper.hover {
  transform: none;
}
.ie7 .tours .tours .tour .flip-container .flipper.hover .front {
  opacity: 0;
}
.ie7 .tours .tours .tour .flip-container .flipper.hover .back {
  opacity: 1;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .tours .tours .tour .flip-container .flipper {
  transition: all 0.3s ease-in;
}
.ie6 .tours .tours .tour .flip-container .flipper .front,
.ie6 .tours .tours .tour .flip-container .flipper .back {
  backface-visibility: visible;
}
.ie6 .tours .tours .tour .flip-container .flipper .back {
  transform: none;
  opacity: 0;
}
.ie6 .tours .tours .tour .flip-container .flipper.hover {
  transform: none;
}
.ie6 .tours .tours .tour .flip-container .flipper.hover .front {
  opacity: 0;
}
.ie6 .tours .tours .tour .flip-container .flipper.hover .back {
  opacity: 1;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}


.alert{
  padding: 8px;
  border: none;
  border-radius: 0px;
  position: relative;
  background-color: #B41026;
  display: table;
  width: 100%;
  vertical-align: middle;
}

.alert .alertIcn{
  display: table-cell;
  vertical-align: middle;
  color: white;
  font-size: 30px;
}

.alert .headline{
  display: table-cell;
  vertical-align: middle;
  color: white;
}

.alert .headline a{
  color: white;
  text-decoration: none;
  font-size: 22px;
}

.alert .headline a:hover{
  text-decoration: underline;
}

.faqsection{
  border-top: 10px solid #ecf3f5;
  border-bottom: 10px solid #ecf3f5;
  display: table;
  width: 100%;
  padding: 1rem 0rem;
  margin-bottom: 2rem;

}

@media (max-width:767px){
.faqsection{
    display: table;
    width: 100%;
    padding: 0px;
  }
}

.faqsection .faqheader{

  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 34px;
  font-weight: bold;
  color: #363636;

}

.faqsection .panel{
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}


.faqsection .panel-heading{
  color: #363636;
  background-color: transparent;
  border-color: #a23827;
  border-radius: 0px;
  border: 0;
  border-bottom: 5px solid #a23827;
}
.faqsection .panel-title{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  color: #a23827;
}

.faqsection .panel-heading a{

  text-decoration: none;
  display: block;

}

.faqsection .panel-heading a:hover .panel-title{
  color: #a23827;
}

.faqsection .panel-heading .panel-title{
  color:  #363636;
}

.faqsection .panel-heading .panel-title .pull-right .fa{
  color: #363636;
}

.faqsection .panel-collapse .panel-body{
  border-bottom: 5px solid #f8f8f9;
}

.faqsection .panel-collapse .panel-body ul{
margin-top: 10px;
}


.faqsection .panel-collapse .panel-body p{
  margin-bottom: 10px;
}

.bigblocks .blockholder{
  margin-bottom: 1rem;
}

.bigblocks .block{
  display: table;
  vertical-align: middle;
  min-height: 110px;
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}

.bigblocks .block a{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  background-color: #a23826;
  color: white;
  padding: 2rem;
}

.bigblocks .block a:hover{
  background-color: #652217;
  color: white;
}





/*# sourceMappingURL=common.css.map */