/* 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);
  }
}
.nobreadcrumbs #breadcrumb {
  display: none !important;
}
#breadcrumb {
  margin-top: 20px;
}
#breadcrumb > ol li:first-child {
  display: none;
}
#breadcrumb > ol li:after {
  content: "/";
  color: #eee;
  left: 5px;
  position: relative;
}
#breadcrumb > ol li:last-child:after {
  content: "";
}
#breadcrumb2 {
  margin-top: -10px;
  margin-bottom: 20px;
  background-color: rgba(218, 218, 218, 0.31);
  padding: 10px;
  margin-left: -60px;
  margin-right: -30px;
  border-top: 10px solid #455a70;
}
#breadcrumb2 > ol {
  margin-left: 50px;
  margin-bottom: 0px;
}
#breadcrumb2 > ol li:after {
  content: ">";
  color: #455a70;
  left: 5px;
  position: relative;
}
#breadcrumb2 > ol li:last-child:after {
  content: "";
}
#NavMobileModal .modal-backdrop,
#SearchModal .modal-backdrop,
#ContactModal .modal-backdrop {
  z-index: 0;
}
#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog,
#ContactModal .modal-dialog {
  margin: 10% auto;
  width: 100%;
  max-width: 600px;
}
#NavMobileModal .modal-dialog .modal-content,
#SearchModal .modal-dialog .modal-content,
#ContactModal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
#NavMobileModal .modal-dialog .modal-content .modal-header,
#SearchModal .modal-dialog .modal-content .modal-header,
#ContactModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  z-index: 100;
  float: left;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  color: #fff;
  text-shadow: 0 1px 0 #000;
  margin-right: 30px;
}
#NavMobileModal .modal-dialog .modal-content .btn,
#SearchModal .modal-dialog .modal-content .btn,
#ContactModal .modal-dialog .modal-content .btn {
  font-size: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-header,
#SearchModal .modal-dialog .modal-content .modal-header,
#ContactModal .modal-dialog .modal-content .modal-header {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-header h1,
#SearchModal .modal-dialog .modal-content .modal-header h1,
#ContactModal .modal-dialog .modal-content .modal-header h1 {
  font-size: 50px;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close,
#ContactModal .modal-dialog .modal-content .modal-header .close {
  font-size: 40px;
  color: #fff;
  opacity: .8;
  font-weight: 300;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close:hover,
#SearchModal .modal-dialog .modal-content .modal-header .close:hover,
#ContactModal .modal-dialog .modal-content .modal-header .close:hover {
  opacity: 1;
}
#NavMobileModal .modal-dialog .modal-content .modal-body,
#SearchModal .modal-dialog .modal-content .modal-body,
#ContactModal .modal-dialog .modal-content .modal-body {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
#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: #fff;
}
#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 {
  background-color: transparent;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch {
  padding: 40px 40px 0px 0px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  color: rgba(0, 0, 0, 0.8);
  width: 88%;
  font-size: 34px;
  font-weight: 300;
  border: none;
  padding: 10px;
  float: left;
  margin: 0;
}
#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 {
  border: none;
  font-size: 28px;
  padding: 14px;
  width: 12%;
}
#header {
  height: 130px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1039;
  padding-top: 0px;
  background-color: #fff;
}
#header .container {
  position: relative;
}
#header .container .logo {
  text-align: center;
  float: none;
  display: block;
  background-image: url(/themes/whitehouse/images/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 20px 0 0 20px;
  width: 100%!important;
  max-width: 433px;
  height: 80px;
  z-index: 1000000;
  transition: all 0.1s ease;
}
#header .container .logo a {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 1px;
  color: transparent;
}
@media (max-width: 330px) {
  #header .container .logo {
    margin: 20px 0 0 40px;
  }
}
@media (max-width: 479px) {
  #header .container .logo {
    width: 250px;
  }
}
@media (max-width: 300px) {
  #header .container .logo {
    width: 230px;
  }
}
@media (max-width: 599px) {
  #header .container .logo {
    background-image: url(/themes/whitehouse/images/mobilelogo.png);
    position: absolute;
    left: -40px;
  }
}
@media (max-width: 400px) {
  #header .container .logo {
    margin: 15px 0 0 40px;
  }
}
@media (max-width: 330px) {
  #header .container .logo {
    margin: 20px 0 0 40px;
  }
}
#header .container .signup {
  position: absolute;
  display: block;
  top: 0;
  right: 20px;
  background-image: url(/themes/whitehouse/images/signup.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 70px;
  height: 165px;
  transition: top 0.15s ease-in;
}
#header.min .signup {
  top: -62px;
}
#filtermodal .modal-title {
  color: #333;
}
#filtermodal .modal-dialog {
  border-radius: 10px;
  border: 1px solid #455a70;
  padding: 35px;
}
#filtermodal .modal-dialog .modal-content .close {
  font-size: 40px;
  color: #455a70 !important;
  opacity: .8;
  font-weight: 300;
}
#filtermodal .modal-dialog .modal-content .modal-body form select {
  width: 100%;
  color: #333;
  border: 1px solid #333;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
#filtermodal .modal-backdrop.in {
  opacity: .98;
  background-color: #fff;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu {
  display: block;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu li a {
  clear: both;
  text-decoration: none;
  display: block;
  font-weight: normal;
  line-height: 1.42857;
  padding: 10px 20px;
  white-space: nowrap;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu .subnav-split {
  list-style: none;
  margin: 0px;
  float: none;
  padding: 0px;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu .subnav-split li {
  list-style: none;
  font-size: 14px;
  list-style: none outside none;
  height: auto;
  width: 100%;
  float: left;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu .subnav-split li a {
  color: #262626;
  clear: both;
  text-decoration: none;
  display: block;
  font-weight: normal;
  line-height: 1.42857;
  padding: 10px 20px;
  white-space: nowrap;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu .subnav-split li a:hover {
  background-color: #F5F5F5;
  color: #262626;
  text-decoration: none;
}
/* NAV ---------------------------------------------------------------------------*/
.navbar {
  position: relative;
  float: left;
  min-height: 0;
  margin: 10px 0 0 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  height: 92px;
  background-color: transparent;
}
@media (max-width: 599px) {
  .navbar {
    float: right;
    right: 35px;
  }
}
.navbar .collapse {
  padding: 0px;
  width: 100%;
}
.navbar .nav-pills {
  margin: 25px 0 0 3px;
  width: 520px;
  float: left;
}
@media (max-width: 1030px) {
  .navbar .nav-pills > li {
    width: auto;
  }
}
.navbar .nav-pills > li a {
  text-transform: uppercase;
  font-family: 'Avenir Next LT W02SC Demi Cond';
  font-size: 20px;
  color: #304c61;
}
@media (max-width: 1030px) {
  .navbar .nav-pills > li a {
    font-size: 18px;
    padding: 12px 10px;
  }
}
.navbar .nav-pills > li a:hover {
  color: #e8b11a;
}
.navbar .nav-pills > li.selected a {
  color: #e8b11a;
}
.navbar .nav-pills > li:hover .dropdown-menu {
  display: block;
}
.navbar .nav-pills > li .dropdown-menu {
  top: 99%;
  left: auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin: 0px;
  padding: 0px;
  background-color: #fff;
}
.navbar .nav-pills > li .dropdown-menu > li a {
  font-size: 18px;
  color: #304c61;
}
.navbar .togglemenu {
  position: absolute;
  top: 25px;
  left: 10px;
  font-size: 24px;
  color: #455a70;
}
.navbar .togglemenu .menulabel {
  display: none;
}
.navbar .srchbutton {
  margin-top: 40px;
  margin-left: 20px;
  float: left;
  font-size: 14px;
  color: #304c61;
}
.navbar .srchbutton:hover {
  color: #e8b11a;
}
.navbar .srchbuttonmodal {
  display: none !important;
}
.navbar #search {
  position: absolute;
  width: 0;
  left: 0;
  top: 0;
  margin: 30px 0 0 100px;
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
}
.navbar #search #sitesearch {
  padding: 0;
  margin: 0;
  width: 435px;
}
.navbar #search #sitesearch #search-field {
  padding: 5px 20px;
  width: 375px;
  border: none;
  border-bottom: 2px solid #304c61;
}
.navbar #search #sitesearch button {
  width: 50px;
  color: #304c61;
  background-color: #FFF;
  border: none;
  padding: 10px 7px 7px 7px;
}
.navbar #search #sitesearch button:hover {
  color: #e8b11a;
}
.navbar.search .nav {
  opacity: 0;
}
.navbar.search #search {
  opacity: 1;
  width: 430px;
  float: left;
}
.social-icons {
  float: left;
  width: auto;
  margin: 48px 0 0 40px;
  line-height: 0;
}
@media (max-width: 599px) {
  .social-icons {
    display: none;
  }
}
.social-icons li {
  width: 22px;
  height: 22px;
  border-radius: 15px;
  border: 1px solid #304c61;
  text-align: center;
}
.social-icons li a {
  font-size: 13px;
  color: #304c61;
}
.social-icons li a i {
  padding-top: 3px;
}
.social-icons li a .fa-youtube-play {
  margin-left: -1px;
}
.social-icons li:hover {
  border: 1px solid #e8b11a;
}
.social-icons li:hover a {
  color: #e8b11a;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background: none;
}
#NavMobileModal .modal-backdrop {
  opacity: 1;
}
#NavMobileModal .modal-dialog .modal-content {
  /*   */
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  font-family: 'Avenir Next LT W02SC Demi Cond';
  text-align: center;
  font-size: 36px;
  clear: both;
  overflow: auto;
  margin: 0 0 15px 0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  margin: 0 0 0 0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  display: block;
  position: relative;
  width: 100%;
  float: none;
  background: none;
  box-shadow: none;
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li {
  font-family: 'Avenir Next LT W02SC Demi Cond';
  text-align: center;
  font-size: 22px;
}
.modal-backdrop.in {
  background-color: #455a70;
  opacity: 0.98;
}
#home #home-content .squeeze {
  width: 100%;
  height: auto;
}
#home #home-content .featured {
  position: relative;
  width: 100%;
  height: 590px;
  margin: 130px 0 42px 0;
  background-image: url("/themes/whitehouse/images/featured-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#home #home-content .featured .contact {
  position: absolute;
  bottom: 0;
  right: 70px;
  color: #FFF;
  font-family: 'Avenir Next LT W02SC Bold Cond';
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 20px 10px 20px;
  background-color: #e8b11a;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 10;
}
#home #home-content .featured .contact:hover {
  text-decoration: none;
  background-color: #304c61;
}
#home #home-content .featured h1 a {
  color: #FFF;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  padding: 10px;
  margin: auto;
  width: 60%;
  text-align: center;
  vertical-align: middle;
  z-index: 9;
  font-size: 55px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  #home #home-content .featured h1 a {
    width: 100%;
    top: 45%;
    font-size: 40px;
  }
}
@media (max-width: 470px) {
  #home #home-content .featured h1 a {
    width: 100%;
    top: 30%;
  }
}
#home #home-content .featured h1 a:hover {
  text-decoration: none;
}
#home #home-content .news {
  padding: 0 20px 0 20px;
}
#home #home-content .news h2 {
  color: #304c61;
  font-size: 24px;
  font-family: 'Freight Text W01 Semibold It';
}
#home #home-content .news .news-item {
  font-family: 'Freight Text W01 Semibold';
  font-size: 19px;
  height: 212px;
}
@media (max-width: 991px) {
  #home #home-content .news .news-item {
    height: auto;
  }
}
#home #home-content .news .news-item a {
  display: block;
  color: #363636;
  padding: 20px 0 50px 0;
}
#home #home-content .news .news-item a:hover {
  text-decoration: none;
  color: #304c61;
}
#home #home-content .twitterbg {
  width: 100%;
  background-image: url(/themes/whitehouse/images/twitterbg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#home #home-content .twitterbg .twitter-container {
  position: relative;
  width: 100%;
  padding: 70px;
  background-color: #FFF;
  opacity: .8;
  min-height: 320px;
  text-align: center;
}
#home #home-content .twitterbg .twitter-container #tweet {
  border: 1px solid transparent;
  position: relative;
  display: block;
  color: #363636;
  word-wrap: break-word;
  width: 100%;
  margin: 0 auto;
  font-size: 26px;
}
@media (max-width: 360px) {
  #home #home-content .twitterbg .twitter-container #tweet {
    font-size: 22px;
  }
}
@media (max-width: 300px) {
  #home #home-content .twitterbg .twitter-container #tweet {
    font-size: 20px;
  }
}
#home #home-content .twitterbg .twitter-container #tweet a {
  color: #455a70;
}
#home #home-content .twitterbg .twitter-container #tweet ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
#home #home-content .twitterbg .twitter-container .tweetlink {
  font-size: 23px;
  color: #455a70;
  font-family: 'AvenirNextLTW01-DemiCn';
}
#home .no-gutter {
  top: -1px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
#main_container {
  padding-left: 60px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  #main_container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
img.banner {
  max-width: 1300px;
  margin: 0 auto;
}
#content {
  margin-top: 140px;
  padding-bottom: 80px;
}
body#contact #asides {
  margin-top: 0px;
}
a.anchor {
  display: block;
  position: relative;
  top: -250px;
  visibility: hidden;
}
:target:before {
  content: "";
  display: block;
  height: 130px;
  /* fixed header height*/
  margin: -130px 0 0;
  /* negative fixed header height */
}
.agency-title,
body.storyboard .main_page_title {
  font-size: 35px;
  text-align: center;
  color: #e8b119;
  font-family: 'AvenirNextLTW01-BoldCn';
}
.letter {
  background-color: #f4f4f4;
  padding: 50px 70px;
  margin-bottom: 70px;
  margin-right: 50px;
}
.letter .preface {
  font-family: 'Avenir Next LT W02SC Md Cn It';
  font-size: 28px;
  margin-bottom: 35px;
}
.letter .letter-body {
  margin-left: 47px;
  font-family: 'Avenir Next Cyr W00 Medium';
}
.letter img {
  max-width: 250px;
  margin-left: 58%;
}
.working-block.press.with-image .media-container {
  width: 100%;
  height: 215px;
  background-size: cover;
  background-position: center;
}
.working-block.press.standard {
  height: 315px;
  width: 100%;
  display: table;
}
.working-block.press.standard .media-title {
  display: table-cell !important;
  vertical-align: middle;
  padding: 10px 40px !important;
}
.working-block .media-title {
  display: inline-block;
  padding: 10px 15px;
  background-color: #1e537f;
  width: 100%;
  color: white;
  font-family: 'AvenirNextLTW01-DemiCn';
  height: 100px;
}
body.working .breakout {
  max-width: 780px;
  width: 100%;
  margin: 50px auto 0;
}
body.working .breakout h1 {
  text-align: center;
}
body.working .breakout li {
  padding: 25px 0px 30px;
  border-bottom: 1px solid #d5d4d4;
}
body.working .breakout li h2 {
  margin-top: 6px;
  font-size: 24px;
}
body.working .breakout li:last-child {
  border-bottom: 0px;
}
body.working .workingfor {
  height: 380px;
}
body.working .workingfor:after {
  content: '';
  display: inline-block;
  background-color: rgba(70, 90, 113, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
body.working .workingfor h1 {
  display: none;
}
body.working .workingfor .learn {
  display: none;
}
body.working .workingfor .overlay {
  display: none;
}
body.working .workingfor .overlay:hover {
  background-color: rgba(70, 90, 113, 0.6) !important;
}
body.working .more {
  color: #455a70;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #455a70;
  font-family: 'AvenirNextLTW01-DemiCn';
  border-radius: 6px;
}
body#services .working-block {
  margin-bottom: 50px;
  display: inline-block;
  width: 100%;
}
body#services .working-block:hover .media-title {
  background-color: #e8b119;
}
body#services #application_btn-lg_container .btn-lg {
  background-color: #e8b119;
  color: white;
  border: 1px solid #e8b119;
  font-size: 26px;
  text-transform: uppercase;
  width: 100%;
  display: inline-block;
  padding: 30px 35px;
}
body#services #application_btn-lg_container .btn-lg:hover {
  color: white;
  background-color: #455a70;
  border: 1px solid #455a70;
  font-size: 26px;
  text-transform: uppercase;
  width: 100%;
  display: inline-block;
  padding: 30px 35px;
}
body#services #sam-main {
  clear: both;
  margin-top: 40px;
}
body#services #sam-main li {
  margin-bottom: 25px;
}
body#services #sam-main p {
  margin: 0 0 20px;
  line-height: 35px;
}
body#services .modal.in .modal-dialog {
  z-index: 9000;
}
body#services #main_column .modal-content {
  background-color: transparent;
  border-color: transparent;
  box-shadow: 0px 0px 0px;
  color: white;
}
body#services #main_column .modal-content .modal-header h4 {
  font-family: 'AvenirNextLTW01-BoldCn';
  font-size: 32px;
}
body#services #main_column .modal-content .modal-header .close {
  margin-top: -2px;
  color: white;
  opacity: 1;
  font-size: 43px;
}
body#services #main_column .modal-content .media-container {
  width: 100%;
  height: 200px;
  background-size: cover;
  margin-bottom: 20px;
}
body#services #main_column .modal-dialog {
  margin: 7% auto;
}
body#services .btn.more {
  width: 100%;
  z-index: 1;
  position: relative;
}
body#services.storyboard .working-block {
  margin-bottom: 30px;
  display: table !important;
  width: 100%;
}
body#services.storyboard .working-block .media-title {
  text-align: center;
}
.fa-5 {
  position: absolute;
  z-index: 9000;
  color: white;
  opacity: 0.8;
  top: 45%;
  font-size: 58px !important;
}
.fa-5.fa-chevron-left {
  left: 30px;
}
.fa-5.fa-chevron-right {
  right: 30px;
}
body#newsroom .modal-backdrop {
  opacity: 1;
}
body#newsroom .modal-dialog {
  margin: 10% auto;
  z-index: 1000000;
}
body#newsroom .modal-dialog .modal-content {
  -webkit-box-shadow: 0px 0px 0px #000000;
  -moz-box-shadow: 0px 0px 0px #000000;
  box-shadow: 0px 0px 0px #000000;
  background-color: transparent;
  border: none;
  color: #fff;
}
body#newsroom .modal-dialog .modal-content .close {
  color: #fff;
  text-shadow: 0 1px 0 #000;
}
body#newsroom .modal-dialog .modal-content .modal-header {
  border: none;
  padding: 0px;
  margin: 0px;
}
body#newsroom .modal-dialog .modal-content .modal-body {
  padding: 0px;
  margin: 0px;
}
body#newsroom .modal-dialog .modal-content .modal-body form {
  width: 100%;
}
body#newsroom .modal-dialog .modal-content .modal-body form select {
  width: 100%;
  color: #000;
  border: 2px solid;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}
body#newsroom #filterbuttons {
  margin-bottom: 20px;
}
/*Issue Landing page style */
#search-issues-page-container {
  display: none;
}
/*Grants page - spacing styles*/
#crscontent h4 {
  font-family: 'Freight Text W01 Semibold It';
  font-size: 34px;
  margin-top: 75px;
}
#crscontent td.crstop {
  vertical-align: bottom;
}
/*Videos page - styles for tags*/
dl#tags {
  display: none;
  font-family: 'Avenir Next LT W02SC Medium Cn';
}
dl#tags dd a {
  margin-left: 3px;
}
#mediaview {
  margin-top: 40px;
}
.votingtable,
.legislationtable {
  margin-top: 10px;
}
.votingtable td.Yea,
.legislationtable td.Yea,
.votingtable td.Nay,
.legislationtable td.Nay {
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}
.votingtable td.Yea span,
.legislationtable td.Yea span,
.votingtable td.Nay span,
.legislationtable td.Nay span {
  display: none;
}
.votingtable td.Yea:before,
.legislationtable td.Yea:before {
  content: "\e125";
  top: 5px;
  position: relative;
  left: 5px;
  color: green;
}
.votingtable td.Nay:before,
.legislationtable td.Nay:before {
  content: "\e126";
  top: 5px;
  position: relative;
  left: 5px;
  color: red;
}
body#biography #rightside {
  float: right;
}
body#biography #rightside #thebuddins {
  display: block;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  body#biography #rightside #thebuddins {
    margin-bottom: 35px;
  }
}
body#biography #rightside #thebuddins a {
  font-size: 16px;
  padding: 12px;
  text-align: center;
  margin-right: 10px;
  width: 30%;
  color: #fff;
  background-color: #e8b11a;
  border: none;
}
@media (max-width: 991px) {
  body#biography #rightside #thebuddins a {
    width: 100%;
  }
}
body#biography #rightside #thebuddins a:hover {
  background-color: #455a70;
}
body#biography #leftside {
  float: left;
}
body#biography #leftside .leftpod {
  color: #304c61;
  margin-top: 28px;
}
body#biography #leftside .leftpod .leadtitle {
  font-family: 'AvenirNextLTW01-DemiCn';
}
body#biography #leftside .leftpod .leadtitle2 {
  font-family: 'AvenirNextLTW01-DemiCn';
  text-transform: uppercase;
}
body#biography #leftside .leftpod .bionav {
  margin-top: 18px;
}
body#biography #socialactions #email-li .btn {
  color: #fff;
  border-radius: 0px;
  padding: 1px;
  border: none;
  background-color: #e8b11a;
  padding-left: 5px;
  padding-right: 5px;
}
body#biography #socialactions #email-li .btn:hover {
  background-color: #eac150;
}
#voting_record .page {
  margin: 30px 0;
  display: none;
  transition: 1s ease-in-out;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
#voting_record .page .row {
  margin: 0 0 20px 0;
  padding: 5px 5px 15px 5px;
  border-bottom: 1px solid #ccc;
  /* ----- */
}
#voting_record .page .row .date {
  font-size: 15px;
}
#voting_record .page .row .vote {
  font-size: 16px;
  color: #666;
}
#voting_record .page .row .No,
#voting_record .page .row .Nay {
  color: red;
}
#voting_record .page .row .Yea,
#voting_record .page .row .Aye {
  color: green;
}
#voting_record .page .row .result {
  font-size: 16px;
  color: #666;
}
#voting_record .page .row .Failed {
  color: red !important;
}
#voting_record .page .row .Passed {
  color: green !important;
}
#voting_record .page .row .category {
  font-size: 15px;
}
#voting_record .page.in {
  opacity: 1;
}
#voting_record .pagination {
  display: block;
  width: 100%;
}
#voting_record .pagination .pages {
  margin: 0 0 25px 0;
  width: 100%;
}
#voting_record .pagination .pages_nav {
  width: 100%;
  clear: both;
  overflow: auto;
}
#pagination-container {
  text-align: right;
  margin-bottom: 80px;
}
#pagination-container .pagination-right {
  display: inline-block;
  vertical-align: top;
  float: left;
  margin-bottom: 20px;
}
#pagination-container .maxrows {
  display: inline-block;
  float: left;
  margin-left: 15px;
}
#pagination-container .pager {
  display: inline-block;
  float: right;
  width: auto;
  margin: 0;
}
#photos li {
  margin-bottom: 30px;
}
#photos li .imghold {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 265px;
  background: url("/themes/default_v4/images/loading.gif") no-repeat scroll top left transparent;
  background-size: 265px auto;
}
#photos li .imghold img {
  position: absolute;
  top: 0px;
  width: auto;
  height: 100%;
  opacity: 0;
  -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;
}
#photos li .imghold .tall {
  opacity: 1;
  height: auto;
  width: 100%;
  min-width: 100%;
  background: none;
  -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;
}
#photos li .imghold .short {
  opacity: 1;
  width: auto  !important;
  height: 100% !important;
  -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;
}
.streaminghearing {
  margin-bottom: -8px;
  width: 100%;
  height: 660px;
  border: none;
}
#watch-live-now {
  margin: 0 auto 30px;
  float: none;
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  padding: 15px;
}
.vcard {
  min-height: 190px;
}
.fn,
.honorific-prefix {
  font-weight: bold;
}
#photostream li {
  margin-bottom: 30px;
}
#photostream li .imghold {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 265px;
  background: url("/themes/default_v4/images/loading.gif") no-repeat scroll top left transparent;
  background-size: 265px auto;
}
#photostream li .imghold.loaded {
  background: none;
}
#photostream li .imghold img {
  position: absolute;
  top: 0px;
  width: auto;
  height: 100%;
  opacity: 0;
  -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;
}
#photostream li .imghold .tall {
  opacity: 1;
  height: auto;
  width: 100%;
  min-width: 100%;
  background: none;
  -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;
}
#photostream li .imghold .short {
  opacity: 1;
  width: auto  !important;
  height: 100% !important;
  -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;
}
body.newsroom_landing #newscontent .subtitle {
  margin-top: 0px;
}
body.newsroom_landing #typenav.affix {
  top: 110px;
  position: fixed!important;
}
#newscontent hr {
  margin-top: 40px;
  margin-bottom: 40px;
}
#newscontent .subtitle {
  margin-bottom: 20px;
  font-family: 'AvenirNextLTW01-MediumC_721311';
  color: #747474 ;
  margin-top: -10px;
  font-size: 28px;
}
#newscontent .summary {
  margin-top: 20px;
}
.videoiframe {
  width: 100%;
  height: 500px;
}
.img-wrap {
  width: 100%;
  display: block;
  overflow: hidden;
  max-height: 500px;
}
.img-wrap .img {
  width: 100%;
}
#browser_table thead tr th {
  border-top: medium none;
  font-size: 1.3em;
  padding-top: 20px;
  font-weight: normal;
}
#browser_table tbody tr.divider {
  border-top: none;
}
#browser_table tbody tr.divider td {
  border-top: medium none;
  font-size: 1.3em;
  padding-top: 20px;
}
#crscontent {
  text-align: left;
}
#crscontent center {
  text-align: left;
}
#crscontent h3 {
  text-align: left;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}
#crscontent table {
  width: 100%;
}
#crscontent table p {
  margin: 10px 0px;
}
aside {
  margin-top: 20px;
}
aside form {
  width: 100%;
}
aside form select {
  width: 100%;
  color: #000;
  border: 2px solid #eee;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}
aside form #thomas_search {
  width: 100%;
}
fieldset + fieldset {
  margin-top: 20px;
}
aside p {
  width: 100%;
  margin: 0px;
}
aside.list {
  float: left;
  width: 100%;
}
aside.list > ul {
  float: left;
  width: 100%;
  display: block;
  position: relative;
}
aside.list > ul li {
  float: left;
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
aside.list > ul li a {
  display: block;
}
aside.list > ul li a img {
  margin-top: 5px;
}
aside.list > ul li a + a {
  margin-left: 10px;
  float: left;
  width: 80%;
}
aside.list > ul li time {
  padding-right: 10px;
}
aside.list > ul li:last-child {
  border-bottom: none;
}
aside.list #newsletter-signup input {
  width: 100%;
}
aside.list #newsletter-signup button {
  width: 100%;
}
aside .related-files-list {
  padding-left: 0px;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  display: block;
}
#listblocks .block .desc {
  padding: 20px;
  min-height: 170px;
}
#listblocks .block .desc p {
  width: 100%;
  margin: 0px;
}
#listblocks .block a {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 22px;
  font-family: 'AvenirNextLTW01-DemiCn';
  text-transform: uppercase;
  color: #455a70;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #455a70;
  font-weight: 300;
  min-height: 100px;
  border-radius: 10px;
}
#listblocks .block a:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0);
  color: #e8b11a;
  border: 1px solid #e8b11a;
  border-radius: 10px;
}
#listblocks .block a > img {
  float: left;
}
#listblocks .block a .media-heading {
  float: left;
  position: relative;
  top: 18px;
}
#listblocks .block a .media-heading.noimg {
  width: 100%;
  text-align: center;
  display: block;
}
#listblocks .block a .media-heading.withimg {
  left: 20px;
  display: block;
  width: 75%;
}
#listblocks .block:hover {
  background-color: rgba(255, 255, 255, 0);
}
#listblocks .block.noimg a {
  height: auto;
  min-height: 95px;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  margin-left: 5px;
  background-color: rgba(255, 255, 255, 0);
  color: #455a70;
  border: 1px solid #455a70;
  text-transform: uppercase;
  border-radius: 5px;
  font-family: 'AvenirNextLTW01-DemiCn';
}
.pager li > a:hover,
.pager li > span:hover {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #e8b11a;
  border: 1px solid #e8b11a;
}
.pager li > a:focus,
.pager li > span:focus {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #e8b11a;
  border: 1px solid #e8b11a;
}
body#issue {
  /*Issue Page - aside affix styles*/
}
body#issue #main_column {
  position: relative;
}
body#issue aside {
  margin-top: 0px;
}
@media (max-width: 991px) {
  body#issue aside {
    display: none;
  }
}
body#issue #aside {
  position: relative;
}
body#issue #aside .latest {
  margin-top: 25px;
  display: block;
  width: 100%;
  margin-left: 15px;
  margin-bottom: 20px;
}
body#issue #aside .list {
  width: 100%;
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
}
body#issue #aside .list ul .active .btn-lg {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #e8b11a;
  border: 1px solid #e8b11a;
}
body#issue #aside .list ul li {
  border-bottom: none;
  padding-left: 0px;
  padding-right: 0px;
}
body#issue aside.list.affix {
  top: 110px;
  position: fixed!important;
  max-width: 413px;
  -webkit-transition: max-width 0.1s;
  transition: max-width 0.1s;
}
@media (max-width: 991px) {
  body#issue aside.list.affix {
    display: none;
  }
}
@media (max-width: 1255px) {
  body#issue aside.list.affix {
    max-width: 398px;
  }
}
@media (max-width: 1209px) {
  body#issue aside.list.affix {
    max-width: 383px;
  }
}
@media (max-width: 1163px) {
  body#issue aside.list.affix {
    max-width: 367px;
  }
}
@media (max-width: 1113px) {
  body#issue aside.list.affix {
    max-width: 351px;
  }
}
@media (max-width: 1063px) {
  body#issue aside.list.affix {
    max-width: 334px;
  }
}
@media (max-width: 1024px) {
  body#issue aside.list.affix {
    max-width: 321px;
  }
}
body#issue aside.list.affix-bottom {
  position: absolute!important;
}
#issue .one_column .breakout {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}
#issue .one_column .breakout #issueFeed > li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}
#issue .one_column .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
#issue .one_column .breakout #issueFeed > li .imghold {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 265px;
  background: url("/themes/default_v4/images/loading.gif") no-repeat scroll top left transparent;
  background-size: 265px auto;
}
#issue .one_column .breakout #issueFeed > li .imghold img {
  position: absolute;
  top: 0px;
  width: auto;
  height: 100%;
  opacity: 0;
  -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;
}
#issue .one_column .breakout #issueFeed > li .imghold .tall {
  opacity: 1;
  height: auto;
  width: 100%;
  -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;
}
#issue .one_column .breakout #issueFeed > li .imghold .short {
  opacity: 1;
  width: auto  !important;
  height: 100% !important;
  -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;
}
#issue .two_column .breakout {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}
#issue .two_column .breakout #issueFeed > li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}
#issue .two_column .breakout #issueFeed > li iframe {
  width: 80%;
  height: 420px;
}
#issue .two_column .breakout #issueFeed > li .imghold {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 165px;
  background: url("/themes/default_v4/images/loading.gif") no-repeat scroll top left transparent;
  background-size: 265px auto;
}
#issue .two_column .breakout #issueFeed > li .imghold img {
  position: absolute;
  top: 0px;
  width: auto;
  height: 100%;
  opacity: 0;
  -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;
}
#issue .two_column .breakout #issueFeed > li .imghold .tall {
  opacity: 1;
  height: auto;
  width: 100%;
  -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;
}
#issue .two_column .breakout #issueFeed > li .imghold .short {
  opacity: 1;
  width: auto  !important;
  height: 100% !important;
  -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;
}
#issues-page-container #search-issues-page-form fieldset {
  margin: 20px 0px 0px;
}
#issues-page-container #search-issues-page-form fieldset #search-issues-page-field-container {
  width: 100%;
}
#issues-page-container #search-issues-page-form fieldset #search-issues-page-field-container #search-issues-page {
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  outline: none;
  font-size: 22px;
  padding: 10px;
  height: 50px;
}
#issues-page-container #search-issues-page-form fieldset #search-issues-page-field-container #search-issues-page:focus,
#issues-page-container #search-issues-page-form fieldset #search-issues-page-field-container #search-issues-page:active {
  border: 2px solid rgba(0, 0, 0, 0.2);
  outline: none;
}
#search-issues-page-results {
  padding: 0px;
  background-color: rgba(0, 0, 0, 0.1);
}
#search-issues-page-results .result {
  width: 100%;
  padding: 10px;
  display: block;
}
#search-issues-page-results .result p {
  margin: 0px;
  width: 100%;
}
#mainlist {
  margin-top: 20px;
  float: left;
  width: 100%;
}
#mainlist li {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}
#mainlist li:last-child {
  border-bottom: none;
}
.searchresults div.search-results {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.searchresults ol.search-results {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.titleimg {
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0px 10px 0px 0px;
}
#typenav .nav-pills > li.active a {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: #e8b11a;
}
.ce_youtube_video iframe {
  height: 420px;
}
.embed-responsive iframe {
  height: 100%;
}
.videolist {
  margin: 40px 0px 0px;
}
.videolist .videoiframe {
  float: left;
  width: 100%;
  height: 500px;
  display: block;
  margin: 0 auto 30px;
}
/*
hearing styles */
.hearing-meta {
  display: block;
  margin-bottom: 30px;
}
.hearing-meta span {
  display: block;
}
.panelname {
  float: left;
  width: 100%;
  border-bottom: 1px solid #EEEEEE;
  margin: 0;
  padding: 10px 0 5px;
}
.people {
  float: left;
  width: 100%;
}
.people > li {
  margin-bottom: 15px;
}
.people > li:last-child {
  border: none;
}
.people > li .fn,
.people > li .honorific-prefix {
  font-size: 20px;
  font-weight: bold;
}
.people > li .title {
  text-transform: capitalize;
}
.people > li .files {
  margin-top: 0px;
}
.people > li .files li {
  display: block;
  float: left;
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 0;
}
.people > li .files li:last-child {
  border: none;
}
.agenda {
  float: left;
  width: 100%;
}
.acrobat .filetype {
  background: url(/themes/default_v4/images/icons/pdficon_large.png) 0 0 no-repeat;
  height: 16px !important;
  width: 16px !important;
  margin: 5px 5px auto auto;
  background-size: 16px 16px;
  float: left;
}
.acrobat a {
  text-transform: capitalize;
}
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
.hearingslideshow {
  width: 100%;
  float: left;
  display: block;
}
.hearingslideshow .item {
  width: 25%;
  padding-right: 5px;
  padding-bottom: 5px;
}
.hearingslideshow img {
  margin-right: 0px;
  padding: 0px;
  height: auto;
  width: 100%;
}
.members .headshot {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
.members .title {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 0px;
}
.members .name {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 0px;
}
.members .link {
  display: block;
  float: left;
  width: 100%;
}
ul.tours > li img {
  display: block;
  margin-right: 15px;
  margin-bottom: 15px;
}
#relatednews-aside {
  display: none;
}
#search-issues-page-container {
  margin-bottom: 20px;
}
.hearingplaceholder {
  background-image: url('/themes/default_v4/images/posterbg.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  display: table;
  border: 1px solid #ccc;
}
.hearingplaceholder h1 {
  display: table-cell;
  vertical-align: middle;
  bottom: 20%;
  width: 100%;
  height: 100%;
  text-align: center;
}
.hearingplaceholder-house {
  margin-bottom: 30px;
  width: 100%;
  height: 400px;
  background: #eee url('/themes/default_v4/images/posterbg-house.png') no-repeat center center;
  text-align: center;
  display: table;
  border: 1px solid #ccc;
}
.hearingplaceholder-house h1 {
  display: table-cell;
  vertical-align: middle;
  bottom: 20%;
  width: 100%;
  height: 100%;
  text-align: center;
}
.nominations .panel-group,
.faqs .panel-group,
.witnesses .panel-group {
  border-bottom: 4px solid #EEEEEE;
  border-top: 6px solid #EEEEEE;
  min-height: 370px;
  float: left;
  width: 100%;
  display: block;
}
.nominations .panel-group .panel-default,
.faqs .panel-group .panel-default,
.witnesses .panel-group .panel-default {
  background: #fff;
  border: none;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  width: 100%;
}
.nominations .panel-group .panel-default .panel-heading,
.faqs .panel-group .panel-default .panel-heading,
.witnesses .panel-group .panel-default .panel-heading {
  background: #fff;
  border: none;
  display: block;
  float: left;
  width: 100%;
}
.nominations .panel-group .panel-default .panel-heading .panel-title,
.faqs .panel-group .panel-default .panel-heading .panel-title,
.witnesses .panel-group .panel-default .panel-heading .panel-title {
  border: none;
  text-decoration: none;
  display: block;
  float: left;
  width: 100%;
  position: relative;
  padding: 0 0 10px;
}
.nominations .panel-group .panel-default .panel-heading .panel-title:hover,
.faqs .panel-group .panel-default .panel-heading .panel-title:hover,
.witnesses .panel-group .panel-default .panel-heading .panel-title:hover {
  text-decoration: none;
}
.nominations .panel-group .panel-default .panel-heading .panel-title a .date,
.faqs .panel-group .panel-default .panel-heading .panel-title a .date,
.witnesses .panel-group .panel-default .panel-heading .panel-title a .date {
  width: 16%;
}
.nominations .panel-group .panel-default .panel-heading .panel-title a .date:before,
.faqs .panel-group .panel-default .panel-heading .panel-title a .date:before,
.witnesses .panel-group .panel-default .panel-heading .panel-title a .date:before {
  border-color: transparent transparent transparent #696969;
  border-style: solid;
  border-width: 5px;
  content: "";
  display: inline-block;
  right: 6px;
  position: relative;
  top: 1px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.nominations .panel-group .panel-default .panel-heading .panel-title .title,
.faqs .panel-group .panel-default .panel-heading .panel-title .title,
.witnesses .panel-group .panel-default .panel-heading .panel-title .title {
  font-size: 20px;
  width: 81%;
}
.nominations .panel-group .panel-default .panel-collapse,
.faqs .panel-group .panel-default .panel-collapse,
.witnesses .panel-group .panel-default .panel-collapse {
  border: none;
  width: 100%;
  float: left;
  position: relative;
}
.nominations .panel-group .panel-default .panel-collapse .panel-body,
.faqs .panel-group .panel-default .panel-collapse .panel-body,
.witnesses .panel-group .panel-default .panel-collapse .panel-body {
  border: none !important;
  float: right;
  width: 81%;
}
.nominations .panel-group .panel-default:nth-of-type(2n+0),
.faqs .panel-group .panel-default:nth-of-type(2n+0),
.witnesses .panel-group .panel-default:nth-of-type(2n+0) {
  background: #f6f6f6;
}
.nominations .panel-group .panel-default:nth-of-type(2n+0) .panel-heading,
.faqs .panel-group .panel-default:nth-of-type(2n+0) .panel-heading,
.witnesses .panel-group .panel-default:nth-of-type(2n+0) .panel-heading {
  background: #f6f6f6;
}
.nominations .panel-group .panel-default:nth-of-type(2n+0) .panel-collapse,
.faqs .panel-group .panel-default:nth-of-type(2n+0) .panel-collapse,
.witnesses .panel-group .panel-default:nth-of-type(2n+0) .panel-collapse {
  background: #f6f6f6;
}
.nominations .panel-group .opened .date,
.faqs .panel-group .opened .date,
.witnesses .panel-group .opened .date {
  width: 15%;
}
.nominations .panel-group .opened .date:before,
.faqs .panel-group .opened .date:before,
.witnesses .panel-group .opened .date:before {
  -moz-transform: rotate(90deg) translate(1px);
  -webkit-transform: rotate(90deg) translate(1px);
  -o-transform: rotate(90deg) translate(1px);
  transform: rotate(90deg) translate(1px);
}
.witnesses .panel-heading h3 a span {
  padding-right: 1em;
  font-size: .9em;
}
.witnesses .witness-name,
.witnesses .witness-title {
  width: 30%;
}
.witnesses .witness-agency {
  width: 25%;
}
.witnesses .witness-location {
  width: 15%;
}
.witnesses .header .witness-name {
  padding-left: 25px;
}
.witnesses .header .glyphicon {
  font-size: 10px;
}
.witnesses #accordion .witness-name:before {
  border-color: transparent transparent transparent #696969;
  border-style: solid;
  border-width: 5px;
  content: "";
  display: inline-block;
  right: 6px;
  position: relative;
  top: 1px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.witnesses #accordion .opened .witness-name:before {
  -moz-transform: rotate(90deg) translate(1px);
  -webkit-transform: rotate(90deg) translate(1px);
  -o-transform: rotate(90deg) translate(1px);
  transform: rotate(90deg) translate(1px);
}
.witnesses .panel-group .panel-default .panel-collapse .panel-body {
  width: 100%;
  padding-left: 32px;
}
.witnesses .panel-group .panel-default .panel-collapse .panel-body .hearing-date {
  width: 75px;
}
body.hearings .table tr:hover {
  background-color: #FAFAFA !important;
}
body.hearings .table tr td {
  min-width: 175px;
}
body.hearings .table tr td .faux-th {
  display: none;
}
body.hearings .table tr td .date,
body.hearings .table tr td .bill-number {
  min-width: 75px;
  display: block;
}
body.hearings .table tr td .location {
  min-width: 250px;
  display: block;
}
body.hearings .table tr td a {
  display: block;
  float: left;
  width: 100%;
}
body.hearings .table tr td a.add {
  padding-top: 5px;
}
body.hearings .table .divider {
  border-top: none;
  background-color: transparent !important;
}
body.hearings .table .divider td {
  border-top: none !important;
  background-color: transparent;
  font-size: 24px;
  padding: 30px 0px 30px 0px;
}
body.hearings .table .divider td .faux-th {
  display: none;
}
body.hearings .table .divider .header_date,
body.hearings .table .divider .header_bill,
body.hearings .table .divider .header_title {
  padding: 0px 30px 15px 30px;
  background: none repeat scroll 0 0 transparent;
  border-top: none;
  border-bottom: 4px solid #eee;
}
body.hearings .table .divider .header_date h4,
body.hearings .table .divider .header_bill h4,
body.hearings .table .divider .header_title h4 {
  padding: 0px;
  margin: 0px;
}
body.hearings .table .divider .header_date h4 a,
body.hearings .table .divider .header_bill h4 a,
body.hearings .table .divider .header_title h4 a {
  font-size: 16px;
}
body.hearings .table .divider .header_date h4 a:hover,
body.hearings .table .divider .header_bill h4 a:hover,
body.hearings .table .divider .header_title h4 a:hover {
  cursor: pointer;
}
body.hearings .table .divider .header_date h4 a:before,
body.hearings .table .divider .header_bill h4 a:before,
body.hearings .table .divider .header_title h4 a:before {
  border-color: #eee transparent transparent transparent ;
  border-style: solid;
  border-width: 8px;
  content: "";
  display: block;
  width: 8px;
  right: 23px;
  position: relative;
  top: 22px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
body.hearings .table .divider .header_date h4 .desc:before,
body.hearings .table .divider .header_bill h4 .desc:before,
body.hearings .table .divider .header_title h4 .desc:before {
  border-color: #ccc transparent transparent transparent ;
  border-style: solid;
  border-width: 8px;
  content: "";
  display: block;
  width: 8px;
  right: 23px;
  position: relative;
  top: 22px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
body.hearings .table .divider .header_date h4 .asc:before,
body.hearings .table .divider .header_bill h4 .asc:before,
body.hearings .table .divider .header_title h4 .asc:before {
  border-color: transparent transparent #ccc transparent;
  border-style: solid;
  border-width: 8px;
  content: "";
  width: 8px;
  display: block;
  right: 23px;
  position: relative;
  top: 15px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
body.hearings .table .divider:hover {
  background-color: transparent !important;
}
/* calendar fix */
.datepicker.dropdown-menu {
  min-width: 0 !important;
  width: auto;
}
#toggleCalendar {
  position: relative;
  margin: 15px 0;
}
#toggleCalendar a {
  font-size: 16px;
  color: #747475;
  background-color: lightgrey;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
}
#toggleCalendar a:hover {
  background-color: #747475;
  color: #fff;
  text-decoration: none;
}
#toggleCalendar a.selected {
  background-color: #747475;
  color: #fff;
}
#toggleCalendar .jump {
  position: relative;
  float: right;
  font-size: 16px;
  background-color: lightgrey;
  padding: 5px 10px 5px 10px;
}
#toggleCalendar .jump .glyphicon {
  color: #747475;
  padding: 0 10px 0 0;
}
#toggleCalendar .jump #datePicker {
  border: none;
  padding: 0 0 0 10px;
}
#calendar {
  margin: 45px 0 0 0;
  background-color: #fff;
  border: 1px solid #dcdddf;
  padding: 0 0px 0px 0px;
}
#calendar .fc-widget-header {
  padding-top: 0px;
}
#calendar td {
  border: 0px solid transparent;
  vertical-align: middle;
  text-align: center;
  font-size: 17px;
  padding: 0px 0px;
}
#calendar .fc-day-number {
  padding: 5px 0px;
}
#calendar th {
  padding: 5px 0 5px 0;
  background: lightgrey;
  font-size: 24px;
  border: 1px solid #dcdddf;
  vertical-align: middle;
  text-align: center;
  color: #747475;
  font-size: 28px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container {
  font-size: 16px;
  margin: 3px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 6px;
  background-color: #fff;
  color: grey;
  white-space: normal !important;
  overflow: hidden;
  height: 100px;
  display: block;
  border-radius: 0px;
  margin: 0;
  position: relative;
  padding-left: 11px;
  margin-left: 10px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a:before {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  color: grey;
  background-color: grey;
  position: absolute;
  top: 11px;
  left: 0px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.executive {
  color: #b9b9b9;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.executive:before {
  color: #b9b9b9;
  background-color: #b9b9b9;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-head,
#calendar .fc-view-container .fc-agendaDay-view .fc-head {
  padding: 0;
  margin: 0;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-slats tr,
#calendar .fc-view-container .fc-agendaDay-view .fc-slats tr {
  border-bottom: 1px solid rgba(204, 204, 204, 0.65);
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container {
  font-size: 16px;
  margin: 3px;
  padding: 20px;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 6px;
  background-color: transparent;
  color: grey;
  white-space: normal !important;
  overflow: hidden;
  height: 100px;
  display: block;
  border-radius: 0px;
  margin: 0;
  position: relative;
  padding-left: 11px;
  margin-left: 0px;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a:before {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  color: grey;
  background-color: grey;
  position: absolute;
  top: 11px;
  left: 0px;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a .fc-content .fc-time,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a .fc-content .fc-title,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-title {
  word-break: break-all;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.executive,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive {
  color: #b9b9b9;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.executive:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive:before {
  color: #b9b9b9;
  background-color: #b9b9b9;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container {
  font-size: 24px;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 6px;
  background-color: transparent;
  color: grey;
  white-space: normal !important;
  overflow: hidden;
  height: 100px;
  display: block;
  border-radius: 0px;
  margin: 0;
  position: relative;
  padding-left: 11px;
  margin-left: 10px;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a:before {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  color: grey;
  background-color: grey;
  position: absolute;
  top: 11px;
  left: 0px;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive {
  color: #b9b9b9;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive:before {
  color: #b9b9b9;
  background-color: #b9b9b9;
}
#calendar .fc-event {
  padding: 10px;
}
#calendar .fc-event .fc-bg {
  background-color: grey;
}
#calendar td.fc-day {
  border: 1px solid #dcdddf;
}
#calendar td.fc-more-cell {
  font-size: 18px;
}
#calendar td.event {
  border-radius: 0px;
  color: #fff;
  background-color: transparent;
}
#calendar .fc-today {
  border-radius: 0px;
  background-color: lightgrey;
  color: #474f58;
  border-top: 1px solid #dcdddf;
  border-left: 1px solid #dcdddf;
}
#calendar .fc-state-default.fc-corner-right {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
#calendar .fc-state-default.fc-corner-left {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
#calendar .fc-state-disabled {
  background-color: lightgrey !important;
  color: #747475 !important;
  box-shadow: 0px 0px 0px;
  border: 1px solid lightgrey;
}
#calendar .fc-state-active,
#calendar .fc-state-down {
  box-shadow: inset 1px 2px 4px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0);
}
#calendar .fc-button-group {
  margin-right: 10px;
}
#calendar .fc-toolbar {
  margin: 0px 0px 0px;
  padding: 0px 0px 5px;
  border-bottom: 1px solid #dcdddf;
  background: #fafbfd;
}
#calendar .fc-toolbar .fc-left .fc-next-button,
#calendar .fc-toolbar .fc-right .fc-next-button,
#calendar .fc-toolbar .fc-left .fc-prev-button,
#calendar .fc-toolbar .fc-right .fc-prev-button {
  border: none;
  width: 45px;
  height: 45px;
  color: transparent;
  margin: 10px;
  padding: 0;
  font-size: 1px;
  box-shadow: 0px 0px 0px;
  background: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#calendar .fc-toolbar .fc-left .fc-state-active,
#calendar .fc-toolbar .fc-right .fc-state-active {
  background-color: #8f8f8f !important;
}
#calendar .fc-toolbar .fc-left .fc-today-button,
#calendar .fc-toolbar .fc-right .fc-today-button,
#calendar .fc-toolbar .fc-left .fc-month-button,
#calendar .fc-toolbar .fc-right .fc-month-button,
#calendar .fc-toolbar .fc-left .fc-agendaWeek-button,
#calendar .fc-toolbar .fc-right .fc-agendaWeek-button,
#calendar .fc-toolbar .fc-left .fc-agendaDay-button,
#calendar .fc-toolbar .fc-right .fc-agendaDay-button {
  margin: 10px 0 0 0;
  font-size: 22px;
  background: none;
  background-color: #1a1a1a;
  color: #FFF;
}
#calendar .fc-toolbar .fc-left .fc-today-button:hover,
#calendar .fc-toolbar .fc-right .fc-today-button:hover,
#calendar .fc-toolbar .fc-left .fc-month-button:hover,
#calendar .fc-toolbar .fc-right .fc-month-button:hover,
#calendar .fc-toolbar .fc-left .fc-agendaWeek-button:hover,
#calendar .fc-toolbar .fc-right .fc-agendaWeek-button:hover,
#calendar .fc-toolbar .fc-left .fc-agendaDay-button:hover,
#calendar .fc-toolbar .fc-right .fc-agendaDay-button:hover {
  background-color: #8f8f8f;
}
#calendar .fc-toolbar .fc-left .fc-today-button,
#calendar .fc-toolbar .fc-right .fc-today-button {
  margin-left: 30px;
}
#calendar .fc-toolbar .fc-left .fc-prev-button,
#calendar .fc-toolbar .fc-right .fc-prev-button {
  background-image: url(/themes/default_v4/images/calendar_arrw-left.png);
}
#calendar .fc-toolbar .fc-left .fc-next-button,
#calendar .fc-toolbar .fc-right .fc-next-button {
  background-image: url(/themes/default_v4/images/calendar_arrw-right.png);
}
#calendar .fc-toolbar .fc-center h2 {
  margin: 10px 0 0 0;
  font-size: 40px;
  color: grey;
  text-transform: uppercase;
}
#calendar .fc-day-grid-event .fc-content {
  white-space: normal;
  overflow: hidden;
}
.calendarFooter {
  padding: 30px 0px;
  background-color: transparent;
  color: #474f58;
  border-top: 1px solid lightgrey;
}
.calendarFooter .row {
  clear: both;
  overflow: none;
}
.calendarFooter .row .col {
  width: 33%;
  float: left;
  height: 50px;
}
.calendarFooter .row .col .hearing {
  color: grey;
}
.calendarFooter .row .col .today {
  color: lightgrey;
}
.calendarFooter .row .col .executive {
  color: darkgrey;
}
.calendarFooter .row .col .glyphicon {
  float: left;
  padding: 5px 0 0 10px;
  font-size: 22px;
}
.calendarFooter .row .col .title {
  float: left;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 0 0 10px;
  margin: 0;
}
#overlay {
  position: absolute;
  width: 350px;
  background-color: #FFF;
  z-index: 1000;
  padding: 15px 25px 25px 25px;
  border: 1px solid #000;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.35);
}
#overlay .clsBtn {
  cursor: pointer;
  color: #8f8f8f;
}
#overlay .clsBtn:hover {
  color: #000000;
}
#overlay h1 {
  font-size: 26px;
}
#overlay h2 {
  font-style: italic;
  font-size: 18px;
}
#overlay h2.hearing {
  color: grey;
}
#overlay h2.executive {
  color: darkgrey;
}
#overlay p {
  font-size: 14px;
}
#overlay p.time {
  text-transform: uppercase;
}
#overlay.small {
  width: 300px;
}
#overlay.small h1 {
  font-size: 22px;
}
#overlay.small h2 {
  font-size: 16px;
}
#overlay.small p {
  font-size: 12px;
}
#overlay.a-right:after,
#overlay.a-right:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#overlay.a-right:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #ffffff;
  border-width: 20px;
  margin-top: -20px;
}
#overlay.a-right:before {
  border-color: rgba(0, 0, 0, 0);
  border-left-color: #000000;
  border-width: 21px;
  margin-top: -21px;
}
#overlay.a-left:after,
#overlay.a-left:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#overlay.a-left:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #FFF;
  border-width: 20px;
  margin-top: -20px;
}
#overlay.a-left:before {
  border-color: rgba(0, 0, 0, 0);
  border-right-color: #000;
  border-width: 21px;
  margin-top: -21px;
}
.profilelink {
  text-transform: uppercase;
  color: #1a1a1a;
  font-size: 20px;
}
.datepicker {
  padding: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
#asides {
  margin-top: 95px;
}
#filter-legislation form {
  padding-top: 0px;
}
.thumbnails .vidbox {
  display: inline-block;
  padding: 35px;
}
.thumbnails .vidbox .center-cropped {
  width: 298px;
  height: 172px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #dbdbdb;
  cursor: pointer;
}
.thumbnails .vidbox .title {
  width: 298px;
  padding: 7px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.thumbnails .vidbox .title .date {
  font-size: 13px;
  color: #7c7b7b;
  right: 0;
  bottom: -18px;
  position: absolute;
}
.play-button {
  position: absolute;
  width: 100px;
  padding: 15px;
}
.video-description {
  position: relative;
  padding: 15px;
  margin: 23px 0 0.5em;
  color: #333;
  background: #eee;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.video-description:after {
  content: "";
  position: absolute;
  top: -30px;
  left: 50px;
  border: 15px solid transparent;
  border-bottom-color: #eee;
  display: block;
  width: 0;
}
body.votingrecord #main_column {
  min-height: 400px;
}
body#events table tr {
  height: 80px;
}
body#events table tr td {
  vertical-align: middle;
}
body#events table .divider {
  height: auto;
}
#video-content footer {
  display: none;
}
#video-content #media-player {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
#video-content #media-player iframe {
  width: 100%;
  min-height: 350px;
  border: none;
}
#video-content #media-player_wrapper {
  max-height: 350px;
}
#video-content #media-player_wrapper iframe {
  border: none;
}
#video-content #media-player_wrapper object {
  min-height: 350px;
}
#video-content #featured-details-header {
  margin-top: 0;
}
#video-content #social-media-container {
  clear: both;
  margin: 1em 0 0 20px;
  padding: 0;
  display: block;
  float: left;
}
#video-content #social-media-container ul {
  display: block;
  float: left;
  list-style-type: none;
}
#video-content #social-media-container ul li {
  display: block;
  float: left;
  margin: 0;
}
#video-content #social-media-container ul li input {
  width: 100%;
}
#video-content #social-media-container ul li + li {
  margin-left: 10px;
}
#video-content #social-media-container ul:after {
  display: table;
  content: " ";
}
#share-buttons {
  margin: 0;
  padding: 0;
}
#share-buttons li {
  margin-bottom: 0;
  padding: 0;
  vertical-align: top;
  float: left;
  margin-top: 10px;
  margin-right: 10px;
}
#share-buttons .youtube a {
  display: block;
  text-indent: -999em;
  width: 44px;
  height: 20px;
  background: transparent url(/images/multimedia/youtube.png) top left no-repeat;
  border-bottom: 0;
}
#share-buttons .last {
  width: 180px;
}
#share-buttons .last label {
  display: block;
  margin-bottom: 0px;
}
#share-buttons input[type="text"] {
  padding: 0px;
  width: 130px;
  height: 20px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: .6em
		display: block !important;
}
#share-buttons .copied-link {
  padding-right: 25px !important;
  background: url(/images/multimedia/okay.png) no-repeat right center;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#share-buttons #share-link-button-container {
  position: relative;
  cursor: pointer;
}
#share-buttons #share-link-button {
  border: 1px solid #cccccc;
  color: #3e3e3e;
  background: #fdfdfd;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.01, #ffffff), color-stop(0.02, #fdfdfd), color-stop(1, #dbdbdb));
  background: -webkit-linear-gradient(top, #ffffff 3% #fdfdfd 4%, #dbdbdb 100%);
  background: -moz-linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #dbdbdb 100%);
  background: -o-linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #dbdbdb 100%);
  background: linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #dbdbdb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdfdfd, endColorstr=#dbdbdb);
  font-size: 11px;
  line-height: 19px;
  height: 19px;
  width: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: border;
  -moz-background-clip: border;
  background-clip: border-box;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 0 10px;
}
#share-buttons #share-link-button:hover {
  background: #fdfdfd;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.01, #ffffff), color-stop(0.02, #fdfdfd), color-stop(1, #c2c2c2));
  background: -webkit-linear-gradient(top, #ffffff 3% #fdfdfd 4%, #c2c2c2 100%);
  background: -moz-linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #c2c2c2 100%);
  background: -o-linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #c2c2c2 100%);
  background: linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #c2c2c2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdfdfd, endColorstr=#c2c2c2);
  border: 1px solid #bbbbbb;
}
#share-buttons #share-link-button:hover embed {
  display: block;
}
#share-buttons #share-link-container {
  height: 20px;
  width: 420px;
}
#share-buttons #share-link {
  border: 1px solid #eee;
  display: block;
  font-size: 11px;
  margin: 0;
  padding: 0;
}
#share-buttons #share-facebook iframe {
  width: 62px!important;
}
#multimedia-browser {
  border-top: 1px solid transparent;
  float: left;
  width: 100%;
}
#multimedia-browser ul.nav-tabs {
  margin: 20px 0;
  padding: 0 !important;
  position: relative;
  width: 100%;
  border-bottom: 3px solid #455a70;
}
#multimedia-browser ul.nav-tabs li {
  clear: right;
  display: block;
  float: left;
  margin: auto;
  margin-bottom: 0;
  position: relative;
  width: auto;
}
#multimedia-browser ul.nav-tabs li a {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  float: left;
  display: block;
  border-color: transparent;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #e8b11a;
  color: #fff;
}
#multimedia-browser ul.nav-tabs li.active {
  display: block;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: #455a70;
  color: #fff;
  border-color: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: #e8b11a;
  color: #fff;
}
#multimedia-browser body#newsroom .video #share-footer #tags dd a {
  margin-left: 10px;
}
#multimedia-browser .tab-content {
  overflow: visible;
}
#multimedia-browser .loading {
  min-height: 200px;
  background: url(/themes/sanders/images/loading.gif) no-repeat center center;
}
#multimedia-browser form.multimedia-search {
  margin: 0 0 1em 0;
  padding: 0;
  height: 65px;
}
#multimedia-browser legend {
  margin: 0 0 10px 0 !important;
  font-size: 19px !important;
  line-height: 1;
}
#multimedia-browser fieldset {
  margin: .5em 0 0 0;
  padding: 0;
}
#multimedia-browser input {
  display: inline-block;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 14px;
  padding: 7px!important;
  margin: 0;
}
#multimedia-browser input[type="button"] {
  display: inline-block !important;
  float: right !important;
  margin: 0 0 0 .5em !important;
  padding: 5px 10px !important;
  height: 40px !important;
  font-size: 18px !important;
}
#multimedia-browser a {
  cursor: pointer;
}
#multimedia-browser #search-results-header {
  padding: 20px 10px 0 10px;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser #search-results-feedback {
  color: #988d85;
  letter-spacing: 1px;
}
#multimedia-browser .status {
  display: none;
  color: #fff;
  letter-spacing: 1px;
  background-color: #273e58;
  font-size: 13px;
  padding: 10px 10px 8px 10px;
}
#multimedia-browser .status p {
  margin: 0;
}
#multimedia-browser .status p + p {
  margin-top: 1em;
}
#multimedia-browser .status a {
  color: #fff;
  text-decoration: underline;
}
#multimedia-browser .no-results {
  margin-top: 1em;
}
#multimedia-browser .multimedia-tools {
  /*float:left;*/
  width: 100%;
}
#multimedia-browser .multimedia-tools #search-mm input {
  float: left;
}
#multimedia-browser .multimedia-tools #audio-tab-content #by-issue-audio select {
  float: left;
  width: 87%;
}
#multimedia-browser .multimedia-tools #audio-tab-content #by-issue-audio #audio-topics-btn {
  float: left!important;
}
#multimedia-browser .multimedia-tools fieldset {
  float: left;
  margin-top: 0;
  margin-right: .5em;
  padding: 0;
  width: 49.45%;
}
#multimedia-browser .multimedia-tools fieldset #audio-topics {
  width: 85%;
}
#multimedia-browser .multimedia-tools fieldset:last-of-type {
  padding-left: 0;
  float: right;
  margin-right: 0px;
}
#multimedia-browser .multimedia-tools select {
  margin: 0;
  display: inline-block;
  width: auto;
  height: 40px;
  float: left;
  padding: 5px 10px;
  border: 2px solid #e3e7e9;
  background-color: #fff;
  background-image: none;
  width: 44%;
}
#multimedia-browser .multimedia-tools input[type="text"] {
  border: 2px solid #e3e7e9;
  font-size: 16px!important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 88%;
  float: left;
  display: block;
}
#multimedia-browser .multimedia-tools select + select {
  margin-left: .5em;
}
#multimedia-browser .has-issues .multimedia-tools fieldset {
  float: left;
  margin-top: 0;
  margin-right: .5em;
  padding: 0;
  width: 32.45%;
}
#multimedia-browser .has-issues .multimedia-tools fieldset:last-of-type {
  padding-left: 0;
  float: right;
  margin-right: 0px;
}
#multimedia-browser .has-issues .multimedia-tools select {
  margin: 0;
  display: inline-block;
  width: auto;
  height: 40px;
  float: left;
  padding: 5px 10px;
  border: 2px solid #e3e7e9;
  background-color: #fff;
  background-image: none;
  width: 40%;
}
#multimedia-browser .has-issues .multimedia-tools select.topics {
  width: 80%;
}
#multimedia-browser .has-issues .multimedia-tools input[type="text"] {
  border: 2px solid #e3e7e9;
  font-size: 16px!important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 81%;
  float: left;
  display: block;
}
#multimedia-browser .has-issues .multimedia-tools select + select {
  margin-left: .25em;
}
#multimedia-browser .pagination {
  clear: both;
  margin-top: 0;
  padding: 8px;
  background-color: #455a70;
  color: #fff;
  border-radius: 0;
}
#multimedia-browser .pagination .listing-jump {
  float: left;
}
#multimedia-browser .pagination .listing-increment {
  float: right;
}
#multimedia-browser .pagination .listing-increment a {
  color: #fff;
  display: inline-block;
}
#multimedia-browser .pagination .listing-increment a.selected {
  text-decoration: underline;
}
#multimedia-browser .pagination .listing-increment a + a {
  margin-left: .25em;
}
#multimedia-browser .row {
  margin: 0px;
}
#multimedia-browser .row .media-thumbnail {
  float: left;
  margin: 0 1.4em 1em 0;
  width: 18%;
  height: 240px;
}
#multimedia-browser .row .media-thumbnail .default-image {
  background-color: #333;
  width: 100%;
  float: left;
  height: auto;
}
#multimedia-browser .row .media-thumbnail img {
  cursor: pointer;
  width: 100%;
}
#multimedia-browser .row .media-thumbnail a {
  font-size: .85em;
  float: left;
  width: 100%;
  display: block;
  line-height: 1.2em;
  padding: 4px 0px;
}
#multimedia-browser .row .media-thumbnail:nth-child(5) {
  margin-right: 0;
  float: right;
}
@media (max-width: 1200px) {
  #multimedia-browser .row .media-thumbnail {
    width: 180px;
    margin: 0 10px 1em 0;
  }
  #multimedia-browser .multimedia-tools select {
    width: 42%;
  }
}
@media (max-width: 990px) {
  #multimedia-browser .row .media-thumbnail {
    width: 136px;
  }
  #multimedia-browser input[type="button"] {
    display: inline-block !important;
    float: right !important;
    margin: 0 0 0 .2em !important;
    padding: 5px 10px !important;
    height: 42px;
    font-size: 18px !important;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 86%;
    float: left;
    display: block;
    height: 40px;
  }
  #multimedia-browser .multimedia-tools select {
    font-size: .8em;
    width: 42%;
    height: 40px;
  }
  #multimedia-browser .multimedia-tools select + select {
    margin-left: .5em;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 32%;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset:last-of-type {
    padding-left: 0;
    float: right;
    margin-right: 0px;
  }
  #multimedia-browser .has-issues .multimedia-tools select {
    margin: 0;
    display: inline-block;
    width: auto;
    height: 40px;
    float: left;
    padding: 5px 10px;
    border: 2px solid #e3e7e9;
    background-color: #fff;
    background-image: none;
    width: 37%;
  }
  #multimedia-browser .has-issues .multimedia-tools select.topics {
    width: 77%;
  }
  #multimedia-browser .has-issues .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 78%;
    float: left;
    display: block;
  }
  #multimedia-browser .has-issues .multimedia-tools select + select {
    margin-left: .25em;
  }
}
@media (max-width: 768px) {
  #multimedia-browser .row .media-thumbnail {
    width: 49%;
    height: 320px;
    margin: 0 2% 1em 0;
  }
  #multimedia-browser .row .media-thumbnail:nth-child(2n) {
    margin: 0 0 1em 0;
  }
  #multimedia-browser .pagination {
    font-size: 14px;
  }
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 83%;
    float: left;
    display: block;
  }
  #multimedia-browser .multimedia-tools select {
    font-size: .8em;
    width: 42%;
    height: 42px;
  }
  #multimedia-browser .multimedia-tools select + select {
    margin-left: .5em;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset:last-of-type {
    padding-left: 0;
    float: right;
    margin-right: 0px;
  }
  #multimedia-browser .has-issues .multimedia-tools select {
    margin: 0;
    display: inline-block;
    width: auto;
    height: 40px;
    float: left;
    padding: 5px 10px;
    border: 2px solid #e3e7e9;
    background-color: #fff;
    background-image: none;
    width: 43%;
  }
  #multimedia-browser .has-issues .multimedia-tools select.topics {
    width: 88%;
  }
  #multimedia-browser .has-issues .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 88%;
    float: left;
    display: block;
  }
  #multimedia-browser .has-issues .multimedia-tools select + select {
    margin-left: .25em;
  }
  #share-buttons #share-link,
  #share-buttons #share-link-container {
    display: none;
  }
}
@media (max-width: 480px) {
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 80%;
    float: left;
    display: block;
  }
  #multimedia-browser .multimedia-tools select {
    font-size: .8em;
    width: 39%;
    height: 42px;
  }
  #multimedia-browser .multimedia-tools select + select {
    margin-left: .5em;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset:last-of-type {
    padding-left: 0;
    float: right;
    margin-right: 0px;
  }
  #multimedia-browser .has-issues .multimedia-tools select {
    margin: 0;
    display: inline-block;
    width: auto;
    height: 40px;
    float: left;
    padding: 5px 10px;
    border: 2px solid #e3e7e9;
    background-color: #fff;
    background-image: none;
    width: 39%;
  }
  #multimedia-browser .has-issues .multimedia-tools select.topics {
    width: 80%;
  }
  #multimedia-browser .has-issues .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 80%;
    float: left;
    display: block;
  }
  #multimedia-browser .has-issues .multimedia-tools select + select {
    margin-left: .25em;
  }
}
@media (max-width: 340px) {
  #multimedia-browser .row .media-thumbnail {
    width: 100%;
    height: auto;
    margin: 0 0 1em 0;
  }
}
.footer #actualfooter {
  height: 100px;
  padding-top: 20px;
}
.footer #actualfooter .footer-nav .footerlogo {
  float: left;
  display: block;
  background-image: url(/themes/whitehouse/images/footerlogo.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
@media (max-width: 676px) {
  .footer #actualfooter .footer-nav .footerlogo {
    display: none;
  }
}
.footer #actualfooter .footer-nav ul {
  margin: 15px 0 0 20px;
}
@media (max-width: 545px) {
  .footer #actualfooter .footer-nav ul {
    float: none!important;
    margin: 0 auto;
    text-align: center;
  }
}
.footer #actualfooter .footer-nav ul li a {
  text-transform: uppercase;
  font-family: 'Avenir Next LT W02SC Medium Cn';
  font-size: 20px;
  color: #304c61;
}
.footer #actualfooter .footer-nav ul li a:hover {
  text-decoration: none;
  color: #e8b11a;
}
.footer #actualfooter .footer-nav .office {
  margin: 15px 0 0 0;
  text-transform: uppercase;
  font-family: 'Avenir Next LT W02SC Medium Cn';
  font-size: 20px;
  color: #304c61;
}
@media (max-width: 545px) {
  .footer #actualfooter .footer-nav .office {
    float: none!important;
    margin: 0 auto;
    text-align: center;
  }
}
.footer #actualfooter .footer-nav .office span {
  padding: 0 20px 0 20px;
}
@media (max-width: 545px) {
  .footer #actualfooter .footer-nav .office span {
    display: none;
  }
}
.footer #actualfooter .footer-nav .office a {
  text-transform: uppercase;
  font-family: 'Avenir Next LT W02SC Medium Cn';
  font-size: 20px;
  color: #304c61;
}
.footer #actualfooter .footer-nav .office a:hover {
  text-decoration: none;
  color: #e8b11a;
}
.footer #actualfooter .social {
  position: relative;
}
.footer #actualfooter .social h2 {
  font-family: 'Freight Text W01 Semibold';
  font-size: 17px;
  color: grey;
  margin: 0;
  padding: 0;
}
.footer #actualfooter .social h2 a {
  color: #747474;
}
.footer #actualfooter .social h2 a:hover {
  color: #e8b11a;
}
.footer #actualfooter .social .social-icons {
  margin: 5px auto;
  line-height: 0;
}
.footer #actualfooter .social .social-icons li {
  width: 25px;
  height: 25px;
  border-radius: 15px;
  border: 1px solid #747474;
  text-align: center;
  margin: 3px;
}
.footer #actualfooter .social .social-icons li a {
  font-size: 15px;
  color: #747474;
}
.footer #actualfooter .social .social-icons li a i {
  padding-top: 5px;
}
.footer #actualfooter .social .social-icons li:hover {
  border: 1px solid #e8b11a;
}
.footer #actualfooter .social .social-icons li:hover a {
  color: #e8b11a;
}
.footer .workingfor {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  background-image: url(/themes/whitehouse/images/workingfor.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .footer .workingfor {
    background-position: right;
  }
}
.footer .workingfor .overlay {
  background-color: rgba(70, 90, 113, 0.6);
  display: block;
  width: 100%;
  height: 380px;
  color: #FFF;
  transition: background-color 0.5s ease-in;
}
.footer .workingfor .overlay div {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  width: 60%;
  margin: auto;
}
@media (max-width: 430px) {
  .footer .workingfor .overlay div {
    top: 50px;
  }
}
.footer .workingfor .overlay div h1 {
  font-family: 'Freight Text W01 Semibold';
  font-size: 60px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 0;
}
@media (max-width: 661px) {
  .footer .workingfor .overlay div h1 {
    font-size: 50px;
  }
}
.footer .workingfor .overlay div h1 span {
  font-family: 'Freight Text W01 Semibold It';
}
.footer .workingfor .overlay .learn {
  font-family: 'Avenir Next LT W02SC Bold Cond';
  margin: 0 auto;
  width: 100%;
  text-transform: uppercase;
  font-size: 20px;
  padding: 15px 35px;
  border: 1px solid #fff;
  border-radius: 10px;
}
.footer .workingfor .overlay:hover {
  background-color: rgba(70, 90, 113, 0);
  text-decoration: none;
}
#flagForm #flag-options .head {
  margin: 15px 0 15px 0;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #EEE;
  background-color: #455a70;
  color: #fff;
}
#flagForm #flag-options .row {
  padding: 15px 10px 10px 10px;
  border-bottom: 2px solid #EEE;
}
#flagForm #flag-options .row label {
  display: none;
}
#flagForm #flag-options .row .qty {
  padding: 0 20px 0 20px;
  max-width: 75px;
  margin: 0;
  height: 35px;
}
#flagForm .shipping_total {
  margin: 5px 0 0 0;
  padding: 20px;
  /*background-color: rgba(2,153,230,0.025);*/
}
#flagForm .subtotal {
  padding: 25px 0 0 0;
  font-size: 22px;
  font-weight: 800;
}
#flagForm .subtotal label {
  font-size: 22px;
  font-weight: 800;
}
#min_flag {
  margin: 0;
  padding: 0;
  opacity: 0;
}
/* collapse ------------------------------- */
@media (max-width: 990px) {
  #flag-options .head {
    display: none !important;
  }
  #flag-options .row {
    border-bottom: 1px solid #ccc;
    margin: 0 0 25px 0;
  }
  #flag-options .row .total {
    text-align: right;
  }
  #flag-options .row label {
    display: inline-block !important;
  }
  .shipping div,
  .subtotal div {
    text-align: right;
  }
}
/* FORM SYSTEM styles page

This are mostly functional styles at the top, with customizations below...

*/
#accomp-all,
#accomp-1,
#accomp-2,
#accomp-3 {
  display: none;
}
.sel_all #accomp-all,
.sel_all #accomp-1,
.sel_all #accomp-2,
.sel_all #accomp-3,
.sel_1 #accomp-1,
.sel_2 #accomp-2,
.sel_3 #accomp-3 {
  display: block;
}
.show_form .form_mode,
.show_preview .preview_mode {
  display: block !important;
}
.show_form input,
.show_form select,
.show_form textarea {
  display: inline-block !important;
}
.show_form .preview_mode {
  display: none !important;
}
.show_preview .form-control,
.show_preview .form_mode,
.show_preview input,
.show_preview select,
.show_preview textarea {
  display: none !important;
}
abbr {
  outline: none;
  border: none;
}
.form-group .preview_mode {
  color: #000;
}
.show_form .picker {
  display: inline-block !important;
}
.show_preview input#send-request {
  display: inline-block !important;
}
.button-right {
  float: right;
}
.button-left {
  float: left;
}
#edit-request {
  margin-right: 1em;
}
#qa-form {
  margin-bottom: 20px;
}
#qa-form .button {
  cursor: pointer;
  font-size: 1rem;
  font-family: sans-serif;
}
/*

FORM SYSTEM Customizations
*/
#main_column form #actions {
  font-size: 22px;
  height: 65px;
}
#main_column form fieldset {
  margin: 50px 0 0 0;
}
#main_column form fieldset legend {
  font-size: 30px;
  font-family: 'AvenirNextLTW01-DemiCn';
}
#main_column form fieldset label {
  font-weight: 500;
}
#main_column form fieldset input,
#main_column form fieldset select {
  padding: 10px;
}
#main_column form fieldset input[type='radio'],
#main_column form fieldset input[type='checkbox'] {
  padding: 0px;
  padding-top: 2px;
}
#main_column form fieldset abbr[title],
#main_column form fieldset abbr[data-original-title] {
  color: rgba(0, 0, 0, 0.2);
  border-bottom: none;
  cursor: help;
  padding: 5px;
}
#main_column form fieldset textarea {
  min-height: 100px;
  font-size: 18px;
}
#main_column form fieldset input.form-control,
#main_column form fieldset select.form-control {
  height: 50px;
  font-size: 18px;
}
#main_column form fieldset input.form-control:focus,
#main_column form fieldset select.form-control:focus {
  border: 1px solid #CCC;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
#main_column form fieldset .note-text {
  padding: 5px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.33);
}
#main_column form fieldset + fieldset {
  margin: 50px 0 0 0;
}
#main_column form .btn {
  margin-top: 30px;
  font-size: 20px;
  padding: 15px 35px;
  border-radius: 10px;
  float: right;
  font-family: 'AvenirNextLTW01-DemiCn';
  text-transform: uppercase;
  color: #455a70;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #455a70;
}
#main_column form .btn:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #e8b11a;
  border: 1px solid #e8b11a;
}
#main_column form .btn + .btn {
  margin: 0 15px;
}
.popover {
  z-index: 1020;
  background-color: #fff;
}
.popover.fade.in {
  background-color: #fff;
}
.data-containers {
  float: right;
  width: 300px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  margin-left: 20px;
}
#signatures-container {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  float: right;
  margin-bottom: 0px;
  width: 100%;
  display: block;
  position: relative;
}
#signatures-container #num-signatures-container {
  display: block;
  float: left;
  padding: 6px 20px;
  font-size: 23px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}
#signatures-container #num-signatures-label {
  display: block;
  float: left;
  padding: 15px 10px;
  font-size: 18px;
}
.social-container {
  float: right;
  display: block;
  background: #eee;
  padding: 10px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.social-container ul {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  width: 100%;
  display: block;
  position: relative;
  float: left;
}
.social-container ul li {
  display: block;
  float: left;
  margin: 0 15px 0 0;
}
.social-container ul li iframe {
  position: relative;
}
.social-container ul li.social-fb {
  margin-top: 1px;
}
.social-container ul li.social-plusone {
  margin-top: 2px;
}
.social-container {
  width: 100%;
  float: right;
  margin: 0;
  text-align: center;
}
.social-container ul li {
  margin: 0px 8px;
}
.social-container ul li:last-child {
  margin-right: 0px;
}
#content .amend-form-container .loader {
  position: relative;
  margin: 0 auto;
  height: 50px;
  width: 50px;
  border-left: 7px solid rgba(204, 204, 204, 0.15);
  border-right: 7px solid rgba(204, 204, 204, 0.15);
  border-bottom: 7px solid rgba(204, 204, 204, 0.15);
  border-top: 7px solid rgba(204, 204, 204, 0.8);
  border-radius: 100%;
  -webkit-animation: rotation 1s infinite linear;
  -moz-animation: rotation 1s infinite linear;
  -o-animation: rotation 1s infinite linear;
  animation: rotation 1s infinite linear;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form h2 {
  margin: 0 0 1em 0;
  font-size: 25px;
  font-weight: bold;
}
#content .amend-form-container form h3 {
  margin: 0 0 1em 0;
  font-size: 20px;
}
#content .amend-form-container form input[type="text"],
#content .amend-form-container form input[type="email"],
#content .amend-form-container form select {
  height: 50px;
}
#content .amend-form-container form input[type="text"],
#content .amend-form-container form input[type="email"],
#content .amend-form-container form textarea,
#content .amend-form-container form select {
  width: 100%;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#content .amend-form-container form select {
  padding: 10px;
  height: 50px;
  font-size: 18px;
}
#content .amend-form-container form textarea {
  min-height: 125px;
}
#content .amend-form-container form input[type="checkbox"] + label,
#content .amend-form-container form input[type="radio"] + label {
  display: inline;
  position: relative;
  top: 2px;
  left: .5em;
}
#content .amend-form-container form .checkbox input[type="checkbox"] {
  margin-left: 0;
}
#content .amend-form-container form .checkbox input[type="checkbox"] + label {
  top: -1px;
  left: .25em;
}
#content .amend-form-container form .control-group + .control-group,
#content .amend-form-container form .control-group + .row,
#content .amend-form-container form .row + .control-group,
#content .amend-form-container form .row + .row {
  margin-top: 1em;
}
@media (max-width: 990px) {
  #content .amend-form-container form div[class^="col-"] + div[class^="col-"] {
    margin-top: 1em;
  }
}
.fc-tbx {
  padding: 9px 14px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.fc-tbx .arrow,
.fc-tbx .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.fc-tbx .arrow {
  border-width: 11px;
}
.fc-tbx .arrow:after {
  content: "";
  border-width: 10px;
}
.fc-tbx .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.fc-tbx .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.fc-tbx ul.error-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-tbx ul.error-list li p {
  margin: 0;
  font-size: 18px;
  color: #464646;
}
.polls input[type=text] {
  width: 100%;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 10px;
}
.polls select {
  padding: 10px;
  height: 50px;
  font-size: 18px;
  width: 100%;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
}
.polls label {
  /*font-size: 14px;*/
  font-weight: 500;
}
.polls .control-group {
  padding: 10px 0px;
}
.polls input[type="radio"] {
  margin-right: 10px;
}
.polls input.btn {
  float: right;
  font-size: 30px;
}
.hide-on-submit {
  display: none !important;
}
.hidden_set {
  margin-bottom: 50px;
  margin-top: -50px;
}
.hidden_set .control-group {
  padding-top: 20px;
}
.data-containers {
  float: right;
  width: 300px;
  text-align: center;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
  margin-left: 20px;
}
.social-container {
  width: 100%;
  float: right;
  margin: 0;
  text-align: center;
}
.social-container ul li {
  margin: 0px 8px;
}
.social-container ul li:last-child {
  margin-right: 0px;
}
#signatures-container {
  width: 100%;
  float: right;
  margin-bottom: 0px;
}
#signatures-container #num-signatures-container {
  display: block;
  float: left;
  padding: 6px 20px;
  font-size: 23px;
  background-color: #d9d9d9;
  text-align: center;
  width: 100%;
}
#signatures-container #num-signatures-container strong {
  font-weight: normal;
}
#signatures-container #num-signatures-label {
  display: block;
  float: left;
  padding: 15px 10px;
  font-size: 18px;
}
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* fonts ---------------------------------------------
font-family:'FreightText W01 Medium';
font-family:'Freight Text W01 Semibold';
font-family:'Freight Text W01 Semibold It';
font-family:'FreightText BoldSC';
font-family:'FreightText LightSC';
font-family:'FreightText LightItalicSC';
font-family:'FreightText BookSC';
font-family:'FreightText BookItalicSC';
font-family:'FreightText MediumSC';
font-family:'FreightText MediumItalicSC';
font-family:'FreightText BoldItalicSC';
font-family:'FreightText BlackSC';
font-family:'FreightText BlackItalicSC';
font-family:'Avenir Next LT W02SC Medium Cn';
font-family:'Avenir Next LT W02SC Demi Cond';
font-family:'Avenir Next LT W02SC Bold Cond';
font-family:'Avenir Next LT W02SC Md Cn It';
font-family:'Avenir Next LT W02SC De1437604';
font-family:'Avenir Next LT W02SC Bo1437644';
font-family:'Avenir Next Cyr W00 Ult Light';
font-family:'Avenir Next Cyr W00 Ult Lt It';
font-family:'Avenir Next Cyr W00 Thin';
font-family:'Avenir Next Cyr W00 Thin It';
font-family:'Avenir Next Cyr W00 Light';
font-family:'Avenir Next Cyr W00 Light It';
font-family:'Avenir Next Cyr W00 Regular';
font-family:'Avenir Next Cyr W00 Italic';
font-family:'Avenir Next Cyr W00 Medium';
font-family:'Avenir Next Cyr W00 Medium It';
font-family:'Avenir Next Cyr W00 Demi';
font-family:'Avenir Next Cyr W00 Demi It';
font-family:'Avenir Next Cyr W00 Bold';
font-family:'Avenir Next Cyr W00 Bold It';
font-family:'Avenir Next Cyr W00 Heavy';
font-family:'Avenir Next Cyr W00 Heavy It';
font-family:'AvenirNextLTW01-UltraLi';
font-family:'AvenirNextLTW01-UltraLt_721260';
font-family:'AvenirNextLTW01-BoldIta';
font-family:'AvenirNextLTW01-UltraLt_721293';
font-family:'AvenirNextLTW01-UltLtCn_721296';
font-family:'AvenirNextLTW01-Condens_721299';
font-family:'AvenirNextLTW01-Condens_721302';
font-family:'AvenirNextLTW01-MediumC_721311';
font-family:'AvenirNextLTW01-MediumC_721314';
font-family:'AvenirNextLTW01-DemiCn';
font-family:'AvenirNextLTW01-DemiCnI_721308';
font-family:'AvenirNextLTW01-BoldCn';
font-family:'AvenirNextLTW01-BoldCnI_721320';
font-family:'AvenirNextLTW01-HeavyCn_721323';
font-family:'AvenirNextLTW01-HeavyCn_721326';
font-family:'Avenir Next W01 Cn Thin';
font-family:'AvenirNextW01-CnThinIta';
font-family:'AvenirNextW01-CnLight';
font-family:'AvenirNextW01-CnLightIt';


----------------------------------------------------- */
/* colors ------------------------------------------- */
/* -------------------------------------------------- */
body {
  font-size: 20px;
  font-family: 'FreightText W01 Medium';
}
.container {
  max-width: 1300px;
  width: 100%;
}
.no-padding {
  padding: 0px;
}
.no-gutter {
  padding-left: 0;
  padding-right: 0;
}
.main_page_title {
  font-family: 'AvenirNextLTW01-DemiCn';
  margin-bottom: 20px;
  text-transform: uppercase;
}
#breadcrumb,
#breadcrumb2 {
  font-family: 'Freight Text W01 Semibold It';
}
#breadcrumb a,
#breadcrumb2 a {
  color: #455a70;
}
#breadcrumb a:hover,
#breadcrumb2 a:hover {
  color: #e8b11a;
}
a {
  color: #4b6c8e;
}
a:hover {
  color: #e8b11a;
  text-decoration: none;
}
body#default #main_column p a {
  border-bottom: 1px solid #7f9fc1;
}
body#default #main_column p a:hover {
  border-bottom: 1px solid #e8b11a;
}
.btn-lg {
  background-color: rgba(255, 255, 255, 0);
  color: #455a70;
  border: 1px solid #455a70;
  font-size: 20px;
  text-transform: uppercase;
  padding: 15px 35px;
  border-radius: 5px;
  text-align: center;
  font-family: 'AvenirNextLTW01-DemiCn';
}
.btn-lg:hover {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #e8b11a;
  border: 1px solid #e8b11a;
}
.btn-lg:focus {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #e8b11a;
  border: 1px solid #e8b11a;
}
.btn-xs,
.btn-sm,
.btn-small,
.btn-block {
  background-color: rgba(255, 255, 255, 0);
  color: #455a70;
  border: 1px solid #455a70;
  text-transform: uppercase;
  border-radius: 5px;
  text-align: center;
  font-family: 'AvenirNextLTW01-DemiCn';
}
.btn-xs:hover,
.btn-sm:hover,
.btn-small:hover,
.btn-block:hover {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #e8b11a;
  border: 1px solid #e8b11a;
}
.btn-xs:focus,
.btn-sm:focus,
.btn-small:focus,
.btn-block:focus {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #e8b11a;
  border: 1px solid #e8b11a;
}
p {
  margin: 0 0 40px;
  line-height: 35px;
}
h1,
h2,
h3 {
  font-family: 'AvenirNextLTW01-DemiCn';
}
@media (max-width: 1200px) {
  #header .container .logo {
    margin: 28px 0 0 20px;
    width: 355px;
  }
  #header .container .signup {
    display: none;
  }
  .navbar .nav-pills {
    margin: 25px 0 0 5px;
  }
  .navbar .srchbutton {
    margin: 38px 0 0 10px;
  }
  .social-icons {
    margin: 48px 0 0 20px;
  }
  /* default */
  #photos li .imghold {
    height: 215px;
  }
  .videolist .videoiframe {
    float: left;
    width: 100%;
    height: 400px;
    display: block;
  }
  #issue .one_column .breakout #issueFeed > li iframe {
    height: 320px;
  }
  #issue .one_column .breakout #issueFeed > li .imghold {
    height: 215px;
  }
  #issue .two_column .breakout #issueFeed > li iframe {
    height: 320px;
    width: 100%;
  }
  #issue .two_column .breakout #issueFeed > li .imghold {
    height: 135px;
  }
  .hearingslideshow .item {
    width: 33.333%;
  }
}
@media (max-width: 991px) {
  #header .container .logo {
    margin: 20px 0 0 50px;
  }
  body#biography #main_column {
    width: 100%;
  }
  body#biography #thebuddins {
    margin-bottom: 30px;
  }
  body#biography #thebuddins a {
    width: 100%;
    margin-bottom: 10px;
  }
  .btn-lg {
    width: 100%;
    display: block;
  }
  .social-icons {
    float: right !important;
    margin: 48px 20px 0 40px;
  }
  .nav-col {
    position: absolute;
    top: 0;
  }
  #home #content .featured {
    height: 525px;
  }
  #home #content .featured h1 a {
    font-size: 40px;
  }
  #home #content .news .news-item {
    height: auto;
    margin: 0 0 0 0;
  }
  .footer {
    text-align: center;
  }
  .footer .footer-nav {
    display: inline-block;
    clear: both;
    overflow: auto;
  }
  .footer .social {
    margin: 25px 0 25px 0;
    display: inline-block;
    float: none !important;
  }
  /* default */
  #photos li .imghold {
    height: 345px;
  }
  #photostream li .imghold {
    height: auto;
  }
  #photostream li .imghold img {
    position: static;
  }
  #issue .one_column .breakout #issueFeed > li iframe {
    height: 220px;
  }
  #issue .one_column .breakout #issueFeed > li .imghold {
    height: 345px;
    margin-bottom: 30px;
  }
  #issue .two_column .breakout #issueFeed > li iframe {
    height: 320px;
    width: 100%;
  }
  #issue .two_column .breakout #issueFeed > li .imghold {
    height: 345px;
    margin-bottom: 30px;
  }
  .videolist .videoiframe {
    float: left;
    width: 100%;
    height: 250px;
    display: block;
  }
  .calendarFooter .row .col {
    width: 50%;
  }
}
@media (max-width: 767px) {
  html,
  body {
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  #header {
    height: 110px;
  }
  #header .container .logo {
    width: 300px;
  }
  #home #content .featured {
    height: 425px;
  }
  #home #content .featured h1 a {
    width: 80%;
    font-size: 30px;
  }
  #photos li .imghold {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
    display: block;
  }
  #photos li .imghold .short,
  #photos li .imghold .tall {
    position: relative;
    height: auto !important;
    display: block;
    width: 100% !important;
    float: left;
  }
  #issue .one_column .breakout #issueFeed > li iframe,
  #issue .two_column .breakout #issueFeed > li iframe {
    width: 100%;
    height: 300px;
  }
  #issue .one_column .breakout #issueFeed > li .imghold,
  #issue .two_column .breakout #issueFeed > li .imghold {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
    display: block;
  }
  #issue .one_column .breakout #issueFeed > li .imghold .short,
  #issue .two_column .breakout #issueFeed > li .imghold .short,
  #issue .one_column .breakout #issueFeed > li .imghold .tall,
  #issue .two_column .breakout #issueFeed > li .imghold .tall {
    position: relative;
    height: auto !important;
    display: block;
    width: 100% !important;
    float: left;
  }
  .hearingslideshow .item {
    width: 50%;
  }
  .table-holder {
    width: 100%;
    display: block;
    margin: 0px;
    padding: 0px;
  }
  .table-holder .table {
    width: 100% !important;
  }
  .table-holder .table .divider {
    display: none;
  }
  .table-holder .table tr {
    display: table;
    width: 100% !important;
    border-top: 5px solid #EBEBEB;
  }
  .table-holder .table tr td {
    white-space: normal !important;
    min-width: 0px;
    display: block;
    padding: .75em;
    float: left;
    width: 100% !important;
  }
  .table-holder .table tr td .location {
    min-width: 0px;
    display: block;
  }
  .table-holder .table tr td .faux-th {
    display: inline-block !important;
    float: left  !important;
    width: 48.61878453038674% !important;
    text-transform: uppercase !important;
    font-size: .8em !important;
  }
  .table-holder .table tr td .faux-col {
    display: block;
    float: left  !important;
    margin-left: 2.7624309392265194%  !important;
    width: 48.61878453038674%  !important;
    font-size: .8em !important;
  }
  .table-holder .table tr td:after,
  .table-holder .table tr td:before {
    display: table;
    line-height: 0;
    content: "";
  }
  .table-holder .table tr + tr {
    padding-bottom: 1em;
  }
  .table {
    width: 100% !important;
  }
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
  .calendarFooter .row .col {
    width: 100%;
  }
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch {
    padding: 0;
    padding-top: 40px;
    float: none !important;
    width: 90%;
    margin: 0 auto;
  }
  .leader {
    min-height: 420px;
  }
}
@media (max-width: 479px) {
  #header {
    height: 110px;
  }
  .social-icons {
    display: none;
  }
  #home #content .featured {
    height: 425px;
  }
  #home #content .featured h1 a {
    width: 80%;
    font-size: 30px;
  }
  #home #content .workingfor .overlay div h1 {
    font-size: 40px;
  }
  #browser_table thead tr th {
    border-top: medium none;
    font-size: 14px;
    padding-top: 10px;
    font-weight: normal;
  }
  #browser_table tbody tr td {
    font-size: 12px;
  }
  #browser_table tbody tr.divider {
    border-top: none;
  }
  #browser_table tbody tr.divider td {
    border-top: medium none;
    font-size: 14px;
    padding-top: 10px;
  }
  #issue .breakout #issueFeed > li iframe {
    height: 200px;
  }
  .prevarticle,
  .nextarticle {
    width: 100%;
    margin-top: 10px;
    float: none !important;
  }
  #pagination-container .pagination-right,
  #pagination-container .maxrows {
    float: none !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
    border: none;
    margin-bottom: 20px;
  }
  #pagination-container .pager {
    width: 100%;
  }
  .pager .next > a,
  .pager .previous > a {
    float: none;
  }
  .witnesses .witness-name {
    width: 100%;
  }
  .witnesses .witness-title,
  .witnesses .witness-agency,
  .witnesses .witness-location {
    display: none;
  }
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
    width: 80%;
  }
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
    width: 20%;
  }
}
@media (max-width: 330px) {
  .videolist .videoiframe {
    float: left;
    width: 100%;
    height: 150px;
    display: block;
  }
  .one_column #issue .breakout #issueFeed > li iframe,
  .two_column #issue .breakout #issueFeed > li iframe {
    height: 150px;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie img {
  max-width: 100%;
  height: auto !important;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
@media print {
  html {
    margin: 0px !important;
    padding: 0px !important;
    height: 100% !important;
    width: 100% !important;
    overflow: visible;
  }
  html body {
    margin: 0px !important;
    padding: 0px !important;
    height: 100% !important;
    width: 100% !important;
  }
  html #actions,
  html .prevarticle,
  html .nextarticle,
  html #alerts,
  html #header,
  html #press + hr,
  html #pagetools + hr,
  html #breadcrumb,
  html #breadcrumb2 {
    display: none !important;
  }
  html #logo,
  html .logohold,
  html .navbar,
  html #toolbar,
  html .footer,
  html footer,
  html #breadcrumb {
    display: none!important;
  }
  html .rss-subscribe:after {
    content: "";
  }
  html .container {
    color: #333333 !important;
    width: 100%;
  }
  html .container ul {
    width: 100%;
  }
  html .container ul li {
    color: #ccc !important;
    width: 100%;
  }
  html .container div {
    color: #333333 !important;
    width: 100%;
  }
  html .container div * {
    color: #333333 !important;
  }
  html .container img:after,
  html .container a:after {
    content: "";
  }
  html .container #asides .social,
  html .container #asides .servicespod {
    display: none;
  }
  html .container img {
    margin: 10px;
  }
  html .container .inline-search {
    display: none;
  }
  html .container #search-issues-page-container,
  html .container #search-issues-page-results {
    display: none;
  }
  html .container .media-list .media {
    page-break-inside: avoid;
  }
  html .container .media-list a.pull-left,
  html .container .media-body {
    display: block;
    float: left;
    width: 15%;
  }
  html .container .media-list a.pull-left {
    margin-right: 5% !important;
  }
  html .container .media-list a img {
    width: 100%;
  }
  html .container .media-body {
    width: 80%;
  }
  #content .container #main_column {
    border-right: none;
  }
  #issue #asides {
    display: none;
  }
}
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
		border-top: 1px solid #ddd !important;
	}*/
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker > div {
  display: none;
}
.datepicker.days div.datepicker-days {
  display: block;
}
.datepicker.months div.datepicker-months {
  display: block;
}
.datepicker.years div.datepicker-years {
  display: block;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  color: #000;
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  color: #000;
  background-color: #ffcd70;
  border-color: #f59e00;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  background-image: none;
}
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled:hover.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today:hover[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today:hover.disabled:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled:hover.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today:hover[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today:hover.disabled:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled:hover.disabled:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today:hover[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today:hover.disabled.active,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled:hover.disabled.active,
.datepicker table tr td.today[disabled].active,
.datepicker table tr td.today:hover[disabled].active,
.datepicker table tr td.today.disabled[disabled].active,
.datepicker table tr td.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today:hover.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover.active {
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  color: #000;
  background-color: #f7ca77;
  border-color: #f1a417;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  color: #000;
  background-color: #f4bb51;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  background-image: none;
}
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today:hover.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled:hover.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today:hover[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today:hover.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled:hover.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today:hover[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today:hover.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled:hover.disabled:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today:hover[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today:hover.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled:hover.disabled.active,
.datepicker table tr td.range.today[disabled].active,
.datepicker table tr td.range.today:hover[disabled].active,
.datepicker table tr td.range.today.disabled[disabled].active,
.datepicker table tr td.range.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today:hover.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  color: #fff;
  background-color: #999999;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  color: #fff;
  background-color: #858585;
  border-color: #373737;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  background-image: none;
}
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled:hover.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected:hover[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected:hover.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled:hover.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected:hover[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected:hover.disabled:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled:hover.disabled:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected:hover[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected:hover.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled:hover.disabled.active,
.datepicker table tr td.selected[disabled].active,
.datepicker table tr td.selected:hover[disabled].active,
.datepicker table tr td.selected.disabled[disabled].active,
.datepicker table tr td.selected.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected:hover.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {
  background-color: #999999;
  border-color: #555555;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  background-image: none;
}
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  background-image: none;
}
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active:hover.disabled:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled:hover.disabled:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active:hover[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active:hover.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled:hover.disabled.active,
.datepicker table tr td span.active[disabled].active,
.datepicker table tr td span.active:hover[disabled].active,
.datepicker table tr td span.active.disabled[disabled].active,
.datepicker table tr td span.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active:hover.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}
.datepicker th.datepicker-switch {
  width: 145px;
}
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}
.input-group.date .input-group-addon i {
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: solid #ccc;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}
/*!
 * Timepicker Component for Twitter Bootstrap
 *
 * Copyright 2013 Joris de Wit
 *
 * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
.bootstrap-timepicker {
  position: relative;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
  left: auto;
  right: 0;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
  left: auto;
  right: 12px;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
  left: auto;
  right: 13px;
}
.bootstrap-timepicker .input-group-addon {
  cursor: pointer;
}
.bootstrap-timepicker .input-group-addon i {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.bootstrap-timepicker-widget.dropdown-menu {
  padding: 4px;
}
.bootstrap-timepicker-widget.dropdown-menu.open {
  display: inline-block;
}
.bootstrap-timepicker-widget.dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-timepicker-widget.dropdown-menu:after {
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-timepicker-widget.timepicker-orient-left:before {
  left: 6px;
}
.bootstrap-timepicker-widget.timepicker-orient-left:after {
  left: 7px;
}
.bootstrap-timepicker-widget.timepicker-orient-right:before {
  right: 6px;
}
.bootstrap-timepicker-widget.timepicker-orient-right:after {
  right: 7px;
}
.bootstrap-timepicker-widget.timepicker-orient-top:before {
  top: -7px;
}
.bootstrap-timepicker-widget.timepicker-orient-top:after {
  top: -6px;
}
.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.bootstrap-timepicker-widget a.btn,
.bootstrap-timepicker-widget input {
  border-radius: 4px;
}
.bootstrap-timepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-timepicker-widget table td {
  text-align: center;
  height: 30px;
  margin: 0;
  padding: 2px;
}
.bootstrap-timepicker-widget table td:not(.separator) {
  min-width: 30px;
}
.bootstrap-timepicker-widget table td span {
  width: 100%;
}
.bootstrap-timepicker-widget table td a {
  border: 1px transparent solid;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  outline: 0;
  color: #333;
}
.bootstrap-timepicker-widget table td a:hover {
  text-decoration: none;
  background-color: #eee;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #ddd;
}
.bootstrap-timepicker-widget table td a i {
  margin-top: 2px;
  font-size: 18px;
}
.bootstrap-timepicker-widget table td input {
  width: 42px;
  margin: 0;
  text-align: center;
  padding: 4px 6px;
}
.bootstrap-timepicker-widget .modal-content {
  padding: 4px;
}
@media (min-width: 767px) {
  .bootstrap-timepicker-widget.modal {
    width: 200px;
    margin-left: -100px;
  }
}
@media (max-width: 767px) {
  .bootstrap-timepicker {
    width: 100%;
  }
  .bootstrap-timepicker .dropdown-menu {
    width: 100%;
  }
}
/*# sourceMappingURL=common.css.map */