/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
body {
  margin-top: 120px;
}
body #header {
  z-index: 100;
  position: fixed;
  width: 100%;
  top: 0px;
  height: 90px;
  float: left;
  background-color: #474f58;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
body #header .logo-col {
  position: relative;
  float: left;
  display: block;
}
body #header .logo {
  display: block;
  float: left;
  height: auto;
  padding: 0px;
  background-color: #ffffff;
  border: 1px solid #e6a803;
  border-top: none;
  margin: 0px;
  min-height: 116px;
  position: absolute;
  top: 0px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
body #header .logo a {
  text-align: center;
  display: block;
  width: 100%;
  float: left;
  padding: 15px;
  height: auto;
  color: #626c77;
  letter-spacing: 1px;
}
body #header .logo a .title {
  font-family: 'Futura BT W01 Medium';
  font-size: 16px;
  line-height: 16px;
  display: block;
  float: left;
  width: 100%;
  padding-bottom: 6px;
  border-bottom: 1px solid;
  margin-bottom: 6px;
  text-transform: uppercase;
}
body #header .logo a .name {
  font-family: 'Playfair Display', serif;
  display: block;
  float: left;
  width: 100%;
  font-size: 28px;
  line-height: 28px;
}
body #header .logo a .name .and {
  color: #e6a803;
}
body #header .logo a:hover {
  background-color: #626c77;
  color: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
body #header .logoalt {
  display: block;
  position: absolute;
  float: left;
  height: auto;
  padding: 0px;
  background-color: transparent;
  border: none;
  border-top: none;
  margin: 0px;
  min-height: 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;
}
body #header .logoalt a {
  text-align: left;
  display: block;
  width: 100%;
  float: left;
  padding: 0px;
  height: auto;
  letter-spacing: 1px;
  color: #fff;
}
body #header .logoalt a .title {
  font-family: 'Futura BT W01 Medium';
  font-size: 13px;
  line-height: 13px;
  display: block;
  float: left;
  width: 100%;
  padding-top: 11px;
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
}
body #header .logoalt a .name {
  font-family: 'Playfair Display', serif;
  display: block;
  float: left;
  width: 100%;
  font-size: 26px;
  line-height: 26px;
}
body #header .logoalt a .name .and {
  color: #e6a803;
}
body #header .logoalt a:hover {
  color: #e6a803;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  background-color: transparent;
}
body #header.darken {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
body #header.darken .logo {
  top: -150px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
body #header .nav-col,
body #header .search-col {
  padding: 0px;
}
body #header .nav-col {
  position: relative;
}
body #header #search {
  float: left;
  width: 0;
  position: absolute;
  right: 33px;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body #header #search.showme {
  width: 95%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body #header #search #sitesearch {
  width: 100%;
  float: left;
  padding: 25px 15px 0px;
  position: relative;
  height: 70px;
}
body #header #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 40px;
  padding: 5px;
}
body #header #search #sitesearch #search-field:focus {
  outline: none;
  border: none;
  filter: none;
}
body #header #search #sitesearch button {
  position: absolute;
  background-color: #626c77;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}
body #header #search #sitesearch button:hover {
  background-color: #e6a803;
}
#home {
  margin-top: 0px;
}
#home #header {
  background-color: transparent;
}
#home #header.darken {
  background-color: #474f58;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#content {
  padding-bottom: 90px;
}
#content.livehearingpresent {
  padding-top: 50px;
}
.topbanner {
  position: absolute;
  top: 90px;
  width: 100%;
  background-size: contain;
  background-position: center top;
  background-color: #000;
  min-height: 470px;
}
.topbanner .inset {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('/themes/help/images/vignette.png');
  background-size: contain;
  background-position: inherit;
  opacity: 0.65;
  position: absolute;
  top: 0px;
}
.topbanner .titleholder {
  position: absolute;
  top: 60%;
}
.topbanner .banner_title {
  font-size: 60px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0px;
  position: relative;
}
.topbanner h2 {
  margin-top: 0px;
  color: #fff;
  position: relative;
  font-family: 'Playfair Display', serif;
}
#content.withbanner {
  padding-top: 60px;
  margin-top: 560px;
  background-color: #fff;
  display: block;
  position: relative;
}
#content.withbanner #breadcrumb {
  display: none;
}
#content.withbanner .main_page_title {
  display: none;
}
img#banner {
  width: 100%;
}
aside {
  margin: 0 0 20px 0;
  float: left;
  width: 100%;
}
#featuredvideo .featuredvideoframe {
  width: 100%;
  height: 200px;
}
#twitter-feed {
  width: 100%;
  float: left;
  border: 1px solid #687e98;
  border-top: none;
  padding: 20px;
}
#twitter-feed iframe {
  width: 100%;
}
#press {
  margin-bottom: 50px;
}
#newscontent {
  margin-top: 0px;
}
.hearing #newscontent,
.hearings #newscontent,
.ranking #newscontent,
.chairman #newscontent {
  margin-top: 0px;
}
.modal-backdrop.in {
  opacity: 0.98 !important;
  background-color: #474f58;
}
body.nominations .modal-body legend {
  display: none;
}
body.nominations .modal-body #search-nominations-field {
  width: 500px;
  margin-top: 2px;
}
#breadcrumb {
  margin-top: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 0px;
  margin-bottom: 30px;
}
#breadcrumb > ol li:first-child {
  display: inline-block;
}
.togglemenu {
  display: none;
}
.dropdown-menu {
  -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);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: none;
  min-width: 100%;
}
.navbar-header {
  float: left;
  width: 100%;
}
.navbar-header .navbar {
  float: left;
  width: 100%;
  margin: 0px;
  padding: 0px;
  border: none;
  max-height: 150px;
  display: inline-block;
}
.navbar-header .navbar .nav {
  float: left;
  width: auto;
}
.navbar-header .navbar .nav > li {
  margin: 0px;
  font-size: 28px;
  text-transform: uppercase;
  font-family: 'FuturaBTW01-MediumConde';
}
.navbar-header .navbar .nav > li a {
  padding: 25px 20px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  height: 90px;
}
.navbar-header .navbar .nav > li:hover a {
  background-color: #626c77;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu {
  -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);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: none;
  min-width: 100%;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu .dropdown-submenu {
  position: relative;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu .dropdown-submenu .dropdown-menu {
  display: none;
  margin-top: -48px;
  margin-right: 150px;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu .dropdown-submenu:hover .dropdown-menu {
  display: block;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu li a {
  padding: 10px 22px;
  height: auto;
  font-size: 20px;
  color: #fff;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu li a:hover {
  background-color: #253548;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu li.dropdown-submenu .dropdown-menu {
  right: 3px;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu li.dropdown-submenu .dropdown-menu li a {
  background-color: #8f99a4;
}
.navbar-header .navbar .nav > li:hover .dropdown-menu li.dropdown-submenu .dropdown-menu li a:hover {
  background-color: #626c77;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.navbar-header .navbar .nav > li.selected a {
  background-color: #626c77;
}
.navbar-header .navbar .nav > li:last-child .dropdown-menu {
  right: 0px;
}
.navbar-header .navbar .srchbutton {
  float: right;
  font-size: 20px;
  padding: 33px 0px;
  color: #fff;
}
.navbar-header .navbar .srchbutton:hover {
  color: #e6a803;
}
#NavMobileModal .nav-pills > li {
  float: left;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  width: 100%;
  display: block;
  position: relative;
  font-family: 'Futura BT W01 Bold';
  font-size: 24px;
}
#NavMobileModal .nav-pills > li a {
  padding: 15px;
}
#NavMobileModal .nav-pills > li a:hover {
  color: #e6a803 !important;
}
#NavMobileModal .nav-pills > li:last-child {
  border: none;
}
#NavMobileModal .nav-pills > li .dropdown-menu {
  display: block;
  float: left;
  width: 100%;
  position: relative;
  background: transparent;
}
#NavMobileModal .nav-pills > li .dropdown-menu > li {
  text-align: left;
  font-size: 20px;
  font-family: 'Futura BT W01 Book';
}
#NavMobileModal .nav-pills > li .dropdown-menu > li a {
  padding: 15px;
  border: none;
}
#advanced-search-container {
  text-align: right;
  line-height: 1.7em;
}
#advanced-search-container #advanced-search-link {
  position: relative;
  top: -8px;
  font-size: 0.85em;
  color: #fff;
  white-space: nowrap;
}
#SearchModal p {
  margin-top: 1em;
}
#SearchModal .form-inline #search-sections-container {
  padding-left: 12px;
}
#SearchModal .form-inline #search-sections-container #site-sections-list li {
  display: block;
}
#SearchModal .form-inline #search-sections-container #site-sections-list li input {
  margin-right: 0.5em;
}
#SearchModal .form-inline #search-sections-container #advanced-search-btn {
  margin-top: 10px;
  width: 100%;
  font-size: 1.5em;
  -webkit-transition: background-color ease-out 0.1s;
  -moz-transition: background-color ease-out 0.1s;
  -o-transition: background-color ease-out 0.1s;
  -ms-transition: background-color ease-out 0.1s;
  transition: background-color ease-out 0.1s;
}
#SearchModal .form-inline #search-sections-container #advanced-search-btn:hover {
  background-color: #e6a803;
}
#SearchModal .form-inline button {
  background-color: #626c77;
  -webkit-transition: background-color ease-out 0.2s;
  -moz-transition: background-color ease-out 0.2s;
  -o-transition: background-color ease-out 0.2s;
  -ms-transition: background-color ease-out 0.2s;
  transition: background-color ease-out 0.2s;
}
#SearchModal .form-inline button:hover {
  background-color: #e6a803;
}
.top {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 670px;
  z-index: 90;
  background-color: #000;
}
.top #featured {
  background-color: #000;
  background-position: center top;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.top #featured .item {
  position: relative;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: auto 0px;
  height: 600px;
}
.top #featured .item .inset {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('/themes/help/images/vignette.png');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  position: absolute;
  top: 0px;
}
.top #featured .item .ftext {
  position: absolute;
  margin: 0 auto;
  float: none;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 30px;
}
.top #featured .item .ftext .type {
  font-family: 'Futura BT W01 Bold';
  font-size: 16px;
  line-height: 16px;
  display: block;
  color: #fff;
  text-transform: uppercase;
}
.top #featured .item .ftext h1 {
  font-size: 40px;
  max-height: 180px;
  overflow: hidden;
  margin-top: 0px;
  font-family: 'Playfair Display', serif;
}
.top #featured .item .ftext h1 a {
  color: #fff;
}
.top #featured .item .ftext h1 a:hover {
  text-decoration: none;
  color: #e6a803;
}
.top #featured .item .ftext .custom-link a {
  color: #fff;
}
.top #featured .item .ftext .custom-link a:hover {
  text-decoration: none;
  color: #e6a803;
}
.top #featured .item .ftext .recentlist > li {
  font-size: 16px;
  display: block;
  margin: 10px 0px;
}
.top #featured .item .ftext .recentlist > li time {
  font-family: 'Futura BT W01 Bold';
  color: #fff;
}
.top #featured .item .ftext .recentlist > li a {
  color: #fff;
}
.top #featured .item .ftext .recentlist > li a:hover {
  color: #e6a803;
  text-decoration: none;
}
.top #featured .item .ftext .more {
  font-family: 'Futura BT W01 Bold';
  font-size: 16px;
  text-transform: lowercase;
}
.top #featured .item .ftext .more a {
  color: #e6a803;
}
.top #featured .item .ftext .more a:hover {
  color: #fff;
  text-decoration: none;
}
.top #featured .item#livehearingslide {
  background: #000;
  padding: 70px 0px 0px 0px;
  position: relative;
}
.top #featured .item#livehearingslide .streaminghearing {
  height: 520px;
}
.top #featured .item#livehearingslide .iframe-hearing {
  margin: 80px 40px auto;
  width: 90%;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .top #featured .item#livehearingslide .iframe-hearing {
    width: 80%;
    margin: -55px auto;
  }
}
.top #featured .item#livehearingslide .iframe-hearing iframe {
  width: 100%;
  height: 415px;
}
@media (max-width: 767px) {
  .top #featured .item#livehearingslide .iframe-hearing iframe {
    height: 370px;
  }
}
.top #featured .item#livehearingslide .hearingtitle {
  height: 520px;
  position: relative;
}
.top #tabs {
  background-color: #FFF;
  padding: 0px;
}
.top #tabs .nav-tabs {
  margin: 0px;
}
.top #tabs .nav-tabs > li {
  background: url('/themes/help/images/pattern.png') #474f58;
  border: 1px solid #253548;
  border-left: none;
  border-top: none;
  font-weight: 800;
  font-size: 25px;
  line-height: 24px;
  padding: 0px;
  font-family: 'Playfair Display', serif;
}
.top #tabs .nav-tabs > li a {
  padding: 17px 0px;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  height: 70px;
}
.top #tabs .nav-tabs > li:last-child {
  border-right: none;
}
.top #tabs .nav-tabs > li:hover {
  background-color: #626c77;
}
.top #tabs .nav-tabs > li:hover a {
  color: #fff;
}
.top #tabs .nav-tabs > li.active {
  background-color: #e6a803;
}
.top #tabs .nav-tabs > li.active a {
  background-color: transparent;
  border: none;
  color: #fff;
}
.top #tabs .nav-tabs > li.active:hover {
  background-color: #e6a803;
}
.top #tabs .nav-tabs > li.active:hover a {
  color: #fff;
}
.top #tabs .nav-tabs > li.yellow {
  background-color: #e6a803;
}
.lower {
  border-top: 1px solid #253548;
  position: relative;
  width: 100%;
  margin-top: 668px;
  z-index: 99;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.lower #hearings {
  padding-bottom: 60px;
}
.lower #hearings .cal-col #calendar {
  width: 95%;
  float: left;
  display: block;
  border-top: 20px solid #253548;
  margin-top: 0px;
  padding: 0px;
}
.lower #hearings .cal-col #calendar td,
.lower #hearings .cal-col #calendar th {
  font-size: 20px;
}
.lower #hearings .cal-col #calendar th {
  padding: 0 0 15px 0;
}
.lower #hearings .cal-col #calendar .fc-scroller {
  overflow-y: hidden;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-month-view .fc-event-container {
  font-size: 16px;
  margin: 3px;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-month-view .fc-event-container a {
  /*border-right: 1px solid #666;
							border-bottom: 1px solid #666;*/
  margin: 1px;
  text-align: left;
  padding: 3px 5px 3px 5px;
  background-color: #8f99a4;
  white-space: nowrap;
  overflow: hidden;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-month-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-month-view .fc-event-container a.executive {
  background-color: #e6a803;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container {
  font-size: 16px;
  margin: 3px;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a {
  text-align: left;
  padding: 3px 5px 3px 5px;
  background-color: #8f99a4;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a .fc-content .fc-title {
  word-break: break-all;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.executive {
  border: 1px solid #FFF;
  background-color: #e6a803;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaDay-view .fc-event-container {
  font-size: 14px;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 3px 5px 3px 5px;
  background-color: #8f99a4;
  white-space: nowrap;
  overflow: hidden;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
.lower #hearings .cal-col #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive {
  background-color: #e6a803;
}
.lower #hearings .cal-col #calendar .fc-toolbar {
  margin: 10px;
  padding: 0 0 15px 0;
}
.lower #hearings .cal-col #calendar .fc-toolbar .fc-left .fc-next-button,
.lower #hearings .cal-col #calendar .fc-toolbar .fc-right .fc-next-button,
.lower #hearings .cal-col #calendar .fc-toolbar .fc-left .fc-prev-button,
.lower #hearings .cal-col #calendar .fc-toolbar .fc-right .fc-prev-button {
  width: 30px;
  height: 30px;
}
.lower #hearings .cal-col #calendar .fc-center h2 {
  font-size: 28px;
}
.lower #hearings .cal-col .calendarFooter {
  width: 95%;
  padding: 0 5px 5px 20px;
}
.lower #hearings .cal-col .calendarFooter .row {
  padding: 10px;
}
.lower #hearings .cal-col .calendarFooter .row .col {
  margin: 5px;
  float: left;
  padding: 0;
}
.lower #hearings .cal-col .calendarFooter .row .col .hearing {
  color: #8f99a4;
}
.lower #hearings .cal-col .calendarFooter .row .col .executive {
  color: #e6a803;
}
.lower #hearings .cal-col .calendarFooter .row .col .glyphicon {
  float: left;
  margin: 0 3px 0 0;
  padding: 0;
  font-size: 19px;
}
.lower #hearings .cal-col .calendarFooter .row .col .title {
  float: left;
  margin: 0;
  padding: 3px 0 0 0;
  text-align: left;
  font-size: 13px;
}
.lower #hearings .list-col .hearinglist > li {
  display: block;
  margin: 15px 0px;
}
.lower #hearings .list-col .hearinglist > li a {
  color: #253548;
}
.lower #hearings .list-col .hearinglist > li a:hover {
  color: #e6a803;
  text-decoration: none;
}
.lower #leadership {
  padding-bottom: 60px;
}
.lower #leadership .leader {
  position: relative;
  height: 355px;
  width: 100%;
}
.lower #leadership .leader img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.lower #leadership .leader .label {
  position: absolute;
  bottom: 15px;
  left: 0px;
  display: block;
  background-color: #626c77;
  color: #fff;
  font-weight: 300;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 20px;
}
.lower #leadership .leader .label .title {
  font-style: italic;
}
.lower #leadership .leader:hover .label {
  background-color: #e6a803;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.lower #leadership .socialboxes.clear {
  float: right;
  width: auto;
  margin: 15px -30px;
}
.sectionhead {
  float: left;
  width: 100%;
  display: block;
  border-bottom: 1px solid #253548;
  padding: 0px 0px 10px;
  margin: 0 0 30px;
}
.sectionhead h1 {
  float: left;
  margin: 0px;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
}
.sectionhead .more {
  float: right;
  display: block;
  color: #e6a803;
  font-size: 12px;
  padding: 10px 0px 0px;
}
.socialboxes {
  margin-top: 30px;
}
.socialboxes a {
  float: left;
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  background-color: #626c77;
  padding: 10px;
}
.socialboxes a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.socialboxes a.home {
  font-size: 22px;
  position: relative;
  top: -3px;
}
.socialboxes a.fb {
  background-color: #3b5998;
}
.socialboxes a.tw {
  background-color: #56a3d9;
}
.socialboxes a.yt {
  background-color: #bf221f;
}
.socialboxes a.ig {
  background-color: #cd5959;
}
.socialboxes a.gg {
  background-color: #dd4b39;
}
.socialboxes a.rss {
  background-color: #f86811;
}
.socialboxes a:hover {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background-color: #e6a803;
}
.socialboxes.clear {
  float: left;
  width: 100%;
  margin-top: 15px;
}
.socialboxes.clear a {
  width: 25px;
  height: 25px;
  padding: 0px;
  margin-right: 30px;
  font-size: 25px;
  text-align: center;
  line-height: 25px;
  color: #243447;
  background-color: transparent;
}
.socialboxes.clear a.fb span {
  background-image: url('/themes/help/images/icons/facebook_d.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a.tw span {
  background-image: url('/themes/help/images/icons/twitter_d.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a.yt span {
  background-image: url('/themes/help/images/icons/youtube_d.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a.ig span {
  background-image: url('/themes/help/images/icons/instagram_d.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a.gg span {
  background-image: url('/themes/help/images/icons/google_d.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a.rss span {
  background-image: url('/themes/help/images/icons/rss_d.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a:hover span {
  color: #e6a803;
}
.socialboxes.clear a:hover.fb span {
  background-image: url('/themes/help/images/icons/facebook_c.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a:hover.tw span {
  background-image: url('/themes/help/images/icons/twitter_c.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a:hover.yt span {
  background-image: url('/themes/help/images/icons/youtube_c.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a:hover.ig span {
  background-image: url('/themes/help/images/icons/instagram_c.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a:hover.gg span {
  background-image: url('/themes/help/images/icons/google_c.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.clear a:hover.rss span {
  background-image: url('/themes/help/images/icons/rss_c.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.dark {
  background-color: #687e98;
  text-align: center;
  margin-top: 0px;
  padding: 20px 0px;
}
.socialboxes.dark a {
  float: none;
  display: inline-block;
  color: #fff;
  text-align: center;
  margin: 0 20px;
  padding: 0px;
}
.socialboxes.dark a span {
  color: #fff;
}
.socialboxes.dark a.home {
  font-size: 22px;
  position: relative;
  top: 0px;
}
.socialboxes.dark a.fb span {
  background-image: url('/themes/help/images/icons/facebook_w.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.dark a.tw span {
  background-image: url('/themes/help/images/icons/twitter_w.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.dark a.yt span {
  background-image: url('/themes/help/images/icons/youtube_w.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.dark a.ig span {
  background-image: url('/themes/help/images/icons/instagram_w.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.dark a.gg span {
  background-image: url('/themes/help/images/icons/google_w.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.socialboxes.dark a.rss span {
  background-image: url('/themes/help/images/icons/rss_w.png');
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
#home #overlay {
  width: 250px;
  padding: 10px 10px 10px 15px;
}
#home #overlay h1,
#home #overlay h2,
#home #overlay p {
  margin: 0 0 5px 0;
  padding: 0;
}
#home #overlay h1 {
  font-size: 18px;
}
#home #overlay h2 {
  font-size: 12px;
}
#home #calendar {
  margin: 45px 0 0 0;
  background-color: #f4f5f7;
  border: none;
  border-top: 30px solid #474f58;
  padding: 0 35px 45px 45px;
}
#home #calendar td,
#home #calendar th {
  border: 0px solid transparent;
  padding: 0;
  vertical-align: middle;
  text-align: center;
  font-size: 28px;
}
#home #calendar .fc-row.fc-widget-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#home #calendar td.fc-day,
#home #calendar td.fc-today {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#home #calendar th {
  font-family: 'Futura BT W01 Bold';
  padding: 0 0 45px 0;
}
#home #calendar .fc-view-container .fc-month-view .fc-event-container {
  font-size: 16px;
  margin: 3px;
}
#home #calendar .fc-view-container .fc-month-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 3px 5px 3px 5px;
  background-color: #8f99a4;
  white-space: nowrap !important;
  overflow: hidden;
  margin: 0px;
  font-family: 'Futura BT W01 Book';
  color: #fff;
}
#home #calendar .fc-view-container .fc-month-view .fc-event-container a:before {
  content: none;
}
#home #calendar .fc-view-container .fc-month-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#home #calendar .fc-view-container .fc-month-view .fc-event-container a.executive {
  background-color: #e6a803;
}
#home #calendar .fc-view-container .fc-agendaWeek-view .fc-head,
#home #calendar .fc-view-container .fc-agendaDay-view .fc-head {
  padding: 0;
  margin: 0;
}
#home #calendar .fc-view-container .fc-agendaWeek-view .fc-slats tr,
#home #calendar .fc-view-container .fc-agendaDay-view .fc-slats tr {
  border-bottom: 1px solid rgba(204, 204, 204, 0.65);
}
#home #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container,
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container {
  font-size: 16px;
  margin: 3px;
  padding: 20px;
}
#home #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a,
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 15px !important;
  background-color: #8f99a4;
}
#home #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a .fc-content .fc-time,
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#home #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a .fc-content .fc-title,
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-title {
  word-break: break-all;
}
#home #calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.executive,
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive {
  background-color: #e6a803;
}
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container {
  font-size: 24px;
}
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 3px 5px 3px 5px;
  background-color: #8f99a4;
  white-space: nowrap;
  overflow: hidden;
}
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#home #calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive {
  background-color: #e6a803;
}
#home #calendar td.fc-more-cell {
  font-size: 18px;
}
#home #calendar td.event {
  border-radius: 0px;
  background-color: rgba(102, 102, 102, 0.15);
  color: #fff;
}
#home #calendar .fc-today {
  border-radius: 0px;
  background-color: #FFFFFF;
  color: #474f58;
}
#home #calendar .fc-toolbar {
  margin: 30px;
  padding: 0 0 25px 0;
  border-bottom: none;
  background-color: #f4f5f7;
}
#home #calendar .fc-toolbar .fc-left .fc-next-button,
#home #calendar .fc-toolbar .fc-right .fc-next-button,
#home #calendar .fc-toolbar .fc-left .fc-prev-button,
#home #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: none;
  background: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#home #calendar .fc-toolbar .fc-left .fc-state-active,
#home #calendar .fc-toolbar .fc-right .fc-state-active {
  background-color: #8f99a4 !important;
}
#home #calendar .fc-toolbar .fc-left .fc-today-button,
#home #calendar .fc-toolbar .fc-right .fc-today-button,
#home #calendar .fc-toolbar .fc-left .fc-month-button,
#home #calendar .fc-toolbar .fc-right .fc-month-button,
#home #calendar .fc-toolbar .fc-left .fc-agendaWeek-button,
#home #calendar .fc-toolbar .fc-right .fc-agendaWeek-button,
#home #calendar .fc-toolbar .fc-left .fc-agendaDay-button,
#home #calendar .fc-toolbar .fc-right .fc-agendaDay-button {
  margin: 10px 0 0 0;
  font-size: 22px;
  background: none;
  background-color: #474f58;
  color: #FFF;
}
#home #calendar .fc-toolbar .fc-left .fc-today-button:hover,
#home #calendar .fc-toolbar .fc-right .fc-today-button:hover,
#home #calendar .fc-toolbar .fc-left .fc-month-button:hover,
#home #calendar .fc-toolbar .fc-right .fc-month-button:hover,
#home #calendar .fc-toolbar .fc-left .fc-agendaWeek-button:hover,
#home #calendar .fc-toolbar .fc-right .fc-agendaWeek-button:hover,
#home #calendar .fc-toolbar .fc-left .fc-agendaDay-button:hover,
#home #calendar .fc-toolbar .fc-right .fc-agendaDay-button:hover {
  background-color: #8f99a4;
}
#home #calendar .fc-toolbar .fc-left .fc-today-button,
#home #calendar .fc-toolbar .fc-right .fc-today-button {
  margin-left: 30px;
}
#home #calendar .fc-toolbar .fc-left .fc-prev-button,
#home #calendar .fc-toolbar .fc-right .fc-prev-button {
  background-image: url(/themes/help/images/calendar_arrw-left.png);
}
#home #calendar .fc-toolbar .fc-left .fc-next-button,
#home #calendar .fc-toolbar .fc-right .fc-next-button {
  background-image: url(/themes/help/images/calendar_arrw-right.png);
}
#home #calendar .fc-toolbar .fc-center h2 {
  margin: 10px 0 0 0;
  font-size: 40px;
  color: #8f99a4;
  text-transform: uppercase;
  font-family: 'Futura BT W01 Bold';
}
#home #calendar .fc-day-grid-event .fc-content {
  white-space: nowrap;
  overflow: hidden;
}
#home .calendarFooter {
  padding: 25px;
  background-color: #474f58;
  color: #FFF;
}
#home .calendarFooter .row {
  clear: both;
  overflow: none;
}
#home .calendarFooter .row .col {
  float: left;
  padding: 10px;
}
#home .calendarFooter .row .col .hearing {
  color: #8f99a4;
}
#home .calendarFooter .row .col .today {
  color: #fff;
}
#home .calendarFooter .row .col .executive {
  color: #e6a803;
}
#home .calendarFooter .row .col .glyphicon {
  float: left;
  padding: 0 0 0 20px;
  font-size: 32px;
}
#home .calendarFooter .row .col .title {
  float: left;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 0 0 10px;
  margin: 0;
  font-family: 'Futura BT W01 Book';
}
/* calendar fix */
.datepicker.dropdown-menu {
  min-width: 0 !important;
  width: auto;
}
#toggleCalendar {
  position: relative;
  margin: 15px 0;
}
#toggleCalendar a {
  font-size: 16px;
  color: #626c77;
  background-color: #f4f5f7;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
}
#toggleCalendar a:hover {
  background-color: #626c77;
  color: #fff;
  text-decoration: none;
}
#toggleCalendar a.selected {
  background-color: #626c77;
  color: #fff;
}
#toggleCalendar .jump {
  width: 220px;
  position: relative;
  float: right;
  font-size: 16px;
  background-color: #f4f5f7;
  padding: 5px 10px 5px 10px;
}
#toggleCalendar .jump label {
  width: 100%;
}
#toggleCalendar .jump label .glyphicon {
  color: #626c77;
  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 {
  font-family: 'Futura BT W01 Bold';
  padding: 5px 0 5px 0;
  background: #f4f5f7;
  font-size: 24px;
  border: 1px solid #dcdddf;
  vertical-align: middle;
  text-align: center;
  color: #626c77;
  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: #8f99a4;
  font-family: 'Futura BT W01 Bold';
  white-space: normal !important;
  overflow: hidden;
  min-height: 35px;
  max-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: #8f99a4;
  background-color: #8f99a4;
  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: #e6a803;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.executive:before {
  color: #e6a803;
  background-color: #e6a803;
}
#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: #8f99a4;
  font-family: 'Futura BT W01 Bold';
  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: #8f99a4;
  background-color: #8f99a4;
  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: #e6a803;
}
#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: #e6a803;
  background-color: #e6a803;
}
#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: #8f99a4;
  font-family: 'Futura BT W01 Bold';
  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: #8f99a4;
  background-color: #8f99a4;
  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: #e6a803;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive:before {
  color: #e6a803;
  background-color: #e6a803;
}
#calendar .fc-event {
  padding: 10px;
}
#calendar .fc-event .fc-bg {
  background-color: #8f99a4;
}
#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: #f4f5f7;
  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: #f4f5f7 !important;
  color: #626c77 !important;
  box-shadow: 0px 0px 0px;
  border: 1px solid #f4f5f7;
}
#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: #8f99a4 !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: #474f58;
  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: #8f99a4;
}
#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/help/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/help/images/calendar_arrw-right.png);
}
#calendar .fc-toolbar .fc-center h2 {
  margin: 10px 0 0 0;
  font-size: 40px;
  color: #8f99a4;
  text-transform: uppercase;
  font-family: 'Futura BT W01 Book';
}
#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 #f4f5f7;
}
.calendarFooter .row {
  clear: both;
  overflow: none;
}
.calendarFooter .row .col {
  float: left;
  padding-right: 15px;
}
.calendarFooter .row .col .hearing {
  color: #8f99a4;
}
.calendarFooter .row .col .today {
  color: #f4f5f7;
}
.calendarFooter .row .col .executive {
  color: #e6a803;
}
.calendarFooter .row .col .glyphicon {
  float: left;
  padding: 0 0 0 20px;
  font-size: 32px;
}
.calendarFooter .row .col .title {
  float: left;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 0 0 10px;
  margin: 0;
  font-family: 'Futura BT W01 Book';
}
#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: #8f99a4;
}
#overlay .clsBtn:hover {
  color: #000000;
}
#overlay h1 {
  font-family: 'Futura BT W01 Bold';
  font-size: 26px;
}
#overlay h2 {
  font-family: 'Futura BT W01 Bold';
  font-style: italic;
  font-size: 18px;
}
#overlay h2.hearing {
  color: #8f99a4;
}
#overlay h2.executive {
  color: #e6a803;
}
#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 {
  font-family: 'Futura BT W01 Bold';
  text-transform: uppercase;
  color: #474f58;
  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);
}
.nominations .panel-group,
.faqs .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 {
  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 {
  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 {
  border: none;
  text-decoration: none;
  display: block;
  float: left;
  width: 100%;
  position: relative;
  padding: 0 0 10px;
  font-family: 'Futura BT W01 Book';
}
.nominations .panel-group .panel-default .panel-heading .panel-title:hover,
.faqs .panel-group .panel-default .panel-heading .panel-title:hover {
  text-decoration: none;
}
.nominations .panel-group .panel-default .panel-heading .panel-title a,
.faqs .panel-group .panel-default .panel-heading .panel-title a {
  color: #474f58;
}
.nominations .panel-group .panel-default .panel-heading .panel-title a .date,
.faqs .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 {
  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 a:focus,
.faqs .panel-group .panel-default .panel-heading .panel-title a:focus {
  color: #474f58;
}
.nominations .panel-group .panel-default .panel-heading .panel-title a:hover,
.faqs .panel-group .panel-default .panel-heading .panel-title a:hover {
  color: #e6a803;
}
.nominations .panel-group .panel-default .panel-heading .panel-title .title,
.faqs .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 {
  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 {
  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) {
  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 {
  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 {
  background: #f6f6f6;
}
.nominations .panel-group .opened .date,
.faqs .panel-group .opened .date {
  width: 15%;
}
.nominations .panel-group .opened .date:before,
.faqs .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);
}
iframe.streaminghearing {
  border: none;
  height: 660px;
  display: block;
  float: none;
  margin: 10px auto 0;
  width: 100% ;
}
#watch-live-now {
  background: none repeat scroll 0 0 #626c77;
  margin: 0 auto 30px;
  float: none;
  display: block;
  position: relative;
  top: 0px;
  width: 100%;
  color: #fff;
  padding: 15px;
  text-align: center;
}
#watch-live-now:hover {
  background: none repeat scroll 0 0 #253548 !important;
}
#recentnewspod {
  background-color: #f4f5f7;
}
#recentnewspod .recentlist {
  padding: 15px;
}
#recentnewspod .socialboxes {
  border-top: 1px solid #626c77;
  padding: 15px 0px;
  margin: 0px 15px;
  text-align: center;
  width: 92%;
}
#recentnewspod .socialboxes a {
  float: none;
  display: inline-block;
  text-align: center;
  margin: 0 18px;
  padding: 0px;
}
#recentnewspod #press {
  margin-bottom: 0px;
}
.podhead {
  background-color: #626c77;
  color: #FFF;
  margin: 0px;
  padding: 0px;
}
.podhead h1,
.podhead h2 {
  margin: 0px;
  padding: 15px;
}
.pagination-right {
  background-color: #f4f5f7;
  color: #626c77;
  padding: 5px;
  font-size: 16px;
}
.pagination-right select {
  padding: 0px;
  background: transparent;
  border: 0px;
}
.pagination-right select:focus {
  outline: none;
}
.pager {
  margin: 10px 0px;
}
.pager .btn {
  background-color: #f4f5f7;
  font-family: 'Futura BT W01 Book';
  color: #626c77;
  padding: 5px 10px;
}
.pager .btn:hover {
  background-color: #626c77;
  color: #fff;
}
.table tr:hover {
  background-color: #f4f5f7 !important;
  color: #626c77;
}
.table tr:hover a {
  color: #626c77;
}
.table tr td .faux-th {
  display: none;
}
.table tr td .date,
.table tr td .bill-number {
  min-width: 75px;
  display: block;
}
.table tr td .location {
  min-width: 250px;
  display: block;
}
.table tr td a {
  display: block;
  float: left;
  width: 100%;
}
.table tr td a:hover {
  color: #e6a803;
}
.table tr td a.add {
  padding-top: 5px;
}
.table .divider {
  border-top: none;
  background-color: transparent !important;
}
.table .divider td {
  border-top: none !important;
  background-color: transparent;
  font-size: 24px;
  padding: 30px 0px 30px 0px;
  color: #474f58;
}
.table .divider td .faux-th {
  display: none;
}
.table .divider .header_date,
.table .divider .header_bill,
.table .divider .header_title {
  padding: 0px 30px 15px 30px;
  background: none repeat scroll 0 0 transparent;
  border-top: none;
  border-bottom: 4px solid #f4f5f7;
}
.table .divider .header_date h4,
.table .divider .header_bill h4,
.table .divider .header_title h4 {
  padding: 0px;
  margin: 0px;
}
.table .divider .header_date h4 a,
.table .divider .header_bill h4 a,
.table .divider .header_title h4 a {
  font-family: 'Futura BT W01 Bold';
  font-size: 16px;
}
.table .divider .header_date h4 a:hover,
.table .divider .header_bill h4 a:hover,
.table .divider .header_title h4 a:hover {
  cursor: pointer;
}
.table .divider .header_date h4 a:before,
.table .divider .header_bill h4 a:before,
.table .divider .header_title h4 a:before {
  border-color: #f4f5f7 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;
}
.table .divider .header_date h4 .desc:before,
.table .divider .header_bill h4 .desc:before,
.table .divider .header_title h4 .desc:before {
  border-color: #253548 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;
}
.table .divider .header_date h4 .asc:before,
.table .divider .header_bill h4 .asc:before,
.table .divider .header_title h4 .asc:before {
  border-color: transparent transparent #253548 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;
}
.table .divider:hover {
  background-color: transparent !important;
  color: #474f58;
}
.table .divider:hover a {
  color: #474f58;
}
.chairman .recentlist > li a {
  font-family: 'Futura BT W01 Bold';
  padding-left: 10px;
}
ul.members > li {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.leaderblock .headshot {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
#relatednews-aside {
  display: none;
}
.recentlist > li {
  display: block;
  margin: 10px 0px 20px;
}
.recentlist > li time {
  font-family: 'Futura BT W01 Bold';
  color: #474f58;
}
.recentlist > li a {
  color: #474f58;
}
.recentlist > li a:hover {
  color: #e6a803;
  text-decoration: none;
}
.recentlist > li .photolist > li .imghold {
  padding: 0px;
  margin-bottom: 30px;
  height: 160px !important;
}
#search-issues-page-container {
  display: none;
}
#mainlist {
  margin-top: 0px;
}
.article section {
  width: 100%;
  display: block;
  float: left;
  margin-top: 30px;
}
.people {
  float: left;
  width: 100%;
}
.people .vcard {
  float: left;
  list-style: none;
  padding: 15px;
}
.people .vcard:hover {
  background-color: #f4f5f7;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.people .vcard span.party {
  display: block;
}
.people.members .vcard {
  list-style: none;
}
#filterbuttons {
  margin-bottom: 40px;
  width: 100%;
}
#filterbuttons a {
  font-size: 16px;
  color: #626c77;
  background-color: #f4f5f7;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  font-family: 'Futura BT W01 Book';
  font-weight: 300;
}
#filterbuttons a:hover {
  background-color: #626c77;
  color: #fff;
  text-decoration: none;
}
#filterbuttons #launchfilter {
  float: right;
}
#livehearing.alert {
  position: absolute;
  top: 90px;
  z-index: 10;
  background: #e6a803;
  width: 100%;
  border-radius: 0px;
  padding: 5px 0px;
}
#livehearing.alert h1 {
  font-size: 18px;
  line-height: 18px;
  margin: 0px;
}
#livehearing.alert h1 a {
  color: #253548;
}
#livehearing.alert h1 a:hover {
  color: #fff;
}
body.hearing .iframe-hearing {
  margin: 0 auto;
  width: 90%;
  text-align: center;
  display: block;
}
body.hearing .iframe-hearing iframe {
  width: 100%;
  height: 670px;
}
@media (max-width: 1200px) {
  body.hearing .iframe-hearing iframe {
    height: 600px;
  }
}
@media (max-width: 991px) {
  body.hearing .iframe-hearing iframe {
    height: 430px;
  }
}
@media (max-width: 650px) {
  body.hearing .iframe-hearing iframe {
    height: 340px;
  }
}
@media (max-width: 500px) {
  body.hearing .iframe-hearing iframe {
    height: 260px;
  }
}
@media (max-width: 400px) {
  body.hearing .iframe-hearing iframe {
    height: 200px;
  }
}
.hearingplaceholder {
  background-image: url('/themes/help/images/posterbg.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  display: table;
  padding: 30px;
  border: 1px solid #626c77;
}
.hearingplaceholder h1 {
  display: table-cell;
  vertical-align: middle;
  bottom: 20%;
  width: 100%;
  height: 100%;
  text-align: center;
}
body.chairman #cerabox {
  border: 2px solid #e6a803;
}
body.chairman #cerabox iframe {
  width: 100%!important;
  height: 100%!important;
}
body.healthcarepopup {
  padding: 0rem;
  text-align: center;
  display: table;
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  min-height: 225px;
}
body.healthcarepopup .body {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: auto;
  position: relative;
}
@media (max-width: 991px) {
  body.healthcarepopup .body h1 {
    font-size: 28px;
  }
}
body.healthcarepopup .body .btn {
  padding: 10px 15px;
  font-size: 20px;
  text-decoration: none;
}
#membership {
  padding-bottom: 60px;
}
#membership .party {
  color: #253548;
  text-transform: uppercase;
  opacity: 0.75;
  font-size: 18px;
  margin: 20px 0px 20px;
}
#membership .memberlist > li {
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
  width: 33.3333%;
  cursor: pointer;
  font-size: 14px;
}
#membership .memberlist > li a {
  color: #253548;
  float: left;
  width: 100%;
  display: block;
}
#membership .memberlist > li a:hover {
  color: #e6a803;
  text-decoration: none;
}
#membership .memberlist > li .headshot {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  width: 150px;
  height: 150px;
  display: none;
  background-color: #626c77;
  padding: 2px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
footer.footer {
  background-color: #fff;
  position: relative;
  z-index: 100;
}
footer.footer .subfooter {
  background-color: #474f58;
  text-align: center;
  margin: 0;
  padding: 30px 0px;
}
footer.footer .subfooter a {
  color: #fff;
  font-family: 'FuturaBTW01-MediumConde';
  font-size: 22px;
}
footer.footer .subfooter a.srchbutton {
  font-size: 16px;
}
footer.footer .subfooter a:hover {
  text-decoration: none;
  color: #e6a803;
}
footer.footer .subfooter .footernav {
  width: 100%;
}
footer.footer .subfooter .office {
  width: 100%;
}
footer.footer .subfooter .office p {
  color: #e6a803;
  font-family: 'Futura BT W01 Book';
  font-size: 15px;
}
#flagForm #flag-options .head {
  margin: 15px 0 15px 0;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #EEE;
  background-color: rgba(0, 0, 0, 0.2);
}
#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;
  }
}
.sans {
  font-family: 'Futura BT W01 Book';
}
.sansbold {
  font-family: 'Futura BT W01 Bold';
}
.sanscondensed {
  font-family: 'FuturaBTW01-MediumConde';
}
.serif {
  font-family: 'Playfair Display', serif;
}
.insetshadow {
  -moz-box-shadow: inset 0 0 10px #000000;
  -webkit-box-shadow: inset 0 0 10px #000000;
  box-shadow: inset 0 0 10px #000000;
}
body {
  font-family: 'Futura BT W01 Book';
  color: #253548;
  font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Playfair Display', serif;
  font-weight: normal;
}
h1.nomargin,
h2.nomargin,
h3.nomargin,
h4.nomargin,
h5.nomargin,
h6.nomargin,
.h1.nomargin,
.h2.nomargin,
.h3.nomargin,
.h4.nomargin,
.h5.nomargin,
.h6.nomargin {
  margin-top: 0px !important;
  margin-bottom: 10px;
}
.sectionhead.subcommittee {
  float: left;
  width: 100%;
  display: block;
  border-bottom: 1px solid #253548;
  padding: 0px 0px 10px;
  margin: 30px 0 15px;
}
.sectionhead.subcommittee h1 {
  float: left;
  margin: 0px;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
}
.sectionhead.subcommittee h3 {
  margin: 0px;
  padding: 0px;
}
.sectionhead.subcommittee .more {
  float: right;
  display: block;
  color: #e6a803;
  font-size: 12px;
  padding: 10px 0px 0px;
}
.main_page_title {
  width: 100%;
  display: block;
  border-bottom: 1px solid #253548;
  padding: 0px 0px 10px;
  margin: 0 0 30px;
}
.main_page_title .type {
  font-family: 'Futura BT W01 Bold';
  font-size: 16px;
  line-height: 16px;
  display: block;
  text-transform: uppercase;
}
.panelName {
  float: left;
  display: block;
  width: 100%;
  font-size: 26px;
  line-height: 28px;
  margin-top: 0px;
  font-family: 'Futura BT W01 Bold';
}
a {
  color: #474f58;
}
a:hover,
a:focus {
  color: #e6a803;
  text-decoration: none;
}
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer .h1,
footer .h2,
footer .h3,
footer .h4,
footer .h5,
footer .h6 {
  font-family: 'Futura BT W01 Book';
  font-weight: normal;
}
footer h1.nomargin,
footer h2.nomargin,
footer h3.nomargin,
footer h4.nomargin,
footer h5.nomargin,
footer h6.nomargin,
footer .h1.nomargin,
footer .h2.nomargin,
footer .h3.nomargin,
footer .h4.nomargin,
footer .h5.nomargin,
footer .h6.nomargin {
  margin-top: 0px !important;
  margin-bottom: 10px;
}
.btn {
  font-family: 'Futura BT W01 Bold';
  color: #fff;
  background-color: #626c77;
}
.btn:hover {
  background-color: #e6a803;
  color: #626c77;
}
.btn.btn-rev {
  background-color: #e6a803;
}
.btn.btn-rev:hover {
  background-color: #626c77;
}
/*
google fonts*/
/*font-family: 'Playfair Display', serif;
400
400 Italic
700
700 Italic*/
/*fonts.com fonts.... no idea which of these are actually used. will have to consult mockup*/
/*

font-family:'Futura BT W01 Light';
font-family:'FuturaBTW01-LightItalic';
font-family:'Futura BT W01 Book';
font-family:'FuturaBTW01-BookItalic';
font-family:'Futura BT W01 Medium';
font-family:'FuturaBTW01-MediumItali';
font-family:'Futura BT W01 Heavy';
font-family:'FuturaBTW01-HeavyItalic';
font-family:'Futura BT W01 Bold';
font-family:'FuturaBTW01-BoldItalic';
font-family:'FuturaBTW01-ExtraBlack';
font-family:'FuturaBTW01-ExtraBlackI';
font-family:'FuturaBTW01-LightConden';
font-family:'FuturaBTW01-MediumConde';
font-family:'FuturaBTW01-BoldCondens';
font-family:'FuturaBTW01-BoldItalicC';
font-family:'FuturaBTW01-CdXBlack';
font-family:'FuturaBTW01-CdXBlackIta';
font-family:'Futura W01 Heavy';
*/
@media (max-width: 1200px) {
  body #header {
    height: 70px;
  }
  body #header .logo {
    min-height: 101px;
  }
  body #header .logo a {
    letter-spacing: 0px;
  }
  body #header .logo a .title {
    font-size: 14px;
    line-height: 14px;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  body #header .logo a .name {
    font-size: 24px;
    line-height: 24px;
  }
  body #header .logoalt {
    min-height: 0;
  }
  body #header .logoalt a .title {
    font-size: 11px;
    line-height: 11px;
    padding-top: 5px;
  }
  body #header .logoalt a .name {
    font-size: 24px;
    line-height: 22px;
  }
  body #header #search #sitesearch {
    width: 100%;
    float: left;
    padding: 15px 15px 0px;
    position: relative;
    height: 55px;
  }
  .navbar-header .navbar .nav > li {
    margin: 0px;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'FuturaBTW01-MediumConde';
  }
  .navbar-header .navbar .nav > li a {
    padding: 16px 15px;
    height: 70px;
  }
  .navbar-header .navbar .srchbutton {
    font-size: 16px;
    padding: 22px 0px;
  }
  .topbanner {
    top: 70px;
    background-size: cover;
  }
  #content.withbanner {
    padding-top: 40px;
    margin-top: 550px;
    background-color: #fff;
    display: block;
    position: relative;
  }
  .chairman .topbanner {
    background-position: top right !important;
  }
  iframe.streaminghearing {
    border: none;
    height: 544px;
    display: block;
    float: none;
    margin: 10px auto 0;
    width: 100%;
  }
  .recentlist > li .photolist > li .imghold {
    height: 135px !important;
  }
  .lower #leadership .leader {
    position: relative;
    height: 290px;
    width: 100%;
  }
  #livehearing.alert {
    top: 70px;
  }
  .top #featured .item .ftext h1 {
    font-size: 30px;
  }
  .top #tabs .nav-tabs > li a {
    padding: 20px 0px 0px;
    font-size: 20px;
  }
  #membership .memberlist > li {
    width: 50%;
  }
  #recentnewspod {
    background-color: #f4f5f7;
  }
  #recentnewspod .recentlist {
    padding: 15px;
  }
  #recentnewspod .socialboxes {
    border-top: 1px solid #626c77;
    padding: 15px 0px;
    margin: 0px 15px;
    text-align: center;
    width: 92%;
  }
  #recentnewspod .socialboxes a {
    margin: 0 10px;
  }
  .socialboxes.dark a {
    margin: 0 10px;
  }
}
@media (max-width: 991px) {
  .topbanner {
    position: absolute;
    min-height: 370px;
    background-size: cover;
  }
  .topbanner .titleholder {
    top: 50%;
  }
  .topbanner .titleholder .banner_title {
    font-size: 50px;
  }
  body #header {
    height: 70px;
  }
  body #header .logo {
    min-height: 0;
  }
  body #header .logo a {
    letter-spacing: 0px;
  }
  body #header .logo a .title {
    font-size: 14px;
    line-height: 14px;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  body #header .logo a .name {
    font-size: 24px;
    line-height: 24px;
  }
  body #header .logoalt {
    min-height: 0;
  }
  body #header .logoalt a .title {
    font-size: 11px;
    line-height: 11px;
    padding-top: 5px;
  }
  body #header .logoalt a .name {
    font-size: 24px;
    line-height: 22px;
  }
  body #header #search.showme {
    width: 88%;
  }
  .navbar-header .navbar .togglemenu {
    display: block;
  }
  .navbar-header .navbar .nav > li {
    margin: 0px;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'FuturaBTW01-MediumConde';
  }
  .navbar-header .navbar .nav > li a {
    padding: 16px 10px;
    height: 70px;
  }
  .navbar-header .navbar .srchbutton {
    font-size: 25px;
    padding: 0px;
    margin: 20px 0px 0px 30px;
  }
  .navbar-header .navbar .togglemenu {
    float: right;
    color: #fff;
    font-size: 30px;
    margin: 15px 0px 0px;
  }
  .navbar-header .navbar .togglemenu .glyphicon {
    padding-top: 5px;
    display: inline-block;
  }
  .navbar-header .navbar .togglemenu .menulabel {
    display: inline-block;
    font-size: 24px;
    line-height: 24px;
    padding: 0px;
    position: relative;
    top: -5px;
  }
  .navbar-header .navbar .togglemenu:hover {
    color: #e6a803;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  #recentnewspod .socialboxes {
    width: 96%;
  }
  iframe.streaminghearing {
    border: none;
    height: 434px!important;
    display: block;
    float: none;
    margin: 10px auto 0;
    width: 100%;
  }
  .recentlist > li .photolist > li .imghold {
    height: 230px !important;
  }
  .lower #leadership .leader {
    position: relative;
    height: 220px;
    width: 100%;
  }
  .lower #leadership .leader .label {
    font-size: 18px;
    padding: 15px;
  }
  .lower #leadership .phone {
    float: left;
    padding-top: 10px;
    display: block;
    width: 100%;
  }
  .socialboxes a {
    margin-right: 15px;
  }
  #content.withbanner {
    padding-top: 40px;
    margin-top: 440px;
    background-color: #fff;
    display: block;
    position: relative;
  }
}
@media (max-width: 767px) {
  body {
    margin-top: 0px;
  }
  .top {
    position: relative;
    top: 70px;
  }
  .top #featured .item {
    position: relative;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 100% auto;
    background-position: left top;
    height: 600px;
    display: block;
    visibility: visible;
    border-bottom: 2px solid #626c77;
    opacity: 1;
    /*&:last-child{
					border:none;
					.ftext{
						border:none;
					}
				}*/
  }
  .top #featured .item:first-child {
    height: 400px;
  }
  .top #featured .item .inset {
    background-size: 100% auto;
    background-position: left top;
  }
  .top #featured .item .ftext {
    position: absolute;
    margin: 0 auto;
    float: none;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0px;
    background: #000;
    padding-bottom: 40px;
    padding-top: 15px;
    border-bottom: 10px solid #474f58;
  }
  .top #featured .item .ftext h1 {
    font-size: 30px;
  }
  .lower {
    position: relative;
    margin-top: 1000px;
  }
  .lower #leadership .leader {
    position: relative;
    height: auto;
    width: 100%;
  }
  .lower #leadership .leader > a {
    display: block;
    float: left;
    width: 100%;
  }
  .lower #leadership .leader .label {
    font-size: 18px;
    padding: 15px;
    position: relative;
  }
  .lower #leadership .leader img {
    position: relative;
  }
  .lower #leadership .phone {
    float: left;
    padding-top: 10px;
    width: 100%;
    display: block;
  }
  .lower #leadership .socialboxes {
    margin-bottom: 60px;
  }
  body #header {
    background-color: #474f58;
  }
  body #header .nav-col {
    padding: 0px 15px;
  }
  body #header .logo-col.hidemobile {
    display: none;
  }
  body #header .nav-col.growmobile {
    width: 92%;
    float: right;
  }
  body #header .logoalt {
    display: block;
    width: 100%;
    float: left;
    height: auto;
    padding: 0px;
    background-color: transparent;
    border: none;
    border-top: none;
    margin: 0px;
    min-height: none;
  }
  body #header .logoalt a {
    text-align: left;
    display: block;
    width: 100%;
    float: left;
    padding: 0px;
    height: 70px;
    letter-spacing: 1px;
    color: #fff;
  }
  body #header .logoalt a .title {
    font-family: 'Futura BT W01 Medium';
    font-size: 13px;
    line-height: 13px;
    display: block;
    float: left;
    width: 280px;
    padding-top: 5px;
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-transform: uppercase;
  }
  body #header .logoalt a .name {
    font-family: 'Playfair Display', serif;
    display: block;
    float: left;
    width: 280px;
    font-size: 24px;
    line-height: 24px;
  }
  body #header .logoalt a:hover {
    background-color: transparent;
    color: #e6a803;
  }
  body #header .logo {
    display: none;
  }
  body #header.darken .logo {
    display: none;
  }
  body #header #search.showme {
    width: 100%;
  }
  .navbar-header .navbar .srchbutton {
    font-size: 25px;
    padding: 0px;
    margin: 20px 0px 0px 15px;
  }
  .navbar-header .navbar .togglemenu .menulabel {
    display: none;
  }
  .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: 0.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.61878453% !important;
    text-transform: uppercase !important;
    font-size: 0.8em !important;
  }
  .table-holder .table tr td .faux-col {
    display: block;
    float: left  !important;
    margin-left: 2.76243094% !important;
    width: 48.61878453% !important;
    font-size: 0.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;
  }
  #home #header {
    background-color: #474f58;
  }
  #home .calendarFooter .row .col .glyphicon {
    font-size: 20px;
  }
  #home .calendarFooter .row .col .title {
    font-size: 16px;
  }
  .row.leader {
    min-height: 375px;
  }
  ul.members > li {
    min-height: 370px;
  }
  #content {
    margin-top: 70px;
  }
  #content.withbanner {
    padding-top: 40px;
    margin-top: 400px;
    background-color: #fff;
    display: block;
    position: relative;
  }
  #content.withbanner.livehearingpresent {
    margin-top: 540px;
  }
  #content.livehearingpresent {
    padding-top: 120px;
  }
  iframe.streaminghearing {
    border: none;
    height: 240px!important;
    display: block;
    float: none;
    margin: 10px auto 0;
    width: 100%;
  }
  .recentlist > li .photolist > li .imghold {
    height: auto !important;
  }
  #livehearing.alert {
    position: relative;
  }
  .topbanner {
    position: absolute;
    min-height: 370px;
    background-size: cover;
  }
  .topbanner .inset {
    background-color: rgba(0, 0, 0, 0.4);
    background-image: none;
  }
  .topbanner .titleholder {
    bottom: 40px;
    top: auto;
  }
  .topbanner .titleholder .banner_title {
    font-size: 30px;
  }
  .topbanner .titleholder h2 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  #recentnewspod .socialboxes {
    width: 90%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
@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;
    font-size: 14px;
  }
  html #actions,
  html .prevarticle,
  html .nextarticle,
  html #alerts,
  html #header,
  html #press + hr,
  html #pagetools + hr {
    display: none !important;
  }
  html #logo,
  html .logohold,
  html .navbar,
  html #toolbar,
  html .footer,
  html footer,
  html #breadcrumb {
    display: none!important;
  }
  html .logo {
    border: none !important;
  }
  html #header {
    text-align: left;
    display: block !important;
    width: 100%;
    float: none;
    position: relative !important;
    border: 1px solid transparent !important;
    height: 85px;
    margin-bottom: 15px;
  }
  html #header .logoalt {
    text-align: left;
    position: relative !important;
    display: none !important;
    width: 300px;
    font-size: 32px;
    color: #000;
    border: 0px solid transparent !important;
  }
  html #header .logoalt a {
    text-align: left;
    border: 0px solid transparent !important;
  }
  html #header .logoalt a .title {
    text-align: left;
  }
  html #header .logoalt a .name {
    text-align: left;
  }
  html #content {
    float: left;
    width: 100%;
    display: block;
  }
  html .h1,
  html h1 {
    font-size: 22px;
    float: left;
    width: 100%;
    display: block;
  }
  html .h2,
  html h2 {
    font-size: 20px;
  }
  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: 0px;
  border-radius: 0px;
  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: 0px;
  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: 0px;
}
.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%;
  }
}
.sr-section-link {
  color: #e6a803;
}
.sr-section-link:hover {
  text-decoration: underline;
}
#sr-listing {
  margin-top: 30px;
}
#sr-listing li .sr-title {
  font-weight: bold;
}
#sr-listing li .sr-metadata {
  font-size: 0.85em;
  margin: 0.5em 0;
}
#sr-listing li + li {
  margin-top: 1.5em;
}
body.option1 {
  background: #FFF no-repeat scroll 100%;
  background-size: cover;
  overflow: hidden;
  margin-right: 30px;
}
.option1 .body {
  color: #000 !important;
  font-size: 23px;
  margin: 0px;
}
.option1 .body a {
  display: block;
  text-decoration: none;
  color: #FF0000;
  margin-top: -20px;
}
.option1 .body a:hover {
  color: #610202;
}
.option1 .body #toplogo {
  background: url("/imo/media/image/ee.jpg") no-repeat center;
  background-size: contain;
  height: 30%;
  width: 100%;
  margin-bottom: -15px;
}
/*# sourceMappingURL=common.css.map */