/* 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);
  }
}
.alert {
  background-color: #9a0000;
  border-radius: 0px;
}
.alert .alertIcn {
  display: block;
  margin-bottom: 10px;
}
.alert .alertIcn .glyphicon {
  padding-top: 7px;
  color: #fff;
}
.alert .headline a {
  font-size: 20px;
  color: #fff;
  padding-bottom: 1px;
  border-bottom: 1px solid white;
}
.alert .headline a:hover {
  color: yellow;
  border-bottom: 1px solid yellow;
}
.alert .shutdowntext {
  font-size: 16px;
  color: #fff;
  text-align: center;
}


.alerttwo {
  background-color: #ffbc00;
  border-radius: 0px;
  padding: 15px;
}
.alerttwo .alertIcn {
  display: block;
  margin-bottom: 10px;
}
.alerttwo .alertIcn .glyphicon {
  padding-top: 7px;
  color: #564d49;
}
.alerttwo .headline a {
  font-size: 20px;
  color: #564d49;
  padding-bottom: 1px;
  border-bottom: 1px solid #564d49;
}
.alerttwo .headline a:hover {
  color: #9a0000;
  border-bottom: 1px solid #9a0000;
}
.alerttwo .shutdowntext {
  font-size: 16px;
  color: #564d49;
  text-align: center;
}

#breadcrumb {
  height: 25px;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #564e49;
}
#NavMobileModal .modal-dialog .modal-content,
#SearchModal .modal-dialog .modal-content,
#ContactModal .modal-dialog .modal-content {
  z-index: 1000;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close,
#ContactModal .modal-dialog .modal-content .modal-header .close {
  padding: 15px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
  font-family: 'Neue Aachen W01 Regular';
}
#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: #00b16a;
}
#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: #004b2d;
}
body #header {
  height: 85px;
  position: relative;
  width: 100%;
  background-color: #00b16a;
}
@media (max-width: 991px) {
  body #header.scrolling {
    position: fixed;
    z-index: 100;
    top: 0;
  }
}
body #header .container {
  display: block;
}
@media (max-width: 1199px) {
  body #header .container {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }
}
body #header a.logo-hold {
  width: 300px;
  position: absolute;
  display: block;
}
body #header a.logo-hold img {
  width: 100%;
}
@media (max-width: 500px) {
  body #header a.logo-hold {
    width: 250px;
  }
}
body#home #header {
  height: 130px;
  position: absolute;
  background-color: transparent;
}
body#home #header .container {
  background-color: transparent;
  display: block;
}
@media (max-width: 1199px) {
  body#home #header .container {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }
}
body#home #header a.logo-hold {
  max-width: 350px;
  position: absolute;
  display: block;
}
body#home #header a.logo-hold img {
  width: 100%;
}
#newsroom .modal-dialog .modal-content {
  z-index: 1000;
}
body#home .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body#home .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body#home .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}
body#home .navbar .nav-pills > li a {
  color: #564e49;
  font-family: 'Neue Aachen W01 Regular';
  font-size: 22px;
  text-transform: uppercase;
  padding: 10px 15px;
}
body#home .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: none;
}
body#home .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body#home .navbar .nav-pills > li .dropdown-menu li a {
  color: #564e49;
  text-transform: uppercase;
  font-size: 19px;
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body#home .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #f5f5f5;
  color: black;
}
body#home .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #00b16a;
  background-color: transparent;
}
body#home .navbar .nav-pills > li .dropdown-menu.render-include {
  right: -150%;
}
body#home .navbar .nav-pills > li:hover,
body#home .navbar .nav-pills > li.selected {
  background-color: #fff;
}
body#home .navbar .nav-pills > li:nth-child(4) .dropdown-menu {
  width: 100%;
}
body#home .navbar .togglemenu {
  color: #564e49;
  font-size: 23px;
}
body#home .navbar .togglemenu .menulabel {
  display: none;
}
body#home .navbar .srchbuttonmodal {
  color: #564e49;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
body#home .navbar .srchbutton {
  color: #564e49;
}
body#home .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body#home .navbar #search.showme {
  /*width: 96%;*/
}
body#home .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body#home .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#home .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
  border: none;
  height: 85px;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #fff;
  font-family: 'Neue Aachen W01 Regular';
  font-size: 22px;
  text-transform: uppercase;
  padding: 27px 15px;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
  border: none;
  top: 100%;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #564e49;
  text-transform: uppercase;
  font-size: 19px;
  padding: 10px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #f5f5f5;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #00b16a;
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu.render-include {
  right: -150%;
}
body .navbar .nav-pills > li:hover,
body .navbar .nav-pills > li.selected {
  background-color: #009f5f;
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
body .navbar .srchbutton {
  color: #fff;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'Neue Aachen W01 Regular';
  font-size: 45px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  text-align: center;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  font-family: 'Neue Aachen W01 Regular';
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
body#home #header .nav-hold.right-slide-search,
body#home #header .nav-hold.right-search-modal {
  padding: 17px 0;
  margin-right: 30px;
  float: right;
}
body#home #header .nav-hold.right-slide-search .navbar,
body#home #header .nav-hold.right-search-modal .navbar {
  width: auto;
}
body#home #header .nav-hold.right-slide-search .nav-pills,
body#home #header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
  color: #fff;
}
body#home #header .nav-hold.right-slide-search .srchbutton,
body#home #header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}
body#home #header .nav-hold.right-slide-search .togglemenu,
body#home #header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
body#home #header .nav-hold.right-slide-search #search,
body#home #header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
body#home #header .nav-hold.right-slide-search #search.showme,
body#home #header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
body#home #header .nav-hold.right-slide-search #search #sitesearch,
body#home #header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field,
body#home #header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: transparent;
  color: #564e49;
  border-bottom: 3px solid #564e49;
}
body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
body#home #header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #564e49;
}
body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
body#home #header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #564e49;
}
body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
body#home #header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #564e49;
}
body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
body#home #header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #564e49;
}
body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
body#home #header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
body#home #header .nav-hold.right-slide-search #search #sitesearch button,
body#home #header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: transparent;
  color: #564e49;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
body#home #header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
body#home #header .nav-hold.right-search-modal #search {
  display: none;
}
body#home #header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
body#home #header .nav-hold.hamburger-and-search,
body#home #header .nav-hold.hamburger-only {
  float: right;
}
body#home #header .nav-hold.hamburger-and-search .togglemenu,
body#home #header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
body#home #header .nav-hold.hamburger-and-search .srchbuttonmodal,
body#home #header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
body#home #header .nav-hold.hamburger-and-search .srchbutton,
body#home #header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
body#home #header .nav-hold.hamburger-and-search #search,
body#home #header .nav-hold.hamburger-only #search {
  display: none;
}
body#home #header .nav-hold.hamburger-and-search .menulabel,
body#home #header .nav-hold.hamburger-only .menulabel {
  display: none;
}
body#home #header .nav-hold.hamburger-and-search .nav-pills,
body#home #header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
body#home #header .nav-hold.hamburger-and-search.pull-left,
body#home #header .nav-hold.hamburger-only.pull-left {
  float: left;
}
body#home #header .nav-hold.hamburger-and-search.pull-left .togglemenu,
body#home #header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
body#home #header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 0px 0;
  margin-right: 30px;
  height: 85px;
  float: right;
}
@media (max-width: 991px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    padding: 17px 0px;
  }
}
#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;
  color: #fff;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 31px;
  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: 28px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: transparent;
  color: #fff;
  border-bottom: 3px solid #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
#header .social-list a {
  color: #adadad;
}
#header .social-list .facebook-link:hover {
  color: #537bbd;
}
#header .social-list .twitter-link:hover {
  color: #78cdf0;
}
#header .social-list .youtube-link:hover {
  color: #e84242;
}
#header .social-list .instagram-link:hover {
  color: #696a6a;
}
#banner {
  background-size: cover;
  background-position: center top;
  height: 700px;
  width: 100%;
  display: inline-block;
  z-index: -1;
}
#banner.default {
  background-image: url('/themes/shaheen/images/banner.jpg');
}
#banner.summer {
  background-image: url('/themes/shaheen/images/summer.jpg');
}
#banner.fall {
  background-image: url('/themes/shaheen/images/fall.jpg');
}
#banner.winter {
  background-image: url('/themes/shaheen/images/winter.jpg');
}
#banner.spring {
  background-image: url('/themes/shaheen/images/spring.jpg');
}
@media (max-width: 768px) {
  #banner {
    height: 500px;
  }
}
@media (max-width: 479px) {
  #banner {
    height: 400px;
  }
}
@media (max-width: 330px) {
  #banner {
    height: 350px;
  }
}
.featured-buttons-row {
  background-color: #3acd88;
  margin-top: -7px;
}
@media (max-width: 1200px) {
  .featured-buttons-row .container {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .featured-buttons-row .container {
    margin-right: 0px;
    margin-left: 0px;
  }
}
.featured-buttons-row #featured-row {
  height: 100px;
}
.featured-buttons-row #featured-row:before {
  height: 100%;
  width: 10000px;
  background-color: #009f5f;
  position: absolute;
  left: -9934px;
  content: '';
  display: inline-block;
}
@media (max-width: 850px) {
  .featured-buttons-row #featured-row:before {
    display: none;
  }
}
@media (max-width: 1090px) {
  .featured-buttons-row #featured-row {
    padding-right: 0px;
  }
}
@media (max-width: 850px) {
  .featured-buttons-row #featured-row {
    width: 100%;
    height: auto;
    display: inline-block;
    padding-left: 0px;
  }
}
#featured-buttons .no-gutter {
  display: inline-block;
  padding: 0 10px;
}
@media (max-width: 1330px) {
  #featured-buttons .no-gutter {
    padding: 0 0px;
  }
}
@media (max-width: 850px) {
  #featured-buttons .no-gutter {
    width: 100%;
    height: auto;
  }
}
#featured-buttons .tbl {
  display: table;
  width: 100%;
  max-width: 220px;
}
@media (max-width: 850px) {
  #featured-buttons .tbl {
    max-width: 100%;
    margin-bottom: -7px;
  }
}
#featured-buttons .tbl a {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0px;
  width: 100%;
  height: 100px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  font-family: 'AlbanyW01 Bold';
  position: relative;
  white-space: normal;
  background-color: #3acd88;
  text-transform: uppercase;
  border-bottom: 3px solid #3acd88;
}
@media (max-width: 1200px) {
  #featured-buttons .tbl a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  #featured-buttons .tbl a {
    font-size: 12px;
  }
}
@media (max-width: 850px) {
  #featured-buttons .tbl a {
    border-bottom: 3px solid #009f5f;
    font-size: 18px;
    height: 50px;
  }
}
#featured-buttons .tbl a:hover {
  text-decoration: none;
  color: #009f5f;
}
#featured-buttons .tbl a:hover .icon {
  background-color: #009f5f;
}
#featured-buttons .tbl a .icon {
  background-color: white;
  height: 40px;
  width: 40px;
  float: left;
  text-align: center;
  border-radius: 40px;
  padding-top: 8px;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  top: 32px;
  left: 15px;
}
@media (max-width: 850px) {
  #featured-buttons .tbl a .icon {
    top: 3px;
    padding-top: 6px;
  }
}
#featured-buttons .tbl a .link-text {
  text-align: left;
  display: table-cell;
  height: 40px;
  width: 166px;
  margin-left: 74px;
  vertical-align: middle;
  padding-left: 70px;
}
@media (max-width: 1200px) {
  #featured-buttons .tbl a .link-text {
    padding-left: 60px;
    width: 150px;
  }
}
@media (max-width: 1090px) {
  #featured-buttons .tbl a .link-text {
    width: 145px;
  }
}
@media (max-width: 991px) {
  #featured-buttons .tbl a .link-text {
    width: 135px;
  }
}
@media (max-width: 850px) {
  #featured-buttons .tbl a .link-text {
    width: 100%;
    padding-left: 80px;
  }
}
#featured-buttons .tbl #newsletter-signup {
  padding-right: 120px;
  background: #009f5f url(../images/newsletter.png) no-repeat bottom right 0;
  font-family: 'NHaasGroteskDSW01-65Md';
  font-size: 20px;
  text-align: left;
  color: #fff;
  border-bottom: none;
}
@media (max-width: 1200px) {
  #featured-buttons .tbl #newsletter-signup {
    padding-left: 15px;
  }
}
@media (max-width: 1090px) {
  #featured-buttons .tbl #newsletter-signup {
    background: #009f5f;
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  #featured-buttons .tbl #newsletter-signup {
    padding-right: 25px;
  }
}
@media (max-width: 899px) {
  #featured-buttons .tbl #newsletter-signup {
    padding-right: 10px;
    padding-left: 0px;
  }
}
@media (max-width: 850px) {
  #featured-buttons .tbl #newsletter-signup {
    padding-right: 15px;
    padding-left: 15px;
  }
}
#featured-buttons .tbl #newsletter-signup .normal {
  display: block;
  font-family: 'Neue Aachen W01 Regular';
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  #featured-buttons .tbl #newsletter-signup .normal {
    font-size: 24px;
  }
}
@media (max-width: 899px) {
  #featured-buttons .tbl #newsletter-signup .normal {
    font-size: 20px;
  }
}
@media (max-width: 850px) {
  #featured-buttons .tbl #newsletter-signup .normal {
    display: none;
  }
}
#featured-buttons .tbl #newsletter-signup .mobile {
  display: none;
  font-family: 'Neue Aachen W01 Regular';
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  #featured-buttons .tbl #newsletter-signup .mobile {
    display: block;
  }
}
#featured-buttons .tbl #newsletter-signup.open {
  background-position: right -100px;
}
#featured-buttons .tbl #newsletter-signup:focus {
  text-decoration: none;
}
#featured-buttons .tbl #newsletter-signup-container {
  position: absolute;
  padding-left: 5px;
  width: 0px;
  overflow: hidden;
  white-space: nowrap;
  z-index: 99999;
  background-color: #009f5f;
  color: white;
  opacity: 0;
}
@media (max-width: 1199px) {
  #featured-buttons .tbl #newsletter-signup-container {
    width: auto!important;
  }
}
#featured-buttons .tbl #newsletter-signup-container #newsletter-form {
  -webkit-transition: opacity ease-in 0.1s;
  -moz-transition: opacity ease-in 0.1s;
  -o-transition: opacity ease-in 0.1s;
  -ms-transition: opacity ease-in 0.1s;
  transition: opacity ease-in 0.1s;
}
#featured-buttons .tbl #newsletter-signup-container #newsletter-form .top {
  height: auto;
}
#featured-buttons .tbl #newsletter-signup-container #newsletter-form .top .popover-content {
  padding: 7px 5px;
  font-size: 11px;
  color: #464646;
}
#featured-buttons .tbl #newsletter-signup-container #newsletter-form .col input {
  text-align: left;
  color: #464646;
}
#featured-buttons .tbl #newsletter-signup-container .col {
  float: left;
  padding: 25px 5px 0 5px;
  width: 20%;
}
#featured-buttons .tbl #newsletter-signup-container .col input {
  width: 100%;
  font-size: 0.75em;
  color: #adadad;
  border: none;
  height: 50px;
  padding-left: 10px;
  text-align: center;
  font-family: 'AlbanyW01 Bold';
}
#featured-buttons .tbl #newsletter-signup-container .col button {
  float: left;
  margin-top: 1px;
  padding: 7px 9px;
  border-radius: 5px;
  background-color: #009f5f;
  text-transform: uppercase;
  color: #fff;
  border: none;
  font-family: 'AlbanyW01 Bold';
}
#featured-buttons .tbl #newsletter-signup-container .col button:hover {
  background-color: #00b16a;
  color: #fff;
}
#featured-buttons .tbl #newsletter-signup-container #newsletter-confirmation {
  position: absolute;
  padding-left: 10px;
  opacity: 0;
  -webkit-transition: opacity ease-in 0.1s;
  -moz-transition: opacity ease-in 0.1s;
  -o-transition: opacity ease-in 0.1s;
  -ms-transition: opacity ease-in 0.1s;
  transition: opacity ease-in 0.1s;
  font: normal normal normal 22px/100px 'NHaasGroteskDSW01-75Bd';
}
#featured-buttons .tbl #newsletter-signup-container #newsletter-confirmation span {
  font-family: 'Albany W01';
}
#featured-buttons .tbl #newsletter-signup-container #newsletter-confirmation .newsletter-close {
  float: none;
  top: -2px;
  line-height: 23px;
  padding-top: 0px;
}
#featured-buttons .tbl #newsletter-signup-container #newsletter-confirmation .newsletter-close span {
  font-family: 'Glyphicons Halflings';
  top: 2px;
}
#featured-buttons .tbl #newsletter-signup-container.submitted #newsletter-form {
  opacity: 0;
}
#featured-buttons .tbl #newsletter-signup-container.submitted #newsletter-confirmation {
  opacity: 1;
}
#featured-buttons .tbl #newsletter-signup-container .newsletter-close {
  display: inline-block;
  position: relative;
  top: 10px;
  float: left;
  margin-left: 7px;
  padding-top: 0px;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 15px;
  font-size: 16px;
  color: #00b16a;
  background-color: #fff;
}
#featured-buttons .tbl #newsletter-signup-container .newsletter-close span {
  top: 3px;
  line-height: 1;
}
#featured-buttons .tbl #newsletter-signup-container .newsletter-close:hover {
  color: #fff;
  background-color: #00b16a;
}
.press .col-md-6,
.press .col-sm-6 {
  padding: 0;
}
.press-block {
  height: 420px;
  width: 100%;
  display: inline-block;
  position: relative;
}
@media (max-width: 1200px) {
  .press-block {
    height: 450px;
  }
}
@media (max-width: 850px) {
  .press-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .press-block {
    height: 100%;
    min-height: 400px;
  }
}
.press-block.no-image {
  background-color: #f6f6f6;
}
.press-block.no-image .press-type {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-top: 0;
  font-size: 28px;
}
.press-block.no-image .press-type i {
  font-size: 22px;
  vertical-align: middle;
}
.press-block.no-image .press-type a {
  color: #564e49;
}
.press-block.no-image .press-type a:hover {
  color: #00b16a;
}
.press-block.no-image .press-date {
  font-family: 'Albany W01';
  font-size: 19px;
  margin-top: 30px;
}
.press-block.no-image .title {
  color: #00b16a;
  font-family: 'AlbanyW01 Bold';
  font-size: 24px;
}
@media (max-width: 1200px) {
  .press-block.no-image .title {
    font-size: 22px;
  }
}
.press-block.with-img {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 28px;
}
.press-block.with-img .press-title {
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s background-color ease-in;
}
.press-block.with-img .press-title:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.press-block .press-image {
  background-color: #564e49;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.press-block .press-title {
  width: 100%;
  height: 100%;
  padding: 30px 40px;
}
@media (max-width: 767px) {
  .press-block .press-title {
    height: 100%;
    min-height: 400px;
  }
}
.videosection {
  display: table;
  float: left;
}
@media (max-width: 767px) {
  .videosection {
    float: none!important;
    display: block;
  }
}
.videosection .with-vid {
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
  background-color: black;
}
@media (max-width: 767px) {
  .videosection .with-vid {
    display: block;
    min-height: auto;
  }
}
.videosection .with-vid .multi-video {
  max-height: 420px;
  vertical-align: middle;
}
.videosection .with-vid .multi-video .embed-responsive {
  position: static;
}
.twitterareablock {
  float: right;
}
@media (max-width: 767px) {
  .twitterareablock {
    float: none!important;
  }
}
.twitterareablock .twitter {
  background-color: #f6f6f6;
}
.twitterareablock .twitter .press-type {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-top: 0;
  font-size: 28px;
}
.twitterareablock .twitter .press-type a {
  color: #564e49;
}
.twitterareablock .twitter .press-type a:hover {
  color: #00b16a;
}
.twitterareablock .twitter #twitter {
  font-family: 'Albany W01';
  font-size: 20px;
}
.twitterareablock .twitter #twitter a {
  color: #564e49;
}
.twitterareablock .twitter #twitter a:hover {
  color: #00b16a;
}
.twitterareablock .twitter #twitter .tweet {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 25px;
}
.twitterareablock .twitter #twitter .tweet a {
  word-break: break-all;
}
body .officelocationsinterior {
  margin: 0;
  width: 100%;
  background-size: cover;
  background-color: #00b16a;
  height: 100px;
  text-align: center;
  padding: 0;
  margin-top: 50px;
  overflow: hidden;
}
body .officelocationsinterior h3 {
  font-family: 'Neue Aachen W01 Regular';
  font-size: 32px;
  display: block;
  color: #FFF;
  padding: 0px 0 0 0;
  position: relative;
  text-align: center;
  width: 100%;
  top: 0px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 991px) {
  body .officelocationsinterior {
    display: block!important;
  }
}
body#home .officelocationsinterior {
  display: none!important;
}
body#home .header-social {
  padding-top: 27px;
}
@media (max-width: 991px) {
  body#home .header-social {
    padding-top: 17px;
    margin-right: 10px;
  }
}
@media (max-width: 400px) {
  body#home .header-social {
    display: none;
  }
}
body#home .header-social a {
  color: #564e49;
}
.officelocations {
  width: 100%;
  background-size: cover;
  background-color: #00b16a;
  height: 100px;
  text-align: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.officelocations h3 {
  font-family: 'Neue Aachen W01 Regular';
  font-size: 32px;
  display: block;
  color: #FFF;
  padding: 0px 0 0 0;
  position: relative;
  text-align: center;
  width: 100%;
  top: 0px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 991px) {
  .officelocations {
    display: block!important;
  }
}
.office-locations {
  border-top: 20px solid #ffffff;
  margin: 0;
}
.office-locations a {
  color: white !important;
  bottom: -3px;
  position: relative;
}
.office-locations .location {
  background-size: cover;
  background-color: #00b16a;
  height: 245px;
  text-align: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.office-locations .location h3 {
  font-family: 'Neue Aachen W01 Regular';
  font-size: 32px;
  display: block;
  color: #FFF;
  padding: 81px 0 0 0;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 0px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.office-locations .location .blue-filter {
  height: 245px;
  background-color: #00b16a;
  opacity: 0.7;
}
.office-locations .location .blue-filter.dark {
  height: 245px;
  background-color: #075f3b;
  opacity: 0.7;
}
.office-locations .location .reveal {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0;
  position: absolute;
  top: 0px;
  display: block;
  background-color: #00b16a;
  height: 245px;
  padding: 32px !important;
  color: #fff;
  width: 100%;
  font-size: 15px;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
}
.office-locations .location .reveal .adr {
  margin: 0;
  padding: 0;
  line-height: 23px;
  font-size: 17px;
}
.office-locations .location .reveal .adr strong {
  font-size: 22px;
  display: block;
  float: left;
  margin-bottom: 15px;
  width: 100%;
}
.office-locations .location .reveal .adr a {
  font-size: 15px;
  color: #fff !important;
  bottom: -3px;
  position: relative;
  font-weight: bold;
}
.office-locations .location .reveal .adr a:hover {
  color: #564e49 !important;
}
.office-locations .location .reveal .tel {
  margin: 0;
  padding: 0;
}
.office-locations .location .reveal .tel dt,
.office-locations .location .reveal .tel dd {
  float: left;
  font-size: 14px;
}
.office-locations .location .reveal .tel dd {
  margin-right: 5px;
}
.office-locations .location .reveal.dark {
  background-color: #009f5f;
}
.office-locations .location:hover {
  /*h3{
				.transition(all, 0.2s, ease-in);
				top:-100%;
			}*/
}
.office-locations .location:hover .reveal {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 1;
}
@media (max-width: 991px) {
  .office-locations .location:nth-child(1) {
    display: none;
  }
}
.office-locations .location:nth-child(2) {
  background-image: url("/themes/shaheen/images/capitol.jpg");
  background-position: center center;
}
@media (max-width: 991px) {
  .office-locations .location:nth-child(2) {
    display: none;
  }
}
.office-locations .location:nth-child(3) {
  background-image: url("/themes/shaheen/images/manchester.jpg");
  background-position: center bottom;
}
@media (max-width: 991px) {
  .office-locations .location:nth-child(3) {
    display: none;
  }
}
.office-locations .location:nth-child(4) {
  background-image: url("/themes/shaheen/images/claremont.jpg");
  background-position: center center;
}
@media (max-width: 991px) {
  .office-locations .location:nth-child(4) {
    display: none;
  }
}
.office-locations .location:nth-child(5) {
  background-image: url("/themes/shaheen/images/dover.jpg");
  background-position: center center;
}
@media (max-width: 991px) {
  .office-locations .location:nth-child(5) {
    display: none;
  }
}
@media (max-width: 767px) {
  .office-locations .location:nth-child(5) .blue-filter.dark {
    background-color: #00b16a;
  }
}
.office-locations .location:nth-child(6) {
  background-image: url("/themes/shaheen/images/keene.jpg");
  background-position: center center;
}
@media (max-width: 991px) {
  .office-locations .location:nth-child(6) {
    display: none;
  }
}
@media (max-width: 767px) {
  .office-locations .location:nth-child(6) .blue-filter {
    background-color: #075f3b;
  }
}
.office-locations .location:nth-child(7) {
  background-image: url("/themes/shaheen/images/berlin.jpg");
  background-position: center center;
}
@media (max-width: 991px) {
  .office-locations .location:nth-child(7) {
    display: none;
  }
}
@media (max-width: 767px) {
  .office-locations .location:nth-child(7) .blue-filter.dark {
    background-color: #00b16a;
  }
}
.office-locations .location:nth-child(8) {
  background-image: url("/themes/shaheen/images/nashua.jpg");
  background-position: center center;
}
.office-locations .location:nth-child(8) .reveal .adr a {
  padding-left: 0px;
}
@media (max-width: 991px) {
  .office-locations .location:nth-child(8) {
    display: none;
  }
}
@media (max-width: 767px) {
  .office-locations .location:nth-child(8) .blue-filter {
    background-color: #075f3b;
  }
}
/*
default interior styles

commonly made fixes / tweaks
*/
body #main_container {
  max-width: 1175px;
}
@media (max-width: 991px) {
  body #main_container {
    padding-top: 85px;
  }
}
@media (max-width: 991px) {
  #content.hasbanner .banner {
    padding-top: 45px;
    margin-top: 0px!important;
  }
  body.scrolling #content.hasbanner .banner {
    padding-top: 145px;
    margin-top: 0px!important;
  }
}
@media (max-width: 991px) {
  #content.hasbanner #main_container {
    padding-top: 0px;
  }
}
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.fancybox-title-float-wrap {
  bottom: auto!important;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
li.previous {
  margin-right: 10px;
}
#breadcrumb a {
  color: #adadad;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #00b16a;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
@media (max-width: 991px) {
  #form_thomas_search .col-sm-3 {
    padding-left: 15px!important;
    margin-top: 10px;
  }
}
#filter-legislation {
  margin-top: 90px;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#filterbuttons a {
  background-color: transparent;
  color: #00b16a;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #009f5f;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #00b16a;
  font-weight: bold;
  color: white;
  transition: 0.3s background-color ease-in;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #009f5f;
}
.office-locations .location .sub-line {
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: 135px;
  font-weight: bold;
  display: block;
  width: 100%;
  margin: 0 auto;
}
body#issue aside {
  margin-top: 44px;
}
body#issue aside > ul li a {
  display: flex;
}
body.video-detail #issue-banner {
  display: none !important;
}
#typenav li a {
  color: #564e49;
}
#typenav li.active a {
  color: white;
  background-color: #00b16a;
}
#typenav.affix {
  top: 0;
}
.newsroom #newscontent #press .date {
  font-family: 'Neue Aachen W01 Regular';
  text-transform: uppercase;
  font-size: 24px;
  color: #adadad;
}
body.newsroom_landing .newsroombody {
  width: 100%;
  max-width: 1175px;
  margin: 0 auto;
  display: block;
}
body.newsroom_landing .newsroombody #newscontent #press .section,
body.newsroom_landing .newsroombody #newscontent #photos .section,
body.newsroom_landing .newsroombody #newscontent #videos .section,
body.newsroom_landing .newsroombody #newscontent #news .section {
  font-family: 'AlbanyW01 Bold';
  font-size: 28px;
  margin-top: 10px;
  margin-bottom: 30px;
  font-weight: 500;
  color: #564e49;
}
body.newsroom_landing .newsroombody #newscontent #press .section:hover,
body.newsroom_landing .newsroombody #newscontent #photos .section:hover,
body.newsroom_landing .newsroombody #newscontent #videos .section:hover,
body.newsroom_landing .newsroombody #newscontent #news .section:hover {
  color: #00b16a;
}
body.newsroom_landing .newsroombody #newscontent #press .date,
body.newsroom_landing .newsroombody #newscontent #photos .date,
body.newsroom_landing .newsroombody #newscontent #videos .date,
body.newsroom_landing .newsroombody #newscontent #news .date {
  font-family: 'Neue Aachen W01 Regular';
  text-transform: uppercase;
  font-size: 24px;
  color: #adadad;
}
body.newsroom_landing .newsroombody #newscontent #press .title,
body.newsroom_landing .newsroombody #newscontent #photos .title,
body.newsroom_landing .newsroombody #newscontent #videos .title,
body.newsroom_landing .newsroombody #newscontent #news .title {
  font-size: 32px;
}
body.newsroom_landing .newsroombody #newscontent #videos .slider-nav .slide .slide-img {
  height: 160px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
}
body.newsroom_landing .newsroombody #newscontent #photos .date {
  margin-bottom: 25px;
  display: none;
}
body.newsroom_landing .newsroombody #newscontent #photos ul {
  margin-bottom: 25px;
}
body.newsroom_landing .newsroombody #newscontent #photos .img-wrap {
  max-height: 230px;
  overflow: hidden;
}
body.newsroom_landing .newsroombody #newscontent #photos .img-wrap img {
  width: 100%;
}
body#photos-gallery #photos .date {
  display: none;
}
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%;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  body#priorities .ih-item.circle .img .filter h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  body#priorities .ih-item.circle .img .filter h2 {
    font-size: 36px;
  }
}
body#priorities .ih-item.circle a {
  cursor: pointer;
}
body#priorities .ih-item.circle .info {
  border-radius: 0px;
}
body#priorities .ih-item.circle .info h3 {
  height: auto;
  font-size: 32px;
  padding: 0px 18px;
  padding-top: 20px;
  margin: 0 auto;
}
body#priorities .ih-item.circle .info .info-back {
  border-radius: 0px;
  background: #009f5f;
  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;
  }
}
body#casework .container #toparea {
  max-width: 1175px;
}
body#casework #casework_main {
  position: relative;
  background-color: #f5f5f5;
  margin-bottom: 40px;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 767px) {
  body#casework #casework_main {
    padding-top: 10px;
  }
}
body#casework #casework_main #bioanchor {
  color: #adadad;
  font-size: 24px;
}
body#casework #casenav {
  background-color: #eaeaea;
}
@media (max-width: 991px) {
  body#casework #casenav {
    display: none;
  }
}
body#casework #casenav aside {
  font-size: 24px;
  margin-top: 0px;
  font-family: 'Albany W01';
}
body#casework #casenav aside p a {
  font-weight: bold;
}
@media (max-width: 991px) {
  body#casework #casenav aside {
    display: none;
  }
}
body#casework #casenav aside ul li {
  border-bottom: none;
}
body#casework #casenav #sidelist .list {
  width: 100%;
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 260px;
}
body#casework #casenav #sidelist .list ul .active {
  color: #00b16a;
}
body#casework #casenav #sidelist .list ul .active .btn-lg {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #00b16a;
  border: 1px solid #00b16a;
}
body#casework #casenav #sidelist .list ul li {
  border-bottom: none;
  padding-left: 0px;
  padding-right: 0px;
}
#biography .container #toparea {
  max-width: 1175px;
}
#biography .container #committees {
  margin-top: 40px;
  padding-left: 30px;
  padding-right: 95px;
  margin-left: -45px;
  margin-right: 0px;
}
@media (max-width: 1329px) {
  #biography .container #committees {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1175px;
    margin-left: -15px;
  }
}
@media (max-width: 1199px) {
  #biography .container #committees {
    padding-right: 0px;
  }
}
#biography .container #committees .content-committees {
  background-color: #f5f5f5;
  padding: 30px;
}
#biography #main_bio {
  position: relative;
  background-color: #f5f5f5;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 767px) {
  #biography #main_bio {
    padding-top: 10px;
  }
}
#biography #main_bio #bioanchor {
  color: #adadad;
  font-size: 24px;
}
#biography #main_bio img {
  width: 100%!important;
  height: auto!important;
  max-width: 750px!important;
}
#biography #bio-nav {
  background-color: #eaeaea;
}
@media (max-width: 991px) {
  #biography #bio-nav {
    display: none;
  }
}
#biography #bio-nav aside {
  margin-top: -380px;
  text-align: right;
  font-size: 24px;
  font-family: 'Neue Aachen W01 Medium';
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #biography #bio-nav aside {
    display: none;
  }
}
#biography #bio-nav aside ul li {
  border-bottom: none;
}
#biography #bio-nav #sidelist .list {
  width: 100%;
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 260px;
}
#biography #bio-nav #sidelist .list ul .active {
  color: #00b16a;
}
#biography #bio-nav #sidelist .list ul .active .btn-lg {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #00b16a;
  border: 1px solid #00b16a;
}
#biography #bio-nav #sidelist .list ul li {
  border-bottom: none;
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 1329px) {
  #biography #bio-nav aside.list.affix-top {
    max-width: 277px;
  }
}
#biography #bio-nav aside.list.affix-top ul li {
  padding-right: 15px;
}
@media (max-width: 1329px) {
  #biography #bio-nav aside.list.affix-top ul li {
    padding-right: 15px;
  }
}
#biography #bio-nav aside.list.affix-top ul li a:hover {
  color: #fff;
}
#biography #bio-nav aside.list.affix-top ul li a:focus {
  text-decoration: none;
  color: #00b16a;
}
#biography #bio-nav aside.list.affix {
  top: 560px;
  position: fixed!important;
  max-width: 278px;
  border-right: 5px solid #adadad;
  -webkit-transition: max-width 0.1s;
  transition: max-width 0.1s;
}
@media (max-width: 1329px) {
  #biography #bio-nav aside.list.affix {
    max-width: 277px;
  }
}
@media (max-width: 1199px) {
  #biography #bio-nav aside.list.affix {
    max-width: 227px;
  }
}
@media (max-width: 991px) {
  #biography #bio-nav aside.list.affix {
    display: none;
  }
}
#biography #bio-nav aside.list.affix ul li {
  padding-right: 25px;
}
#biography #bio-nav aside.list.affix ul li a {
  color: #564e49;
}
#biography #bio-nav aside.list.affix ul li a:hover {
  color: #00b16a;
}
#biography #bio-nav aside.list.affix ul li a:focus {
  text-decoration: none;
}
#biography #bio-nav aside.list.affix ul .active a {
  color: #00b16a;
}
#biography #bio-nav aside.list.affix-bottom {
  position: absolute!important;
  width: 100%;
  max-width: 278px;
  border-right: 5px solid #adadad;
}
@media (max-width: 1329px) {
  #biography #bio-nav aside.list.affix-bottom {
    max-width: 277px;
  }
}
@media (max-width: 1199px) {
  #biography #bio-nav aside.list.affix-bottom {
    max-width: 227px;
  }
}
#biography #bio-nav aside.list.affix-bottom ul li {
  padding-right: 25px;
}
#biography #bio-nav aside.list.affix-bottom ul li a {
  color: #564e49;
}
#biography #bio-nav aside.list.affix-bottom ul li a:hover {
  color: #00b16a;
}
#biography #bio-nav aside.list.affix-bottom ul li a:focus {
  text-decoration: none;
}
#biography #bio-nav aside.list.affix-bottom ul li:last-child a {
  color: #00b16a;
}
.fade.in {
  background-color: #564e49;
}
.datepicker table tr td.active.active {
  background-color: #00b16a;
  border-color: #00b16a;
}
#share-buttons #share-link-container {
  width: 472px;
}
@media (max-width: 1200px) {
  #share-buttons #share-link-container {
    width: 336px;
  }
}
@media (max-width: 991px) {
  #share-buttons #share-link-container {
    width: 443px;
  }
}
div#featured-details-description {
  overflow: hidden;
  max-height: 260px;
  height: 100%;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #00b16a !important;
}
.fancybox-title-float-wrap .child {
  white-space: normal !important;
}
body#photos-gallery .date.black {
  display: none;
}
#newsroom #newscontent #press .presstitle {
  margin-bottom: 40px;
}
#newsroom #newscontent #press .presstitle .date {
  font-family: 'Neue Aachen W01 Regular';
  text-transform: uppercase;
  font-size: 24px;
  color: #adadad;
}
#newsroom #newscontent #press p {
  line-height: 40px;
  font-size: 22px;
}
body#voting_record aside #search-thomas-pod {
  margin-top: 90px;
}
body#voting_record aside #search-thomas-pod h3 {
  font-family: 'Neue Aachen W01 Regular';
  font-size: 30px;
}
body#voting_record aside #search-thomas-pod #thomas_search {
  width: 100%;
  height: 50px;
  margin-top: 0px;
  font-size: 22px;
}
body#voting_record aside #search-thomas-pod .btn {
  padding: 6px 10px;
  margin-top: 0px;
}
body#voting_record #browser_table thead tr th {
  font-size: 22px;
  font-weight: bold;
}
body#legislation aside #search-thomas-pod h3 {
  font-family: 'Neue Aachen W01 Regular';
  font-size: 30px;
}
body#legislation aside #search-thomas-pod #thomas_search {
  width: 100%;
  height: 50px;
  margin-top: 0px;
  font-size: 22px;
}
body#legislation aside #search-thomas-pod .btn {
  padding: 6px 10px;
  margin-top: 0px;
}
body#legislation #browser_table thead tr th {
  font-size: 22px;
  font-weight: bold;
}
body#legislation #filter-legislation h3 {
  font-family: 'Neue Aachen W01 Regular';
  font-size: 30px;
}
body#tours .tours a img {
  width: 100%;
  display: block;
  height: 250px;
  opacity: 0.3;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
body#tours .tours a .tourtitle {
  z-index: 2;
  position: absolute;
  margin-left: 20px;
  color: #564e49;
}
body#tours .tours a:hover .tourtitle {
  color: #fff;
}
body#tours .tours a:hover img {
  opacity: 1;
}
body#tours .modal .close {
  padding: 5px 20px;
  font-size: 32px;
}
body#tours #aside {
  position: relative;
}
body#tours #aside .affix {
  max-width: 371.66px;
}
@media (max-width: 1199px) {
  body#tours #aside .affix {
    max-width: 303.66px;
  }
}
@media (max-width: 991px) {
  body#tours #aside .affix {
    position: relative;
    max-width: 100%;
  }
}
body#newsletters .newsletteritem {
  display: block;
  height: 140px;
  /*.newsletterimage{
			float: left;
			margin-right: 15px;
			height: 200px;
			border: 1px solid @gray;
			img{
				width: 100%;
			}
		}*/
}
body#newsletters .newsletteritem .date {
  font-family: 'Neue Aachen W01 Regular';
  text-transform: uppercase;
  font-size: 24px;
  color: #adadad;
}
body#newsletters .newsletteritem .text-box {
  float: left;
}
body#newsletters .newsletteritem .text-box .newslettertext a {
  font-family: 'Neue Aachen W01 Regular';
}
body#multimedia #social-media-container #share-buttons #share-link-button {
  height: 22px;
}
body#multimedia #social-media-container #share-buttons #share-twitter {
  margin-top: -3px;
}
body#multimedia #social-media-container #share-buttons #share-facebook iframe {
  width: 62px!important;
  height: 23px!important;
}
body#newsroom .video #share-footer #share-buttons #share-link-button {
  height: 22px;
}
body#newsroom .video #share-footer #share-buttons #share-twitter {
  margin-top: -3px;
}
body#newsroom .video #share-footer #share-buttons #share-facebook iframe {
  width: 62px!important;
  height: 23px!important;
}
body#newsroom .video div#featured-details-description {
  max-height: 500px;
}
#multimedia-browser input[type=button] {
  height: 39px !important;
  padding: 5px 18px!important;
}
@media (max-width: 1199px) {
  #multimedia-browser input[type=button] {
    padding: 5px 12px!important;
  }
}
@media (max-width: 768px) {
  #multimedia-browser input[type=button] {
    padding: 5px 18px!important;
  }
}
#multimedia-browser .multimedia-content {
  margin: 20px 0;
}
#multimedia-browser #video-tab-content .status,
#multimedia-browser #audio-tab-content .status,
#multimedia-browser #all-tab-content .status {
  padding: 5px 10px 5px 10px;
}
#multimedia-browser #video-tab-content .status p,
#multimedia-browser #audio-tab-content .status p,
#multimedia-browser #all-tab-content .status p {
  font-size: 18px;
}
#multimedia-browser #video-tab-content .status span,
#multimedia-browser #audio-tab-content .status span,
#multimedia-browser #all-tab-content .status span {
  font-size: 18px;
}
#multimedia-browser #video-tab-content .status a,
#multimedia-browser #audio-tab-content .status a,
#multimedia-browser #all-tab-content .status a {
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Neue Aachen W01 Regular';
}
#multimedia-browser #video-tab-content .pagination .paging-outer .paging-inner .paging .listing-jump,
#multimedia-browser #audio-tab-content .pagination .paging-outer .paging-inner .paging .listing-jump,
#multimedia-browser #all-tab-content .pagination .paging-outer .paging-inner .paging .listing-jump {
  font-size: 18px;
}
#multimedia-browser #video-tab-content .pagination .paging-outer .paging-inner .paging .listing-increment,
#multimedia-browser #audio-tab-content .pagination .paging-outer .paging-inner .paging .listing-increment,
#multimedia-browser #all-tab-content .pagination .paging-outer .paging-inner .paging .listing-increment {
  font-size: 18px;
}
#multimedia-browser .row .media-thumbnail {
  width: 100%;
  max-width: 203.3px;
}
@media (max-width: 1330px) {
  #multimedia-browser .row .media-thumbnail {
    max-width: 203.1px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  #multimedia-browser .row .media-thumbnail {
    max-width: 220px;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  #multimedia-browser .row .media-thumbnail {
    max-width: 180px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  #multimedia-browser .row .media-thumbnail {
    max-width: 136px;
    width: 100%;
  }
}
@media (max-width: 990px) {
  #multimedia-browser .row .media-thumbnail {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #multimedia-browser .row .media-thumbnail {
    width: 100%;
    max-width: 100%;
  }
}
#multimedia-browser .row .media-thumbnail a {
  font-size: 16px;
}
body#appropriations .clones {
  padding-bottom: 2em;
}
body#appropriations .clones + .clones {
  border-top: 1px solid gray;
  padding-bottom: 2em;
  padding-top: 2em;
}
body:not(#home) .header-social {
  padding-top: 27px;
}
@media (max-width: 991px) {
  body:not(#home) .header-social {
    padding-top: 17px;
    margin-right: 10px;
  }
}
@media (max-width: 550px) {
  body:not(#home) .header-social {
    display: none;
  }
}
body:not(#home) .header-social a {
  color: #fff;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #564e49;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #1f1c1a;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #564e49;
}
#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: #00b16a;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #564e49;
}
#multimedia-browser .row .media-thumbnail a {
  color: #564e49;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #00b16a;
}
@media (max-width: 480px) {
  #multimedia-browser .pagination .listing-jump {
    font-size: 14px!important;
  }
  #multimedia-browser .pagination .listing-increment {
    font-size: 14px!important;
  }
}
body footer {
  background-color: #4a423f;
  border-top: 20px solid #fff;
  padding-top: 60px;
  position: relative;
}
body footer .seal {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -60px;
  background: white;
  height: 104px;
  width: 104px;
  border-radius: 100px;
}
body footer .footer-ul.footernav {
  min-height: 82px;
  height: auto;
  text-align: center;
}
body footer .footer-ul.footernav li {
  padding: 15px 20px;
  text-align: center;
}
body footer .footer-ul.footernav li a {
  color: white;
  text-transform: uppercase;
  font-size: 22px;
  font-family: 'Neue Aachen W01 Regular';
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .footer-ul.footernav li.active a {
  text-decoration: underline;
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #564e49;
}
body footer .subfooternav a {
  color: white;
  font-family: 'Neue Aachen W01 Regular';
  font-family: 'Helvetica Neue LT W01_41488878';
  font-size: 16px;
}
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) footer {
  margin-top: 50px;
}
@media (max-width: 991px) {
  body:not(#home) footer {
    margin-top: 0px;
  }
}
#flagForm #flag-options .head {
  background-color: #00b16a;
  color: #fff;
}
body#flag #main_column form .btn {
  padding: 15px 40px!important;
  font-size: 24px;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form label {
  font-size: 18px;
}
#content .amend-form-container .btn {
  padding: 15px 40px;
  font-size: 24px;
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

font-family:'ITC Franklin Gothic LT W01 Bk';
font-family:'ITC Franklin Gothic LT W01BkIt';
font-family:'ITC Franklin Gothic LT W01 Md';
font-family:'ITC Franklin Gothic LT W01MdIt';
font-family:'ITC Franklin Gothic LT W01 Dm';
font-family:'ITC Franklin Gothic LT W01DmIt';
font-family:'ITC Franklin Gothic LT W01 Hv';
font-family:'ITC Franklin Gothic LT W01HvIt';
font-family:'ITC Franklin Gothic LT W01BkCm';
font-family:'ITC Franklin GothicLTW01BkCmIt';
font-family:'ITC Franklin Gothic LT W01DmCm';
font-family:'ITC Franklin GothicLTW01DmCmIt';
font-family:'ITC Franklin Gothic LTW01BkXCm';
font-family:'ITC Franklin Gothic LTW01DmXCm';
font-family:'NeueAachenW01-UtlraLigh1094391';
font-family:'NeueAachenW01-UtlraLigh1094394';
font-family:'Neue Aachen W01 Thin';
font-family:'NeueAachenW01-ThinItali';
font-family:'Neue Aachen W01 Light';
font-family:'NeueAachenW01-LightItal';
font-family:'Neue Aachen W01 Book';
font-family:'NeueAachenW01-BookItali';
font-family:'Neue Aachen W01 Regular';
font-family:'Neue Aachen W01 Italic';
font-family:'Neue Aachen W01 Medium';
font-family:'NeueAachenW01-MediumIta';
font-family:'NeueAachenW01-Semibold';
font-family:'NeueAachenW01-SemiboldI';
font-family:'Neue Aachen W01 Bold';
font-family:'NeueAachenW01-BoldItali';
font-family:'Neue Aachen W01 Black';
font-family:'NeueAachenW01-BlackItal';
font-family:'Albany W01';
font-family:'Albany W01 Italic';
font-family:'AlbanyW01 Bold';
font-family:'Albany W01 Bold Italic';
font-family:'Albertina W01';
font-family:'Albertina W01 Italic';
font-family:'Albertina W01 Medium';
font-family:'AlbertinaW01-MediumIt';
font-family:'Albertina W01 Bold';
font-family:'AlbertinaW01-BoldItalic';
font-family:'Bickley Script W01';
font-family:'Falcon Script W00 Regular';
font-family:'Style W01 Regular';
font-family:'StyleScript W00 Regular';
font-family:'StylePlain W00 Regular';
font-family:'StyleCasual W00 Regular';
font-family:'StyleFormal W00 Regular';
font-family:'StyleCaps W00 Regular';
font-family:'StyleSwashes W00 Regular';
font-family:'StyleEndings W95 Regular';
font-family:'StyleOrnaments W95 Regular';
font-family:'Beloved Sans W00 Regular';
font-family:'Beloved Sans W00 Bold';
font-family:'Beloved Script W00 Regular';
font-family:'Beloved Script W00 Bold';
font-family:'Beloved Ornaments W00 Regular';
font-family:'BFFionaScriptW01-Regula';
font-family:'BFFionaScriptW01-Bold';
font-family:'Helvetica Neue LT W01_65 Md';
font-family:'Helvetica Neue LT W01_35 Thin';
font-family:'Helvetica Neue LT W01_41488878';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.serif {
  font-family: 'Neue Aachen W01 Regular';
}
.serif-bold {
  font-family: 'Neue Aachen W01 Medium';
}
.open-sans {
  font-family: 'Open Sans', sans-serif;
}
.sans {
  font-family: 'Albany W01';
}
.sans-bold {
  font-family: 'AlbanyW01 Bold';
}
.helvetica-neue {
  font-family: 'Helvetica Neue LT W01_41488878';
}
body {
  font-size: 22px;
  font-family: 'Open Sans', sans-serif;
  color: #564e49;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Neue Aachen W01 Regular';
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #00b16a;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #009f5f;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
  font-family: 'Neue Aachen W01 Regular';
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 32px;
  font-size: 22px;
}
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: #00b16a;
  color: white;
  padding: 15px 10px;
  border-radius: 5px;
  font-family: 'Neue Aachen W01 Regular';
}
.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: #009f5f;
  color: white;
}
.pager li .btn {
  padding: 5px 14px;
}
.btn-block {
  font-size: 24px;
}
.btn-lg {
  font-size: 24px;
}
#content.hasbanner .banner {
  width: 100%;
  display: block;
  max-width: 1175px;
  margin: 0 auto;
  height: auto;
  margin-top: 60px;
}
/*interior page content default styles */
#content #breadcrumb a {
  font-size: 14px;
  color: #00b16a;
  font-family: 'Neue Aachen W01 Regular';
}
#content #breadcrumb ol li:after {
  content: ">";
  color: #564e49;
  top: 1px;
  font-family: 'Neue Aachen W01 Regular';
}
#content #breadcrumb ol li:last-child:after {
  content: "";
  color: transparent;
}
@media (max-width: 1200px) {
  body#home #main-nav li.dropdown a {
    font-size: 18px !important;
  }
}
@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 */