/* 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.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
.no-gutter {
  margin: 0;
  padding: 0;
}
.dark-grey {
  background-color: #333333;
}
body #header {
  background-color: none;
}
body #header .sub-header {
  background-color: #b8b7b0;
}
body #header .sub-header .logo {
  z-index: 1000;
  position: absolute;
  top: 20px;
}
body #header .sub-header .logo img {
  width: 100px;
  height: 99px;
}
body #header .sub-header .chairman {
  float: left;
  font-family: 'Amasis MT W01 Italic';
  color: #333333;
  line-height: 29px;
  padding-left: 120px;
}
body #header .sub-header .social-nav {
  float: right;
}
body #header .sub-header .social-nav a {
  color: #8d8c88;
  padding-left: 15px;
  font-size: 18px;
  line-height: 28px;
}
body #header .sub-header .social-nav a:hover {
  color: #333333;
}
body .navbar {
  background-color: #333333;
}
body .navbar .nav-pills {
  width: 325px;
  float: left;
  margin-left: 100px;
}
body .navbar .nav-pills > li a {
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  padding-top: 16px;
  PADDING-BOTTOM: 14px;
  border-radius: 0;
  height: 59px;
}
body .navbar .nav-pills > li .dropdown-menu {
  border: none;
  background-color: white;
}
body .navbar .nav-pills > li .dropdown-menu li {
  width: 250px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #bf180e;
  background-color: white;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  background-color: #f3f3f3;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  background-color: #bf180e;
  color: white;
}
body .navbar .srchbutton {
  display: none;
}
body .navbar #search {
  width: 40%;
  float: right;
  height: 55px;
}
body .navbar #search.showme #sitesearch #search-field {
  z-index: 20;
  padding: 0 10px;
  width: 80%;
}
body .navbar #search #sitesearch {
  float: right;
  padding: 7px 0px;
}
body .navbar #search #sitesearch #search-field {
  height: 40px;
  width: 400px;
  border: none;
  padding: 10px;
  background-color: #d9d8d1;
  /* FF 4-18 */
  /* FF 19+ */
  /* IE 10+ */
}
body .navbar #search #sitesearch #search-field:focus::-webkit-body .navbar #search #sitesearch #search-field-placeholder {
  color: transparent;
}
body .navbar #search #sitesearch #search-field:focus:-moz-placeholder {
  color: transparent;
}
body .navbar #search #sitesearch #search-field:focus::-moz-placeholder {
  color: transparent;
}
body .navbar #search #sitesearch #search-field:focus:-ms-input-placeholder {
  color: transparent;
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #333333;
  font-family: 'Amasis MT W01 Italic';
  font-size: 16px;
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder:focus {
  color: transparent;
}
body .navbar #search #sitesearch #search-field:-moz-placeholder {
  /* Firefox 18- */
  color: #333333;
  font-family: 'Amasis MT W01 Italic';
  font-size: 16px;
}
body .navbar #search #sitesearch #search-field::-moz-placeholder {
  /* Firefox 19+ */
  color: #333333;
  font-family: 'Amasis MT W01 Italic';
  font-size: 16px;
}
body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: #333333;
  font-family: 'Amasis MT W01 Italic';
  font-size: 16px;
}
body .navbar #search #sitesearch button {
  display: none;
}
body #NavMobileModal .modal-backdrop.in {
  background-color: #dcdbd7;
}
body #NavMobileModal .modal-dialog .modal-content .modal-header {
  background-color: #8d8c88;
  margin-top: 7px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-header .close {
  color: #d9d8d1;
  margin-right: 20px;
  margin-top: -10px;
  padding: 6px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
  padding-top: 55px;
  font-size: 34px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: #8d8c88;
  font-family: 'Amasis MT W01 SC Bold';
}
body #NavMobileModal .modal-dialog .modal-content .modal-body a:hover {
  color: #bf180e;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
.featured-row {
  display: flex;
  display: -webkit-box;
}
.featured-row .press-item {
  background-size: cover;
  background-position: center center;
  height: 290px;
  display: block;
  max-height: 460px;
  max-height: 590px;
  position: relative;
}
.featured-row .press-item:hover {
  box-shadow: inset 0 0 0 3px #bf180e;
  z-index: 3;
}
.featured-row .press-item .top-press {
  display: block;
  height: 290px;
  position: relative;
  z-index: 10;
}
.featured-row .press-item .bottom {
  padding: 0px;
  position: absolute;
  bottom: 10px;
}
.featured-row .press-item .bottom .issue {
  background-color: #bf180e;
  color: white;
  margin-left: 10px;
  text-transform: uppercase;
  font-family: 'HelveticaNeueW01-75Bold';
  font-size: 12px;
  padding: 6px 9px;
}
.featured-row .press-item .bottom #share {
  margin-left: 5px;
  z-index: 100;
  position: absolute;
  height: 18px;
  background: url('/themes/rpc/images/share.png') -2px -5px no-repeat;
  background-size: 23px;
  margin-top: 8px;
}
.featured-row .press-item .bottom .slide {
  display: inline-block;
  z-index: 10;
  z-index: 99;
  position: absolute;
  margin-top: 4px;
  height: 21px;
  width: 1px;
  overflow: hidden;
  margin-left: 34px;
  line-height: 16px;
  vertical-align: middle;
  -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;
}
.featured-row .press-item .bottom .slide span {
  margin: 0px 2px;
  font-size: 17px;
}
.featured-row .press-item .bottom .press-headline {
  color: white;
  min-height: 60px;
  margin-left: 10px;
  margin-right: 10px;
  text-shadow: 0px 0px 8px black;
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
}
.featured-row .press-item .bottom .press-headline span {
  font-size: 16px;
}
.featured-row .press-item .bottom .press-headline span:hover {
  color: #bf180e;
  cursor: pointer;
}
.featured-row .press-item .bottom .press-headline.open #share {
  background: url('/themes/rpc/images/close.png') -2px -5px no-repeat;
  background-size: 23px;
}
.featured-row .press-item .bottom .press-headline.open .slide {
  width: 100px;
}
.featured-row #press-link {
  display: block;
  height: 290px;
  max-height: 460px;
  max-height: 590px;
}
#other-press-container #other-press {
  margin-top: 50px;
}
#other-press-container #other-press .image-container {
  float: left;
}
#other-press-container #other-press .image-container .image {
  height: 144px;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
#other-press-container #other-press .image-container .image a {
  background-color: #bf180e;
  color: white;
  text-transform: uppercase;
  font-family: 'HelveticaNeueW01-75Bold';
  margin-top: 15px;
  font-size: 12px;
  padding: 6px 9px;
  display: inline-block;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
#other-press-container #other-press .image-container .image:hover a {
  padding-left: 25px;
}
#other-press-container #other-press .image-container .share {
  background-color: #dcdbd7;
  padding: 7px;
  text-align: center;
}
#other-press-container #other-press .image-container .share .sharetool {
  color: #8d8c88;
  padding: 4px;
  cursor: pointer;
}
#other-press-container #other-press .image-container .share .sharetool span {
  margin: 4px;
}
#other-press-container #other-press .image-container .share .sharetool:hover {
  color: #333333;
}
#other-press-container #other-press .image-container .share .sharetool:first-child span {
  color: #dcdbd7;
  font-size: 12px;
  width: 16px;
  background-color: #8d8c88;
  height: 15px;
  vertical-align: bottom;
  line-height: 17px;
}
#other-press-container #other-press .image-container .share .sharetool:first-child:hover span {
  background-color: #333333;
}
#other-press-container #other-press .press-container {
  float: right;
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
}
#other-press-container #other-press .press-container p {
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
}
#other-press-container #other-press .press-container .press-headline {
  color: black;
}
#other-press-container #other-press .press-container .press-headline h3 {
  margin-top: 0;
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
}
#other-press-container #other-press .press-container .press-headline:hover {
  color: #bf180e;
}
#other-press-container #other-press .press-container .press-description #more {
  color: #bf180e;
  font-family: 'HelveticaNeueW01-75Bold';
  float: left;
}
#other-press-container #other-press .press-container .press-description #more:hover {
  color: #96120c;
}
.twitter-container {
  border: 1px solid #8d8c88;
  text-align: center;
  margin-top: 50px ;
  padding: 20px 30px;
}
.twitter-container h4 {
  font-family: 'HelveticaNeueW01-75Bold';
  font-size: 16px;
}
.twitter-container h4 a {
  color: #bf180e;
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
}
.twitter-container h4 a:hover {
  color: #8d8c88;
}
.twitter-container img {
  width: 80px;
}
.twitter-container #twitter .tweet {
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
  font-size: 28px;
}
.twitter-container #twitter .tweet a {
  color: #bf180e;
}
.twitter-container #twitter .tweet a:hover {
  color: #8d8c88;
}
.twitter-container #twitter .tweet .date {
  color: #b8b7b0;
  margin-left: 20px;
  font-size: 18px;
}
.twitter-container #twitter .interact a span {
  color: #b8b7b0;
  margin: 15px;
  margin-bottom: 0;
}
.twitter-container #twitter .interact a span:hover {
  color: #ffac33;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.policypaperbody {
  padding-left: 300px;
  padding-right: 300px;
  font-family: 'Helvetica Neue LT W06_51366418';
  font-weight: normal;
}
.policypaperbody img {
  height: auto!important;
}
.policypaperbody p {
  font-family: 'Helvetica Neue LT W06_51366418';
  font-size: 18px;
  margin: 0 0 25px;
  line-height: 31px;
}
.policypaperbody h1 {
  font-size: 34px;
}
.policypaperbody h3 {
  font-size: 24px;
  line-height: 28px;
}
.policypaperbody h3 b {
  font-weight: normal;
}
.policypaperbody .policypapertime {
  margin-bottom: 10px;
  font-size: 18px;
}
.policypaperbody ul li {
  font-size: 18px;
  line-height: 31px;
}
.policypaperbody ul li h3 {
  font-size: 24px;
}
#voting_record .page .row {
  /* ----- */
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
/*
hearing styles */
#about-gallery {
  width: 30%;
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
#about-gallery .image {
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  padding: 0;
}
#about-gallery img {
  width: 100%;
}
#about-gallery .click-gallery {
  width: 100%;
}
.breadcrumb {
  background-color: white !important;
  border-radius: 0px!important;
  border-bottom: 1px solid #b8b7b0 !important;
}
.issues-page .no-gut {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 0;
}
.issues-page .background {
  padding: 15px;
  background-color: #b8b7b0;
  display: inline-block;
}
.issues-page .background .issue {
  background-color: #f4f4f4;
  border: 3px solid #e3e3df;
  text-align: center;
}
.issues-page .background .issue h2 {
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
  font-size: 30px;
  color: black;
}
.issues-page .background .issue h2:hover {
  text-decoration: none;
}
.issues-page .background .issue img {
  border-radius: 80px;
  width: 80px;
  overflow: hidden;
}
.issues-page .background .issue:hover {
  border: 3px solid #bf180e;
}
.issues-page .background .issue:hover h2 {
  color: #bf180e;
}
.issues-page .background .issue .circle {
  border-radius: 80px;
  width: 80px;
  height: 80px;
  border: 1px solid #e3e3df;
  background-color: white;
  margin: 0 auto;
  color: #d9d8d1;
  padding: 28px 23px;
}
.issues-page .background .block {
  text-align: center;
  height: 220px;
  display: block;
  margin: 15px 0px;
  padding: 30px;
}
.issues-page .background .block a {
  display: block;
}
.issues-page .background .cell {
  border: 3px solid #aaa9a1;
  padding: 70px;
}
.issues-page .issue-nav {
  display: none;
}
.carousel-control {
  opacity: 1;
}
.main_container,
#main_container {
  margin-top: 55px;
}
#paging {
  background-color: #b8b7b0;
  padding: 10px 10px;
  display: inline-block;
  width: 100%;
}
#paging .pagination-right {
  float: left;
  margin-top: 6px;
}
#paging .pagination-right .form-inline {
  color: white;
}
#paging .pagination-right .form-inline select {
  background: #fff;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
}
#paging .pagination-right .form-inline select:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #8aa8bd transparent;
}
#paging .pager {
  margin: 0;
  float: right;
}
#paging .pager .next {
  float: right;
}
#paging .pager .next a {
  background-color: #b8b7b0;
  font-size: 18px;
}
#paging .pager .previous a {
  font-size: 18px;
  background-color: #b8b7b0;
}
#paging #filterbuttons #launchfilter {
  margin-top: 3px;
  margin-left: 11px;
  font-size: 16px;
  background-color: #b8b7b0;
  color: white;
}
#issues-list,
#type-restrict {
  display: none;
}
#search_sidebar_form button:hover,
#search_sidebar_form .btn:hover {
  color: white;
  background-color: black;
}
#browser_table tr:nth-child(odd) {
  background-color: #f5f5f1;
}
#browser_table .divider {
  background-color: white !important;
  border-bottom: 2px solid #b8b7b0;
  font-weight: 600;
  color: #8d8c88;
}
.ce_youtube_video {
  text-align: center;
}
.ce_youtube_video iframe {
  width: 720px;
}
footer.related {
  background-color: #dcdbd7;
  padding: 24px 40px;
}
footer.related #related h3 {
  margin-top: 0;
}
footer.related #related span {
  margin: 5px;
}
.share-bar {
  margin-bottom: 30px;
  width: 100%;
  color: #8d8c88;
}
.share-bar a {
  color: #8d8c88;
  margin: 2px 5px;
  cursor: pointer;
}
.share-bar a:hover {
  color: #bf180e;
}
.share-bar span {
  margin: 8px 5px;
  cursor: pointer;
}
.share-bar span:first-child {
  margin-left: 0px;
}
.share-bar span:hover {
  color: #bf180e;
}
header h1,
.main_page_title {
  color: #bf180e;
}
article#main img {
  width: 100%;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
.issue-nav {
  background-color: #333333;
  margin-top: 50px;
  margin-bottom: 50px;
}
.issue-nav ul {
  list-style: none;
  color: white;
  margin: 0;
  font-size: 14px;
  padding-left: 20px;
}
.issue-nav ul li {
  display: inline-block;
}
.issue-nav ul li a {
  color: white;
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
  padding: 30px 10px;
  display: block;
}
.issue-nav ul li a:hover,
.issue-nav ul li a.selected {
  background-color: black;
}
.issue-nav #bold {
  font-family: 'HelveticaNeueW01-75Bold';
  float: left;
  color: white;
  line-height: 80px;
  margin: 0 10px;
}
body footer {
  background-color: #b8b7b0;
  padding: 25px 0px;
}
body footer #privacy {
  float: left;
  color: #8d8c88;
  font-family: 'HelveticaNeueW01-65Medi', sans-serif;
}
body footer #privacy:hover {
  color: #333333;
}
body footer .social-nav {
  float: right;
}
body footer .social-nav a {
  color: #8d8c88;
  font-size: 22px;
  margin: 0px 10px;
}
body footer .social-nav a:hover {
  color: #333333;
}
/* collapse ------------------------------- */
#content .checkbox input[type="checkbox"] {
  margin-left: 20px!important;
}
#content .checkbox input[type="checkbox"] + label {
  margin-left: 30px;
}
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
/*

font-family:'Amasis MT W01 Light';
font-family:'Amasis MT W01';
font-family:'AmasisMTW01-LightItalic';
font-family:'Amasis MT W01 Italic';
font-family:'Amasis MT W01 Medium';
font-family:'AmasisMTW01-MediumItali';
font-family:'HelveticaNeueW01-45Ligh';
font-family:'Amasis MT W01 SC Bold';
font-family:'HelveticaNeueW01-75Bold';
font-family:'HelveticaNeueW01-65Medi'
font-family:'HelveticaNeueW01-45Ligh';

paste available font families here
*/
/*define site colors here

  naming conventions
  if we have multiple shades of one color
  number each shade from 1 - n
  with 1 being the lightest and n being the darkest

  @sitecolor:#fff; //example

  @colorshade1 :#examplehex;
  @colorshade2 :#examplehex;
  @colorshade3 :#examplehex;

*/
/*set up serif font quick class if we have one*/
.bold {
  font-family: 'HelveticaNeueW01-75Bold';
}
.italic {
  font-family: 'Amasis MT W01 Italic';
}
.light-italic {
  font-family: 'AmasisMTW01-LightItalic';
}
.alight {
  font-family: 'Amasis MT W01 Light';
}
.light {
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
}
.medium {
  font-family: 'HelveticaNeueW01-65Medi', sans-serif;
}
.amasis {
  font-family: 'Amasis MT W01';
}
/*header styles*/
body {
  font-size: 16px;
  font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
}
/*anchor stlyes*/
a {
  color: #bf180e;
}
a:hover {
  text-decoration: none;
  color: #96120c;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn {
  background-color: #333333;
  white-space: normal;
  color: white;
  border: none;
  outline: none;
}
.pager li .btn:active,
.btn:active,
.btn-defualt:active,
.btn:visited:active,
.btn-defualt:visited:active,
btn:focus:active,
.btn-default:focus:active,
.search-media-btn:active,
.pager li .btn:focus,
.btn:focus,
.btn-defualt:focus,
.btn:visited:focus,
.btn-defualt:visited:focus,
btn:focus:focus,
.btn-default:focus:focus,
.search-media-btn:focus,
.pager li .btn:visited,
.btn:visited,
.btn-defualt:visited,
.btn:visited:visited,
.btn-defualt:visited:visited,
btn:focus:visited,
.btn-default:focus:visited,
.search-media-btn:visited,
.pager li .btn:link,
.btn:link,
.btn-defualt:link,
.btn:visited:link,
.btn-defualt:visited:link,
btn:focus:link,
.btn-default:focus:link,
.search-media-btn:link {
  outline: none;
  background-color: #333333;
}
.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 {
  background-color: black;
}
/*interior page content default styles */
.nav-justified > li {
  width: auto;
}
.policypaper img {
  height: auto!important;
}
@media (max-width: 1330px) {
  .policypaperbody {
    padding-left: 250px;
    padding-right: 250px;
  }
  .policypaperbody p {
    font-family: 'Helvetica Neue LT W06_51366418';
    font-size: 18px;
    margin: 0 0 20px;
    line-height: 28px;
  }
  .policypaperbody img {
    height: auto!important;
  }
  .policypaperbody h1 {
    font-size: 30px;
  }
  .policypaperbody h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .policypaperbody h3 b {
    font-weight: normal;
  }
  .policypaperbody .policypapertime {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .policypaperbody ul li {
    font-size: 18px;
    line-height: 28px;
  }
  .policypaperbody ul li h3 {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  body .navbar #search #sitesearch #search-field {
    width: 300px;
  }
  .issue-nav #bold {
    height: 106px;
    line-height: 157px;
  }
  .issue-nav ul li a {
    font-size: 17px;
  }
  .issues-page .background .issue h2 {
    font-size: 26px;
  }
  body .navbar .nav-pills {
    display: block;
  }
  .policypaperbody {
    padding-left: 230px;
    padding-right: 230px;
  }
  .policypaperbody p {
    font-family: 'Helvetica Neue LT W06_51366418';
    font-size: 18px;
    margin: 0 0 20px;
    line-height: 28px;
  }
  .policypaperbody h1 {
    font-size: 30px;
  }
  .policypaperbody h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .policypaperbody h3 b {
    font-weight: normal;
  }
  .policypaperbody .policypapertime {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .policypaperbody ul li {
    font-size: 18px;
    line-height: 28px;
  }
  .policypaperbody ul li h3 {
    font-size: 20px;
  }
}
@media (max-width: 1198px) {
  .policypaperbody {
    padding-left: 160px;
    padding-right: 160px;
  }
  .policypaperbody p {
    font-family: 'Helvetica Neue LT W06_51366418';
    font-size: 18px;
    margin: 0 0 20px;
    line-height: 28px;
  }
  .policypaperbody h1 {
    font-size: 30px;
  }
  .policypaperbody h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .policypaperbody h3 b {
    font-weight: normal;
  }
  .policypaperbody .policypapertime {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .policypaperbody ul li {
    font-size: 18px;
    line-height: 28px;
  }
  .policypaperbody ul li h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  body .navbar #search #sitesearch #search-field {
    display: block !important;
    width: 250px;
  }
  .navbar .hidden-sm:first-child {
    display: block !important;
  }
  .navbar .srchbuttonmodal,
  .navbar .togglemenu {
    display: none !important;
  }
  body .navbar .nav-pills {
    display: block;
  }
  .policypaperbody {
    padding-left: 90px;
    padding-right: 90px;
  }
  .policypaperbody p {
    font-family: 'Helvetica Neue LT W06_51366418';
    font-size: 16px;
    margin: 0 0 20px;
    line-height: 24px;
  }
  .policypaperbody h1 {
    font-size: 30px;
  }
  .policypaperbody h3 {
    font-size: 19px;
    line-height: 20px;
  }
  .policypaperbody h3 b {
    font-weight: normal;
  }
  .policypaperbody .policypapertime {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .policypaperbody ul li {
    font-size: 16px;
    line-height: 24px;
  }
  .policypaperbody ul li h3 {
    font-size: 19px;
  }
}
@media (min-width: 768px) {
  .nav-justified > li {
    float: none;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #about-gallery {
    width: 50%;
  }
  .featured-row {
    display: block;
  }
  .nav-justified > li {
    display: inline-block !important;
  }
  body .navbar .nav-pills {
    width: 100%;
  }
  body .navbar .nav-pills > li {
    display: inline-block;
  }
  body .navbar #search #sitesearch #search-field {
    top: 59px;
    height: 35px;
    width: 0px;
    z-index: -1;
    padding: 0;
    -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;
    position: absolute;
    right: 14px;
  }
  body .navbar #search #sitesearch #search-field.toggle {
    z-index: 20;
    padding: 0 10px;
    width: 80%;
  }
  body .navbar {
    height: 20px;
  }
  .dark-grey {
    height: 60px;
  }
  body #header .sub-header {
    height: 37px;
  }
  body #header .sub-header .logo {
    left: 15px;
  }
  body #header .sub-header .chairman {
    margin-left: 0px;
    position: absolute;
    margin-top: 5px;
  }
  body #header .sub-header {
    margin-top: -60px;
  }
  body #header .sub-header .social-nav {
    right: 30px;
    position: absolute;
    padding-top: 8px;
  }
  body .navbar .srchbutton {
    display: block !important;
    position: absolute;
    right: 15px;
    color: white;
    top: 19px;
  }
  .issue-nav ul li a {
    font-size: 14px;
  }
  #other-press-container #other-press .press-container {
    float: none;
  }
  .policypaperbody {
    padding-left: 20px;
    padding-right: 20px;
  }
  .policypaperbody p {
    font-family: 'Helvetica Neue LT W06_51366418';
    font-size: 16px;
    margin: 0 0 20px;
    line-height: 24px;
  }
  .policypaperbody h1 {
    font-size: 30px;
  }
  .policypaperbody h3 {
    font-size: 19px;
    line-height: 20px;
  }
  .policypaperbody h3 b {
    font-weight: normal;
  }
  .policypaperbody .policypapertime {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .policypaperbody ul li {
    font-size: 16px;
    line-height: 24px;
  }
  .policypaperbody ul li h3 {
    font-size: 19px;
  }
}
@media (max-width: 689px) {
  .issue-nav #bold {
    height: 201px;
    line-height: 81px;
  }
  body .navbar .nav-pills > li a {
    font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    padding-top: 25px;
    PADDING-BOTTOM: 6px;
    border-radius: 0;
    margin: 0;
    padding-bottom: 12px;
  }
  body .navbar .srchbutton {
    top: 25px;
    font-size: 14px;
  }
  body .navbar .nav-pills > li {
    display: inline-block;
  }
  body .navbar #search.showme #sitesearch #search-field {
    width: 77%;
  }
  body #header .sub-header {
    margin-top: -56px;
  }
}
@media (max-width: 550px) {
  body .navbar #search.showme #sitesearch #search-field {
    width: 72%;
  }
  .issue-nav #bold {
    height: 247px;
    line-height: 81px;
  }
  .issues-block {
    width: 100%;
  }
}
@media (max-width: 515px) {
  body #header .sub-header .chairman {
    display: none;
  }
  .issue-nav {
    display: none;
  }
  .twitter-container {
    margin-bottom: 50px;
  }
}
@media (max-width: 479px) {
  body .navbar .srchbutton {
    right: 100px;
  }
  body .navbar .hidden-sm:first-child {
    display: none !important;
  }
  body .navbar .togglemenu {
    display: block !important;
    color: white;
    position: absolute;
    right: 15px;
    top: 23px;
  }
  #other-press-container #other-press .image-container {
    float: left;
    width: 100%;
  }
  body #header .sub-header {
    margin-top: 0px;
  }
  body #header .sub-header .chairman {
    display: none;
  }
  body .navbar #search.showme #sitesearch #search-field {
    width: 60%;
  }
  .issue-nav #bold {
    height: 247px;
    line-height: 81px;
  }
  .twitter-container #twitter .tweet {
    font-family: 'HelveticaNeueW01-45Ligh', sans-serif;
    font-size: 24px;
    word-break: break-word;
  }
  #about-gallery {
    width: 100%;
  }
  body footer .social-nav a {
    color: #8d8c88;
    font-size: 16px;
    margin: 0px 5px;
  }
  #other-press-container #other-press .press-container .press-headline h3 {
    display: inline-block;
  }
}
@media (max-width: 433px) {
  .issue-nav #bold {
    height: 347px;
    line-height: 81px;
  }
  .policypaperbody {
    padding-left: 10px;
    padding-right: 10px;
  }
  .policypaperbody p {
    font-family: 'Helvetica Neue LT W06_51366418';
    font-size: 15px;
    margin: 0 0 20px;
    line-height: 24px;
  }
  .policypaperbody img {
    height: auto;
  }
  .policypaperbody h1 {
    font-size: 28px;
  }
  .policypaperbody h3 {
    font-size: 19px;
    line-height: 20px;
  }
  .policypaperbody h3 b {
    font-weight: normal;
  }
  .policypaperbody .policypapertime {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .policypaperbody ul li {
    font-size: 15px;
    line-height: 20px;
  }
  .policypaperbody ul li h3 {
    font-size: 19px;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
@-moz-document url-prefix() {
  body #header .sub-header .container {
    position: relative;
  }
  body #header .sub-header .logo {
    top: -36px !important;
    left: 0;
  }
}
@media print {
  html body .featured-row .press-item .top-press,
  html body #other-press-container #other-press .image-container .share,
  html body #other-press-container #other-press .image-container .image,
  html body .issue-nav {
    display: none;
  }
  html body .featured-row .press-item {
    height: 150px;
  }
  html body .issues-block {
    width: 50%;
  }
}
