/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
.nobreadcrumbs #breadcrumb {
  display: none !important;
}
#breadcrumb {
  margin-top: 20px;
}
#breadcrumb > ol li:first-child {
  display: none;
}
#breadcrumb > ol li:after {
  content: "/";
  color: #eee;
  left: 5px;
  position: relative;
}
#breadcrumb > ol li:last-child:after {
  content: "";
}
.absolute {
  position: absolute !important;
}
.relative {
  position: relative !important;
}
.fixed {
  position: fixed !important;
}
.static {
  position: static !important;
}
.alert {
  margin-bottom: 0px;
}
#header {
  background-color: rgba(0, 0, 0, 0.09);
}
#sitesearch {
  padding: 20px 0px;
}
#body {
  background-color: rgba(0, 0, 0, 0);
}
.modal-backdrop.in {
  opacity: .98;
}
#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog,
#ContactModal .modal-dialog {
  margin: 10% auto;
  width: 100%;
  max-width: 600px;
}
#NavMobileModal .modal-dialog .modal-content,
#SearchModal .modal-dialog .modal-content,
#ContactModal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
#NavMobileModal .modal-dialog .modal-content .modal-header,
#SearchModal .modal-dialog .modal-content .modal-header,
#ContactModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  z-index: 100;
  float: left;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  color: #fff;
  text-shadow: 0 1px 0 #000;
}
#NavMobileModal .modal-dialog .modal-content .btn,
#SearchModal .modal-dialog .modal-content .btn,
#ContactModal .modal-dialog .modal-content .btn {
  font-size: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-header,
#SearchModal .modal-dialog .modal-content .modal-header,
#ContactModal .modal-dialog .modal-content .modal-header {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-header h1,
#SearchModal .modal-dialog .modal-content .modal-header h1,
#ContactModal .modal-dialog .modal-content .modal-header h1 {
  font-size: 50px;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close,
#ContactModal .modal-dialog .modal-content .modal-header .close {
  font-size: 40px;
  color: #fff;
  opacity: .8;
  font-weight: 300;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close:hover,
#SearchModal .modal-dialog .modal-content .modal-header .close:hover,
#ContactModal .modal-dialog .modal-content .modal-header .close:hover {
  opacity: 1;
}
#NavMobileModal .modal-dialog .modal-content .modal-body,
#SearchModal .modal-dialog .modal-content .modal-body,
#ContactModal .modal-dialog .modal-content .modal-body {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: #fff;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch {
  padding: 40px 40px 0px 0px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  color: rgba(0, 0, 0, 0.8);
  width: 88%;
  font-size: 34px;
  font-weight: 300;
  border: none;
  padding: 10px;
  float: left;
  margin: 0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  border: none;
  font-size: 28px;
  padding: 14px;
  width: 12%;
}
/*
OTHERSTUFF*/
body.senatorx {
  background-color: #fff;
}
body.senatorx#home.bg1 {
  background-image: url("/themes/default_v3/images/bgs/bg1.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: auto 0px;
}
body.senatorx#home.bg2 {
  background-image: url("/themes/default_v3/images/bgs/bg2.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: right 0px;
}
body.senatorx#home.bg3 {
  background-image: url("/themes/default_v3/images/bgs/bg3.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: right 0px;
}
body.senatorx#home.bgalt {
  background-image: url("/themes/default_v3/images/bgs/bgalt.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: auto 0px;
}
.senatorx #header {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1039;
  padding-top: 30px;
  background-color: transparent;
}
.senatorx #header .logo {
  text-align: center;
  float: none;
  display: block;
}
.senatorx #header .logo a {
  float: none;
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
}
.senatorx #header a {
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
}
.senatorx #header a:hover {
  text-decoration: none;
  color: #333;
}
.senatorx #header .contactlink {
  line-height: 24px;
  font-size: 30px;
  margin-right: 25px;
}
.senatorx #header.shrink {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1039;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: red !important;
}
.senatorx #header.shrink .navbar-header,
.senatorx #header.shrink .srchbutton,
.senatorx #header.shrink .contactlink {
  margin-top: 30px;
}
.senatorx #header.shrink a {
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
}
.senatorx #header.shrink a:hover {
  text-decoration: none;
  color: #333;
}
.senatorx #header.shrink .contactlink {
  line-height: 24px;
  font-size: 30px;
  margin-right: 25px;
}
.senatorx .full-row {
  margin-left: 0;
  margin-right: 0;
}
.senatorx #content {
  background-color: #fff;
}
.senatorx#home {
  padding-top: 700px;
}
.senatorx#home #header {
  background: transparent;
}
.senatorx#home #content {
  padding-top: 0px;
}
body.senatorx#newsroom .modal-title {
  color: #333;
}
body.senatorx#newsroom .modal-dialog .modal-content .close {
  font-size: 40px;
  color: #333;
  opacity: .8;
  font-weight: 300;
}
body.senatorx#newsroom .modal-dialog .modal-content .modal-body form select {
  width: 100%;
  color: #333;
  border: 1px solid #333;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
body.senatorx#newsroom .modal-backdrop.in {
  opacity: .98;
  background-color: #fff;
}
.modal-backdrop.in {
  opacity: .98;
  background-color: #fff;
}
.row.full {
  margin: 0px;
}
.ieonly {
  display: none !important;
}
.ieoldonly {
  display: none !important;
}
.ie7only {
  display: none !important;
}
.navbar {
  background: rgba(0, 0, 0, 0.01);
}
.navbar-default .navbar-nav > li:hover .dropdown-menu {
  display: block;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu li a {
  clear: both;
  text-decoration: none;
  display: block;
  font-weight: normal;
  line-height: 1.42857;
  padding: 10px 20px;
  white-space: nowrap;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu .subnav-split {
  list-style: none;
  margin: 0px;
  float: none;
  padding: 0px;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu .subnav-split li {
  list-style: none;
  font-size: 14px;
  list-style: none outside none;
  height: auto;
  width: 100%;
  float: left;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu .subnav-split li a {
  color: #262626;
  clear: both;
  text-decoration: none;
  display: block;
  font-weight: normal;
  line-height: 1.42857;
  padding: 10px 20px;
  white-space: nowrap;
}
.navbar-default .navbar-nav > li:hover .dropdown-menu .subnav-split li a:hover {
  background-color: #F5F5F5;
  color: #262626;
  text-decoration: none;
}
/*NAV*/
.navbar {
  position: relative;
  min-height: 0;
  margin-bottom: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.navbar .collapse {
  padding: 0px;
  width: 100%;
}
.navbar .nav-pills > li:hover .dropdown-menu {
  display: block;
}
.navbar .nav-pills > li .dropdown-menu {
  top: 99%;
  left: auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin: 0px;
  padding: 0px;
  background-color: #fff;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background: none;
}
/*

OTHERSTUFF*/
.senatorx .navbar-toggle {
  display: block;
  position: relative;
  float: left;
  margin: 0px;
  padding: 0;
  background-color: transparent;
  background-image: none;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  opacity: 1;
}
.senatorx .navbar-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 6px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: #fff;
}
.senatorx .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 3px;
}
.senatorx .navbar-toggle:after {
  content: "MENU";
  display: block;
  position: absolute;
  color: #fff;
  top: 0px;
  left: 140%;
  font-size: 30px;
  font-weight: 700;
  line-height: 24px;
}
.senatorx .navbar-toggle:hover .icon-bar {
  background-color: #ccc;
}
.senatorx .navbar-toggle:hover:after {
  color: #ccc;
}
.senatorx #NavMobileModal .modal-dialog {
  margin: 2% auto 5%;
  width: 80%;
  max-width: 900px;
}
.senatorx #NavMobileModal .modal-dialog .modal-content {
  position: relative;
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  z-index: 100;
  float: left;
  width: 100%;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .close {
  color: #ccc;
  text-shadow: 0 1px 0 #000;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .btn {
  font-size: 30px;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-header {
  /*border: none;
				position: absolute;
				top: 0px;
				right: -40px;
				width: 40px;*/
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-header h1 {
  font-size: 50px;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-header .close {
  color: #ccc;
  text-shadow: 0 1px 0 #000;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: #ccc;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body a:hover {
  background-color: transparent;
  color: red;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body .nav {
  float: left;
  width: 100%;
  display: block;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  float: left;
  width: 100%;
  display: block;
  border-bottom: 1px solid #ccc;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  float: left;
  width: 45%;
  font-size: 24px;
  padding: 0px;
  margin: 0px;
  display: block;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  position: relative;
  z-index: 1000;
  display: block;
  float: left;
  margin: 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -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);
  background-clip: padding-box;
  width: 50%;
  padding: 0px;
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li {
  float: left;
  width: 100%;
  display: block;
  margin: 0px;
  padding: 0px;
  /*border-bottom: 1px solid rgba(255,255,255,.25);
								&:last-child{
									border:none;
								}*/
}
.senatorx #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  display: block;
  padding: 10px 0px;
  clear: both;
  margin: 0px;
  font-weight: normal;
  line-height: 22px;
  white-space: normal;
  font-size: 20px;
  width: 100%;
  float: left;
}
.senatorx#home {
  /*#newsgrid{
		position: relative;
		height: 601px;
		#pressBodyHolder{
			.transition(all, 0.2s, ease-in);
			border: 2px solid #ccc;
			color:#eee;
			position: absolute;
			top: 0px;
			width: 100%;
			height: auto;
			z-index: 13;
			margin: 0px;
			overflow: visible;
			background: #fff;
			float: left;
			min-height: 601px;
			left:-100%;
			#bodyhold{
				padding: 40px;
				position: relative;
				#closepress{
					right: 20px;
					position: absolute;
					font-size: 30px;
				}
				#morepress{
					margin-bottom:20px;
				}
			}

			#loading{

				position: absolute;
				width: 100%;
				height: 601px;
				top: 0;
				img{
					display: block;
					height: 50%;
					margin: 0 auto;
					width: auto;
					top: 25%;
					position: relative;
				}

			}
			&.slidein{
				left:0%;
				.transition(all, 0.2s, ease-in);
			}
		}

		.gridhold{
			position: absolute;
			top: 0px;
			width: 100%;
			height: 100%;
			z-index: 10;
			margin:0px;
			border-bottom: 1px solid #ccc;
			.item{
				display: block;
				.bgwhite;
				color:#ccc;
				height: 200px;
				font-weight: 300;
				border-color:#ccc;
				border-left: 1px solid;
				border-right: 0px solid;
				border-bottom: 0px solid;
				border-top: 1px solid;
				padding:0px;
				&:nth-child(3n){
					border-right: 0px solid;
				}
				a{
					
					color:#ccc;
					display: block;
					width: 100%;
					height: 100%;
					padding: 50px 20px 20px;
					border: 2px solid transparent;
					overflow: hidden;
					time{
						color:#fff;
						background-color: #ccc;
						position: absolute;
						top:0px;
						right:0px;
						display: block;
						padding:5px;
						margin:0px;
					}
					&:hover{
						color:#eee;
						border: 2px solid #333;
						text-decoration: none;

						time{
							color:#fff;
							background-color:#333;
							position: absolute;
							top:0px;
							right:0px;
							display: block;
							padding:5px;
							margin:0px;
						}
					}
					.title{
						font-weight: 700;
						font-size: 22px;
					}
					.summary{
						font-size: 16px;
						font-weight: 300;
					}
				}
			}
		}
	}*/
}
.senatorx#home .top {
  z-index: 0;
  width: 100%;
  background: rgba(52, 62, 60, 0.75);
}
.senatorx#home .top.fixed {
  top: 200px;
  height: 1100px;
}
.senatorx#home .top.absolute {
  top: 500px;
  height: 1100px;
  width: 100%;
}
.senatorx#home .top.absolute #featured div > .row {
  margin: 0px;
}
.senatorx#home .top #featured .featuredtext {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 100%;
  margin: 0px auto 0px;
  padding: 50px;
  text-align: center;
  min-height: 420px;
}
.senatorx#home .top #featured .featuredtext h1 {
  margin: 0px;
  font-weight: lighter;
  color: #fff;
}
.senatorx#home .top #featured .featuredtext h1 a {
  float: none;
  display: block;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}
.senatorx#home .top #featured .featuredtext h1 a:hover {
  color: red;
  text-decoration: none;
}
.senatorx#home .lower {
  z-index: 1;
  width: 100%
		position: relative;
}
.senatorx#home .lower.fixed {
  width: 100%;
  top: 700px;
}
.senatorx#home .lower.relative {
  top: 280px;
  width: 100%;
}
.senatorx#home #sociallinks {
  padding: 80px 0px 120px;
  text-align: center;
}
.senatorx#home #sociallinks .socialblocks > li {
  margin: 30px 10px 0px;
}
.senatorx#home #sociallinks .socialblocks > li a {
  display: table;
  height: 80px;
  width: 80px;
  background-color: #ccc;
  font-size: 30px;
}
.senatorx#home #sociallinks .socialblocks > li a:hover {
  background-color: #333;
  text-decoration: none;
}
.senatorx#home #sociallinks .socialblocks > li a span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.senatorx#home #sociallinks .socialblocks > li.facebook a:hover {
  background-color: #3B5998  !important;
}
.senatorx#home #sociallinks .socialblocks > li.twitter a:hover {
  background-color: #00aced  !important;
}
.senatorx#home #sociallinks .socialblocks > li.youtube a span {
  font-size: 40px;
}
.senatorx#home #sociallinks .socialblocks > li.youtube a:hover {
  background-color: #e52d27  !important;
}
.senatorx#home #newsgrid {
  background-color: #fff;
  padding: 55px 0px;
}
.senatorx#home #newsgrid .gridhold {
  margin-top: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
.senatorx#home #newsgrid .gridhold .item {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.senatorx#home #newsgrid .gridhold .item a {
  background-color: #ccc;
  color: #333;
  font-size: 18px;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
}
.senatorx#home #newsgrid .gridhold .item a img {
  width: 100%;
  height: auto;
}
.senatorx#home #newsgrid .gridhold .item a time {
  font-weight: 700;
  font-size: 18px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 20px 10px;
}
.senatorx#home #newsgrid .gridhold .item a .title {
  font-weight: 100;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0px 20px 10px;
}
.senatorx#home #newsgrid .gridhold .item a:hover {
  background-color: blue;
  color: #fff;
}
.senatorx#home #newsgrid .gridhold .item a:hover img {
  opacity: .8;
}
.senatorx#home #actionbuttons {
  text-align: center;
  padding: 120px 0px;
}
.senatorx#home #actionbuttons a {
  display: block;
  height: 170px;
  width: 100%;
  color: #ccc;
}
.senatorx#home #actionbuttons a .text {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-size: 35px;
}
.senatorx#home #feeds {
  background: #Ccc;
  border-top: 1px solid #f3f3f3;
  padding: 120px 0px;
}
.senatorx#home #feeds .socbox {
  border: 5px solid #333;
  background-color: #fff  !important;
  width: 100%;
  position: relative;
  float: left;
  font-weight: 700;
  padding: 35px 35px 35px 70px;
  font-size: 16px;
  height: 200px;
}
.senatorx#home #feeds .socbox .soclink {
  position: absolute;
  width: 80px;
  height: 80px;
  font-size: 30px;
  vertical-align: middle;
  text-align: center;
  display: table;
  padding: 0px 0px 0px 0px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  top: 25%;
  left: -12%;
  border: 5px solid #333;
  overflow: hidden;
}
.senatorx#home #feeds .socbox .soclink > span {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.senatorx#home #feeds .socbox.twitter .soclink {
  background-color: #78cdf0;
}
.senatorx#home #feeds .socbox.facebook .soclink {
  background-color: #537bbd;
}
.senatorx#home #twitter ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.senatorx#home #twitter ul li .user {
  display: none;
}
.senatorx#home #twitter ul li .user a img {
  display: none;
}
.senatorx#home #twitter ul li .user a span::first-child {
  display: none;
}
.senatorx#home #twitter ul li .tweet {
  color: #333;
}
.senatorx#home #twitter ul li .timePosted {
  display: none;
}
/*
default interior styles

commonly made fixes / tweaks
*/
body#newsroom .modal-backdrop {
  opacity: .8;
}
body#newsroom .modal-dialog {
  margin: 10% auto;
}
body#newsroom .modal-dialog .modal-content {
  -webkit-box-shadow: 0px 0px 0px #000000;
  -moz-box-shadow: 0px 0px 0px #000000;
  box-shadow: 0px 0px 0px #000000;
  background-color: transparent;
  border: none;
  color: #fff;
}
body#newsroom .modal-dialog .modal-content .close {
  color: #fff;
  text-shadow: 0 1px 0 #000;
}
body#newsroom .modal-dialog .modal-content .modal-header {
  border: none;
  padding: 0px;
  margin: 0px;
}
body#newsroom .modal-dialog .modal-content .modal-body {
  padding: 0px;
  margin: 0px;
}
body#newsroom .modal-dialog .modal-content .modal-body form {
  width: 100%;
}
body#newsroom .modal-dialog .modal-content .modal-body form select {
  width: 100%;
  color: #000;
  border: 2px solid;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}
#mediaview {
  margin-top: 40px;
}
.votingtable,
.legislationtable {
  margin-top: 10px;
}
.votingtable td.Yea,
.legislationtable td.Yea,
.votingtable td.Nay,
.legislationtable td.Nay {
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}
.votingtable td.Yea span,
.legislationtable td.Yea span,
.votingtable td.Nay span,
.legislationtable td.Nay span {
  display: none;
}
.votingtable td.Yea:before,
.legislationtable td.Yea:before {
  content: "\e125";
  top: 5px;
  position: relative;
  left: 5px;
  color: green;
}
.votingtable td.Nay:before,
.legislationtable td.Nay:before {
  content: "\e126";
  top: 5px;
  position: relative;
  left: 5px;
  color: red;
}
#voting_record .page {
  margin: 30px 0;
  display: none;
  transition: 1s ease-in-out;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
#voting_record .page .row {
  margin: 0 0 20px 0;
  padding: 5px 5px 15px 5px;
  border-bottom: 1px solid #ccc;
  /* ----- */
}
#voting_record .page .row .date {
  font-size: 15px;
}
#voting_record .page .row .vote {
  font-size: 16px;
  color: #666;
}
#voting_record .page .row .No,
#voting_record .page .row .Nay {
  color: red;
}
#voting_record .page .row .Yea,
#voting_record .page .row .Aye {
  color: green;
}
#voting_record .page .row .result {
  font-size: 16px;
  color: #666;
}
#voting_record .page .row .Failed {
  color: red !important;
}
#voting_record .page .row .Passed {
  color: green !important;
}
#voting_record .page .row .category {
  font-size: 15px;
}
#voting_record .page.in {
  opacity: 1;
}
#voting_record .pagination {
  display: block;
  width: 100%;
}
#voting_record .pagination .pages {
  margin: 0 0 25px 0;
  width: 100%;
}
#voting_record .pagination .pages_nav {
  width: 100%;
  clear: both;
  overflow: auto;
}
#photos li {
  margin-bottom: 30px;
}
#photos li .imghold {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 265px;
  background: url("/themes/default_v3/images/loading.gif") no-repeat scroll top left transparent;
  background-size: 265px auto;
}
#photos li .imghold img {
  position: absolute;
  top: 0px;
  width: auto;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#photos li .imghold .tall {
  opacity: 1;
  height: auto;
  width: 100%;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#photos li .imghold .short {
  opacity: 1;
  width: auto  !important;
  height: 100% !important;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#newscontent {
  margin-top: 80px;
}
#newscontent hr {
  margin-top: 40px;
  margin-bottom: 40px;
}
#newscontent .subtitle {
  margin-bottom: 20px;
}
#newscontent .summary {
  margin-top: 20px;
}
.videoiframe {
  width: 100%;
  height: 500px;
}
.img-wrap {
  width: 100%;
  display: block;
  overflow: hidden;
  max-height: 500px;
}
.img-wrap .img {
  width: 100%;
}
#browser_table thead tr th {
  border-top: medium none;
  font-size: 1.3em;
  padding-top: 20px;
  font-weight: normal;
}
#browser_table tbody tr.divider {
  border-top: none;
}
#browser_table tbody tr.divider td {
  border-top: medium none;
  font-size: 1.3em;
  padding-top: 20px;
}
#crscontent {
  text-align: left;
}
#crscontent center {
  text-align: left;
}
#crscontent h3 {
  text-align: left;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}
#crscontent table {
  width: 100%;
}
#crscontent table p {
  margin: 10px 0px;
}
aside {
  margin-top: 20px;
}
aside form {
  width: 100%;
}
aside form select {
  width: 100%;
  color: #000;
  border: 2px solid #eee;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}
aside form #thomas_search {
  width: 100%;
}
fieldset + fieldset {
  margin-top: 20px;
}
aside p {
  width: 100%;
  margin: 0px;
}
aside.list {
  float: left;
  width: 100%;
}
aside.list > ul {
  float: left;
  width: 100%;
  display: block;
  position: relative;
}
aside.list > ul li {
  float: left;
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
aside.list > ul li a {
  display: block;
}
aside.list > ul li a img {
  margin-top: 5px;
}
aside.list > ul li a + a {
  margin-left: 10px;
  float: left;
  width: 80%;
}
aside.list > ul li time {
  padding-right: 10px;
}
aside.list > ul li:last-child {
  border-bottom: none;
}
aside.list #newsletter-signup input {
  width: 100%;
}
aside.list #newsletter-signup button {
  width: 100%;
}
#listblocks .block {
  margin-bottom: 30px;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  display: block;
}
#listblocks .block .desc {
  padding: 20px;
  min-height: 170px;
}
#listblocks .block .desc p {
  width: 100%;
  margin: 0px;
}
#listblocks .block a {
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 22px;
  color: #fff;
  font-weight: 300;
  min-height: 100px;
}
#listblocks .block a:hover {
  text-decoration: none;
}
#listblocks .block a > img {
  float: left;
}
#listblocks .block a .media-heading {
  float: left;
  position: relative;
  top: 18px;
}
#listblocks .block a .media-heading.noimg {
  width: 100%;
  text-align: center;
  display: block;
}
#listblocks .block a .media-heading.withimg {
  left: 20px;
  display: block;
  width: 75%;
}
#listblocks .block:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
#listblocks .block:hover a {
  background-color: rgba(0, 0, 0, 0.8);
}
#listblocks .block.noimg a {
  height: auto;
  min-height: 95px;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 0px;
  color: #fff;
}
#issue .breakout {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}
#issue .breakout #issueFeed > li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
#issue .breakout #issueFeed > li .imghold {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 265px;
  background: url("/themes/default_v3/images/loading.gif") no-repeat scroll top left transparent;
  background-size: 265px auto;
}
#issue .breakout #issueFeed > li .imghold img {
  position: absolute;
  top: 0px;
  width: auto;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#issue .breakout #issueFeed > li .imghold .tall {
  opacity: 1;
  height: auto;
  width: 100%;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#issue .breakout #issueFeed > li .imghold .short {
  opacity: 1;
  width: auto  !important;
  height: 100% !important;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#issues-page-container #search-issues-page-form fieldset {
  margin: 20px 0px 0px;
}
#issues-page-container #search-issues-page-form fieldset #search-issues-page-field-container {
  width: 100%;
}
#issues-page-container #search-issues-page-form fieldset #search-issues-page-field-container #search-issues-page {
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  outline: none;
  font-size: 22px;
  padding: 10px;
  height: 50px;
}
#issues-page-container #search-issues-page-form fieldset #search-issues-page-field-container #search-issues-page:focus,
#issues-page-container #search-issues-page-form fieldset #search-issues-page-field-container #search-issues-page:active {
  border: 2px solid rgba(0, 0, 0, 0.2);
  outline: none;
}
#search-issues-page-results {
  padding: 0px;
  background-color: rgba(0, 0, 0, 0.1);
}
#search-issues-page-results .result {
  width: 100%;
  padding: 10px;
  display: block;
}
#search-issues-page-results .result p {
  margin: 0px;
  width: 100%;
}
#mainlist {
  margin-top: 20px;
  float: left;
  width: 100%;
}
#mainlist li {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}
#mainlist li:last-child {
  border-bottom: none;
}
.searchresults div.search-results {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.searchresults ol.search-results {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.titleimg {
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0px 10px 0px 0px;
}
#typenav .nav-pills > li.active a {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.ce_youtube_video iframe {
  height: 420px;
}
#video-content footer {
  display: none;
}
#video-content #media-player {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
#video-content #media-player iframe {
  width: 100%;
  min-height: 350px;
  border: none;
}
#video-content #media-player_wrapper {
  max-height: 350px;
}
#video-content #media-player_wrapper iframe {
  border: none;
}
#video-content #media-player_wrapper object {
  min-height: 350px;
}
#video-content #featured-details-header {
  margin-top: 0;
}
#video-content #social-media-container {
  clear: both;
  margin: 1em 0 0 20px;
  padding: 0;
  display: block;
  float: left;
}
#video-content #social-media-container ul {
  display: block;
  float: left;
  list-style-type: none;
}
#video-content #social-media-container ul li {
  display: block;
  float: left;
  margin: 0;
}
#video-content #social-media-container ul li input {
  width: 100%;
}
#video-content #social-media-container ul li + li {
  margin-left: 10px;
}
#video-content #social-media-container ul:after {
  display: table;
  content: " ";
}
#share-buttons {
  margin: 0;
  padding: 0;
}
#share-buttons li {
  margin-bottom: 0;
  padding: 0;
  vertical-align: top;
  float: left;
  margin-top: 10px;
  margin-right: 10px;
}
#share-buttons .youtube a {
  display: block;
  text-indent: -999em;
  width: 44px;
  height: 20px;
  background: transparent url(/images/multimedia/youtube.png) top left no-repeat;
  border-bottom: 0;
}
#share-buttons .last {
  width: 180px;
}
#share-buttons input[type="text"] {
  padding: 0px;
  width: 130px;
  height: 20px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: .6em
		display: block !important;
}
#share-buttons .copied-link {
  padding-right: 25px !important;
  background: url(/images/multimedia/okay.png) no-repeat right center;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#share-buttons #share-link-button-container {
  position: relative;
  cursor: pointer;
}
#share-buttons #share-link-button {
  border: 1px solid #cccccc;
  color: #3e3e3e;
  background: #fdfdfd;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.01, #ffffff), color-stop(0.02, #fdfdfd), color-stop(1, #dbdbdb));
  background: -webkit-linear-gradient(top, #ffffff 3% #fdfdfd 4%, #dbdbdb 100%);
  background: -moz-linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #dbdbdb 100%);
  background: -o-linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #dbdbdb 100%);
  background: linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #dbdbdb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdfdfd, endColorstr=#dbdbdb);
  font-size: 11px;
  line-height: 19px;
  height: 19px;
  width: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: border;
  -moz-background-clip: border;
  background-clip: border-box;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 0 10px;
}
#share-buttons #share-link-button:hover {
  background: #fdfdfd;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.01, #ffffff), color-stop(0.02, #fdfdfd), color-stop(1, #c2c2c2));
  background: -webkit-linear-gradient(top, #ffffff 3% #fdfdfd 4%, #c2c2c2 100%);
  background: -moz-linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #c2c2c2 100%);
  background: -o-linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #c2c2c2 100%);
  background: linear-gradient(top, #ffffff 3%, #fdfdfd 4%, #c2c2c2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdfdfd, endColorstr=#c2c2c2);
  border: 1px solid #bbbbbb;
}
#share-buttons #share-link-button:hover embed {
  display: block;
}
#share-buttons #share-link-container {
  height: 20px;
  width: 420px;
}
#share-buttons #share-link {
  border: 1px solid #eee;
  display: block;
  font-size: 11px;
  margin: 0;
  padding: 0;
}
#multimedia-browser {
  border-top: 1px solid transparent;
  float: left;
  width: 100%;
}
#multimedia-browser ul.nav-tabs {
  margin: 20px 0;
  padding: 0 !important;
  position: relative;
  width: 100%;
  border-bottom: 3px solid rgba(0, 0, 0, 0.5);
}
#multimedia-browser ul.nav-tabs li {
  clear: right;
  display: block;
  float: left;
  margin: auto;
  margin-bottom: 0;
  position: relative;
  width: auto;
}
#multimedia-browser ul.nav-tabs li a {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  float: left;
  display: block;
  border-color: transparent;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}
#multimedia-browser ul.nav-tabs li.active {
  display: block;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-color: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#multimedia-browser .tab-content {
  overflow: visible;
}
#multimedia-browser .loading {
  min-height: 200px;
  background: url(/themes/sanders/images/loading.gif) no-repeat center center;
}
#multimedia-browser form.multimedia-search {
  margin: 0 0 1em 0;
  padding: 0;
  height: 65px;
}
#multimedia-browser legend {
  margin: 0 0 10px 0 !important;
  font-size: 19px !important;
  line-height: 1;
}
#multimedia-browser fieldset {
  margin: .5em 0 0 0;
  padding: 0;
}
#multimedia-browser input {
  display: inline-block;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-size: 14px;
  padding: 10px;
  margin: 0;
}
#multimedia-browser input[type="button"] {
  display: inline-block !important;
  float: right !important;
  margin: 0 0 0 .5em !important;
  padding: 5px 10px !important;
  height: 40px !important;
  font-size: 18px !important;
}
#multimedia-browser a {
  cursor: pointer;
}
#multimedia-browser #search-results-header {
  padding: 20px 10px 0 10px;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser #search-results-feedback {
  color: #988d85;
  letter-spacing: 1px;
}
#multimedia-browser .status {
  display: none;
  color: #fff;
  letter-spacing: 1px;
  background-color: #273e58;
  font-size: 13px;
  padding: 10px 10px 8px 10px;
}
#multimedia-browser .status p {
  margin: 0;
}
#multimedia-browser .status p + p {
  margin-top: 1em;
}
#multimedia-browser .status a {
  color: #fff;
  text-decoration: underline;
}
#multimedia-browser .no-results {
  margin-top: 1em;
}
#multimedia-browser .multimedia-tools {
  /*float:left;*/
  width: 100%;
}
#multimedia-browser .multimedia-tools #search-mm input {
  float: left;
}
#multimedia-browser .multimedia-tools #audio-tab-content #by-issue-audio select {
  float: left;
  width: 87%;
}
#multimedia-browser .multimedia-tools #audio-tab-content #by-issue-audio #audio-topics-btn {
  float: left!important;
}
#multimedia-browser .multimedia-tools fieldset {
  float: left;
  margin-top: 0;
  margin-right: .5em;
  padding: 0;
  width: 49.45%;
}
#multimedia-browser .multimedia-tools fieldset #audio-topics {
  width: 85%;
}
#multimedia-browser .multimedia-tools fieldset:last-of-type {
  padding-left: 0;
  float: right;
  margin-right: 0px;
}
#multimedia-browser .multimedia-tools select {
  margin: 0;
  display: inline-block;
  width: auto;
  height: 40px;
  float: left;
  padding: 5px 10px;
  border: 2px solid #e3e7e9;
  background-color: #fff;
  background-image: none;
  width: 44%;
}
#multimedia-browser .multimedia-tools input[type="text"] {
  border: 2px solid #e3e7e9;
  font-size: 13px!important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 88%;
  float: left;
  display: block;
}
#multimedia-browser .multimedia-tools select + select {
  margin-left: .5em;
}
#multimedia-browser .has-issues .multimedia-tools fieldset {
  float: left;
  margin-top: 0;
  margin-right: .5em;
  padding: 0;
  width: 32.45%;
}
#multimedia-browser .has-issues .multimedia-tools fieldset:last-of-type {
  padding-left: 0;
  float: right;
  margin-right: 0px;
}
#multimedia-browser .has-issues .multimedia-tools select {
  margin: 0;
  display: inline-block;
  width: auto;
  height: 40px;
  float: left;
  padding: 5px 10px;
  border: 2px solid #e3e7e9;
  background-color: #fff;
  background-image: none;
  width: 40%;
}
#multimedia-browser .has-issues .multimedia-tools select.topics {
  width: 80%;
}
#multimedia-browser .has-issues .multimedia-tools input[type="text"] {
  border: 2px solid #e3e7e9;
  font-size: 13px!important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 81%;
  float: left;
  display: block;
}
#multimedia-browser .has-issues .multimedia-tools select + select {
  margin-left: .25em;
}
#multimedia-browser .pagination {
  clear: both;
  margin-top: 0;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 0;
}
#multimedia-browser .pagination .listing-jump {
  float: left;
}
#multimedia-browser .pagination .listing-increment {
  float: right;
}
#multimedia-browser .pagination .listing-increment a {
  color: #fff;
  display: inline-block;
}
#multimedia-browser .pagination .listing-increment a.selected {
  text-decoration: underline;
}
#multimedia-browser .pagination .listing-increment a + a {
  margin-left: .25em;
}
#multimedia-browser .row {
  margin: 0px;
}
#multimedia-browser .row .media-thumbnail {
  float: left;
  margin: 0 .89em 1em 0;
  width: 19.12%;
  height: 240px;
}
#multimedia-browser .row .media-thumbnail .default-image {
  background-color: #333;
  width: 100%;
  float: left;
  height: auto;
}
#multimedia-browser .row .media-thumbnail img {
  cursor: pointer;
  width: 100%;
}
#multimedia-browser .row .media-thumbnail a {
  font-size: .85em;
  float: left;
  width: 100%;
  display: block;
  line-height: 1.2em;
  padding: 4px 0px;
}
#multimedia-browser .row .media-thumbnail:nth-child(5) {
  margin-right: 0;
  float: right;
}
@media (max-width: 1200px) {
  #multimedia-browser .row .media-thumbnail {
    width: 180px;
    margin: 0 10px 1em 0;
  }
  #multimedia-browser .multimedia-tools select {
    width: 42%;
  }
}
@media (max-width: 990px) {
  #multimedia-browser .row .media-thumbnail {
    width: 136px;
  }
  #multimedia-browser input[type="button"] {
    display: inline-block !important;
    float: right !important;
    margin: 0 0 0 .2em !important;
    padding: 5px 10px !important;
    height: 42px;
    font-size: 18px !important;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 86%;
    float: left;
    display: block;
    height: 40px;
  }
  #multimedia-browser .multimedia-tools select {
    font-size: .8em;
    width: 42%;
    height: 40px;
  }
  #multimedia-browser .multimedia-tools select + select {
    margin-left: .5em;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 32%;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset:last-of-type {
    padding-left: 0;
    float: right;
    margin-right: 0px;
  }
  #multimedia-browser .has-issues .multimedia-tools select {
    margin: 0;
    display: inline-block;
    width: auto;
    height: 40px;
    float: left;
    padding: 5px 10px;
    border: 2px solid #e3e7e9;
    background-color: #fff;
    background-image: none;
    width: 37%;
  }
  #multimedia-browser .has-issues .multimedia-tools select.topics {
    width: 77%;
  }
  #multimedia-browser .has-issues .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 78%;
    float: left;
    display: block;
  }
  #multimedia-browser .has-issues .multimedia-tools select + select {
    margin-left: .25em;
  }
}
@media (max-width: 768px) {
  #multimedia-browser .row .media-thumbnail {
    width: 49%;
    height: 320px;
    margin: 0 2% 1em 0;
  }
  #multimedia-browser .row .media-thumbnail:nth-child(2n) {
    margin: 0 0 1em 0;
  }
  #multimedia-browser .pagination {
    font-size: 14px;
  }
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 83%;
    float: left;
    display: block;
  }
  #multimedia-browser .multimedia-tools select {
    font-size: .8em;
    width: 42%;
    height: 42px;
  }
  #multimedia-browser .multimedia-tools select + select {
    margin-left: .5em;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset:last-of-type {
    padding-left: 0;
    float: right;
    margin-right: 0px;
  }
  #multimedia-browser .has-issues .multimedia-tools select {
    margin: 0;
    display: inline-block;
    width: auto;
    height: 40px;
    float: left;
    padding: 5px 10px;
    border: 2px solid #e3e7e9;
    background-color: #fff;
    background-image: none;
    width: 43%;
  }
  #multimedia-browser .has-issues .multimedia-tools select.topics {
    width: 88%;
  }
  #multimedia-browser .has-issues .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 88%;
    float: left;
    display: block;
  }
  #multimedia-browser .has-issues .multimedia-tools select + select {
    margin-left: .25em;
  }
  #share-buttons #share-link,
  #share-buttons #share-link-container {
    display: none;
  }
}
@media (max-width: 480px) {
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 80%;
    float: left;
    display: block;
  }
  #multimedia-browser .multimedia-tools select {
    font-size: .8em;
    width: 39%;
    height: 42px;
  }
  #multimedia-browser .multimedia-tools select + select {
    margin-left: .5em;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
  }
  #multimedia-browser .has-issues .multimedia-tools fieldset:last-of-type {
    padding-left: 0;
    float: right;
    margin-right: 0px;
  }
  #multimedia-browser .has-issues .multimedia-tools select {
    margin: 0;
    display: inline-block;
    width: auto;
    height: 40px;
    float: left;
    padding: 5px 10px;
    border: 2px solid #e3e7e9;
    background-color: #fff;
    background-image: none;
    width: 39%;
  }
  #multimedia-browser .has-issues .multimedia-tools select.topics {
    width: 80%;
  }
  #multimedia-browser .has-issues .multimedia-tools input[type="text"] {
    border: 2px solid #e3e7e9;
    font-size: 13px!important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 80%;
    float: left;
    display: block;
  }
  #multimedia-browser .has-issues .multimedia-tools select + select {
    margin-left: .25em;
  }
}
@media (max-width: 340px) {
  #multimedia-browser .row .media-thumbnail {
    width: 100%;
    height: auto;
    margin: 0 0 1em 0;
  }
}
.senatorx footer {
  background-color: #333;
  position: relative;
  text-align: center;
  padding: 70px 0px;
}
.senatorx footer .socialblocks > li {
  margin: 30px 10px 0px;
}
.senatorx footer .socialblocks > li a {
  display: table;
  height: 80px;
  width: 80px;
  background-color: #fff  !important;
  font-size: 30px;
  color: #333;
}
.senatorx footer .socialblocks > li a:hover {
  background-color: #ccc;
  color: #fff;
  text-decoration: none;
}
.senatorx footer .socialblocks > li a span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.senatorx footer .socialblocks > li.facebook a:hover {
  background-color: #3B5998  !important;
}
.senatorx footer .socialblocks > li.twitter a:hover {
  background-color: #00aced  !important;
}
.senatorx footer .socialblocks > li.youtube a span {
  font-size: 40px;
}
.senatorx footer .socialblocks > li.youtube a:hover {
  background-color: #e52d27  !important;
}
.senatorx footer .footernav li {
  padding: 0 20px;
}
.senatorx footer .footernav li a {
  font-weight: 700;
  color: #fff;
  font-size: 30px;
}
.senatorx footer .footernav li a:hover {
  color: #ccc;
}
.senatorx footer .footernav li a .srchbutton {
  font-size: 25px;
  top: 11px;
}
#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;
  }
}
/* FORM SYSTEM styles page

This are mostly functional styles at the top, with customizations below...

*/
#accomp-all,
#accomp-1,
#accomp-2,
#accomp-3 {
  display: none;
}
.sel_all #accomp-all,
.sel_all #accomp-1,
.sel_all #accomp-2,
.sel_all #accomp-3,
.sel_1 #accomp-1,
.sel_2 #accomp-2,
.sel_3 #accomp-3 {
  display: block;
}
.show_form .form_mode,
.show_preview .preview_mode {
  display: block !important;
}
.show_form input,
.show_form select,
.show_form textarea {
  display: inline-block !important;
}
.show_form .preview_mode {
  display: none !important;
}
.show_preview .form-control,
.show_preview .form_mode,
.show_preview input,
.show_preview select,
.show_preview textarea {
  display: none !important;
}
abbr {
  outline: none;
  border: none;
}
.form-group .preview_mode {
  color: #000;
}
.show_form .picker {
  display: inline-block !important;
}
.show_preview input#send-request {
  display: inline-block !important;
}
.button-right {
  float: right;
}
.button-left {
  float: left;
}
#edit-request {
  margin-right: 1em;
}
#qa-form {
  margin-bottom: 20px;
}
#qa-form .button {
  cursor: pointer;
  font-size: 1rem;
  font-family: sans-serif;
}
/*

FORM SYSTEM Customizations
*/
#main_column form #actions {
  font-size: 22px;
  height: 65px;
}
#main_column form fieldset {
  margin: 50px 0 0 0;
}
#main_column form fieldset legend {
  font-weight: 800;
  font-size: 30px;
}
#main_column form fieldset label {
  font-weight: 500;
}
#main_column form fieldset input,
#main_column form fieldset select {
  padding: 10px;
}
#main_column form fieldset input[type='radio'],
#main_column form fieldset input[type='checkbox'] {
  padding: 0px;
  padding-top: 2px;
}
#main_column form fieldset abbr[title],
#main_column form fieldset abbr[data-original-title] {
  color: rgba(0, 0, 0, 0.2);
  border-bottom: none;
  cursor: help;
  padding: 5px;
}
#main_column form fieldset textarea {
  min-height: 100px;
  font-size: 18px;
}
#main_column form fieldset input.form-control,
#main_column form fieldset select.form-control {
  height: 50px;
  font-size: 18px;
}
#main_column form fieldset input.form-control:focus,
#main_column form fieldset select.form-control:focus {
  border: 1px solid #CCC;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
#main_column form fieldset .note-text {
  padding: 5px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.33);
}
#main_column form fieldset + fieldset {
  margin: 50px 0 0 0;
}
#main_column form .btn {
  margin: 15px;
  font-size: 22px;
  padding: 20px 45px 20px 45px;
  float: right;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.2);
}
#main_column form .btn:hover {
  background-color: rgba(0, 0, 0, 0.45);
}
.popover {
  z-index: 1020;
  background-color: #fff;
}
.popover.fade.in {
  background-color: #fff;
}
.data-containers {
  float: right;
  width: 300px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  margin-left: 20px;
}
#signatures-container {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  float: right;
  margin-bottom: 0px;
  width: 100%;
  display: block;
  position: relative;
}
#signatures-container #num-signatures-container {
  display: block;
  float: left;
  padding: 6px 20px;
  font-size: 23px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}
#signatures-container #num-signatures-label {
  display: block;
  float: left;
  padding: 15px 10px;
  font-size: 18px;
}
.social-container {
  float: right;
  display: block;
  background: #eee;
  padding: 10px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.social-container ul {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  width: 100%;
  display: block;
  position: relative;
  float: left;
}
.social-container ul li {
  display: block;
  float: left;
  margin: 0 15px 0 0;
}
.social-container ul li iframe {
  position: relative;
}
.social-container ul li.social-fb {
  margin-top: 1px;
}
.social-container ul li.social-plusone {
  margin-top: 2px;
}
.social-container {
  width: 100%;
  float: right;
  margin: 0;
  text-align: center;
}
.social-container ul li {
  margin: 0px 8px;
}
.social-container ul li:last-child {
  margin-right: 0px;
}
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.bgwhite {
  background-color: #fff  !important;
}
.bgfacebook {
  background-color: #3B5998  !important;
}
.bgtwitter {
  background-color: #00aced  !important;
}
.bgyoutube {
  background-color: #e52d27  !important;
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('/themes/default_v3/fonts/glyphicons-halflings-regular.eot');
  src: url('/themes/default_v3/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/themes/default_v3/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/themes/default_v3/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/themes/default_v3/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/themes/default_v3/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
@font-face {
  font-family: 'Socialglyphs';
  src: url(/themes/default_v3/fonts/social/socialglyphs-regular.svg#socialglyphs-regular) format("svg"), url(/themes/default_v3/fonts/social/socialglyphs-regular.ttf) format("truetype"), url(/themes/default_v3/fonts/social/socialglyphs-regular.woff) format("woff"), url(/themes/default_v3/fonts/social/socialglyphs-regular.eot);
}
@font-face {
  font-family: 'socicon';
  src: url('/themes/default_v3/fonts/socicon/font/socicon-webfont.eot');
  src: url('/themes/default_v3/fonts/socicon/font/socicon-webfont.eot?#iefix') format('embedded-opentype'), url('/themes/default_v3/fonts/socicon/font/socicon-webfont.woff') format('woff'), url('/themes/default_v3/fonts/socicon/font/socicon-webfont.ttf') format('truetype'), url('/themes/default_v3/fonts/socicon/font/socicon-webfont.svg#sociconregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.socialicon {
  font-family: Socialglyphs;
}
.socicon {
  font-family: 'socicon' !important;
}
a,
button {
  cursor: pointer;
}
a:focus,
button:focus {
  border: none;
  outline: none;
}
.btn,
.form-control,
.dropdown-menu {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.senatorx {
  font-family: 'Roboto', sans-serif;
}
.senatorx .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}
@media (max-width: 1200px) {
  #photos li .imghold {
    height: 215px;
  }
}
@media (max-width: 991px) {
  #photos li .imghold {
    height: 158px;
  }
}
@media (max-width: 767px) {
  html,
  body {
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  #photos li .imghold {
    height: auto;
    width: 100%;
  }
  #photos li .imghold .short,
  #photos li .imghold .tall {
    position: relative;
    height: auto !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  #browser_table thead tr th {
    border-top: medium none;
    font-size: 14px;
    padding-top: 10px;
    font-weight: normal;
  }
  #browser_table tbody tr td {
    font-size: 12px;
  }
  #browser_table tbody tr.divider {
    border-top: none;
  }
  #browser_table tbody tr.divider td {
    border-top: medium none;
    font-size: 14px;
    padding-top: 10px;
  }
}
.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;
  }
  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 .rss-subscribe:after {
    content: "";
  }
  html .container {
    color: #333333 !important;
    width: 100%;
  }
  html .container ul {
    width: 100%;
  }
  html .container ul li {
    color: #ccc !important;
    width: 100%;
  }
  html .container div {
    color: #333333 !important;
    width: 100%;
  }
  html .container div * {
    color: #333333 !important;
  }
  html .container img:after,
  html .container a:after {
    content: "";
  }
  html .container #asides .social,
  html .container #asides .servicespod {
    display: none;
  }
  html .container img {
    margin: 10px;
  }
  html .container .inline-search {
    display: none;
  }
  html .container #search-issues-page-container,
  html .container #search-issues-page-results {
    display: none;
  }
  html .container .media-list .media {
    page-break-inside: avoid;
  }
  html .container .media-list a.pull-left,
  html .container .media-body {
    display: block;
    float: left;
    width: 15%;
  }
  html .container .media-list a.pull-left {
    margin-right: 5% !important;
  }
  html .container .media-list a img {
    width: 100%;
  }
  html .container .media-body {
    width: 80%;
  }
  #content .container #main_column {
    border-right: none;
  }
  #issue #asides {
    display: none;
  }
}
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
		border-top: 1px solid #ddd !important;
	}*/
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker > div {
  display: none;
}
.datepicker.days div.datepicker-days {
  display: block;
}
.datepicker.months div.datepicker-months {
  display: block;
}
.datepicker.years div.datepicker-years {
  display: block;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  color: #000000;
  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: #000000;
  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: #000000;
  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: #000000;
  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: #ffffff;
  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: #ffffff;
  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: #ffffff;
  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: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  background-image: none;
}
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  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: #ffffff;
  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 #cccccc;
  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%;
  }
}
