/* backgrounds */
/* borders */
/* indicators */
.mt30 {
  margin-top: 30px; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.animated.infinite {
  animation-iteration-count: infinite; }

.animated.hinge {
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
  .table td,
  .table th {
    background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("../fonts/glyphicons-halflings-regular.eot");
  src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "\2a"; }

.glyphicon-plus:before {
  content: "\2b"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270f"; }

.glyphicon-glass:before {
  content: "\e001"; }

.glyphicon-music:before {
  content: "\e002"; }

.glyphicon-search:before {
  content: "\e003"; }

.glyphicon-heart:before {
  content: "\e005"; }

.glyphicon-star:before {
  content: "\e006"; }

.glyphicon-star-empty:before {
  content: "\e007"; }

.glyphicon-user:before {
  content: "\e008"; }

.glyphicon-film:before {
  content: "\e009"; }

.glyphicon-th-large:before {
  content: "\e010"; }

.glyphicon-th:before {
  content: "\e011"; }

.glyphicon-th-list:before {
  content: "\e012"; }

.glyphicon-ok:before {
  content: "\e013"; }

.glyphicon-remove:before {
  content: "\e014"; }

.glyphicon-zoom-in:before {
  content: "\e015"; }

.glyphicon-zoom-out:before {
  content: "\e016"; }

.glyphicon-off:before {
  content: "\e017"; }

.glyphicon-signal:before {
  content: "\e018"; }

.glyphicon-cog:before {
  content: "\e019"; }

.glyphicon-trash:before {
  content: "\e020"; }

.glyphicon-home:before {
  content: "\e021"; }

.glyphicon-file:before {
  content: "\e022"; }

.glyphicon-time:before {
  content: "\e023"; }

.glyphicon-road:before {
  content: "\e024"; }

.glyphicon-download-alt:before {
  content: "\e025"; }

.glyphicon-download:before {
  content: "\e026"; }

.glyphicon-upload:before {
  content: "\e027"; }

.glyphicon-inbox:before {
  content: "\e028"; }

.glyphicon-play-circle:before {
  content: "\e029"; }

.glyphicon-repeat:before {
  content: "\e030"; }

.glyphicon-refresh:before {
  content: "\e031"; }

.glyphicon-list-alt:before {
  content: "\e032"; }

.glyphicon-lock:before {
  content: "\e033"; }

.glyphicon-flag:before {
  content: "\e034"; }

.glyphicon-headphones:before {
  content: "\e035"; }

.glyphicon-volume-off:before {
  content: "\e036"; }

.glyphicon-volume-down:before {
  content: "\e037"; }

.glyphicon-volume-up:before {
  content: "\e038"; }

.glyphicon-qrcode:before {
  content: "\e039"; }

.glyphicon-barcode:before {
  content: "\e040"; }

.glyphicon-tag:before {
  content: "\e041"; }

.glyphicon-tags:before {
  content: "\e042"; }

.glyphicon-book:before {
  content: "\e043"; }

.glyphicon-bookmark:before {
  content: "\e044"; }

.glyphicon-print:before {
  content: "\e045"; }

.glyphicon-camera:before {
  content: "\e046"; }

.glyphicon-font:before {
  content: "\e047"; }

.glyphicon-bold:before {
  content: "\e048"; }

.glyphicon-italic:before {
  content: "\e049"; }

.glyphicon-text-height:before {
  content: "\e050"; }

.glyphicon-text-width:before {
  content: "\e051"; }

.glyphicon-align-left:before {
  content: "\e052"; }

.glyphicon-align-center:before {
  content: "\e053"; }

.glyphicon-align-right:before {
  content: "\e054"; }

.glyphicon-align-justify:before {
  content: "\e055"; }

.glyphicon-list:before {
  content: "\e056"; }

.glyphicon-indent-left:before {
  content: "\e057"; }

.glyphicon-indent-right:before {
  content: "\e058"; }

.glyphicon-facetime-video:before {
  content: "\e059"; }

.glyphicon-picture:before {
  content: "\e060"; }

.glyphicon-map-marker:before {
  content: "\e062"; }

.glyphicon-adjust:before {
  content: "\e063"; }

.glyphicon-tint:before {
  content: "\e064"; }

.glyphicon-edit:before {
  content: "\e065"; }

.glyphicon-share:before {
  content: "\e066"; }

.glyphicon-check:before {
  content: "\e067"; }

.glyphicon-move:before {
  content: "\e068"; }

.glyphicon-step-backward:before {
  content: "\e069"; }

.glyphicon-fast-backward:before {
  content: "\e070"; }

.glyphicon-backward:before {
  content: "\e071"; }

.glyphicon-play:before {
  content: "\e072"; }

.glyphicon-pause:before {
  content: "\e073"; }

.glyphicon-stop:before {
  content: "\e074"; }

.glyphicon-forward:before {
  content: "\e075"; }

.glyphicon-fast-forward:before {
  content: "\e076"; }

.glyphicon-step-forward:before {
  content: "\e077"; }

.glyphicon-eject:before {
  content: "\e078"; }

.glyphicon-chevron-left:before {
  content: "\e079"; }

.glyphicon-chevron-right:before {
  content: "\e080"; }

.glyphicon-plus-sign:before {
  content: "\e081"; }

.glyphicon-minus-sign:before {
  content: "\e082"; }

.glyphicon-remove-sign:before {
  content: "\e083"; }

.glyphicon-ok-sign:before {
  content: "\e084"; }

.glyphicon-question-sign:before {
  content: "\e085"; }

.glyphicon-info-sign:before {
  content: "\e086"; }

.glyphicon-screenshot:before {
  content: "\e087"; }

.glyphicon-remove-circle:before {
  content: "\e088"; }

.glyphicon-ok-circle:before {
  content: "\e089"; }

.glyphicon-ban-circle:before {
  content: "\e090"; }

.glyphicon-arrow-left:before {
  content: "\e091"; }

.glyphicon-arrow-right:before {
  content: "\e092"; }

.glyphicon-arrow-up:before {
  content: "\e093"; }

.glyphicon-arrow-down:before {
  content: "\e094"; }

.glyphicon-share-alt:before {
  content: "\e095"; }

.glyphicon-resize-full:before {
  content: "\e096"; }

.glyphicon-resize-small:before {
  content: "\e097"; }

.glyphicon-exclamation-sign:before {
  content: "\e101"; }

.glyphicon-gift:before {
  content: "\e102"; }

.glyphicon-leaf:before {
  content: "\e103"; }

.glyphicon-fire:before {
  content: "\e104"; }

.glyphicon-eye-open:before {
  content: "\e105"; }

.glyphicon-eye-close:before {
  content: "\e106"; }

.glyphicon-warning-sign:before {
  content: "\e107"; }

.glyphicon-plane:before {
  content: "\e108"; }

.glyphicon-calendar:before {
  content: "\e109"; }

.glyphicon-random:before {
  content: "\e110"; }

.glyphicon-comment:before {
  content: "\e111"; }

.glyphicon-magnet:before {
  content: "\e112"; }

.glyphicon-chevron-up:before {
  content: "\e113"; }

.glyphicon-chevron-down:before {
  content: "\e114"; }

.glyphicon-retweet:before {
  content: "\e115"; }

.glyphicon-shopping-cart:before {
  content: "\e116"; }

.glyphicon-folder-close:before {
  content: "\e117"; }

.glyphicon-folder-open:before {
  content: "\e118"; }

.glyphicon-resize-vertical:before {
  content: "\e119"; }

.glyphicon-resize-horizontal:before {
  content: "\e120"; }

.glyphicon-hdd:before {
  content: "\e121"; }

.glyphicon-bullhorn:before {
  content: "\e122"; }

.glyphicon-bell:before {
  content: "\e123"; }

.glyphicon-certificate:before {
  content: "\e124"; }

.glyphicon-thumbs-up:before {
  content: "\e125"; }

.glyphicon-thumbs-down:before {
  content: "\e126"; }

.glyphicon-hand-right:before {
  content: "\e127"; }

.glyphicon-hand-left:before {
  content: "\e128"; }

.glyphicon-hand-up:before {
  content: "\e129"; }

.glyphicon-hand-down:before {
  content: "\e130"; }

.glyphicon-circle-arrow-right:before {
  content: "\e131"; }

.glyphicon-circle-arrow-left:before {
  content: "\e132"; }

.glyphicon-circle-arrow-up:before {
  content: "\e133"; }

.glyphicon-circle-arrow-down:before {
  content: "\e134"; }

.glyphicon-globe:before {
  content: "\e135"; }

.glyphicon-wrench:before {
  content: "\e136"; }

.glyphicon-tasks:before {
  content: "\e137"; }

.glyphicon-filter:before {
  content: "\e138"; }

.glyphicon-briefcase:before {
  content: "\e139"; }

.glyphicon-fullscreen:before {
  content: "\e140"; }

.glyphicon-dashboard:before {
  content: "\e141"; }

.glyphicon-paperclip:before {
  content: "\e142"; }

.glyphicon-heart-empty:before {
  content: "\e143"; }

.glyphicon-link:before {
  content: "\e144"; }

.glyphicon-phone:before {
  content: "\e145"; }

.glyphicon-pushpin:before {
  content: "\e146"; }

.glyphicon-usd:before {
  content: "\e148"; }

.glyphicon-gbp:before {
  content: "\e149"; }

.glyphicon-sort:before {
  content: "\e150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\e151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152"; }

.glyphicon-sort-by-order:before {
  content: "\e153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\e154"; }

.glyphicon-sort-by-attributes:before {
  content: "\e155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156"; }

.glyphicon-unchecked:before {
  content: "\e157"; }

.glyphicon-expand:before {
  content: "\e158"; }

.glyphicon-collapse-down:before {
  content: "\e159"; }

.glyphicon-collapse-up:before {
  content: "\e160"; }

.glyphicon-log-in:before {
  content: "\e161"; }

.glyphicon-flash:before {
  content: "\e162"; }

.glyphicon-log-out:before {
  content: "\e163"; }

.glyphicon-new-window:before {
  content: "\e164"; }

.glyphicon-record:before {
  content: "\e165"; }

.glyphicon-save:before {
  content: "\e166"; }

.glyphicon-open:before {
  content: "\e167"; }

.glyphicon-saved:before {
  content: "\e168"; }

.glyphicon-import:before {
  content: "\e169"; }

.glyphicon-export:before {
  content: "\e170"; }

.glyphicon-send:before {
  content: "\e171"; }

.glyphicon-floppy-disk:before {
  content: "\e172"; }

.glyphicon-floppy-saved:before {
  content: "\e173"; }

.glyphicon-floppy-remove:before {
  content: "\e174"; }

.glyphicon-floppy-save:before {
  content: "\e175"; }

.glyphicon-floppy-open:before {
  content: "\e176"; }

.glyphicon-credit-card:before {
  content: "\e177"; }

.glyphicon-transfer:before {
  content: "\e178"; }

.glyphicon-cutlery:before {
  content: "\e179"; }

.glyphicon-header:before {
  content: "\e180"; }

.glyphicon-compressed:before {
  content: "\e181"; }

.glyphicon-earphone:before {
  content: "\e182"; }

.glyphicon-phone-alt:before {
  content: "\e183"; }

.glyphicon-tower:before {
  content: "\e184"; }

.glyphicon-stats:before {
  content: "\e185"; }

.glyphicon-sd-video:before {
  content: "\e186"; }

.glyphicon-hd-video:before {
  content: "\e187"; }

.glyphicon-subtitles:before {
  content: "\e188"; }

.glyphicon-sound-stereo:before {
  content: "\e189"; }

.glyphicon-sound-dolby:before {
  content: "\e190"; }

.glyphicon-sound-5-1:before {
  content: "\e191"; }

.glyphicon-sound-6-1:before {
  content: "\e192"; }

.glyphicon-sound-7-1:before {
  content: "\e193"; }

.glyphicon-copyright-mark:before {
  content: "\e194"; }

.glyphicon-registration-mark:before {
  content: "\e195"; }

.glyphicon-cloud-download:before {
  content: "\e197"; }

.glyphicon-cloud-upload:before {
  content: "\e198"; }

.glyphicon-tree-conifer:before {
  content: "\e199"; }

.glyphicon-tree-deciduous:before {
  content: "\e200"; }

.glyphicon-cd:before {
  content: "\e201"; }

.glyphicon-save-file:before {
  content: "\e202"; }

.glyphicon-open-file:before {
  content: "\e203"; }

.glyphicon-level-up:before {
  content: "\e204"; }

.glyphicon-copy:before {
  content: "\e205"; }

.glyphicon-paste:before {
  content: "\e206"; }

.glyphicon-alert:before {
  content: "\e209"; }

.glyphicon-equalizer:before {
  content: "\e210"; }

.glyphicon-king:before {
  content: "\e211"; }

.glyphicon-queen:before {
  content: "\e212"; }

.glyphicon-pawn:before {
  content: "\e213"; }

.glyphicon-bishop:before {
  content: "\e214"; }

.glyphicon-knight:before {
  content: "\e215"; }

.glyphicon-baby-formula:before {
  content: "\e216"; }

.glyphicon-tent:before {
  content: "\26fa"; }

.glyphicon-blackboard:before {
  content: "\e218"; }

.glyphicon-bed:before {
  content: "\e219"; }

.glyphicon-apple:before {
  content: "\f8ff"; }

.glyphicon-erase:before {
  content: "\e221"; }

.glyphicon-hourglass:before {
  content: "\231b"; }

.glyphicon-lamp:before {
  content: "\e223"; }

.glyphicon-duplicate:before {
  content: "\e224"; }

.glyphicon-piggy-bank:before {
  content: "\e225"; }

.glyphicon-scissors:before {
  content: "\e226"; }

.glyphicon-bitcoin:before {
  content: "\e227"; }

.glyphicon-btc:before {
  content: "\e227"; }

.glyphicon-xbt:before {
  content: "\e227"; }

.glyphicon-yen:before {
  content: "\00a5"; }

.glyphicon-jpy:before {
  content: "\00a5"; }

.glyphicon-ruble:before {
  content: "\20bd"; }

.glyphicon-rub:before {
  content: "\20bd"; }

.glyphicon-scale:before {
  content: "\e230"; }

.glyphicon-ice-lolly:before {
  content: "\e231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\e232"; }

.glyphicon-education:before {
  content: "\e233"; }

.glyphicon-option-horizontal:before {
  content: "\e234"; }

.glyphicon-option-vertical:before {
  content: "\e235"; }

.glyphicon-menu-hamburger:before {
  content: "\e236"; }

.glyphicon-modal-window:before {
  content: "\e237"; }

.glyphicon-oil:before {
  content: "\e238"; }

.glyphicon-grain:before {
  content: "\e239"; }

.glyphicon-sunglasses:before {
  content: "\e240"; }

.glyphicon-text-size:before {
  content: "\e241"; }

.glyphicon-text-color:before {
  content: "\e242"; }

.glyphicon-text-background:before {
  content: "\e243"; }

.glyphicon-object-align-top:before {
  content: "\e244"; }

.glyphicon-object-align-bottom:before {
  content: "\e245"; }

.glyphicon-object-align-horizontal:before {
  content: "\e246"; }

.glyphicon-object-align-left:before {
  content: "\e247"; }

.glyphicon-object-align-vertical:before {
  content: "\e248"; }

.glyphicon-object-align-right:before {
  content: "\e249"; }

.glyphicon-triangle-right:before {
  content: "\e250"; }

.glyphicon-triangle-left:before {
  content: "\e251"; }

.glyphicon-triangle-bottom:before {
  content: "\e252"; }

.glyphicon-triangle-top:before {
  content: "\e253"; }

.glyphicon-console:before {
  content: "\e254"; }

.glyphicon-superscript:before {
  content: "\e255"; }

.glyphicon-subscript:before {
  content: "\e256"; }

.glyphicon-menu-left:before {
  content: "\e257"; }

.glyphicon-menu-right:before {
  content: "\e258"; }

.glyphicon-menu-down:before {
  content: "\e259"; }

.glyphicon-menu-up:before {
  content: "\e260"; }

* {
  box-sizing: border-box; }

*:before,
*:after {
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline; }

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777; }

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px; }

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%; }

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px; }

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%; }

h1,
.h1 {
  font-size: 36px; }

h2,
.h2 {
  font-size: 30px; }

h3,
.h3 {
  font-size: 24px; }

h4,
.h4 {
  font-size: 18px; }

h5,
.h5 {
  font-size: 14px; }

h6,
.h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }

@media (min-width: 768px) {
  .lead {
    font-size: 21px; } }

small,
.small {
  font-size: 85%; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover,
a.text-primary:focus {
  color: #286090; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff;
  background-color: #337ab7; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857143; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0; }

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777; }

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right,
.progressbar blockquote.progressbar-wrapper {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }

.blockquote-reverse footer:before,
blockquote.pull-right footer:before, .progressbar blockquote.progressbar-wrapper footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before, .progressbar blockquote.progressbar-wrapper small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before, .progressbar blockquote.progressbar-wrapper .small:before {
  content: ''; }

.blockquote-reverse footer:after,
blockquote.pull-right footer:after, .progressbar blockquote.progressbar-wrapper footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after, .progressbar blockquote.progressbar-wrapper small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after, .progressbar blockquote.progressbar-wrapper .small:after {
  content: '\00A0 \2014'; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px; }

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

.row {
  margin-left: -15px;
  margin-right: -15px; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd; }

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0; }

.table > tbody + tbody {
  border-top: 2px solid #dddddd; }

.table .table {
  background-color: #ffffff; }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #dddddd; }

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd; }

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd; }
  .table-responsive > .table {
    margin-bottom: 0; }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap; }
  .table-responsive > .table-bordered {
    border: 0; }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; }

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1; }

.form-control:-ms-input-placeholder {
  color: #999999; }

.form-control::-webkit-input-placeholder {
  color: #999999; }

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1; }

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed; }

textarea.form-control {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px; }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px; } }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }

.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px; }

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0; }

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm {
  height: 30px;
  line-height: 30px; }

textarea.input-sm,
select[multiple].input-sm {
  height: auto; }

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

select.input-lg {
  height: 46px;
  line-height: 46px; }

textarea.input-lg,
select[multiple].input-lg {
  height: auto; }

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

.has-feedback {
  position: relative; }

.has-feedback .form-control {
  padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 18px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none; }

.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc; }

.btn-default:focus,
.btn-default.focus {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #8c8c8c; }

.btn-default:hover {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad; }

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad; }

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333333;
  background-color: #d4d4d4;
  border-color: #8c8c8c; }

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none; }

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #ffffff;
  border-color: #cccccc; }

.btn-default .badge {
  color: #ffffff;
  background-color: #333333; }

.btn-primary {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4; }

.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40; }

.btn-primary:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74; }

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74; }

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #204d74;
  border-color: #122b40; }

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none; }

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4; }

.btn-primary .badge {
  color: #337ab7;
  background-color: #ffffff; }

.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c; }

.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #449d44;
  border-color: #255625; }

.btn-success:hover {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439; }

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439; }

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #398439;
  border-color: #255625; }

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none; }

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c; }

.btn-success .badge {
  color: #5cb85c;
  background-color: #ffffff; }

.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da; }

.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #1b6d85; }

.btn-info:hover {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc; }

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc; }

.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #269abc;
  border-color: #1b6d85; }

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none; }

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da; }

.btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff; }

.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236; }

.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #985f0d; }

.btn-warning:hover {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512; }

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512; }

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #d58512;
  border-color: #985f0d; }

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none; }

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236; }

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff; }

.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a; }

.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #761c19; }

.btn-danger:hover {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925; }

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925; }

.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #ac2925;
  border-color: #761c19; }

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none; }

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a; }

.btn-danger .badge {
  color: #d9534f;
  background-color: #ffffff; }

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0; }

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none; }

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent; }

.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent; }

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none; }

.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  transition: opacity 0.15s linear; }

.fade.in {
  opacity: 1; }

.collapse {
  display: none; }

.collapse.in {
  display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }

.dropdown-menu.pull-right, .progressbar .dropdown-menu.progressbar-wrapper {
  right: 0;
  left: auto; }

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu, .progressbar .progressbar-wrapper > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left; }

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left; }

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%; }

.btn-group-justified > .btn-group .btn {
  width: 100%; }

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }

.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0; }

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0; }

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px; }

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto; }

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px; }

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 4px; }

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px; }

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px; }

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }

.input-group-btn > .btn {
  position: relative; }

.input-group-btn > .btn + .btn {
  margin-left: -1px; }

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2; }

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px; }

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }

.nav > li {
  position: relative;
  display: block; }

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px; }

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee; }

.nav > li.disabled > a {
  color: #777777; }

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed; }

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7; }

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.nav > li > a > img {
  max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #dddddd; }

.nav-tabs > li {
  float: left;
  margin-bottom: -1px; }

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }

.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default; }

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0; }

.nav-tabs.nav-justified > li {
  float: none; }

.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff; } }

.nav-pills > li {
  float: left; }

.nav-pills > li > a {
  border-radius: 4px; }

.nav-pills > li + li {
  margin-left: 2px; }

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #337ab7; }

.nav-stacked > li {
  float: none; }

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

.nav-justified {
  width: 100%; }

.nav-justified > li {
  float: none; }

.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs-justified {
  border-bottom: 0; }

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd; }

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px; } }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }

.navbar-collapse.in {
  overflow-y: auto; }

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none; }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important; }
  .navbar-collapse.in {
    overflow-y: visible; }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px; } }

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }

@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none; }

.navbar-brand > img {
  display: block; }

@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.navbar-toggle:focus {
  outline: 0; }

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

@media (min-width: 768px) {
  .navbar-toggle {
    display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px; }

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none; }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px; }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px; }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none; } }

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0; }
  .navbar-nav > li {
    float: left; }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .navbar-form .form-control-static {
    display: inline-block; }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto; }
  .navbar-form .input-group > .form-control {
    width: 100%; }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0; }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px; }
  .navbar-form .form-group:last-child {
    margin-bottom: 0; } }

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px; }

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
  .navbar-right ~ .navbar-right {
    margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }

.navbar-default .navbar-brand {
  color: #777777; }

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent; }

.navbar-default .navbar-text {
  color: #777777; }

.navbar-default .navbar-nav > li > a {
  color: #777777; }

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent; }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7; }

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent; }

.navbar-default .navbar-toggle {
  border-color: #dddddd; }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #dddddd; }

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888888; }

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7; }

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555555; }

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777; }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent; }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent; } }

.navbar-default .navbar-link {
  color: #777777; }

.navbar-default .navbar-link:hover {
  color: #333333; }

.navbar-default .btn-link {
  color: #777777; }

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333333; }

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc; }

.navbar-inverse {
  background-color: #222222;
  border-color: #080808; }

.navbar-inverse .navbar-brand {
  color: #9d9d9d; }

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent; }

.navbar-inverse .navbar-text {
  color: #9d9d9d; }

.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d; }

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent; }

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808; }

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent; }

.navbar-inverse .navbar-toggle {
  border-color: #333333; }

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333333; }

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff; }

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010; }

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #ffffff; }

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent; } }

.navbar-inverse .navbar-link {
  color: #9d9d9d; }

.navbar-inverse .navbar-link:hover {
  color: #ffffff; }

.navbar-inverse .btn-link {
  color: #9d9d9d; }

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #ffffff; }

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }

.breadcrumb > li {
  display: inline-block; }

.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #cccccc; }

.breadcrumb > .active {
  color: #777777; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }

.pagination > li {
  display: inline; }

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px; }

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px; }

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px; }

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #dddddd; }

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default; }

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center; }

.pager li {
  display: inline; }

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px; }

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee; }

.pager .next > a,
.pager .next > span {
  float: right; }

.pager .previous > a,
.pager .previous > span {
  float: left; }

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #ffffff;
  cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }

a.label:hover,
a.label:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer; }

.label:empty {
  display: none; }

.btn .label {
  position: relative;
  top: -1px; }

.label-default {
  background-color: #777777; }

.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e; }

.label-primary {
  background-color: #337ab7; }

.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090; }

.label-success {
  background-color: #5cb85c; }

.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }

.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }

.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }

.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px; }

.badge:empty {
  display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px; }

a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer; }

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #ffffff; }

.list-group-item > .badge {
  float: right; }

.list-group-item > .badge + .badge {
  margin-right: 5px; }

.nav-pills > li > a > .badge {
  margin-left: 3px; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee; }

.jumbotron h1,
.jumbotron .h1 {
  color: inherit; }

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200; }

.jumbotron > hr {
  border-top-color: #d5d5d5; }

.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px; }

.jumbotron .container {
  max-width: 100%; }

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px; }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px; }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  transition: border 0.2s ease-in-out; }

.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7; }

.thumbnail .caption {
  padding: 9px;
  color: #333333; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }

.alert h4 {
  margin-top: 0;
  color: inherit; }

.alert .alert-link {
  font-weight: bold; }

.alert > p,
.alert > ul {
  margin-bottom: 0; }

.alert > p + p {
  margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }

.alert-success hr {
  border-top-color: #c9e2b3; }

.alert-success .alert-link {
  color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }

.alert-info hr {
  border-top-color: #a6e1ec; }

.alert-info .alert-link {
  color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }

.alert-warning hr {
  border-top-color: #f7e1b5; }

.alert-warning .alert-link {
  color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }

.alert-danger hr {
  border-top-color: #e4b9c0; }

.alert-danger .alert-link {
  color: #843534; }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }

.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }

.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }

.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }

.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }

.media:first-child {
  margin-top: 0; }

.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }

.media-object.img-thumbnail {
  max-width: none; }

.media-right,
.media > .pull-right, .progressbar
.media > .progressbar-wrapper {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd; }

.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px; }

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

a.list-group-item,
button.list-group-item {
  color: #555555; }

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333333; }

a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555555;
  background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed; }

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit; }

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777; }

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7; }

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit; }

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit; }

a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6; }

a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit; }

a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3; }

a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit; }

a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc; }

a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit; }

a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc; }

a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px; }

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px; }

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px; }

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0; }

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0; }

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0; }

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 20px; }

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px; }

.panel-group .panel + .panel {
  margin-top: 5px; }

.panel-group .panel-heading {
  border-bottom: 0; }

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd; }

.panel-group .panel-footer {
  border-top: 0; }

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd; }

.panel-default {
  border-color: #dddddd; }

.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd; }

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #dddddd; }

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333; }

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #dddddd; }

.panel-primary {
  border-color: #337ab7; }

.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7; }

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7; }

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #ffffff; }

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7; }

.panel-success {
  border-color: #d6e9c6; }

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6; }

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d; }

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1; }

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f; }

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc; }

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b; }

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1; }

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442; }

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20); }

.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out; }

.modal.in .modal-dialog {
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0); }

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90); }

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0; }

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px; }

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0; }

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

.popover.top {
  margin-top: -10px; }

.popover.right {
  margin-left: 10px; }

.popover.bottom {
  margin-top: 10px; }

.popover.left {
  margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }

.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }

.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff; }

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }

.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }

.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }

.carousel-inner > .item {
  display: none;
  position: relative;
  transition: 0.6s ease-in-out left; }

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1; }

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px; }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    transform: translate3d(100%, 0, 0);
    left: 0; }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    transform: translate3d(-100%, 0, 0);
    left: 0; }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    transform: translate3d(0, 0, 0);
    left: 0; } }

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block; }

.carousel-inner > .active {
  left: 0; }

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%; }

.carousel-inner > .next {
  left: 100%; }

.carousel-inner > .prev {
  left: -100%; }

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0; }

.carousel-inner > .active.left {
  left: -100%; }

.carousel-inner > .active.right {
  left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }

.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }

.carousel-control.right {
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }

.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90); }

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block; }

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px; }

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px; }

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif; }

.carousel-control .icon-prev:before {
  content: '\2039'; }

.carousel-control .icon-next:before {
  content: '\203a'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent; }

.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }

.carousel-caption .btn {
  text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after,
#content:before,
#content:after,
#colophon:before,
#colophon:after,
#commentform .form-group:before,
#commentform .form-group:after {
  content: " ";
  display: table; }

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after,
#content:after,
#colophon:after,
#commentform .form-group:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right, .progressbar .progressbar-wrapper {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }

@media print {
  .visible-print-block {
    display: block !important; } }

.visible-print-inline {
  display: none !important; }

@media print {
  .visible-print-inline {
    display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }

@media print {
  .visible-print-inline-block {
    display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/*
Semantic grid
*/
#content,
#colophon {
  margin-left: -15px;
  margin-right: -15px; }

#primary {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 768px) {
  #primary {
    float: left;
    width: 100%; } }

@media (min-width: 992px) {
  #primary {
    float: left;
    width: 75%; } }

@media (min-width: 1200px) {
  #primary {
    float: left;
    width: 66.66666667%; } }

#secondary {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 768px) {
  #secondary {
    float: left;
    width: 100%; } }

@media (min-width: 992px) {
  #secondary {
    float: left;
    width: 25%; } }

@media (min-width: 1200px) {
  #secondary {
    float: left;
    width: 25%; } }

@media (min-width: 1200px) {
  #secondary {
    left: 8.33333333%; } }

footer .site-info {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 1200px) {
  footer .site-info {
    float: left;
    width: 100%; } }

/*
From the original _s style.css
*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important; }

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */ }

/*
  Alignment (necessary for caption shortcode content), Thumnbails
*/
.alignleft {
  display: inline;
  float: left;
  max-width: 100%;
  margin: 0 30px 20px 0; }

.alignright {
  display: inline;
  float: right;
  max-width: 100%;
  margin: 0 0 20px 30px; }

.aligncenter,
.aligncenter .caption,
.thumbnail > a > img {
  clear: both;
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  text-align: center; }

.thumbnail > a > img,
.aligncenter .caption {
  margin: 0 auto; }

.alignnone {
  clear: both;
  max-width: 100%; }

@media (max-width: 767px) {
  .alignleft,
  .alignright {
    float: none;
    clear: both;
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    text-align: center; } }

/* =Navigation
----------------------------------------------- */
.site-content [class*="navigation"] {
  margin: 0 0 1.5em;
  overflow: hidden; }

[class*="navigation"] .nav-previous {
  float: left;
  width: 50%; }

[class*="navigation"] .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

.dropdown-submenu {
  position: relative; }

.dropdown-submenu:hover > .dropdown-menu {
  display: block; }

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -4px;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px; }

.dropdown-submenu:hover > a:after {
  border-left-color: #ffffff; }

/*
Comment form
*/
#commentform .radio,
#commentform .checkbox,
#commentform .radio-inline,
#commentform .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

#commentform .radio,
#commentform .checkbox {
  min-height: 27px; }

#commentform .form-group {
  margin-left: -15px;
  margin-right: -15px; }

@media (min-width: 768px) {
  #commentform .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

#commentform .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  #commentform .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 18px; } }

@media (min-width: 768px) {
  #commentform .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

#commentform code {
  display: block;
  white-space: normal; }

#commentform p.form-submit {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 768px) {
  #commentform p.form-submit {
    float: left;
    width: 75%; } }

@media (min-width: 768px) {
  #commentform p.form-submit {
    margin-left: 25%; } }

#commentform #submit {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

#commentform #submit:focus,
#commentform #submit:active:focus,
#commentform #submit.active:focus,
#commentform #submit.focus,
#commentform #submit:active.focus,
#commentform #submit.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

#commentform #submit:hover,
#commentform #submit:focus,
#commentform #submit.focus {
  color: #333333;
  text-decoration: none; }

#commentform #submit:active,
#commentform #submit.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

#commentform #submit.disabled,
#commentform #submit[disabled],
fieldset[disabled] #commentform #submit {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none; }

a#commentform #submit.disabled,
fieldset[disabled] a#commentform #submit {
  pointer-events: none; }

/*
Entry Footer
*/
.entry-footer > span {
  display: block; }

.btn.btn-reversed {
  background: #8d1230;
  border: 1px solid #4d0a1a;
  color: #fff;
  font-size: 1rem;
  line-height: 1.375em;
  padding: 10px;
  transition: 0.2s ease; }
  .btn.btn-reversed:hover, .btn.btn-reversed:focus, .btn.btn-reversed.focus {
    outline: none;
    background: #730f27; }

.glyphicon-chevron-down {
  top: 2px; }
  .glyphicon-chevron-down:before {
    color: transparent;
    background: url("../images/icon_open.svg") no-repeat center;
    background-size: 100%; }
    .open .glyphicon-chevron-down:before {
      background-image: url("../images/icon_close.svg"); }

.glyphicon-envelope:before {
  color: transparent;
  background: url("../images/icon_mail.svg") no-repeat center;
  background-size: 90%; }

.glyphicon-arrow-left:before {
  color: transparent;
  background: url("../images/icon_prev_page.svg") no-repeat center;
  background-size: 100%; }

.glyphicon-arrow-right:before {
  color: transparent;
  background: url("../images/icon_next_page.svg") no-repeat center;
  background-size: 100%; }

.glyphicon-trash {
  top: 0;
  width: 20px;
  height: 20px; }
  .glyphicon-trash:before {
    color: transparent;
    background: url("../images/icon_delete.svg") no-repeat center;
    background-size: 100%;
    width: 100%;
    height: 100%;
    display: inline-block; }

/*
	**************
*/
@media (max-width: 768px) {
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%; }
    html img, body img {
      max-width: 100%;
      height: auto; } }

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 0px 20px 0px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
  width: 100%; }

.alignright {
  float: right;
  margin: 0px 0 0px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 0px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

body.no-scroll {
  height: 100%;
  overflow: hidden;
  width: 100%; }

/*****
	***/
.gallery-item {
  float: left;
  margin: 10px; }

.post-password-form {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 70px; }
  .post-password-form h4.subtitle {
    color: #b7b7b7;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    margin-bottom: 20px;
    margin-top: 40px; }
  .post-password-form h4.subtitle:before {
    content: '';
    width: 45px;
    height: 1px;
    display: inline-block;
    background: #b7b7b7;
    top: -5px;
    position: relative;
    left: -10px; }
  .post-password-form .form-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
  .post-password-form input {
    background: #fff;
    color: #5f6064;
    border: 1px solid #b7b7b7;
    height: 44px;
    width: 273px;
    padding: 0 20px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 18px;
    font-weight: 300;
    outline: none;
    max-width: 273px;
    display: block;
    float: left;
    margin-bottom: 80px; }
  .post-password-form input[type="submit"] {
    border: none;
    display: block;
    text-align: center;
    background: #b7b7b7;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    width: 95px;
    height: 44px; }
    .post-password-form input[type="submit"]:hover {
      background: #5f6064; }
  .post-password-form .pass-incorrect input {
    margin-bottom: 10px; }
  .post-password-form .wrong-pass {
    font-size: 16px;
    color: #8d1230;
    padding-bottom: 28px; }

.page-id-2134 .post-password-form {
  margin-bottom: 0; }
  .page-id-2134 .post-password-form input {
    margin-bottom: 10px; }

.page-id-2134 .page-content {
  min-height: 220px; }

body {
  font-family: 'Source Sans Pro', sans-serif; }

:target {
  outline: none; }

:target:before {
  content: "";
  display: block; }

.no-scroll {
  overflow: hidden; }

a {
  color: #11a6da; }

a:hover {
  border-bottom: 1px solid #8d1230;
  text-decoration: none;
  color: #8d1230; }

a.ico-link {
  border-bottom: none; }

a.ico-link:hover {
  border-bottom: none; }

a.ico-link span {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px; }

a.ico-link:hover span {
  border-bottom: 1px solid #8d1230; }

::-webkit-input-placeholder {
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 400; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 400; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 400; }

:-ms-input-placeholder {
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 400; }

.carousel-fade .carousel-inner .item {
  transition-property: opacity; }

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0; }

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1; }

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0); }

.carousel-fade .carousel-control {
  z-index: 2; }

.sliding-u-l-r:hover {
  text-decoration: none;
  color: #8d1230; }

.sliding-u-l-r {
  display: inline-block; }

.sliding-u-l-r:after {
  content: '';
  display: block;
  height: 1px;
  width: 0;
  background: transparent;
  transition: width .5s ease, background-color .5s ease; }

.sliding-u-l-r:hover:after {
  width: 100%;
  background: #8d1230; }

.cl-www {
  background: url(../images/icon-www-small-light.svg);
  display: inline-block;
  width: 24px;
  height: 20px; }

.cl-fb:hover {
  background: url(../images/icon-www-small-white.svg); }

.cl-twitter {
  background: url(../images/icon-twitter-large-white.svg);
  display: inline-block;
  width: 30px;
  height: 24px; }

.cl-twitter:hover {
  background: url(../images/icon-twitter-large-light.svg); }

.cl-fb {
  background: url(../images/icon-fb-large-white.svg);
  display: inline-block;
  width: 10px;
  height: 24px; }

.cl-fb:hover {
  background: url(../images/icon-fb-large-light.svg); }

.cl-linkedin {
  background: url(../images/icon-linkedin-large-white.svg);
  display: inline-block;
  width: 24px;
  height: 24px; }

.cl-linkedin:hover {
  background: url(../images/icon-linkedin-large-light.svg); }

.cl-insta {
  background: url(../images/instagram_white.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 24px;
  height: 24px; }

.cl-insta:hover {
  opacity: 0.8; }

.icon_next_white {
  background: url(../images/icon_next_white.svg) no-repeat right center;
  padding-right: 20px; }

.icon_next {
  background: url(../images/icon_next.svg) no-repeat right center;
  padding-right: 20px; }

a.show-more {
  background: url(../images/icon_reveal.svg) no-repeat right center;
  padding-right: 20px; }

a.show-less {
  background: url(../images/icon_hide.svg) no-repeat right center;
  padding-right: 20px;
  background-size: 12px 6px; }

.no-padding {
  padding: 0; }

a.vertical-line {
  margin: 90px 0 30px 0;
  display: inline-block; }

a.vertical-line:before {
  content: "";
  background: #e1e1e1;
  position: absolute;
  top: 10px;
  left: 50%;
  height: 70px;
  width: 1px; }

span.underline {
  text-decoration: underline; }

/***
	HEADER
***/
.big-menu-close {
  background: url(../images/icon-menu-close.svg);
  height: 20px;
  width: 20px;
  display: block;
  float: right;
  margin-top: 30px;
  margin-right: 15px;
  cursor: pointer; }
  @media (max-width: 768px) {
    .big-menu-close {
      margin-right: 5px; } }

.big-menu {
  padding: 7px;
  background: rgba(40, 40, 43, 0.95);
  position: fixed;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  z-index: 500; }
  @media (max-width: 768px) {
    .big-menu .newsletter-wrapper > div {
      border-bottom: none !important; }
    .big-menu .newsletter-wrapper h3 {
      font-size: 16px; }
    .big-menu .newsletter-wrapper input[type="email"] {
      padding: 6px 0 7px 15px; }
    .big-menu .newsletter-wrapper .newsletter input[type="submit"] {
      height: 37px; } }

.big-menu-container {
  margin-top: 2%; }
  @media (min-width: 480px) and (max-width: 758px) {
    .big-menu-container {
      margin-top: 1%; } }
  @media (min-width: 1600px) {
    .big-menu-container {
      margin-top: 8%; } }

.big-menu .logo {
  height: 56px;
  width: auto;
  margin-top: 9px; }

.big-menu-container .row > div {
  border-bottom: 1px solid #5f6064; }

.big-menu-container .row:last-child > div {
  border: none; }

.big-menu .row > div {
  padding-top: 10px;
  padding-bottom: 15px; }
  @media (min-width: 480px) and (max-width: 758px) {
    .big-menu .row > div {
      padding-top: 8px;
      padding-bottom: 8px; } }

.big-menu .row:first-child > div {
  padding-top: 0px; }

.big-menu .row > div > div > a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-right: 40px; }

.big-menu .row > div > a:first-child {
  font-size: 32px;
  font-weight: 300;
  color: #fff; }
  @media (max-width: 768px) {
    .big-menu .row > div > a:first-child {
      font-size: 1rem; } }

.big-menu .row > div.col-md-6 > a:first-child {
  /* font-size: 24px;*/ }

.big-menu .sb a {
  margin: 45px 20px 0 0; }
  @media (max-width: 992px) {
    .big-menu .sb a {
      margin: 23px 20px 0 0; } }
  @media (max-width: 768px) {
    .big-menu .sb a {
      margin: 0 20px 0 0; } }

.big-menu .sb a:last-child {
  margin-right: 0; }

.big-menu a {
  border-bottom: 1px solid transparent; }

.big-menu a:hover {
  border-bottom: 1px solid #fff; }

.big-menu .apply {
  padding: 10px 54px;
  background: #8d1230;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  margin-top: -20px;
  float: right;
  border: none;
  margin-right: 0px !important; }
  @media (max-width: 992px) {
    .big-menu .apply {
      padding: 5px 40px;
      font-size: 16px;
      margin-top: -2px; } }

.big-menu .apply:hover {
  background: #9a1434;
  border: none; }

.big-menu h3 {
  color: #fff;
  font-weight: 300;
  margin-top: 0;
  font-size: 32px; }

.big-menu .newsletter input[type="email"] {
  background: none;
  border: 1px solid #5f6064;
  color: #fff;
  width: 75%; }

.big-menu .newsletter input[type="submit"] {
  background: #5f6064;
  border: 1px solid #5f6064;
  color: #fff;
  width: 25%; }

.big-menu .newsletter input[type="submit"]:hover {
  background: #b7b7b7;
  border: 1px solid #b7b7b7; }

.big-menu .newsletter .error {
  color: #11a6da; }
  @media (max-width: 480px) {
    .big-menu .newsletter .error {
      font-size: 11px; } }

.big-menu .newsletter div {
  margin-top: 6px; }

.big-menu .newsletter label {
  font-size: 13px;
  color: #b7b7b7;
  font-weight: 300;
  display: inline;
  position: relative;
  top: 1px; }
  @media (max-width: 480px) {
    .big-menu .newsletter label {
      font-size: 12px; } }

.big-menu .sb {
  padding-bottom: 8px !important; }

.sb-bottom {
  text-align: center;
  padding-top: 0; }
  .sb-bottom a {
    display: inline-block !important;
    margin: 10px 20px !important; }

.logo-link,
.logo-link:hover {
  text-decoration: none !important;
  border: none !important; }

header .logo {
  height: 56px;
  width: auto; }

header .navbar-brand {
  padding-top: 5px; }
  @media (max-width: 768px) {
    header .navbar-brand {
      padding-left: 22px; } }

header .navbar-brand:hover {
  border: none; }

header .logo-color {
  display: none; }

header .affix .logo-white,
header .affix-bottom .logo-white {
  display: none; }

header .affix .logo-color,
header .affix-bottom .logo-color {
  display: block; }

header .affix,
header .affix-bottom {
  z-index: 100;
  width: 100%;
  height: 90px; }

header .navbar {
  border-radius: 0;
  transition: all 200ms ease-in-out;
  height: 90px; }
  header .navbar .social-icon-color {
    display: none; }
  header .navbar .social-icon-white {
    display: block; }
  header .navbar.affix + .page-header-container {
    padding-top: 122px; }
  header .navbar.affix .social-icon-color {
    display: block; }
  header .navbar.affix .social-icon-white {
    display: none; }
  @media screen and (max-width: 992px) {
    header .navbar.affix {
      border-bottom: 1px solid rgba(225, 225, 225, 0.5); } }

header .affix .navbar-nav > li > a {
  color: #8d1230; }

header .affix-top .navbar-toggle .icon-bar {
  background: #fff; }

header .navbar-default {
  border: none;
  background: none;
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: 110; }

.home header .affix-top {
  position: fixed;
  width: 100%; }

.home header .affix, .home header .affix-bottom {
  border-bottom: 1px solid rgba(225, 225, 225, 0.5); }

.home .home-slider {
  top: 0 !important; }

header .affix,
header .affix-bottom {
  background: white;
  border-bottom: none; }
  @media (max-width: 768px) {
    header .affix,
    header .affix-bottom {
      top: 0 !important;
      position: fixed;
      margin-top: 0;
      border-top: none;
      -webkit-transform: translateZ(0); } }

header .navbar-nav {
  float: right;
  margin-top: 28px;
  padding-top: 7px; }

header .navbar-default .navbar-nav > li {
  padding: 0 10px; }
  header .navbar-default .navbar-nav > li.menu-item {
    padding: 0 20px; }
    @media screen and (max-width: 1120px) {
      header .navbar-default .navbar-nav > li.menu-item {
        padding: 0 11px; } }
    header .navbar-default .navbar-nav > li.menu-item.current-menu-item:not(.menu-item-object-custom) a {
      border-color: #fff; }
    header .navbar-default .navbar-nav > li.menu-item.parent-element a {
      border-color: #5f6064; }
    header .navbar-default .navbar-nav > li.menu-item:not(.current-menu-item) a {
      border-color: transparent; }
      header .navbar-default .navbar-nav > li.menu-item:not(.current-menu-item) a:hover {
        border-color: #5f6064; }

header .navbar-default.nav-new .navbar-nav > li.menu-item.parent-element a {
  border-color: #5f6064 !important; }
  header .navbar-default.nav-new .navbar-nav > li.menu-item.parent-element a:hover {
    border-color: #5f6064; }

header .navbar-default.nav-video .navbar-nav > li.menu-item.current-menu-item:not(.menu-item-object-custom) a {
  border-color: #5f6064; }

header .navbar-default.nav-video.affix-top .navbar-nav > li.menu-item.current-menu-item:not(.menu-item-object-custom) a {
  border-color: #fff; }

.home header .navbar-default.affix-top .navbar-nav > li.menu-item:not(.current-menu-item) a {
  border-color: transparent; }
  .home header .navbar-default.affix-top .navbar-nav > li.menu-item:not(.current-menu-item) a:hover {
    border-color: #5f6064; }

header .navbar-default.affix-top .navbar-nav > li.menu-item.current-menu-item:not(.menu-item-object-custom) a {
  border-color: #fff; }

header .navbar-default.affix .navbar-nav > li.menu-item.current-menu-item:not(.menu-item-object-custom) a {
  border-color: #5f6064; }

header .navbar-default .navbar-nav > li:last-child {
  padding-top: 2px;
  padding-right: 0; }

header.video .affix-top .navbar-nav > li.active.current-menu-item > a {
  border-color: #fff; }
  header.video .affix-top .navbar-nav > li.active.current-menu-item > a:hover {
    border-color: #fff; }

header.video .affix-top .navbar-nav > li > a:hover,
.home header .affix-top .navbar-nav > li > a:hover,
.page-template-default header .affix-top .navbar-nav > li > a:hover,
.page-template-multimedia-page header .affix-top .navbar-nav > li > a:hover {
  color: #fff !important;
  border-color: #fff !important; }

header .affix-top .navbar-nav > li.active > a:hover,
header .affix-top .navbar-nav > li > a:hover {
  color: #5f6064;
  background: none;
  border-color: #5f6064; }

header.video .affix-top .navbar-nav > li > a:hover {
  border-color: #fff;
  color: #fff; }

header.video .affix-top .navbar-nav > li.active:not(.current-menu-ancestor) > a {
  border-color: #fff;
  color: #fff; }
  header.video .affix-top .navbar-nav > li.active:not(.current-menu-ancestor) > a:hover {
    color: #fff; }

header.video .affix-top .navbar-nav > li.social-link > a:hover,
header.video .affix .navbar-nav > li.social-link > a:hover,
li.social-link > a:hover {
  text-decoration: none !important;
  border-bottom: none !important; }

header .navbar-default .navbar-nav > li > a {
  padding: 0 0 8px 0;
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid transparent; }

header .navbar-default .navbar-brand {
  padding-top: 16px; }

header .navbar-default .navbar-nav > li.active > a {
  border-bottom: 1px solid transparent; }

header .navbar-default .navbar-nav > li.active > a:hover,
header .navbar-default .navbar-nav > li > a:hover {
  background: none;
  border-bottom: 1px solid #5f6064; }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: transparent; }

header .affix .navbar-nav > li.active > a {
  border-color: transparent;
  color: #5f6064; }

header .affix .navbar-nav > li.active > a:hover,
header .affix .navbar-nav > li > a:hover {
  color: #5f6064;
  background: none;
  border-color: #5f6064; }

header .affix .navbar-nav > li > a {
  color: #5f6064; }

header .navbar-default .navbar-nav > li:last-child {
  padding-top: 0; }

header .navbar-default .navbar-nav > li > a[title="Facebook"]:hover,
header .navbar-default .navbar-nav > li > a[title="Twitter"]:hover,
header .navbar-default .navbar-nav > li > a[title="LinkedIn"]:hover,
header .navbar-default .navbar-nav > li > a[title="Facebook"]:hover {
  border-bottom: 0; }

header .show-big-menu {
  cursor: pointer;
  display: block; }
  @media (max-width: 768px) {
    header .show-big-menu {
      top: 17px;
      padding-top: 13px;
      margin-top: 7px;
      padding-bottom: 7px; } }

header .show-big-menu span {
  background: #fff;
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  display: block; }

header .affix .show-big-menu span {
  background: #5f6064; }

body > header {
  height: auto;
  background-color: #8d1230; }

body > header {
  background-image: url(../images/banner-tarcza.png);
  background-repeat: no-repeat;
  background-position: right bottom; }

.page-template-academy-apply-page > header,
.page-template-academy-page > header {
  height: 600px;
  background: none; }
  @media screen and (max-width: 1200px) {
    .page-template-academy-apply-page > header,
    .page-template-academy-page > header {
      height: auto; } }

body.home > header {
  margin-bottom: 0px; }

body.home section h1, body.home section h2 {
  color: #5f6064;
  font-size: 56px; }

.home header {
  height: auto;
  background-size: cover;
  background-position-x: center;
  background: none; }
  @media (max-width: 768px) {
    .home header {
      height: auto;
      margin-bottom: 0 !important; } }

body > header h1 {
  margin-top: 80px;
  margin-bottom: 30px;
  font-size: 75px;
  color: #fff;
  font-weight: 600; }

body.page > header h1 {
  margin-top: 75px; }

body.home > header h1 {
  margin-top: 190px; }

.txt-layer-container,
.page-header-container {
  display: flex;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  -ms-flex-align: end;
      align-items: flex-end;
  -webkit-align-items: flex-end;
  min-height: 340px; }

.txt-layer-container {
  height: 540px; }

body > header .big-title {
  font-size: 56px;
  margin-bottom: 0;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5); }

body > header .subtitle {
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
  color: #fff;
  margin-top: 12px;
  margin-bottom: 40px;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5); }

.home header .learn-more {
  background: #8d1230;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  width: 190px;
  height: 56px;
  margin-right: 10px; }
  .home header .learn-more:hover {
    background: #9a1434;
    border: none; }

header.video .learn-more {
  background: #8d1230;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  width: 190px;
  height: 56px;
  margin-right: 10px; }
  header.video .learn-more:hover {
    background: #9a1434;
    border: none; }

.home header .apply {
  background: #8d1230;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  width: 190px;
  height: 56px; }

.home header .apply:hover {
  background: #9a1434;
  border: none; }

.home-slider,
.page-slider {
  top: 0px; }
  @media (max-width: 768px) {
    .home-slider,
    .page-slider {
      margin-bottom: -58px; } }

.page-slider {
  top: -66px; }

@media (min-width: 767px) and (max-width: 768px) {
  .home-slider {
    top: -65px; } }

@media (min-width: 767px) and (max-width: 768px) {
  header .navbar-collapse .show-big-menu {
    margin-top: -12px; } }

@media (min-width: 767px) {
  header .navbar-header .show-big-menu {
    display: none; } }

.home-slider a.button {
  width: 170px;
  height: 56px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding-top: 16px; }
  @media (max-width: 768px) {
    .home-slider a.button {
      margin: 0 auto 20px; } }

.home-slider h1 {
  font-size: 56px;
  font-weight: 600;
  text-shadow: -1px 2px 8px rgba(0, 0, 0, 0.3); }
  @media (max-width: 768px) {
    .home-slider h1 {
      font-size: 35px; } }

.home-slider h1 span {
  font-size: 32px;
  font-weight: 600; }
  @media (max-width: 768px) {
    .home-slider h1 span {
      font-size: 20px; } }

.home-slider h2 {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: -1px 2px 8px rgba(0, 0, 0, 0.3); }
  @media (max-width: 768px) {
    .home-slider h2 {
      font-size: 22px;
      display: none; } }

.home-slider .item-1 h1 {
  margin-top: 145px; }
  @media (max-width: 768px) {
    .home-slider .item-1 h1 {
      margin-top: 300px; } }

.home-slider .item-2 h1 {
  margin-top: 355px; }
  @media (max-width: 768px) {
    .home-slider .item-2 h1 {
      margin-top: 338px; } }

.home-slider .item {
  height: 600px; }

.home-slider .item-1 h1, .home-slider .item-3 h1 {
  margin-top: 380px; }
  @media (max-width: 768px) {
    .home-slider .item-1 h1, .home-slider .item-3 h1 {
      margin-top: 338px; } }

.home-slider .slide-content {
  position: relative;
  height: 100%; }
  .home-slider .slide-content .slide-wrapper {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: block; }
    .home-slider .slide-content .slide-wrapper .button {
      margin-left: 0; }

.page-slider .item {
  background-position: center center;
  height: 600px;
  background-size: cover; }

.page-slider .txt-layer {
  background: rgba(40, 40, 43, 0.9);
  padding: 20px;
  border-radius: 4px;
  z-index: 100; }

.page-slider .txt-layer h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  margin-top: 0; }

.page-slider .txt-layer span {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  display: block; }
  @media (max-width: 768px) {
    .page-slider .txt-layer span {
      display: none; } }

.page-slider .txt-layer a {
  margin-top: 5px;
  color: #11a6da;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  border-bottom: 1px solid transparent;
  z-index: 100; }

.page-slider .txt-layer a:hover {
  border-bottom-color: #11a6da; }

.home-slider .item {
  background-position: center center;
  height: 540px;
  background-size: cover; }
  @media (max-width: 768px) {
    .home-slider .item {
      height: 370px; } }

.carousel-control {
  background: none;
  width: 6%; }
  @media (max-width: 768px) {
    .carousel-control {
      width: 15%;
      display: none; } }

.carousel-control:hover {
  border: none; }

.carousel-control.right {
  background: url(../images/banner-next.svg) no-repeat center center; }

.carousel-control.left {
  background: url(../images/banner-prev.svg) no-repeat center center; }

.carousel-indicators {
  bottom: 8px; }

.carousel-indicators li {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  border: none;
  margin-left: 8px;
  margin-right: 8px; }

.carousel-indicators .active {
  margin: 1px 0;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  margin-left: 8px;
  margin-right: 8px; }

/***
	/ HEADER
***/
section {
  padding: 30px 0 30px 0; }
  @media (min-width: 992px) {
    section {
      padding: 75px 0 150px 0; } }

section h2 {
  font-size: 32px;
  font-weight: 300;
  color: #5f6064;
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    section h2 {
      font-size: 32px; } }

section .subtitle {
  font-size: 24px;
  font-weight: 300;
  color: #5f6064;
  text-align: left;
  display: inline-block;
  width: 100%; }
  @media (max-width: 768px) {
    section .subtitle {
      font-size: 1.250rem; } }
  @media (max-width: 480px) {
    section .subtitle {
      font-size: 1rem; } }

section.about {
  margin-top: 0px;
  padding-bottom: 40px; }
  @media screen and (max-width: 768px) {
    section.about {
      margin-top: 100px; } }

section.about .read-more {
  margin-top: 30px;
  display: inline-block; }
  @media (max-width: 768px) {
    section.about .read-more {
      float: none;
      display: inline-block; } }

section.about .vline:before {
  bottom: 50px;
  top: auto; }
  @media (max-width: 768px) {
    section.about .vline:before {
      display: none; } }

section.about .social-container {
  margin-top: 130px; }
  @media (max-width: 768px) {
    section.about .social-container {
      margin-top: 50px; } }

section.about .social-container a {
  margin: 0 15px; }

section.about .social-container a:hover .fa {
  color: #5f6064; }

section.about .social-container a.cl-fb {
  background: url(../images/icon-fb-color-off.svg);
  display: inline-block;
  width: 10px;
  height: 24px; }

section.about .social-container a.cl-fb:hover {
  background: url(../images/icon-fb-color-on.svg); }

section.about .social-container a.cl-twitter {
  background: url(../images/icon-twitter-color-off.svg);
  display: inline-block;
  width: 30px;
  height: 24px; }

section.about .social-container a.cl-twitter:hover {
  background: url(../images/icon-twitter-color-on.svg); }

section.about .social-container a.cl-linkedin {
  background: url(../images/icon-linkedin-color-off.svg);
  display: inline-block;
  width: 24px;
  height: 24px; }

section.about .social-container a.cl-linkedin:hover {
  background: url(../images/icon-linkedin-color-on.svg); }

section.news {
  padding-bottom: 40px; }
  @media (max-width: 480px) {
    section.news {
      padding-top: 0; } }

section.news .row:first-child {
  margin-bottom: 20px; }

section.news .item {
  background: #f7f7f7;
  padding: 30px;
  margin-bottom: 15px;
  min-height: 230px;
  display: table; }
  @media (max-width: 480px) {
    section.news .item {
      margin-bottom: 30px;
      padding-bottom: 15px; } }
  section.news .item:hover {
    border: none;
    text-decoration: none; }
  section.news .item .read-more:hover {
    text-decoration: underline; }
  section.news .item .item-text-wrapper {
    display: table-cell;
    width: 100%;
    min-height: 170px;
    vertical-align: middle; }
  section.news .item .item-title {
    margin-top: 0;
    text-decoration: none !important; }
  section.news .item.has-thumbnail .item-text-wrapper {
    width: 69%; }

section.news .item-image {
  display: table-cell;
  width: 35%; }
  @media (max-width: 480px) {
    section.news .item-image {
      display: table-row;
      width: 100%; } }
  @media (min-width: 480px) and (max-width: 768px) {
    section.news .item-image {
      width: 50%; } }
  section.news .item-image img {
    max-width: 95%;
    height: auto; }
    @media (max-width: 480px) {
      section.news .item-image img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto 20px;
        max-width: 100%; } }
    @media (min-width: 480px) and (max-width: 768px) {
      section.news .item-image img {
        display: block;
        width: 90%; } }

section.news .item h3 {
  font-size: 24px;
  font-weight: 300;
  color: #5f6064; }
  @media (max-width: 768px) {
    section.news .item h3 {
      font-size: 1.25rem; } }

section.news .newsletter-subtitle {
  font-size: 17px;
  text-align: center; }

#newsletterModal h4.h-newsletter,
section.news h4.h-newsletter,
.newsletter-webinar h4.h-newsletter {
  margin-top: 90px;
  color: #8d1230;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px; }
  @media (max-width: 480px) {
    #newsletterModal h4.h-newsletter,
    section.news h4.h-newsletter,
    .newsletter-webinar h4.h-newsletter {
      margin-top: 10px;
      margin-bottom: 40px; } }
  @media (max-width: 768px) {
    #newsletterModal h4.h-newsletter,
    section.news h4.h-newsletter,
    .newsletter-webinar h4.h-newsletter {
      margin-top: 30px;
      margin-bottom: 40px; } }

.newsletter-webinar h4.h-newsletter {
  margin-bottom: 0; }

#newsletterModal h4.h-newsletter {
  margin-top: 0; }

#newsletterModal .newsletter div,
section.news .newsletter div {
  max-width: 360px;
  margin: 10px auto;
  text-align: left; }
  @media (max-width: 480px) {
    #newsletterModal .newsletter div,
    section.news .newsletter div {
      max-width: 270px; } }

#newsletterModal .newsletter div label,
section.news .newsletter div label {
  display: inline;
  font-weight: 300;
  font-size: 13px;
  position: relative;
  top: 1px;
  color: #b7b7b7; }

#newsletterModal h4.h-newsletter:before,
section.news h4.h-newsletter:before {
  bottom: 280px;
  top: auto; }
  @media (max-width: 768px) {
    #newsletterModal h4.h-newsletter:before,
    section.news h4.h-newsletter:before {
      display: none; } }

#webinarform {
  max-width: 360px;
  margin: 0 auto;
  position: relative; }

.newsletter-webinar {
  text-align: center;
  position: relative;
  margin-top: 110px; }

.newsletter-webinar div {
  max-width: 360px;
  margin: 30px auto 10px;
  text-align: left;
  position: relative; }
  @media (max-width: 480px) {
    .newsletter-webinar div {
      max-width: 270px; } }

.newsletter-webinar div label {
  display: inline;
  font-weight: 300;
  font-size: 13px;
  top: 1px;
  color: #b7b7b7; }

.newsletter-webinar h4.h-newsletter:before {
  bottom: auto;
  top: -85px; }
  @media (max-width: 768px) {
    .newsletter-webinar h4.h-newsletter:before {
      display: none; } }

#newsletterModal h4.h-newsletter:before {
  display: none; }

.newsletter input[type="email"],
.newsletter-webinar input[type="email"] {
  border: 1px solid #b7b7b7;
  border-radius: 5px 0px  0 5px;
  padding: 10px 0 11px 15px;
  width: 270px;
  color: #5f6064;
  font-size: 16px;
  outline: none;
  position: relative; }
  @media (max-width: 480px) {
    .newsletter input[type="email"],
    .newsletter-webinar input[type="email"] {
      width: 180px;
      margin-top: 15px; } }

#webinarform label.error {
  border-left: 5px solid #8d1230;
  padding-left: 10px;
  font-size: 12px;
  font-weight: normal;
  color: #5f6064; }

#webinarform > label.error {
  position: absolute;
  top: 52px;
  left: 0; }

#webinarform > div label.error {
  position: absolute;
  bottom: -30px;
  display: block;
  top: auto; }

.newsletter input[type="submit"],
.newsletter-webinar input[type="submit"] {
  background: #b7b7b7;
  border: none;
  color: #fff;
  height: 45px;
  width: 90px;
  border-radius: 0 5px 5px 0;
  margin-left: -3px;
  font-size: 16px;
  outline: none; }

.newsletter input[type="submit"]:hover,
.newsletter-webinar input[type="submit"]:hover {
  background: #5f6064; }

.newsletter-subtitle {
  margin: 0; }

.newsletter-webinar span.error,
.newsletter .error {
  font-size: 16px;
  color: #8d1230;
  margin-top: 10px;
  margin-bottom: 5px;
  display: inline-block;
  opacity: 0; }
  @media (max-width: 480px) {
    .news-newsletter .newsletter-webinar span.error, .news-newsletter
    .newsletter .error {
      margin-bottom: 0px; }
      .news-newsletter .newsletter-webinar span.error.shown, .news-newsletter
      .newsletter .error.shown {
        display: block; } }

.newsletter-webinar span.error.success {
  color: #11a6da; }

footer .newsletter .error {
  color: #11a6da; }

.newsletter-webinar input.success,
.newsletter input.success {
  background-color: #11a6da !important;
  border-color: #11a6da !important;
  background-image: url(../images/icon-newsletter-sent.svg) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  text-indent: 9999px !important; }

#newsletterModal .modal-dialog {
  margin-top: 0;
  margin-bottom: 0;
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center; }

#newsletterModal .modal.fade .modal-dialog {
  transform: translate(0, -100%); }

#newsletterModal .modal.in .modal-dialog {
  transform: translate(0, 0); }

#newsletterModal .modal-header {
  border: none; }

#newsletterModal .newsletter-subtitle {
  font-weight: 300;
  font-size: 17px; }

#newsletterModal .modal-footer {
  border: none; }

#newsletterModal .social-container a {
  margin-left: 45px; }

#newsletterModal .social-container .cl-fb {
  background-image: url(../images/icon_bio_facebook_off.svg);
  width: 8px;
  height: 20px; }
  #newsletterModal .social-container .cl-fb:hover {
    background-image: url(../images/icon_bio_facebook_on.svg); }

#newsletterModal .social-container .cl-www {
  background-image: url(../images/icon_bio_www_off.svg);
  width: 24px;
  height: 20px; }
  #newsletterModal .social-container .cl-www:hover {
    background-image: url(../images/icon_bio_www_on.svg); }

#newsletterModal .social-container .cl-twitter {
  background-image: url(../images/icon_bio_twitter_off.svg);
  width: 26px;
  height: 20px; }
  #newsletterModal .social-container .cl-twitter:hover {
    background-image: url(../images/icon_bio_twitter_on.svg); }

#newsletterModal .social-container .cl-linkedin {
  background-image: url(../images/icon_bio_linkedin_off.svg);
  width: 20px;
  height: 20px; }
  #newsletterModal .social-container .cl-linkedin:hover {
    background-image: url(../images/icon_bio_linkedin_on.svg); }

#newsletterModal .social-container .cl-insta {
  background-image: url(../images/instagram.png);
  width: 24px;
  height: 24px; }
  #newsletterModal .social-container .cl-insta:hover {
    background-image: url(../images/instagram.png); }

@media (max-width: 480px) {
  #newsletterModal .social-container {
    position: relative;
    text-align: center; }
    #newsletterModal .social-container a {
      margin: 15px; } }

#newsletterModal .social-container a.cl-fb {
  background: url(../images/icon-fb-color-off.svg);
  display: inline-block;
  width: 10px;
  height: 24px;
  margin-left: 0; }

#newsletterModal .social-container a.cl-fb:hover {
  background: url(../images/icon-fb-color-on.svg); }

#newsletterModal .social-container a.cl-twitter {
  background: url(../images/icon-twitter-color-off.svg);
  display: inline-block;
  width: 30px;
  height: 24px; }

#newsletterModal .social-container a.cl-twitter:hover {
  background: url(../images/icon-twitter-color-on.svg); }

#newsletterModal .social-container a.cl-linkedin {
  background: url(../images/icon-linkedin-color-off.svg);
  display: inline-block;
  width: 24px;
  height: 24px; }

#newsletterModal .social-container a.cl-linkedin:hover {
  background: url(../images/icon-linkedin-color-on.svg); }

.read-more {
  color: #8d1230;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid transparent; }
  @media (max-width: 480px) {
    .read-more {
      font-size: 1rem; } }

.read-more .fa {
  font-size: 16px;
  margin-left: 10px; }

section.methodology {
  padding-bottom: 40px; }
  @media (max-width: 480px) {
    section.methodology {
      padding-bottom: 0; } }
  @media (min-width: 480px) and (max-width: 768px) {
    section.methodology {
      padding-top: 0;
      margin-top: -20px; } }

section.methodology .row:first-child {
  margin-bottom: 40px; }

section.methodology .read-more {
  line-height: 24px;
  margin-top: 90px;
  display: inline-block;
  background: url(../images/icon_pdf.svg) no-repeat;
  padding: 4px 35px 4px 0;
  background-position: right 0px; }

section.methodology .read-more:hover {
  background: url(../images/icon_pdf_hover.svg) no-repeat;
  background-position: right 0px; }

section.methodology .read-more:before {
  top: 10px; }

section.methodology .methodology-label {
  background: #f7f7f7;
  height: 125px;
  padding-right: 15px;
  margin-bottom: 10px;
  border-left: 20px solid #11a6da;
  border-radius: 4px;
  padding-top: 10px; }
  @media (max-width: 768px) {
    section.methodology .methodology-label {
      height: auto;
      text-align: left;
      padding-bottom: 10px;
      padding-left: 20px; } }

section.methodology .methodology-label h2 {
  color: #5f6064;
  text-align: right;
  font-size: 32px;
  font-weight: 300;
  margin-top: 0px; }
  @media (max-width: 768px) {
    section.methodology .methodology-label h2 {
      text-align: left;
      margin-bottom: 5px; } }
  @media (max-width: 480px) {
    section.methodology .methodology-label h2 {
      font-size: 2rem; } }

section.methodology p {
  color: #5f6064;
  font-size: 18px;
  font-weight: 400;
  padding: 15px 0 0 15px; }
  @media (max-width: 768px) {
    section.methodology p {
      padding-left: 0;
      margin-bottom: 30px; } }

section.non-profit {
  padding-bottom: 40px; }

section.non-profit .vline:before {
  top: 40px; }

section.non-profit .read-more {
  margin-top: 130px;
  display: inline-block; }

@media (min-width: 1200px) {
  section.non-profit .col-md-6 {
    padding: 0 100px; } }

section.non-profit .col-md-6 h3 {
  color: #8d1230;
  font-size: 32px;
  font-weight: 300;
  margin-top: 85px;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    section.non-profit .col-md-6 h3 {
      margin-top: 45px; } }

section.non-profit h3 {
  color: #a1a1a1;
  font-size: 24px;
  font-weight: 600;
  margin-top: 85px;
  margin-bottom: 50px; }

section.non-profit p {
  font-size: 18px;
  color: #5f6064; }

section.services {
  padding-bottom: 40px; }

section.services .row:first-child {
  margin-bottom: 70px; }
  @media (max-width: 768px) {
    section.services .row:first-child {
      margin-bottom: 30px; } }

section.services .row:nth-child(2) > div {
  padding-bottom: 35px; }
  @media (max-width: 768px) {
    section.services .row:nth-child(2) > div {
      padding-top: 35px;
      padding-bottom: 0; } }

section.services .row:nth-child(3) > div {
  padding-top: 35px; }

@media (min-width: 1200px) {
  section.services .service {
    padding: 0 100px; } }

section.services .read-more {
  margin-top: 135px;
  display: inline-block; }

.service-2:after {
  content: "";
  background: #e1e1e1;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  width: 1px; }
  @media (max-width: 768px) {
    .service-2:after {
      display: none; } }

.service-3:after {
  content: "";
  background: #e1e1e1;
  position: absolute;
  top: 0px;
  right: -1px;
  height: 50px;
  width: 1px; }
  @media (max-width: 768px) {
    .service-3:after {
      display: none; } }

.service-1:before {
  content: "";
  background: #e1e1e1;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 50px; }
  @media (max-width: 768px) {
    .service-1:before {
      display: none; } }

.service-4:before {
  content: "";
  background: #e1e1e1;
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 50px; }
  @media (max-width: 768px) {
    .service-4:before {
      display: none; } }

section.services h3 {
  background: url(http://cl.indelso.ovh/wp-content/uploads/2016/05/bc-ico.png) no-repeat;
  color: #8d1230;
  font-size: 32px;
  font-weight: 300;
  padding: 2px 0 0 100px;
  min-height: 75px;
  margin-bottom: 40px; }
  @media (max-width: 768px) {
    section.services h3 {
      font-size: 1.5rem;
      background-size: 60px 60px !important;
      background-position: 10px top !important; } }

section.services p {
  color: #5f6064;
  font-size: 18px; }

section.trust {
  padding-bottom: 40px; }

section.trust h3 {
  color: #b7b7b7;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 40px 0; }

section.trust h3.lap-partners {
  margin-top: 30px;
  margin-bottom: 60px; }

section.trust .row:first-child {
  margin-bottom: 70px; }
  @media (max-width: 480px) {
    section.trust .row:first-child {
      margin-bottom: 30px; } }

section.trust .partner-logo {
  min-height: 115px; }
  @media (max-width: 768px) {
    section.trust .partner-logo {
      min-height: 90px; } }

section.trust .partner-logo img {
  max-width: 160px;
  max-height: 70px; }
  @media (max-width: 480px) {
    section.trust .partner-logo img {
      max-width: 100%; } }

section.trust .read-more {
  margin-top: 80px;
  display: inline-block; }

section.trust .read-more:before {
  top: -10px; }

section.people {
  padding: 75px 0 10px 0; }
  @media (max-width: 768px) {
    section.people {
      padding-top: 0; } }

section.people .big {
  margin-top: 15px;
  margin-bottom: 25px; }
  @media (max-width: 992px) {
    section.people .big .social-links {
      text-align: center;
      margin-bottom: 40px; }
      section.people .big .social-links .social {
        display: inline-block;
        margin: 0 10px; } }

section.people .big img {
  border-radius: 4px;
  max-width: 100%;
  height: auto; }
  @media (max-width: 992px) {
    section.people .big img {
      display: block;
      margin: 0 auto 20px; } }

section.people .big h3 {
  font-size: 32px;
  font-weight: 300;
  color: #5f6064;
  margin-top: 30px;
  margin-bottom: 5px; }

section.people h4 {
  color: #b7b7b7;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 35px;
  padding-left: 15px;
  margin-bottom: 20px;
  text-transform: uppercase; }

section.people .big span {
  font-size: 18px;
  font-weight: 600;
  color: #5f6064;
  min-height: 50px;
  display: block; }

section.people .big p {
  margin-top: 0px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
  color: #5f6064;
  min-height: 200px; }
  @media (max-width: 768px) {
    section.people .big p {
      margin-bottom: 10px;
      min-height: auto; } }

section.people .big .social {
  color: #b7b7b7;
  font-size: 22px;
  margin-right: 40px; }

.big .cl-www {
  background: url(../images/icon-www-small-light.svg) no-repeat;
  height: 20px;
  width: 24px; }

.big .cl-www:hover {
  background: url(../images/icon-www-small-dark.svg) no-repeat; }

.big .cl-fb {
  background: url(../images/icon-fb-small-light.svg) no-repeat;
  height: 20px;
  width: 8px; }

.big .cl-fb:hover {
  background: url(../images/icon-fb-small-dark.svg) no-repeat; }

.big .cl-twitter {
  background: url(../images/icon-twitter-small-light.svg) no-repeat;
  height: 20px;
  width: 26px; }

.big .cl-twitter:hover {
  background: url(../images/icon-twitter-small-dark.svg) no-repeat; }

.big .cl-linkedin {
  background: url(../images/icon-linkedin-small-light.svg) no-repeat;
  height: 20px;
  width: 20px; }

.big .cl-linkedin:hover {
  background: url(../images/icon-linkedin-small-dark.svg) no-repeat; }

section.people .big .social:hover {
  color: #5f6064; }

section.people .small {
  margin-top: 15px; }
  section.people .small.photo {
    padding-right: 0px; }

section.people .small img {
  border-radius: 4px; }

section.people .small h3 {
  font-size: 18px;
  font-weight: 400;
  color: #5f6064;
  margin-top: 0; }

section.people .people-small {
  position: relative; }
  section.people .people-small > .col-md-3 {
    min-height: 128px;
    margin-bottom: 85px; }
    @media (max-width: 480px) {
      section.people .people-small > .col-md-3 {
        min-height: 330px;
        margin-bottom: 30px; } }
    section.people .people-small > .col-md-3 .meta {
      padding-left: 20px; }
      @media (max-width: 480px) {
        section.people .people-small > .col-md-3 .meta {
          padding-left: 15px;
          min-height: 70px; } }

section.people .people-small .col-md-3 {
  padding: 0; }

section.people .small span {
  font-size: 14px;
  font-weight: 600;
  color: #5f6064;
  display: inline-block;
  line-height: 16px; }

section.people .people-small .gradient {
  position: absolute;
  bottom: 35px;
  width: 100%;
  height: 265px;
  z-index: 99;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100 &0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */ }

section.people .see-all {
  color: #8d1230;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin-top: 55px; }
  @media (max-width: 768px) {
    section.people .see-all {
      margin-top: 140px; } }
  @media (max-width: 480px) {
    section.people .see-all {
      margin-top: 80px; } }

section.people .see-all .fa {
  font-size: 14px;
  margin-left: 15px; }

.vline:before,
section.people .see-all:before {
  content: "";
  background: #e1e1e1;
  position: absolute;
  top: 50px;
  left: 50%;
  height: 70px;
  width: 1px; }

section.people .see-all:before {
  top: -35px; }
  @media (max-width: 480px) {
    section.people .see-all:before {
      top: 0; } }

section.contact {
  background: #fff;
  padding-bottom: 88px;
  font-size: 24px;
  color: #5f6064;
  min-height: 800px; }
  @media (max-width: 768px) {
    section.contact {
      min-height: auto;
      padding-top: 30px; } }
  section.contact h2 {
    font-size: 32px;
    font-weight: 300;
    color: #5f6064; }
    @media (max-width: 768px) {
      section.contact h2 {
        font-size: 2.0rem; } }
  section.contact span.info {
    font-weight: 300;
    display: inline-block;
    text-align: left;
    margin: 0px 0 40px 0; }
    @media (max-width: 768px) {
      section.contact span.info {
        font-size: 1.25rem; } }
  section.contact span.wpcf7-not-valid-tip {
    color: #8d1230;
    font-size: 16px;
    text-align: left;
    padding-left: 20px; }
  section.contact div.wpcf7 {
    text-align: center; }
    @media (max-width: 768px) {
      section.contact div.wpcf7 {
        text-align: left; } }
    section.contact div.wpcf7-not-valid {
      border-left: 5px solid #8d1230; }
    section.contact div.wpcf7 img.ajax-loader {
      padding: 20px 92px;
      border-radius: 3px;
      margin: 0;
      background: #f7f7f7;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: auto; }
      section.contact div.wpcf7 img.ajax-loader[style="visibility: hidden;"] {
        pointer-events: none; }
    section.contact div.wpcf7 .wpcf7-form > p {
      position: relative; }
  section.contact label {
    font-size: 16px;
    font-weight: 400;
    color: #5f6064;
    text-align: left;
    float: left;
    margin-left: 30px;
    margin-bottom: 0px; }
  section.contact .field-container {
    padding: 0 15px; }
    @media (max-width: 768px) {
      section.contact .field-container {
        padding-left: 30px;
        padding-right: 30px; } }
    section.contact .field-container .half {
      width: calc(50% - 15px);
      float: left;
      margin-bottom: 15px;
      max-width: 100%;
      margin-right: 15px; }
      section.contact .field-container .half:nth-of-type(2n) {
        width: 50%;
        margin-right: 0; }
    section.contact .field-container .full {
      margin-bottom: 15px;
      clear: both; }
  section.contact input {
    background: #f7f7f7;
    color: #5f6064;
    border: none;
    height: 44px;
    width: 100%;
    margin: 0px 15px  0 0px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 300;
    outline: none;
    max-width: 100%; }
    @media (max-width: 768px) {
      section.contact input {
        margin-left: 0;
        text-align: left; } }
  section.contact select {
    width: 100%;
    max-width: 100%;
    height: 44px;
    color: #5f6064;
    border: none;
    background-color: #f7f7f7;
    margin-top: 0px;
    font-size: 18px;
    font-weight: 300;
    padding: inherit 15px;
    appearance: none;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    background-image: url(../images/icon_reveal.svg);
    background-repeat: no-repeat;
    background-position: 95% center;
    text-indent: 0px; }
  section.contact textarea {
    color: #5f6064;
    border: none;
    width: 100%;
    height: 88px;
    min-height: 88px;
    margin-top: 0px;
    padding: 20px;
    resize: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 300;
    outline: none;
    background: #f7f7f7;
    max-width: 100%; }
  section.contact select,
  section.contact input,
  section.contact textarea {
    border: 1px solid #fff;
    outline: none; }
    section.contact select:focus,
    section.contact input:focus,
    section.contact textarea:focus {
      border: 1px solid #11a6da; }
  section.contact .wpcf7-submit {
    display: block;
    text-align: center;
    background: #8d1230;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin: 20px auto 0px auto;
    border-radius: 4px;
    width: 200px;
    height: 56px; }
    section.contact .wpcf7-submit:hover {
      background: #9a1434; }
  section.contact .wpcf7-response-output,
  section.contact .wpcf7-validation-errors {
    margin-top: 0;
    border: none;
    color: #8d1230;
    font-size: 16px; }
  section.contact .wpcf7-mail-sent-ok {
    color: #11a6da; }
  section.contact .wpcf7-form.sent .wpcf7-submit {
    background-color: #11a6da !important;
    background-image: url(../images/icon-newsletter-sent.svg) !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    text-indent: 9999px !important; }

section.contact ::-webkit-input-placeholder {
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 300; }

section.contact :-moz-placeholder {
  /* Firefox 18- */
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 300; }

section.contact ::-moz-placeholder {
  /* Firefox 19+ */
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 300; }

section.contact :-ms-input-placeholder {
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 300; }

body > footer {
  background: #28282b;
  padding-top: 90px; }
  @media (max-width: 768px) {
    body > footer {
      padding-top: 30px; }
      body > footer .col-md-3 {
        margin-bottom: 50px; }
      body > footer #text-5 {
        margin-bottom: 0; }
      body > footer #text-4 {
        text-align: center; }
        body > footer #text-4 h4, body > footer #text-4 p {
          text-align: left; }
        body > footer #text-4 p {
          margin-bottom: 30px; }
      body > footer .newsletter {
        text-align: center; } }

body > footer h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 23px; }

body > footer p {
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 15px; }

body > footer a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid transparent; }

body > footer a:hover {
  color: #fff;
  border-bottom: 1px solid #fff; }

a.social:hover {
  border: 0; }

body > footer a.donors {
  margin-bottom: 15px;
  display: inline-block; }

body > footer a .fa-chevron-right {
  margin-left: 10px;
  font-size: 13px; }

body > footer a.social {
  font-size: 26px;
  margin-right: 35px; }
  @media (max-width: 480px) {
    body > footer a.social {
      margin: 0 20px; } }

body > footer a.cl-twitter {
  margin-left: 10px; }

body > footer .footer-bottom {
  margin-top: 70px;
  background: #18191b;
  text-align: center;
  padding: 20px 0px; }
  @media (max-width: 768px) {
    body > footer .footer-bottom {
      margin-top: 0; } }

body > footer .prefooter:not([style*="display: none"]) + .footer-bottom {
  padding-bottom: 84px; }

body > footer .footer-bottom span {
  padding: 9px 10px 9px;
  display: block; }
  @media (min-width: 992px) {
    body > footer .footer-bottom span {
      padding-right: 50px;
      border-right: 1px solid #5f6064;
      display: inline-block;
      margin-right: 50px; } }

body > footer .footer-bottom,
body > footer .footer-bottom a {
  color: #5f6064;
  font-weight: 400;
  font-size: 18px; }

body > footer .sliding-u-l-r:hover {
  color: #fff; }

body > footer .sliding-u-l-r:after {
  background: #fff; }

body > footer .sliding-u-l-r:hover:after {
  background: #fff; }

body > footer .newsletter input[type="email"] {
  border: 1px solid #5f6064;
  border-radius: 5px 0px  0 5px;
  padding: 10px 0 11px 15px;
  width: 172px;
  color: #fff;
  font-size: 16px;
  background: none; }
  @media (min-width: 992px) and (max-width: 1200px) {
    body > footer .newsletter input[type="email"] {
      width: 140px; } }

body > footer .newsletter input[type="submit"] {
  background: #5f6064;
  border: none;
  color: #fff;
  height: 45px;
  width: 90px;
  border-radius: 0 5px 5px 0;
  margin-left: -3px; }
  @media (min-width: 992px) and (max-width: 1200px) {
    body > footer .newsletter input[type="submit"] {
      width: 60px; } }

body > footer .newsletter input[type="submit"]:hover {
  background: #b7b7b7; }

body > footer ::-webkit-input-placeholder {
  color: #b7b7b7;
  font-size: 16px; }

body > footer :-moz-placeholder {
  /* Firefox 18- */
  color: #b7b7b7;
  font-size: 16px; }

body > footer ::-moz-placeholder {
  /* Firefox 19+ */
  color: #b7b7b7;
  font-size: 16px; }

body > footer :-ms-input-placeholder {
  color: #b7b7b7;
  font-size: 16px; }

body > footer .newsletter div {
  margin-top: 6px; }

body > footer .newsletter label {
  color: #b7b7b7;
  display: inline;
  font-weight: 300;
  font-size: 12px;
  position: relative;
  top: 1px; }

@media (max-width: 1200px) {
  .single > header,
  .archive > header,
  .page > header {
    margin-bottom: 0; } }

/* CTA Notification */
.cta-notification {
  position: relative;
  background: #11a6da;
  min-height: 52px;
  width: 100%;
  font-size: 18px;
  line-height: 36px;
  padding: 8px 0;
  margin-top: -120px;
  margin-bottom: 120px; }
  @media (max-width: 1200px) {
    .cta-notification {
      margin-bottom: 0;
      margin-top: 0; } }

.cta-notification .row {
  margin: 0; }

.cta-notification p {
  color: #fff;
  margin: 0; }

.cta-notification .btn {
  background: transparent;
  height: 36px;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 34px;
  color: #fff;
  font-weight: 600;
  vertical-align: top;
  padding: 0 16px;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 16px; }

.cta-notification .btn:hover,
.cta-notification .btn:active {
  background: #fff;
  color: #11a6da; }

.side-menu.affix,
.side-menu.affix-bottom {
  top: 120px;
  width: 262px;
  z-index: 99;
  position: fixed !important; }
  @media (max-width: 1200px) {
    .side-menu.affix,
    .side-menu.affix-bottom {
      border-radius: 0;
      top: 90px !important;
      width: 100%;
      height: 50px;
      overflow: hidden;
      position: relative !important; } }

.side-menu .nav > div {
  display: inline; }

.side-menu a {
  color: #5f6064;
  -webkit-tap-highlight-color: #8d1230; }

.side-menu .nav > li > a {
  display: inline; }

.side-menu .nav > li > a {
  padding: 0; }

@media (max-width: 768px) {
  .side-menu .nav > li {
    line-height: 0.5em; } }

.side-menu .nav > li > a:hover,
.side-menu .nav > li > a:focus,
.side-menu a:hover {
  color: #8d1230;
  background: none; }

.side-menu a.current-menu-item {
  color: #8d1230;
  font-weight: 600; }

.side-menu a:active {
  color: #8d1230;
  background: none;
  border-bottom: 1px solid #8d1230; }

.side-menu,
.people-side {
  background: #f7f7f7;
  padding: 0 25px;
  border-radius: 4px;
  width: 262px; }

.side-menu ul,
.people-side ul {
  padding-left: 0; }

.people-side ul {
  margin-bottom: 0; }

.side-menu ul > div > ul,
.people-side ul > div > ul,
.side-menu ul > ul,
.people-side ul > ul {
  padding-left: 15px; }

.side-menu li,
.people-side li {
  list-style-type: none;
  font-size: 18px;
  color: #5f6064;
  margin-bottom: 6px;
  padding: 0; }

.side-menu li:last-child {
  padding-bottom: 10px; }

.side-menu li a {
  font-size: 18px; }
  @media (max-width: 768px) {
    .side-menu li a {
      font-size: 15px; } }

.people-side > ul > ul > li {
  margin-bottom: 6px;
  font-size: 16px; }
  @media (max-width: 768px) {
    .people-side > ul > ul > li {
      margin-bottom: 3px; } }

.people-side > ul > ul > li:first-child {
  margin-top: 9px; }

.people-side > ul > ul > li:last-child {
  margin-bottom: 10px; }

.people-side > ul > li:first-child {
  color: #8d1230; }

.side-menu h2,
.people-side h2 {
  margin-bottom: 10px;
  margin-top: 0px;
  color: #b7b7b7;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase; }
  @media (max-width: 1200px) {
    .side-menu h2,
    .people-side h2 {
      display: none; } }

/* People side special */
.people-side > ul li.apply,
.people-side > ul li.download {
  background: #11a6da;
  padding: 8px 24px;
  margin: 0 -25px; }
  @media (max-width: 768px) {
    .people-side > ul li.apply,
    .people-side > ul li.download {
      /*display: none; */ } }

.people-side > ul > li.apply {
  padding-bottom: 0;
  display: none; }

.people-side > ul > li.apply a {
  display: block;
  width: 100%;
  height: 36px;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 34px;
  color: #fff;
  font-weight: 600;
  padding: 0 16px;
  border: 1px solid #fff;
  border-radius: 4px; }

.people-side > ul > li.apply a:hover,
.people-side > ul > li.apply a:active {
  background: #fff;
  color: #11a6da; }

.people-side > ul > li.download {
  text-align: center;
  border-radius: 0 0 4px 4px; }

.people-side > ul > li.download a {
  background: transparent url(../images/icon_pdf_white.svg) right center no-repeat;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  padding-right: 30px;
  border: 0 none; }

.people-side > ul > li.download a:hover {
  background: transparent url(../images/icon_pdf_white_hover.svg) right center no-repeat;
  color: #fff;
  border: 0 none; }

.people-side > ul > li.download a span {
  border-bottom: 1px solid transparent; }

.people-side > ul > li.download a:hover span {
  border-color: #fff; }

@media (max-width: 1200px) {
  .side-menu-container {
    padding: 0; } }

.side-menu {
  padding: 15px 25px 5px 25px; }
  @media (max-width: 1200px) {
    .side-menu {
      width: 100%;
      height: 50px;
      overflow: hidden;
      margin-bottom: 20px;
      left: 0; } }
  @media (max-width: 1200px) {
    .side-menu .menu-bar {
      width: 100%;
      height: 40px;
      background: #f7f7f7; }
      .side-menu .menu-bar span {
        float: right;
        color: #8d1230;
        font-size: 16px;
        background-image: url(../images/icon_reveal.svg);
        background-repeat: no-repeat;
        background-position: right center;
        padding-right: 20px; }
      .side-menu .menu-bar h4 {
        display: inline-block;
        text-transform: uppercase;
        margin: 0;
        color: #b7b7b7; } }
  .side-menu.open {
    height: auto; }
    .side-menu.open .menu-bar span {
      background-image: url(../images/icon_close.svg); }

@media screen and (max-width: 992px) {
  .sub-menu .menu-bar {
    padding: 15px 25px 15px 25px;
    width: 100%;
    background: #f7f7f7; }
    .sub-menu .menu-bar span {
      float: right;
      color: #8d1230;
      font-size: 16px;
      background-image: url(../images/icon_reveal.svg);
      background-repeat: no-repeat;
      background-position: right center;
      padding-right: 20px; }
    .sub-menu .menu-bar h4 {
      display: inline-block;
      text-transform: uppercase;
      margin: 0;
      color: #b7b7b7; }
  .sub-menu.open .menu-bar span {
    background-image: url(../images/icon_close.svg); } }

@media screen and (max-width: 480px) {
  .sub-menu .menu-bar.video-bar {
    z-index: 1; } }

.people-side {
  padding-bottom: 0; }

.people-content {
  padding: 0 15px 45px 15px; }
  .people-content #team {
    margin-top: 100px; }

.page-template-academy-page .people-content {
  padding: 0; }

.side-menu .active a {
  color: #8d1230; }

.people-content h2 {
  color: #5f6064;
  font-weight: 300;
  font-size: 42px;
  margin-bottom: 50px; }

.people-content h3.subtitle {
  color: #5f6064;
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 10px;
  padding-bottom: 25px; }

.people-content .fellows {
  margin-bottom: 35px; }

.people-content h3.cl-fellows {
  border-bottom: none; }

.people-content .panel-group {
  margin-bottom: 70px; }

.panel-title {
  color: #5f6064;
  font-weight: 300;
  font-size: 32px; }

.panel-title a {
  display: block;
  padding: 14px 10px 18px 10px;
  margin-right: 10px;
  text-decoration: none; }

.panel-title a:hover {
  text-decoration: none;
  border: none;
  color: #5f6064; }

.panel-title .fa {
  float: right;
  color: #8d1230;
  font-size: 16px;
  margin-top: 9px; }

.panel-title .collapsed {
  background: url(../images/icon_reveal_large.svg);
  background-repeat: no-repeat;
  background-position: right center; }

.panel-title a:not(.collapsed) {
  background: url(../images/icon_close_large.svg);
  background-repeat: no-repeat;
  background-position: right center; }

.panel-group {
  border-bottom: 1px solid #e1e1e1; }

.panel-group .panel {
  border-top: 1px solid #e1e1e1; }

.panel-default {
  background: none;
  border-radius: 0;
  border: none;
  box-shadow: none; }

.panel-default > .panel-heading {
  background: none;
  border: none;
  padding: 0; }

.panel-group .panel-heading + .panel-collapse > .panel-body {
  border: none; }

.people-content .big {
  margin-bottom: 70px; }

.people-content .big img {
  border-radius: 4px;
  max-width: 200px;
  float: left;
  margin: 0 20px 10px 0; }
  @media (max-width: 768px) {
    .people-content .big img {
      float: none;
      margin: 0 auto; } }

.people-content .big h3 {
  font-weight: 300;
  font-size: 32px;
  color: #5f6064;
  margin-top: 10px;
  margin-bottom: 5px;
  clear: none; }
  @media (max-width: 768px) {
    .people-content .big h3 {
      text-align: center; } }

.people-content .big span {
  font-weight: 600;
  font-size: 18px;
  color: #5f6064;
  margin-bottom: 10px;
  display: inline-block; }
  @media (max-width: 768px) {
    .people-content .big span {
      text-align: center;
      display: block; } }

.people-content .big p {
  font-weight: 400;
  font-size: 18px;
  color: #5f6064; }

.people-content .big p.short {
  margin-bottom: 10px; }

.people-content .big .social-container {
  float: right;
  margin-top: 15px; }
  @media (max-width: 768px) {
    .people-content .big .social-container {
      float: none;
      text-align: center; } }

.people-content .big .social-container a {
  margin: 0 15px; }

.people-content .big .col-md-12 .read-more {
  margin: 0;
  display: inline-block; }

/*.people-content .big .social-container .fa-twitter:hover{
	color: #5ea9dd;
}

.people-content .big .social-container .fa-linkedin-square:hover{
	color: #0274b3;
}
.people-content .big .social-container .fa-facebook:hover{
	color:#3765a3;
}
*/
.people-content .medium {
  margin-bottom: 50px; }
  @media (max-width: 768px) {
    .people-content .medium {
      padding: 0; } }
  .people-content .medium.nopaddingright {
    padding-right: 0; }
  .people-content .medium .photo-col {
    padding: 0; }
    @media (max-width: 768px) {
      .people-content .medium .photo-col {
        padding: 0 15px; } }
  .people-content .medium .meta {
    padding-left: 15px;
    padding-bottom: 20px;
    padding-right: 15px;
    min-height: 151px; }
    @media (max-width: 768px) {
      .people-content .medium .meta {
        padding: 0 15px; } }
    .people-content .medium .meta h3 {
      font-size: 18px;
      color: #5f6064;
      font-weight: normal;
      margin-top: 0;
      margin-bottom: 15px; }
      @media (max-width: 768px) {
        .people-content .medium .meta h3 {
          margin-top: 10px; } }
    .people-content .medium .meta span {
      font-size: 14px;
      color: #5f6064;
      font-weight: 600;
      display: inline-block;
      line-height: 16px;
      -webkit-line-clamp: 4;
      overflow: hidden;
      text-overflow: ellipsis;
      height: 50px; }
    .people-content .medium .meta > a {
      font-size: 14px;
      color: #8d1230;
      font-weight: 600;
      display: inline-block;
      background: url(../images/icon_arrow_bio.svg) no-repeat right center;
      padding-right: 10px;
      position: absolute;
      bottom: 9px;
      left: 15px; }
      @media (max-width: 480px) {
        .people-content .medium .meta > a {
          left: 15px; } }
  .people-content .medium .bio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(40, 40, 43, 0.95);
    width: 100%;
    height: 100%;
    display: none;
    color: #fff;
    font-size: 18px; }
    .people-content .medium .bio-overlay .container {
      padding-top: 40px;
      height: 100vh;
      overflow-y: auto;
      padding-bottom: 100px;
      margin-top: 60px; }
      .people-content .medium .bio-overlay .container::-webkit-scrollbar-track {
        background-color: transparent; }
      .people-content .medium .bio-overlay .container::-webkit-scrollbar {
        width: 6px;
        background-color: transparent; }
      .people-content .medium .bio-overlay .container::-webkit-scrollbar-thumb {
        background-color: transparent; }
      .people-content .medium .bio-overlay .container .bio-close {
        display: block;
        float: right;
        background-image: url(../images/icon_bio_close.svg);
        width: 20px;
        height: 20px;
        cursor: pointer;
        background-repeat: no-repeat;
        padding: 20px;
        background-position: center center;
        margin-top: 0;
        position: fixed;
        top: 10px;
        right: 10px; }
        @media (min-width: 1200px) {
          .people-content .medium .bio-overlay .container .bio-close {
            right: calc(unquote("50% - 530px")); } }
      .people-content .medium .bio-overlay .container .social-container {
        position: absolute;
        right: 0; }
        .people-content .medium .bio-overlay .container .social-container a {
          margin-left: 45px; }
        .people-content .medium .bio-overlay .container .social-container .cl-fb {
          background-image: url(../images/icon_bio_facebook_off.svg);
          width: 8px;
          height: 20px; }
          .people-content .medium .bio-overlay .container .social-container .cl-fb:hover {
            background-image: url(../images/icon_bio_facebook_on.svg); }
        .people-content .medium .bio-overlay .container .social-container .cl-www {
          background-image: url(../images/icon_bio_www_off.svg);
          width: 24px;
          height: 20px; }
          .people-content .medium .bio-overlay .container .social-container .cl-www:hover {
            background-image: url(../images/icon_bio_www_on.svg); }
        .people-content .medium .bio-overlay .container .social-container .cl-twitter {
          background-image: url(../images/icon_bio_twitter_off.svg);
          width: 26px;
          height: 20px; }
          .people-content .medium .bio-overlay .container .social-container .cl-twitter:hover {
            background-image: url(../images/icon_bio_twitter_on.svg); }
        .people-content .medium .bio-overlay .container .social-container .cl-linkedin {
          background-image: url(../images/icon_bio_linkedin_off.svg);
          width: 20px;
          height: 20px; }
          .people-content .medium .bio-overlay .container .social-container .cl-linkedin:hover {
            background-image: url(../images/icon_bio_linkedin_on.svg); }
        @media (max-width: 480px) {
          .people-content .medium .bio-overlay .container .social-container {
            position: relative;
            text-align: center; }
            .people-content .medium .bio-overlay .container .social-container a {
              margin: 15px; } }
      .people-content .medium .bio-overlay .container img {
        float: left;
        margin: 0 20px 15px 0; }
        @media (max-width: 480px) {
          .people-content .medium .bio-overlay .container img {
            float: none;
            margin: 0 auto; } }
      .people-content .medium .bio-overlay .container h3 {
        color: #fff;
        font-weight: 300;
        font-size: 32px;
        clear: none; }
      .people-content .medium .bio-overlay .container span {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        display: block;
        margin-bottom: 10px; }

.people-content .teaching-assistants .meta {
  min-height: 80px; }

.people-content .small {
  margin-bottom: 30px;
  padding: 0 10px; }

.people-content > .people-small {
  padding: 0 15px; }

.how-more-container:before {
  display: block;
  height: 100px;
  content: "";
  width: 100%;
  z-index: 999;
  position: relative;
  top: -130px;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */ }

.people-content .small img {
  border-radius: 5px; }

.people-content .small h3 {
  color: #5f6064;
  font-size: 18px;
  font-weight: 400;
  min-height: 58px; }

.people-content .small span {
  color: #5f6064;
  font-size: 13px;
  font-weight: 600;
  min-height: 55px;
  display: block; }

.people-content .col-md-12 .read-more {
  margin-top: 135px;
  margin-bottom: 100px;
  display: inline-block; }

.multimedia-content.col-lg-9 {
  margin-top: 100px; }

.multimedia-content h2 {
  color: #5f6064;
  margin-top: 15px;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  clear: both;
  word-wrap: break-word; }

.multimedia-content .cl-gallery .thumbs > li {
  width: 138px; }

.multimedia-content .cl-gallery > img {
  width: auto;
  margin: 10px auto 25px; }

.multimedia-content #photo-content h2 {
  margin-top: 100px; }

.multimedia-content .panel-group {
  margin-bottom: 100px; }

.multimedia-content .panel-title a {
  font-size: 24px;
  font-weight: 300;
  background: url(../images/icon_close_large.svg);
  background-repeat: no-repeat;
  background-position: right center;
  display: block;
  padding: 25px 40px 25px 20px;
  margin-right: 20px;
  text-decoration: none;
  width: calc(unquote("100% - 20px")); }

.multimedia-content .panel-title a.collapsed {
  background: url(../images/icon_reveal_large.svg);
  background-repeat: no-repeat;
  background-position: right center; }

.multimedia-content .panel-title a span {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
  line-height: 24px;
  width: 100%; }
  @media (max-width: 768px) {
    .multimedia-content .panel-title a span {
      display: none; } }

.multimedia-content .panel-body iframe {
  max-width: 100%;
  border-radius: 4px; }
  @media (max-width: 768px) {
    .multimedia-content .panel-body iframe {
      height: 48vw; } }

.multimedia-menu li {
  margin-bottom: 7px; }

.multimedia-menu li,
.multimedia-menu a {
  font-size: 18px; }

.side-menu li.current-menu-item a,
.multimedia-menu li.current-menu-item a {
  color: #8d1230;
  font-weight: 600; }

.collapsing {
  transition-duration: 0.7s; }

.cl-gallery > img {
  margin: 10px 0 25px 0;
  width: 100%;
  border-radius: 4px;
  transition-timing-function: ease-out;
  /*  max-height: 545px;*/ }

.cl-gallery .thumbs {
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 22px; }

.cl-gallery .thumbs > li {
  list-style-type: none;
  cursor: pointer;
  border-radius: 6px;
  width: 134px;
  margin: 4px 0px;
  border: 3px solid #fff;
  float: left; }
  @media (max-width: 768px) {
    .cl-gallery .thumbs > li {
      width: calc(unquote("50% - 8px")); } }
  @media (max-width: 420px) {
    .cl-gallery .thumbs > li {
      width: 95px; } }

.cl-gallery .thumbs > li > img {
  width: 100%;
  height: auto;
  border-radius: 4px; }

.cl-gallery .thumbs > li:hover,
.cl-gallery .thumbs > li.current {
  border: 3px solid #11a6da;
  background: #11a6da; }

.cl-gallery {
  position: relative; }
  .cl-gallery .left, .cl-gallery .right {
    position: absolute;
    width: 40px;
    display: block;
    height: 545px;
    max-height: 545px;
    opacity: 0.5; }
    @media screen and (max-width: 992px) {
      .cl-gallery .left, .cl-gallery .right {
        top: -60px; } }
    @media screen and (max-width: 480px) {
      .cl-gallery .left, .cl-gallery .right {
        top: -60px;
        height: 350px; } }
    .cl-gallery .left:hover, .cl-gallery .right:hover {
      text-decoration: none;
      border-bottom: none;
      opacity: 1; }
  .cl-gallery .left {
    background: url("../images/fellows-prev.svg") 50% 50% no-repeat;
    background-position-y: 50%;
    left: -60px; }
    @media screen and (max-width: 992px) {
      .cl-gallery .left {
        left: 0; } }
  .cl-gallery .right {
    background: url("../images/fellows-next.svg") 50% 50% no-repeat;
    background-position-y: 50%;
    right: -60px; }
    @media screen and (max-width: 992px) {
      .cl-gallery .right {
        right: 0; } }

.cl-galleries .panel-title {
  font-size: 24px; }

.cl-galleries .cl-gallery-video iframe {
  margin: 30px auto;
  display: block; }

.cl-galleries.panel-group {
  border-bottom: none; }

.academy-menu .current-menu-item a {
  color: #8d1230;
  text-decoration: none;
  font-weight: 600; }

.academy-menu .registration,
.academy-menu .class-2016 {
  display: none; }

.cl-quote {
  margin-bottom: 40px; }
  .cl-quote .photo-col {
    padding-right: 0;
    width: 12%; }
    @media (max-width: 768px) {
      .cl-quote .photo-col {
        text-align: center;
        padding-right: 15px;
        width: 100%; } }
    .cl-quote .photo-col img {
      border-radius: 4px; }
      @media (max-width: 768px) {
        .cl-quote .photo-col img {
          display: inline; } }
  .cl-quote .quote-col {
    width: 88%; }
    @media (max-width: 768px) {
      .cl-quote .quote-col {
        width: 100%; } }
    .cl-quote .quote-col p {
      font-size: 18px;
      margin-bottom: 8px; }
    .cl-quote .quote-col span {
      font-size: 14px;
      font-weight: 600; }

/***
	PAGE CONTENT
***/
.overflHid {
  overflow: hidden; }

.overflScrollY {
  overflow-y: scroll; }

.page-content {
  color: #5f6064;
  padding-bottom: 100px;
  min-height: 250px; }
  .page-content.col-lg-9 {
    margin-top: 100px; }
  @media (max-width: 768px) {
    .page-content > div:not(.embed-responsive):not(.blue-box) {
      padding: 0 !important; } }
  .page-content > h1, .page-content > .sub-page {
    margin-top: 100px; }

.page-content .anchor {
  display: block; }

.page-content h1 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  clear: both;
  word-wrap: break-word; }

.page-content h2:first-child {
  margin-top: 100px; }

.page-content h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 25px;
  margin-top: 50px;
  clear: both; }

.page-content h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 25px;
  clear: both; }

.page-content h4 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 25px;
  clear: both; }

.page-content h5 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  clear: both; }

.page-content h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  clear: both; }

.page-content p {
  font-size: 18px;
  margin-bottom: 25px; }

.page-content p + ul {
  margin-top: -10px;
  margin-bottom: 30px; }

.page-content ol,
.page-content ul {
  font-size: 18px;
  list-style-type: none;
  padding-left: 20px; }
  .page-content ol.default,
  .page-content ul.default {
    list-style-type: disc; }
    .page-content ol.default ul,
    .page-content ul.default ul {
      list-style-type: circle; }

.page-id-11716 .page-content ul {
  list-style-type: disc; }

.page-content ol.default {
  list-style-type: decimal; }
  .page-content ol.default ol {
    list-style-type: lower-alpha; }

.wp-post-image,
.page-content img {
  border-radius: 4px; }

.page-content .pdf-link {
  line-height: 45px; }

.page-content .download-photo {
  position: relative;
  display: inline-block;
  width: 190px;
  height: 190px; }

.page-content .download-photo:before {
  width: 190px;
  height: 190px;
  display: block;
  background-color: rgba(0, 0, 0, 0.4); }

.page-content .download-photo img {
  margin-top: 0;
  border-radius: 4px; }

.page-content .download-photo .img-overlay {
  opacity: 0;
  border-radius: 4px;
  width: 190px;
  height: 190px;
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url(../images/icon_download_box_white.svg);
  background-position: center center;
  background-repeat: no-repeat; }
  .page-content .download-photo .img-overlay::after {
    content: ' ';
    width: 12px;
    height: 19px;
    display: inline-block;
    background-image: url(../images/icon_download_arrow_white.svg);
    background-position: center center;
    position: absolute;
    right: calc( 50% - 6px);
    top: calc( 50% - 21px);
    transition-duration: 0.3s; }
  .page-content .download-photo .img-overlay:hover::after {
    top: calc( 50% - 16px); }
  @media (max-width: 768px) {
    .page-content .download-photo .img-overlay {
      display: none; } }

.page-content .download-photo .img-overlay:hover {
  opacity: 1; }

.page-content .grid-photo > div {
  padding: 10px 15px; }

/***
	/PAGE CONTENT
***/
/***
	 FOR MEDIA PAGE
***/
.for-media-contact a {
  margin-top: 130px;
  display: inline-block; }

/***
	/ FOR MEDIA PAGE
***/
/***
	 ACADEMY PAGE
***/
a.pdf-link {
  color: #8d1230;
  font-size: 16px;
  font-weight: 600;
  background-image: url(../images/icon_pdf.svg);
  background-position: right center;
  padding-right: 30px;
  background-repeat: no-repeat;
  padding: 6px 40px 6px 0; }

a.pdf-link:hover {
  background-image: url(../images/icon_pdf_hover.svg);
  background-repeat: no-repeat;
  background-position: right center; }

a.download {
  color: #8d1230;
  font-size: 16px;
  font-weight: 600;
  background-image: url(../images/icon_download_box.svg);
  background-position: right 15px;
  background-repeat: no-repeat;
  padding: 6px 40px 6px 0;
  position: relative; }
  a.download::after {
    content: ' ';
    width: 12px;
    height: 19px;
    display: inline-block;
    background-image: url(../images/icon_download_arrow.svg);
    position: absolute;
    right: 9px;
    top: 0px;
    transition-duration: 0.3s; }
  a.download:hover::after {
    top: 5px; }

.page-template-academy-page > header > .container {
  background: none;
  /*TODO*/
  display: none; }

/***
	/ ACADEMY PAGE
***/
.about-sub-page #educators,
.about-sub-page #management,
.about-sub-page #guest-educators,
.about-sub-page #advisory-board {
  color: #b7b7b7;
  font-size: 24px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 20px;
  text-transform: uppercase; }

.about-sub-page #educators {
  margin-top: 40px; }

/***
	PARTNERS SECTION
***/
.partners {
  padding-top: 20px; }

#about-container .partners,
#overview-container .partners,
#faculty-container .partners,
#participation-container .partners {
  display: block; }

#overview-container .partners h3:first-child {
  margin-top: 0; }

#about-container .partners,
#overview-container .partners,
#about-the-academy-container .partners {
  border-top: 0; }

.partners img {
  margin: 25px 0 25px 0; }

.partners .p-logo {
  max-width: 208px; }

@media (max-width: 768px) {
  .partners .col-xs-6 .p-logo,
  .partners .col-sm-6 .p-logo {
    max-width: 100%; } }

.partners p {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: -35px; }

.partners h3 {
  color: #b7b7b7;
  font-size: 24px;
  font-weight: 600;
  margin-top: 45px;
  margin-bottom: 30px; }

.partners h3:first-child {
  margin-top: 60px; }

.partners h4 {
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 25px;
  margin-top: 0; }
  @media (max-width: 768px) {
    .partners h4 {
      margin-bottom: 10px; } }

.partners h4:before {
  content: '';
  width: 45px;
  height: 1px;
  display: inline-block;
  background: #b7b7b7;
  top: 50%;
  position: absolute;
  left: 0px; }

.partners h4.blank:before {
  display: none; }

.partners .strategic {
  margin: 0; }

.partners .h-nominating,
.partners .h-partners {
  margin-bottom: 22px; }

.partners .h-supporting-partners {
  margin-top: 20px; }

.partners .h-cooperation {
  margin-top: 25px; }

.partners h4 + img {
  margin-top: 0; }
  @media (max-width: 768px) {
    .partners h4 + img {
      margin-bottom: 20px; } }

.partners .woh {
  padding-top: 69px; }

.partners .nominating {
  padding: 0; }

.partners .vline:before {
  top: 0px; }

.partners .read-more {
  display: inline-block; }

.partners .cooperation-logo {
  width: 40%;
  height: auto;
  margin: 0; }
  @media (max-width: 768px) {
    .partners .cooperation-logo {
      width: 100%;
      margin-bottom: 30px; } }

/***
	/PARTNERS SECTION
***/
/****
	FAQ
***/
.faqs-sub-page {
  margin-top: 100px; }

.faq.panel-group {
  margin-bottom: 70px; }

.faq .panel-title {
  margin-bottom: 0px; }

.faq .panel-title a {
  padding: 22px 22px 22px 10px;
  font-size: 24px; }

.faq .panel-body {
  font-size: 18px;
  padding: 15px 10px 50px 10px; }

/***
	CL APPLY FORM
***/
.cl-apply #partial_fellowship-error {
  bottom: -51px; }

.cl-apply .jconfirm .jconfirm-scrollpane .jconfirm-box-container {
  width: 476px;
  max-width: 460px; }
  @media screen and (max-width: 480px) {
    .cl-apply .jconfirm .jconfirm-scrollpane .jconfirm-box-container {
      max-width: 95%; } }

.cl-apply .jconfirm .jconfirm-box div.content-pane .content {
  position: relative; }

.cl-apply .jconfirm .jconfirm-box .buttons {
  padding-top: 15px; }

.cl-apply .jconfirm .btn {
  color: #fff; }
  .cl-apply .jconfirm .btn[disabled] {
    background: #5f6064 !important; }

.cl-apply .radio-group {
  margin: 0; }
  .cl-apply .radio-group p:last-child {
    margin-bottom: 0; }
  .cl-apply .radio-group input {
    margin-top: 5px;
    margin-bottom: 5px; }

@media screen and (max-width: 480px) {
  .cl-apply.account.mt100 {
    margin-top: 30px !important; }
  .cl-apply table.table th {
    width: 200px; } }

.cl-apply h4 {
  margin-top: 70px;
  text-transform: capitalize; }

.cl-apply .info {
  font-size: 14px;
  color: #a1a1a1; }

.cl-apply form {
  position: relative; }

.cl-apply .form-image {
  margin-top: 30px;
  max-height: 136px; }

.cl-apply .processing {
  opacity: 0.5; }

.cl-apply input {
  width: 100%;
  background: #f7f7f7;
  border-radius: 4px;
  margin: 10px 0;
  border: none;
  padding: 17px 20px;
  font-size: 18px;
  font-weight: 300;
  outline: none; }
  .cl-apply input[type="file"] {
    font-size: 16px; }

.cl-apply input[type="checkbox"],
.cl-apply input[type="radio"] {
  width: auto; }

.cl-apply .radio-group {
  padding: 15px;
  background: #f7f7f7;
  border-radius: 4px;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative; }
  .cl-apply .radio-group label {
    margin-top: 0;
    font-size: 18px;
    font-weight: 300;
    display: block;
    position: relative;
    padding-left: 25px; }
    .cl-apply .radio-group label.checkbox-label {
      position: relative; }
      .cl-apply .radio-group label.checkbox-label > input {
        visibility: hidden; }
        .cl-apply .radio-group label.checkbox-label > input + span {
          display: block;
          width: 16px;
          height: 16px;
          position: absolute;
          background: #fff;
          border: 1px solid #a1a1a1;
          padding: 3px;
          top: 5px;
          left: 0; }
          .cl-apply .radio-group label.checkbox-label > input + span:before {
            content: '';
            width: 10px;
            height: 10px;
            background: #f7f7f7;
            position: absolute;
            top: 2px;
            left: 2px; }
        .cl-apply .radio-group label.checkbox-label > input:checked + span {
          background: #fff; }
          .cl-apply .radio-group label.checkbox-label > input:checked + span:before {
            background: #8d1230; }
      .cl-apply .radio-group label.checkbox-label.error {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        padding-left: 25px;
        font-size: 18px; }
        .cl-apply .radio-group label.checkbox-label.error span {
          margin-left: 5px; }
    .cl-apply .radio-group label.error {
      font-size: 12px;
      left: 25px;
      bottom: -21px; }
  .cl-apply .radio-group input {
    margin-right: 10px;
    margin-left: 0px;
    position: absolute;
    left: 0;
    top: 0; }

.cl-apply .radio-group td input {
  position: relative; }

.cl-apply label + input {
  margin-top: 5px; }

.cl-apply textarea {
  width: 100%;
  background: #f7f7f7;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 300;
  border: none;
  padding: 20px 15px;
  height: 120px;
  margin-bottom: 30px;
  outline: none; }

.cl-apply select {
  width: 100%;
  height: 62px;
  border-radius: 4px;
  padding: 17px 20px;
  margin: 20px 0 10px 0;
  color: #5f6064;
  border: none;
  background-color: #f7f7f7;
  font-size: 18px;
  font-weight: 300;
  padding: inherit 15px;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  background-image: url(../images/icon_reveal.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  outline: none; }

.cl-apply .selected {
  color: #5f6064; }

.cl-apply label + select {
  margin-top: 5px; }

.cl-apply label {
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px; }

.cl-apply input[type="submit"] {
  display: block;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  margin: 45px auto 20px auto;
  border-radius: 4px;
  width: 200px;
  height: 56px;
  padding: 15px 50px;
  border: none;
  color: #fff; }
  .cl-apply input[type="submit"]:disabled {
    background: #5f6064; }

.cl-apply .btn-show-preview, .cl-apply .btn-submit {
  display: block;
  background: #11a6da;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  outline: none;
  margin: 45px auto 20px;
  border-radius: 4px;
  width: 200px;
  height: 56px; }
  .cl-apply .btn-show-preview:hover, .cl-apply .btn-submit:hover {
    background: #1db0e0; }

.cl-apply .btn-show-preview:hover {
  background: #9a1434; }

.cl-apply input[type="submit"].form-success,
.cl-apply .btn-show-preview.form-success {
  background-color: #11a6da !important;
  background-image: url(../images/icon-newsletter-sent.svg) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  text-indent: 9999px !important; }

.cl-apply label.photo {
  position: relative;
  overflow: hidden;
  float: left;
  background: #3ca4d9;
  color: #fff;
  padding: 17px 48px;
  border-radius: 4px;
  display: inline-block; }
  @media (max-width: 768px) {
    .cl-apply label.photo {
      display: block;
      float: none;
      width: 204px;
      margin: 0 auto; } }

.cl-apply label.photo:hover {
  opacity: .8; }

.cl-apply .photo-info {
  margin: 0 0px;
  padding-top: 35px;
  display: inline-block;
  font-size: 12px;
  color: #a0a0a0; }
  @media (max-width: 768px) {
    .cl-apply .photo-info {
      display: block;
      text-align: center;
      width: 100%;
      margin: 0; } }

.cl-apply label.photo input[type="file"] {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  font-size: 100px;
  filter: alpha(opacity=0);
  cursor: pointer; }

.cl-apply .no-top-margin {
  margin-top: 0; }

.cl-apply #photo-prev {
  display: block;
  max-height: 200px;
  max-width: 200px;
  margin-top: 10px; }
  @media (max-width: 768px) {
    .cl-apply #photo-prev {
      margin: 10px auto; } }

.cl-apply input,
.cl-apply select,
.cl-apply textarea {
  border: 1px solid #fff; }

.cl-apply input:focus,
.cl-apply select:focus,
.cl-apply textarea:focus {
  border: 1px solid #3ca4d9; }

.cl-apply .description {
  font-size: 16px;
  margin-bottom: 10px; }

.cl-apply ::-webkit-input-placeholder {
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 300; }

.cl-apply :-moz-placeholder {
  /* Firefox 18- */
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 300; }

.cl-apply ::-moz-placeholder {
  /* Firefox 19+ */
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 300; }

.cl-apply :-ms-input-placeholder {
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 300; }

.cl-apply label.error {
  border-left: 5px solid #8d1230;
  padding-left: 10px;
  position: absolute;
  left: 15px;
  bottom: -17px;
  font-size: 12px; }

.cl-apply input[type="file"].error,
.cl-apply input[type="email"].error,
.cl-apply textarea.error,
.cl-apply input[type="text"].error {
  border-left: 5px solid #8d1230; }

.cl-apply textarea + label.error {
  bottom: 0; }

.cl-apply #photo.error::before,
.cl-apply .checkbox-label.error::before,
.cl-apply .checkbox-label {
  border: none; }

.cl-apply .checkbox-label.error::before {
  position: absolute;
  left: 20px;
  top: 30px; }

.cl-apply .photo-error {
  color: #8d1230;
  display: inline; }

.cl-apply .notification-container {
  min-height: 50px; }

.preview-application-overlay {
  background: rgba(40, 40, 43, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  padding: 20px;
  overflow: auto;
  overflow-y: scroll; }
  .preview-application-overlay .panel-body {
    padding-bottom: 10px; }
  .preview-application-overlay .important-info {
    color: #8d1230;
    margin-bottom: 30px; }
  .preview-application-overlay h3 {
    margin-top: 0px;
    margin-bottom: 10px; }
  .preview-application-overlay > div:first-child {
    background: #f8f8f8;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 20px   20px 0 20px; }
  .preview-application-overlay > div:last-child {
    background: #f8f8f8;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 0 20px 20px 20px; }
  .preview-application-overlay .btn {
    border-radius: 4px;
    width: 200px;
    height: 56px;
    margin-bottom: 15px; }
  .preview-application-overlay .btn-need-correction {
    background-color: #5f6064;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-right: 8px; }
  .preview-application-overlay .btn-need-correction:hover {
    opacity: 0.9; }
  .preview-application-overlay .btn-confirm {
    background-color: #8d1230;
    color: #fff;
    font-size: 16px;
    font-weight: 600; }
  .preview-application-overlay .btn-confirm:hover {
    background: #9a1434; }

.cl-gateway .logo-preview {
  height: 135px;
  color: #b7b7b7;
  font-size: 24px;
  font-weight: 300;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  margin-bottom: 30px;
  padding: 0;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-align: center;
      align-items: center; }
  .cl-gateway .logo-preview img {
    width: 208px;
    margin: 0 15px;
    height: auto; }
  .cl-gateway .logo-preview > div {
    margin: 0 auto; }

.cl-gateway h3 {
  margin-top: 50px;
  font-size: 32px; }

.cl-gateway .selected {
  display: none; }

.cl-gateway .over .selected {
  display: block; }

.cl-gateway .over .noselected {
  display: none; }

.cl-gateway .partner-item {
  padding-bottom: 13px; }

.cl-gateway a.partner-link {
  font-size: 18px;
  color: #5f6064; }

.page-template-page-panel-facebook .cl-apply,
.page-template-page-panel-voting .cl-apply,
.page-template-page-panel-registration2step .cl-apply,
.page-template-page-panel-registration3step .cl-apply,
.page-template-page-panel-registration .cl-apply,
.page-template-page-panel-alp-registration .cl-apply,
.page-template-page-panel-invitation .cl-apply {
  padding-top: 20px !important; }
  .page-template-page-panel-facebook .cl-apply textarea,
  .page-template-page-panel-voting .cl-apply textarea,
  .page-template-page-panel-registration2step .cl-apply textarea,
  .page-template-page-panel-registration3step .cl-apply textarea,
  .page-template-page-panel-registration .cl-apply textarea,
  .page-template-page-panel-alp-registration .cl-apply textarea,
  .page-template-page-panel-invitation .cl-apply textarea {
    height: 120px; }

.page-template-page-panel-facebook h2,
.page-template-page-panel-voting h2,
.page-template-page-panel-registration2step h2,
.page-template-page-panel-registration3step h2,
.page-template-page-panel-registration h2,
.page-template-page-panel-alp-registration h2,
.page-template-page-panel-invitation h2 {
  color: #5f6064;
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 25px; }

.page-template-page-panel-registration3step p .page-template-page-panel-registration2step p,
.page-template-page-panel-registration p,
.page-template-page-panel-alp-registration p,
.page-template-page-panel-invitation p {
  color: #5f6064;
  font-size: 24px;
  font-weight: 300; }
  .page-template-page-panel-registration3step p .page-template-page-panel-registration2step p strong,
  .page-template-page-panel-registration p strong,
  .page-template-page-panel-alp-registration p strong,
  .page-template-page-panel-invitation p strong {
    font-weight: 400; }

.page-template-page-panel-facebook label,
.page-template-page-panel-voting label,
.page-template-page-panel-registration2step label,
.page-template-page-panel-registration3step label,
.page-template-page-panel-registration label,
.page-template-page-panel-alp-registration label,
.page-template-page-panel-invitation label {
  color: #5f6064; }

.page-template-page-panel-facebook .navbar-nav,
.page-template-page-panel-voting .navbar-nav,
.page-template-page-panel-registration2step .navbar-nav,
.page-template-page-panel-registration3step .navbar-nav,
.page-template-page-panel-alp-registration .navbar-nav,
.page-template-page-panel-registration .navbar-nav {
  display: none; }

.page-template-page-panel-facebook h3,
.page-template-page-panel-voting h3,
.page-template-page-panel-registration2step h3,
.page-template-page-panel-registration3step h3,
.page-template-page-panel-alp-registration h3,
.page-template-page-panel-registration h3 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 25px; }

.page-template-page-panel-facebook p,
.page-template-page-panel-voting p,
.page-template-page-panel-registration2step p,
.page-template-page-panel-registration3step p,
.page-template-page-panel-alp-registration p,
.page-template-page-panel-registration p {
  color: #5f6064;
  font-size: 18px;
  font-weight: 300; }
  .page-template-page-panel-facebook p strong,
  .page-template-page-panel-voting p strong,
  .page-template-page-panel-registration2step p strong,
  .page-template-page-panel-registration3step p strong,
  .page-template-page-panel-alp-registration p strong,
  .page-template-page-panel-registration p strong {
    font-weight: 400; }

.page-template-page-panel-facebook h3,
.page-template-page-panel-voting h3,
.page-template-page-panel-registration2step h3,
.page-template-page-panel-registration3step h3,
.page-template-page-panel-alp-registration h3,
.page-template-page-panel-registration h3 {
  color: #5f6064; }

.page-template-page-panel-facebook .cl-apply input[type="file"],
.page-template-page-panel-voting .cl-apply input[type="file"],
.page-template-page-panel-registration2step .cl-apply input[type="file"],
.page-template-page-panel-registration3step .cl-apply input[type="file"],
.page-template-page-panel-alp-registration .cl-apply input[type="file"],
.page-template-page-panel-registration .cl-apply input[type="file"] {
  line-height: 10px; }

.page-template-page-panel-facebook .cl-apply input[type="checkbox"],
.page-template-page-panel-voting .cl-apply input[type="checkbox"],
.page-template-page-panel-registration2step .cl-apply input[type="checkbox"],
.page-template-page-panel-registration3step .cl-apply input[type="checkbox"],
.page-template-page-panel-alp-registration .cl-apply input[type="checkbox"],
.page-template-page-panel-registration .cl-apply input[type="checkbox"] {
  margin-bottom: 0; }

.page-template-page-panel-facebook .cl-apply .checkbox-label,
.page-template-page-panel-voting .cl-apply .checkbox-label,
.page-template-page-panel-registration2step .cl-apply .checkbox-label,
.page-template-page-panel-registration3step .cl-apply .checkbox-label,
.page-template-page-panel-alp-registration .cl-apply .checkbox-label,
.page-template-page-panel-registration .cl-apply .checkbox-label {
  position: relative; }

.page-template-page-panel-facebook .cl-apply .checkbox-label.error::before,
.page-template-page-panel-voting .cl-apply .checkbox-label.error::before,
.page-template-page-panel-registration2step .cl-apply .checkbox-label.error::before,
.page-template-page-panel-registration3step .cl-apply .checkbox-label.error::before,
.page-template-page-panel-alp-registration .cl-apply .checkbox-label.error::before,
.page-template-page-panel-registration .cl-apply .checkbox-label.error::before {
  position: absolute;
  left: -10px;
  top: 0px; }

.page-template-page-panel-facebook .cl-apply .voting-panel input.error:before,
.page-template-page-panel-voting .cl-apply .voting-panel input.error:before,
.page-template-page-panel-registration2step .cl-apply .voting-panel input.error:before,
.page-template-page-panel-registration3step .cl-apply .voting-panel input.error:before,
.page-template-page-panel-alp-registration .cl-apply .voting-panel input.error:before,
.page-template-page-panel-registration .cl-apply .voting-panel input.error:before {
  display: none !important; }

.page-template-page-panel-voting .voting-panel {
  margin-bottom: 30px; }
  .page-template-page-panel-voting .voting-panel td.name {
    padding-bottom: 30px;
    padding-left: 0; }
  .page-template-page-panel-voting .voting-panel th,
  .page-template-page-panel-voting .voting-panel td.dropdown {
    width: 24% !important;
    padding-left: 0; }
    .page-template-page-panel-voting .voting-panel th select,
    .page-template-page-panel-voting .voting-panel td.dropdown select {
      padding: 0px 10px;
      margin: 0px 0 0px 0;
      height: 38px;
      border-color: #5f6064;
      background-position: calc(100% - 10px) center; }
      .page-template-page-panel-voting .voting-panel th select.error,
      .page-template-page-panel-voting .voting-panel td.dropdown select.error {
        border-left: 5px solid #8d1230; }
  .page-template-page-panel-voting .voting-panel th:first-child,
  .page-template-page-panel-voting .voting-panel td:first-child.dropdown {
    width: 28% !important; }

.page-template-page-panel-voting strong {
  font-weight: 600 !important; }

.page-template-page-panel-voting ul {
  padding-left: 40px; }
  .page-template-page-panel-voting ul li {
    color: #5f6064;
    font-size: 18px;
    font-weight: 300;
    list-style-type: circle; }

.page-template-page-panel-voting ol {
  padding-left: 40px; }
  .page-template-page-panel-voting ol li {
    color: #5f6064;
    font-size: 18px;
    font-weight: 300; }

/***
	/ CL APPLY FORM
***/
.page-template-page-accordion-alumni .container.page-content,
.page-template-page-accordion .container.page-content {
  padding-top: 60px;
  padding-bottom: 50px; }

.page-template-page-accordion-alumni .people-content .medium .meta,
.page-template-page-accordion .people-content .medium .meta {
  min-height: 161px; }

.page-template-page-accordion-alumni .navbar-right,
.page-template-page-accordion .navbar-right {
  display: none; }

.page-template-page-accordion-alumni h2,
.page-template-page-accordion h2 {
  color: #5f6064;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 25px; }

.page-template-page-accordion-alumni h3,
.page-template-page-accordion h3 {
  color: #5f6064;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 25px; }

.page-template-page-accordion-alumni .panel-body,
.page-template-page-accordion .panel-body {
  background: transparent !important; }
  .page-template-page-accordion-alumni .panel-body .people-content,
  .page-template-page-accordion .panel-body .people-content {
    padding: 0; }
  .page-template-page-accordion-alumni .panel-body ul li,
  .page-template-page-accordion .panel-body ul li {
    list-style-type: disc; }
  .page-template-page-accordion-alumni .panel-body ol li,
  .page-template-page-accordion .panel-body ol li {
    list-style-type: decimal; }

/***
	BLOG
***/
article {
  border-bottom: 1px solid #e1e1e1;
  padding: 35px 0 20px 0;
  display: inline-block; }

article:first-child {
  border-top: 1px solid #e1e1e1; }

article h2 {
  margin-top: 5px;
  font-size: 42px;
  font-weight: 300; }

article .meta {
  font-size: 18px;
  font-weight: 600; }

article .wp-post-image {
  float: left;
  margin: 0 20px 20px 0; }
  @media screen and (max-width: 480px) {
    article .wp-post-image {
      float: none; } }

h2.widget-title {
  color: #5f6064;
  font-size: 21px;
  font-weight: 400; }

.blog-sidebar a {
  font-size: 16px !important; }

.blog-sidebar ul,
.blog-sidebar .tagcloud {
  padding-left: 15px; }

.meta-info {
  color: #11a6da; }

.meta-info a {
  color: #11a6da;
  font-size: 16px;
  font-weight: 600; }

.meta-info a {
  border-color: #11a6da; }

.meta-info h6 {
  color: #5f6064;
  margin-bottom: 5px; }

@keyframes notification-off {
  90% {
    opacity: 1.0; }
  100% {
    opacity: 0.0; } }

form .notification {
  display: none;
  max-width: 100%;
  height: 45px;
  text-align: center;
  z-index: 1;
  color: #fff;
  padding: 0 20px;
  border-radius: 4px; }

form .notification.visible {
  display: block;
  animation: notification-off 6s linear; }

/*
form .notification:after {
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	left: 40px;
	bottom: -9px;
	z-index: 0;
	content: '';

	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}*/
form .notification span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  color: #8d1230; }

form .notification.error,
form .notification.error:after {
  border: none; }

form .notification.success span {
  color: #11a6da; }

.search header {
  height: 90px;
  margin-bottom: 120px; }

.error404 header {
  height: 90px; }

.error404 h1 {
  color: #8d1230;
  font-size: 100px;
  font-weight: 600;
  margin-top: 100px; }

@media (max-width: 768px) {
  .we-recommend img {
    display: block;
    margin: 0 auto 30px;
    width: auto;
    height: auto; } }

.embed-responsive {
  margin: 20px 0 30px 0; }

.academy-menu .faqs + ul {
  display: none; }

.page-template-page-panel-admin .panel-group,
.page-template-page-panel-partner .panel-group {
  padding-bottom: 125px; }

.page-template-page-panel-invitation form {
  padding-bottom: 125px; }

.page-id-124 h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  clear: both;
  word-wrap: break-word; }

.page-id-6708 .page-content h1 {
  margin-top: 50px;
  margin-bottom: 40px; }

.page-id-6708 :target:before {
  content: "";
  display: block;
  height: 100px;
  /* fixed header height*/
  margin: -100px 0 0;
  /* negative fixed header height */ }

.page-id-6696 .page-content ol {
  list-style-type: decimal; }

.page-id-6696 .page-content ul {
  list-style-type: disc; }

.page-id-2134 .container.page-content,
.page-id-6138 .container.page-content,
.page-id-10953 .container.page-content,
.page-id-16212 .container.page-content {
  padding-top: 0; }

.page-id-2134 .panel-group,
.page-id-6138 .panel-group,
.page-id-10953 .panel-group,
.page-id-16212 .panel-group {
  margin-top: 20px !important;
  margin-bottom: 60px !important; }

.page-id-2134 .people-content .medium .meta,
.page-id-6138 .people-content .medium .meta,
.page-id-10953 .people-content .medium .meta,
.page-id-16212 .people-content .medium .meta {
  min-height: 149px; }

.page-id-16863 #masthead,
.page-id-16867 #masthead,
.page-id-16931 #masthead,
.page-id-16746 #masthead,
.page-id-16913 #masthead,
.page-id-16915 #masthead,
.page-id-16618 #masthead,
.page-id-16367 #masthead {
  background: url(https://center-for-leadership.org/wp-content/uploads/2019/08/top_photo.jpg);
  background-position: center center; }

.page-id-16863 .container-tight.mt100,
.page-id-16867 .container-tight.mt100,
.page-id-16931 .container-tight.mt100,
.page-id-16746 .container-tight.mt100,
.page-id-16913 .container-tight.mt100,
.page-id-16915 .container-tight.mt100,
.page-id-16618 .container-tight.mt100,
.page-id-16367 .container-tight.mt100 {
  margin-top: 5px !important; }

.page-id-16863 .page-content h1,
.page-id-16867 .page-content h1,
.page-id-16931 .page-content h1,
.page-id-16746 .page-content h1,
.page-id-16913 .page-content h1,
.page-id-16915 .page-content h1,
.page-id-16618 .page-content h1,
.page-id-16367 .page-content h1 {
  margin-top: 35px;
  margin-bottom: 15px; }

.page-id-16863 .page-content ul,
.page-id-16867 .page-content ul,
.page-id-16931 .page-content ul,
.page-id-16746 .page-content ul,
.page-id-16913 .page-content ul,
.page-id-16915 .page-content ul,
.page-id-16618 .page-content ul,
.page-id-16367 .page-content ul {
  list-style-type: disc; }

.page-id-16863 .page-content .bluebox-quote,
.page-id-16867 .page-content .bluebox-quote,
.page-id-16931 .page-content .bluebox-quote,
.page-id-16746 .page-content .bluebox-quote,
.page-id-16913 .page-content .bluebox-quote,
.page-id-16915 .page-content .bluebox-quote,
.page-id-16618 .page-content .bluebox-quote,
.page-id-16367 .page-content .bluebox-quote {
  margin-top: 25px;
  padding: 22px;
  font-style: italic;
  text-align: center; }
  .page-id-16863 .page-content .bluebox-quote:before,
  .page-id-16867 .page-content .bluebox-quote:before,
  .page-id-16931 .page-content .bluebox-quote:before,
  .page-id-16746 .page-content .bluebox-quote:before,
  .page-id-16913 .page-content .bluebox-quote:before,
  .page-id-16915 .page-content .bluebox-quote:before,
  .page-id-16618 .page-content .bluebox-quote:before,
  .page-id-16367 .page-content .bluebox-quote:before {
    width: 4px; }

.page-id-16863 .page-content .col-md-3 .blue-box,
.page-id-16867 .page-content .col-md-3 .blue-box,
.page-id-16931 .page-content .col-md-3 .blue-box,
.page-id-16746 .page-content .col-md-3 .blue-box,
.page-id-16913 .page-content .col-md-3 .blue-box,
.page-id-16915 .page-content .col-md-3 .blue-box,
.page-id-16618 .page-content .col-md-3 .blue-box,
.page-id-16367 .page-content .col-md-3 .blue-box {
  min-height: 395px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 22px;
  margin-top: 0;
  margin-bottom: 5px; }
  @media (max-width: 768px) {
    .page-id-16863 .page-content .col-md-3 .blue-box,
    .page-id-16867 .page-content .col-md-3 .blue-box,
    .page-id-16931 .page-content .col-md-3 .blue-box,
    .page-id-16746 .page-content .col-md-3 .blue-box,
    .page-id-16913 .page-content .col-md-3 .blue-box,
    .page-id-16915 .page-content .col-md-3 .blue-box,
    .page-id-16618 .page-content .col-md-3 .blue-box,
    .page-id-16367 .page-content .col-md-3 .blue-box {
      min-height: auto;
      margin-bottom: 30px; }
      .page-id-16863 .page-content .col-md-3 .blue-box p:last-child,
      .page-id-16867 .page-content .col-md-3 .blue-box p:last-child,
      .page-id-16931 .page-content .col-md-3 .blue-box p:last-child,
      .page-id-16746 .page-content .col-md-3 .blue-box p:last-child,
      .page-id-16913 .page-content .col-md-3 .blue-box p:last-child,
      .page-id-16915 .page-content .col-md-3 .blue-box p:last-child,
      .page-id-16618 .page-content .col-md-3 .blue-box p:last-child,
      .page-id-16367 .page-content .col-md-3 .blue-box p:last-child {
        height: 30px; }
      .page-id-16863 .page-content .col-md-3 .blue-box p:nth-last-child(2),
      .page-id-16867 .page-content .col-md-3 .blue-box p:nth-last-child(2),
      .page-id-16931 .page-content .col-md-3 .blue-box p:nth-last-child(2),
      .page-id-16746 .page-content .col-md-3 .blue-box p:nth-last-child(2),
      .page-id-16913 .page-content .col-md-3 .blue-box p:nth-last-child(2),
      .page-id-16915 .page-content .col-md-3 .blue-box p:nth-last-child(2),
      .page-id-16618 .page-content .col-md-3 .blue-box p:nth-last-child(2),
      .page-id-16367 .page-content .col-md-3 .blue-box p:nth-last-child(2) {
        margin-bottom: 0; } }
  .page-id-16863 .page-content .col-md-3 .blue-box:before,
  .page-id-16867 .page-content .col-md-3 .blue-box:before,
  .page-id-16931 .page-content .col-md-3 .blue-box:before,
  .page-id-16746 .page-content .col-md-3 .blue-box:before,
  .page-id-16913 .page-content .col-md-3 .blue-box:before,
  .page-id-16915 .page-content .col-md-3 .blue-box:before,
  .page-id-16618 .page-content .col-md-3 .blue-box:before,
  .page-id-16367 .page-content .col-md-3 .blue-box:before {
    width: 4px; }
  .page-id-16863 .page-content .col-md-3 .blue-box p,
  .page-id-16867 .page-content .col-md-3 .blue-box p,
  .page-id-16931 .page-content .col-md-3 .blue-box p,
  .page-id-16746 .page-content .col-md-3 .blue-box p,
  .page-id-16913 .page-content .col-md-3 .blue-box p,
  .page-id-16915 .page-content .col-md-3 .blue-box p,
  .page-id-16618 .page-content .col-md-3 .blue-box p,
  .page-id-16367 .page-content .col-md-3 .blue-box p {
    font-size: 14px; }
    .page-id-16863 .page-content .col-md-3 .blue-box p strong,
    .page-id-16867 .page-content .col-md-3 .blue-box p strong,
    .page-id-16931 .page-content .col-md-3 .blue-box p strong,
    .page-id-16746 .page-content .col-md-3 .blue-box p strong,
    .page-id-16913 .page-content .col-md-3 .blue-box p strong,
    .page-id-16915 .page-content .col-md-3 .blue-box p strong,
    .page-id-16618 .page-content .col-md-3 .blue-box p strong,
    .page-id-16367 .page-content .col-md-3 .blue-box p strong {
      font-size: 16px;
      text-align: center;
      display: block; }
    .page-id-16863 .page-content .col-md-3 .blue-box p:first-child,
    .page-id-16867 .page-content .col-md-3 .blue-box p:first-child,
    .page-id-16931 .page-content .col-md-3 .blue-box p:first-child,
    .page-id-16746 .page-content .col-md-3 .blue-box p:first-child,
    .page-id-16913 .page-content .col-md-3 .blue-box p:first-child,
    .page-id-16915 .page-content .col-md-3 .blue-box p:first-child,
    .page-id-16618 .page-content .col-md-3 .blue-box p:first-child,
    .page-id-16367 .page-content .col-md-3 .blue-box p:first-child {
      margin-bottom: 10px;
      min-height: 44px; }
  .page-id-16863 .page-content .col-md-3 .blue-box a,
  .page-id-16867 .page-content .col-md-3 .blue-box a,
  .page-id-16931 .page-content .col-md-3 .blue-box a,
  .page-id-16746 .page-content .col-md-3 .blue-box a,
  .page-id-16913 .page-content .col-md-3 .blue-box a,
  .page-id-16915 .page-content .col-md-3 .blue-box a,
  .page-id-16618 .page-content .col-md-3 .blue-box a,
  .page-id-16367 .page-content .col-md-3 .blue-box a {
    font-size: 14px;
    position: absolute;
    bottom: 10px; }
    .page-id-16863 .page-content .col-md-3 .blue-box a.icon_next,
    .page-id-16867 .page-content .col-md-3 .blue-box a.icon_next,
    .page-id-16931 .page-content .col-md-3 .blue-box a.icon_next,
    .page-id-16746 .page-content .col-md-3 .blue-box a.icon_next,
    .page-id-16913 .page-content .col-md-3 .blue-box a.icon_next,
    .page-id-16915 .page-content .col-md-3 .blue-box a.icon_next,
    .page-id-16618 .page-content .col-md-3 .blue-box a.icon_next,
    .page-id-16367 .page-content .col-md-3 .blue-box a.icon_next {
      bottom: 28px; }

.page-id-16863 .page-content .people-content,
.page-id-16867 .page-content .people-content,
.page-id-16931 .page-content .people-content,
.page-id-16746 .page-content .people-content,
.page-id-16913 .page-content .people-content,
.page-id-16915 .page-content .people-content,
.page-id-16618 .page-content .people-content,
.page-id-16367 .page-content .people-content {
  padding: 0; }

.page-id-16863 .page-content h1#alumni,
.page-id-16867 .page-content h1#alumni,
.page-id-16931 .page-content h1#alumni,
.page-id-16746 .page-content h1#alumni,
.page-id-16913 .page-content h1#alumni,
.page-id-16915 .page-content h1#alumni,
.page-id-16618 .page-content h1#alumni,
.page-id-16367 .page-content h1#alumni {
  margin-top: 0; }

.page-id-16863 .page-content a.vertical-line,
.page-id-16867 .page-content a.vertical-line,
.page-id-16931 .page-content a.vertical-line,
.page-id-16746 .page-content a.vertical-line,
.page-id-16913 .page-content a.vertical-line,
.page-id-16915 .page-content a.vertical-line,
.page-id-16618 .page-content a.vertical-line,
.page-id-16367 .page-content a.vertical-line {
  margin-bottom: 85px; }

.page-id-16863 section.trust,
.page-id-16867 section.trust,
.page-id-16931 section.trust,
.page-id-16746 section.trust,
.page-id-16913 section.trust,
.page-id-16915 section.trust,
.page-id-16618 section.trust,
.page-id-16367 section.trust {
  background: #f7f7f7;
  padding-top: 25px;
  padding-bottom: 0; }
  .page-id-16863 section.trust .row:first-child,
  .page-id-16867 section.trust .row:first-child,
  .page-id-16931 section.trust .row:first-child,
  .page-id-16746 section.trust .row:first-child,
  .page-id-16913 section.trust .row:first-child,
  .page-id-16915 section.trust .row:first-child,
  .page-id-16618 section.trust .row:first-child,
  .page-id-16367 section.trust .row:first-child {
    margin-bottom: 45px; }
  .page-id-16863 section.trust h2,
  .page-id-16867 section.trust h2,
  .page-id-16931 section.trust h2,
  .page-id-16746 section.trust h2,
  .page-id-16913 section.trust h2,
  .page-id-16915 section.trust h2,
  .page-id-16618 section.trust h2,
  .page-id-16367 section.trust h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 35px; }
  .page-id-16863 section.trust .subtitle,
  .page-id-16867 section.trust .subtitle,
  .page-id-16931 section.trust .subtitle,
  .page-id-16746 section.trust .subtitle,
  .page-id-16913 section.trust .subtitle,
  .page-id-16915 section.trust .subtitle,
  .page-id-16618 section.trust .subtitle,
  .page-id-16367 section.trust .subtitle {
    font-size: 18px;
    font-weight: 400; }

.page-id-16863 section.fellows,
.page-id-16867 section.fellows,
.page-id-16931 section.fellows,
.page-id-16746 section.fellows,
.page-id-16913 section.fellows,
.page-id-16915 section.fellows,
.page-id-16618 section.fellows,
.page-id-16367 section.fellows {
  padding-top: 0;
  padding-bottom: 65px;
  margin-top: 0; }

h2.alp-heading {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  color: #999999;
  opacity: 1; }
  @media (max-width: 768px) {
    h2.alp-heading {
      margin-top: 30px; } }

.alp-button {
  background: #11A6DA 0% 0% no-repeat padding-box;
  border-radius: 4px;
  color: #fff;
  padding: 18px 12px;
  font-size: 16px;
  font-weight: 600;
  width: 260px;
  display: inline-block;
  text-align: center;
  margin-right: 50px; }
  .alp-button:hover {
    border: none;
    color: #fff;
    background: #1db0e0; }

.page-id-16863 #masthead,
.page-id-16867 #masthead,
.page-id-16915 #masthead,
.page-id-16931 #masthead,
.page-id-16913 #masthead,
.page-id-16746 #masthead,
.page-id-16618 #masthead {
  background: url(https://alumni.center-for-leadership.org/wp-content/uploads/2019/11/top_photo_alp.jpg);
  background-position: center center; }

.page-id-16863 .page-content,
.page-id-16867 .page-content,
.page-id-16915 .page-content,
.page-id-16931 .page-content,
.page-id-16913 .page-content,
.page-id-16746 .page-content,
.page-id-16618 .page-content {
  padding-top: 15px; }
  @media (max-width: 768px) {
    .page-id-16863 .page-content,
    .page-id-16867 .page-content,
    .page-id-16915 .page-content,
    .page-id-16931 .page-content,
    .page-id-16913 .page-content,
    .page-id-16746 .page-content,
    .page-id-16618 .page-content {
      padding-top: 40px; } }
  .page-id-16863 .page-content a.pdf-link,
  .page-id-16867 .page-content a.pdf-link,
  .page-id-16915 .page-content a.pdf-link,
  .page-id-16931 .page-content a.pdf-link,
  .page-id-16913 .page-content a.pdf-link,
  .page-id-16746 .page-content a.pdf-link,
  .page-id-16618 .page-content a.pdf-link {
    font-size: 18px;
    margin-top: 35px; }
    @media (max-width: 768px) {
      .page-id-16863 .page-content a.pdf-link,
      .page-id-16867 .page-content a.pdf-link,
      .page-id-16915 .page-content a.pdf-link,
      .page-id-16931 .page-content a.pdf-link,
      .page-id-16913 .page-content a.pdf-link,
      .page-id-16746 .page-content a.pdf-link,
      .page-id-16618 .page-content a.pdf-link {
        line-height: 24px; } }
  @media (max-width: 768px) {
    .page-id-16863 .page-content .vv-logos,
    .page-id-16867 .page-content .vv-logos,
    .page-id-16915 .page-content .vv-logos,
    .page-id-16931 .page-content .vv-logos,
    .page-id-16913 .page-content .vv-logos,
    .page-id-16746 .page-content .vv-logos,
    .page-id-16618 .page-content .vv-logos {
      display: inline !important;
      float: none;
      height: 70px; } }
  .page-id-16863 .page-content .alp h1,
  .page-id-16867 .page-content .alp h1,
  .page-id-16915 .page-content .alp h1,
  .page-id-16931 .page-content .alp h1,
  .page-id-16913 .page-content .alp h1,
  .page-id-16746 .page-content .alp h1,
  .page-id-16618 .page-content .alp h1 {
    margin-bottom: 40px; }
  .page-id-16863 .page-content .alp h2,
  .page-id-16867 .page-content .alp h2,
  .page-id-16915 .page-content .alp h2,
  .page-id-16931 .page-content .alp h2,
  .page-id-16913 .page-content .alp h2,
  .page-id-16746 .page-content .alp h2,
  .page-id-16618 .page-content .alp h2 {
    margin-top: 0; }
  .page-id-16863 .page-content .alp .col-md-6 ul,
  .page-id-16863 .page-content .alp .col-md-12 ul,
  .page-id-16867 .page-content .alp .col-md-6 ul,
  .page-id-16867 .page-content .alp .col-md-12 ul,
  .page-id-16915 .page-content .alp .col-md-6 ul,
  .page-id-16915 .page-content .alp .col-md-12 ul,
  .page-id-16931 .page-content .alp .col-md-6 ul,
  .page-id-16931 .page-content .alp .col-md-12 ul,
  .page-id-16913 .page-content .alp .col-md-6 ul,
  .page-id-16913 .page-content .alp .col-md-12 ul,
  .page-id-16746 .page-content .alp .col-md-6 ul,
  .page-id-16746 .page-content .alp .col-md-12 ul,
  .page-id-16618 .page-content .alp .col-md-6 ul,
  .page-id-16618 .page-content .alp .col-md-12 ul {
    font-size: 15px; }
  .page-id-16863 .page-content .alp .col-md-6 p,
  .page-id-16863 .page-content .alp .col-md-12 p,
  .page-id-16867 .page-content .alp .col-md-6 p,
  .page-id-16867 .page-content .alp .col-md-12 p,
  .page-id-16915 .page-content .alp .col-md-6 p,
  .page-id-16915 .page-content .alp .col-md-12 p,
  .page-id-16931 .page-content .alp .col-md-6 p,
  .page-id-16931 .page-content .alp .col-md-12 p,
  .page-id-16913 .page-content .alp .col-md-6 p,
  .page-id-16913 .page-content .alp .col-md-12 p,
  .page-id-16746 .page-content .alp .col-md-6 p,
  .page-id-16746 .page-content .alp .col-md-12 p,
  .page-id-16618 .page-content .alp .col-md-6 p,
  .page-id-16618 .page-content .alp .col-md-12 p {
    font-size: 15px;
    margin-bottom: 15px; }
  .page-id-16863 .page-content #reg,
  .page-id-16867 .page-content #reg,
  .page-id-16915 .page-content #reg,
  .page-id-16931 .page-content #reg,
  .page-id-16913 .page-content #reg,
  .page-id-16746 .page-content #reg,
  .page-id-16618 .page-content #reg {
    margin-bottom: 40px; }
  .page-id-16863 .page-content .cl-apply,
  .page-id-16867 .page-content .cl-apply,
  .page-id-16915 .page-content .cl-apply,
  .page-id-16931 .page-content .cl-apply,
  .page-id-16913 .page-content .cl-apply,
  .page-id-16746 .page-content .cl-apply,
  .page-id-16618 .page-content .cl-apply {
    margin-top: 0px !important; }
    .page-id-16863 .page-content .cl-apply h4,
    .page-id-16867 .page-content .cl-apply h4,
    .page-id-16915 .page-content .cl-apply h4,
    .page-id-16931 .page-content .cl-apply h4,
    .page-id-16913 .page-content .cl-apply h4,
    .page-id-16746 .page-content .cl-apply h4,
    .page-id-16618 .page-content .cl-apply h4 {
      text-transform: none; }

.alp-form .textarea-wrapper {
  margin-bottom: 30px; }
  .alp-form .textarea-wrapper textarea {
    margin-bottom: 0; }

.alp-form select {
  height: 61px; }

.alp-form h4 {
  margin-top: 10px; }

.alp-form .subfield.valid:before {
  left: -65px !important;
  bottom: 97px !important; }

.alp-form .radio-group p {
  margin-bottom: 10px; }

.border-top {
  border-top: 1px solid #5f6064; }

.light, body > footer p {
  font-weight: 300; }

.regular, .sub-menu .menu-container .menu li a, .sub-menu .menu-academy-menu-container .menu li a, body > footer h4 {
  font-weight: 400; }

.semi-bold, .blue-bg span, .breadcrumbs .breadcrumb > li {
  font-weight: 600; }

.bold {
  font-weight: 700; }

.f18 {
  font-size: 18px; }

.f16 {
  font-size: 16px; }

.f14 {
  font-size: 14px !important; }

/* margins */
.mt12 {
  margin-top: 12px; }

.mt0 {
  margin-top: 0px !important; }

.mt10 {
  margin-top: 10px !important; }

.mt20 {
  margin-top: 20px !important; }

.mt30 {
  margin-top: 30px !important; }

.mt50 {
  margin-top: 50px !important; }

.mt100 {
  margin-top: 100px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mb0 {
  margin-bottom: 0px !important; }

/* paddings */
.pt12 {
  padding-top: 12px; }

.ptb10 {
  padding: 10px 0; }

.pb30 {
  padding-bottom: 30px; }

.pb20 {
  padding-bottom: 20px; }

.pb0 {
  padding-bottom: 0 !important; }

.plr30 {
  padding-left: 30px;
  padding-right: 30px; }
  @media screen and (max-width: 992px) {
    .plr30 {
      padding: 0; } }

.blue-bg {
  background: #11a6da;
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100; }
  .blue-bg span {
    font-size: 16px; }
  .blue-bg .pull-right, .blue-bg .progressbar .progressbar-wrapper, .progressbar .blue-bg .progressbar-wrapper {
    height: 100%; }
    .blue-bg .pull-right .close-cta, .blue-bg .progressbar .progressbar-wrapper .close-cta, .progressbar .blue-bg .progressbar-wrapper .close-cta {
      color: #fff;
      width: 16px;
      height: 16px;
      margin-top: 24px;
      display: inline-block; }
      .blue-bg .pull-right .close-cta:before, .blue-bg .progressbar .progressbar-wrapper .close-cta:before, .progressbar .blue-bg .progressbar-wrapper .close-cta:before {
        display: block;
        width: 100%;
        height: 100%;
        content: '';
        color: #fff;
        background: url("../images/close.svg") no-repeat; }
        .blue-bg .pull-right .close-cta:before:hover, .blue-bg .progressbar .progressbar-wrapper .close-cta:before:hover, .progressbar .blue-bg .progressbar-wrapper .close-cta:before:hover {
          text-decoration: none; }
      .blue-bg .pull-right .close-cta:hover, .blue-bg .progressbar .progressbar-wrapper .close-cta:hover, .progressbar .blue-bg .progressbar-wrapper .close-cta:hover {
        text-decoration: none;
        border-bottom: 1px solid transparent;
        cursor: pointer; }
        .blue-bg .pull-right .close-cta:hover:before, .blue-bg .progressbar .progressbar-wrapper .close-cta:hover:before, .progressbar .blue-bg .progressbar-wrapper .close-cta:hover:before {
          text-decoration: none; }

.container.container-tight {
  max-width: 970px; }

h1 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  margin-top: 20px; }

.map-wrapper {
  width: 100%;
  height: 340px;
  border: #ccc solid 1px;
  margin: 20px 0;
  position: relative; }
  .map-wrapper .acf-map {
    width: 100%;
    height: 100%;
    display: block; }
    .map-wrapper .acf-map img {
      max-width: inherit !important; }
  .map-wrapper .map-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block; }

@media screen and (max-width: 480px) {
  .mobile-no-padding {
    padding: 0; } }

.post-password-form h3 {
  color: #b7b7b7;
  font-size: 24px;
  font-weight: 600; }

.t-60 {
  position: relative;
  top: -60px; }

.t-150 {
  position: relative;
  top: -163px; }

body.admin-bar .site-header .navbar {
  top: 32px; }

@media (max-width: 782px) {
  body.admin-bar .site-header .navbar {
    top: 46px; } }

.mb30 {
  margin-bottom: 30px; }

.mt40 {
  margin-top: 40px; }

.mt40imp {
  margin-top: 40px !important; }

.mt45 {
  margin-top: 45px; }

.mt55 {
  margin-top: 55px; }

.red {
  color: #8d1230; }

.blink {
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate; }

.breadcrumbs .breadcrumb {
  padding: 0;
  margin: 30px 0 130px;
  font-size: 12px;
  background: none; }
  .breadcrumbs .breadcrumb > li {
    display: inline; }
    .breadcrumbs .breadcrumb > li a {
      color: #b7b7b7; }
    .breadcrumbs .breadcrumb > li + li:before {
      margin: 0px 7px 0 10px;
      top: 1px;
      position: relative;
      content: '';
      width: 20px;
      background: url("../images/icon_breadcrumb.svg") no-repeat; }

.carousel.fellows-slider {
  display: block;
  width: 100%;
  margin-top: 40px; }
  .carousel.fellows-slider .carousel-indicators {
    bottom: -30px; }
    .carousel.fellows-slider .carousel-indicators li {
      background: #DDDDDD; }
      .carousel.fellows-slider .carousel-indicators li.active {
        background: #BDBDBD; }
  .carousel.fellows-slider .carousel-inner {
    display: block;
    min-height: 340px;
    width: auto;
    margin: 0 100px; }
    .carousel.fellows-slider .carousel-inner .item .quote {
      margin-bottom: 40px;
      transition: all 300ms ease-in-out;
      opacity: 0;
      position: relative;
      left: 50px; }
      .carousel.fellows-slider .carousel-inner .item .quote .quote-img img {
        width: 90px;
        border-radius: 4px; }
      .carousel.fellows-slider .carousel-inner .item .quote .quote-container {
        color: #5f6064; }
        .carousel.fellows-slider .carousel-inner .item .quote .quote-container .quote-content {
          font-size: 18px; }
        .carousel.fellows-slider .carousel-inner .item .quote .quote-container .quote-author {
          font-size: 13px; }
    .carousel.fellows-slider .carousel-inner .item.active .quote {
      opacity: 1;
      left: 0; }
    @media (max-width: 768px) {
      .carousel.fellows-slider .carousel-inner {
        margin: 0 15px; }
        .carousel.fellows-slider .carousel-inner .quote-img {
          margin-bottom: 20px; } }
  .carousel.fellows-slider .carousel-control.left {
    background: url("../images/fellows-prev.svg") 50% 50% no-repeat;
    background-position-y: 70px; }
  .carousel.fellows-slider .carousel-control.right {
    background: url("../images/fellows-next.svg") 50% 50% no-repeat;
    background-position-y: 70px; }

.button {
  padding: 5px 25px;
  margin: 15px 10px;
  display: inline-block;
  border-radius: 5px; }
  .button.button-transparent {
    color: #fff;
    border: 1px solid #fff;
    transition: all 200ms ease-in-out; }
    .button.button-transparent.hover {
      background: #fff;
      color: #11a6da; }
  .button.btn-blue {
    padding: 15px 50px;
    border: none;
    background: #11a6da;
    color: #fff;
    margin: 15px 0; }

body.default {
  background-color: rgba(255, 255, 255, 0.95); }
  body.default.height-auto header {
    height: auto !important; }
    body.default.height-auto header .navbar {
      border-bottom: 1px solid rgba(225, 225, 225, 0.5) !important; }
    body.default.height-auto header .show-sub-menu {
      border-bottom: none !important; }
  body.default > header .navbar-default {
    background-color: #fff;
    border-color: rgba(225, 225, 225, 0.5);
    transition: all 200ms ease-in-out; }
    body.default > header .navbar-default.navbar {
      border-radius: none !important; }
      body.default > header .navbar-default.navbar .social-icon-color {
        display: block; }
      body.default > header .navbar-default.navbar .social-icon-white {
        display: none; }
    body.default > header .navbar-default .logo-color {
      display: block; }
    body.default > header .navbar-default .logo-white {
      display: none; }
    body.default > header .navbar-default .navbar-nav > li > a {
      color: #5f6064; }
    body.default > header .navbar-default .navbar-nav > li .show-big-menu span {
      background: #5f6064; }
    body.default > header .navbar-default .navbar-toggle .icon-bar {
      background: #888888; }

body.default {
  height: auto; }

body.default > header, body.page-template-academy-about-page > header {
  background: none;
  margin-bottom: 0; }
  body.default > header .navbar-default, body.page-template-academy-about-page > header .navbar-default {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    transition: all 200ms ease-in-out; }
    body.default > header .navbar-default.navbar, body.page-template-academy-about-page > header .navbar-default.navbar {
      border-radius: 0; }

body.default .sub-menu, body.page-template-academy-about-page .sub-menu {
  margin-top: 0px; }
  body.default .sub-menu.default-section, body.page-template-academy-about-page .sub-menu.default-section {
    position: fixed;
    top: 90px;
    width: 100%; }
    body.default .sub-menu.default-section.affix-top + .container, body.page-template-academy-about-page .sub-menu.default-section.affix-top + .container {
      position: relative;
      margin-top: 115px; }
  body.default .sub-menu.affix, body.page-template-academy-about-page .sub-menu.affix {
    position: fixed;
    top: 90px;
    width: 100%;
    z-index: 98; }
  body.default .sub-menu.affix + .container, body.page-template-academy-about-page .sub-menu.affix + .container {
    position: relative;
    margin-top: 115px; }
  body.default .sub-menu.video-section, body.page-template-academy-about-page .sub-menu.video-section {
    margin-top: 0; }
    @media screen and (max-width: 480px) {
      body.default .sub-menu.video-section, body.page-template-academy-about-page .sub-menu.video-section {
        position: relative;
        top: 60px; }
        body.default .sub-menu.video-section.affix, body.page-template-academy-about-page .sub-menu.video-section.affix {
          position: fixed; } }
    body.default .sub-menu.video-section.affix, body.page-template-academy-about-page .sub-menu.video-section.affix {
      top: 90px; }
      body.default .sub-menu.video-section.affix + .container, body.page-template-academy-about-page .sub-menu.video-section.affix + .container {
        margin-top: 47px; }

body .sub-menu.people-section.affix {
  position: fixed;
  top: 90px;
  width: 100%;
  margin-top: 0; }
  body .sub-menu.people-section.affix + .container {
    padding-top: 60px; }

.inline ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .inline ul li {
    padding: 10px; }
    .inline ul li a {
      color: #fff; }

@media (max-width: 992px) {
  header .navbar-header .show-big-menu {
    display: block;
    top: 17px;
    padding-top: 13px;
    margin-top: 7px;
    padding-bottom: 7px; }
  .navbar-header {
    float: none; }
  .navbar-left, .navbar-right {
    float: none !important; }
  .navbar-toggle {
    display: block; }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px; }
  .navbar-collapse.collapse {
    display: none !important; }
  .navbar-nav {
    float: none !important;
    margin-top: 7.5px; }
  .navbar-nav > li {
    float: none; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px; }
  .collapse.in {
    display: block !important; } }

header.video {
  position: relative;
  height: 540px;
  z-index: 100; }
  @media screen and (max-width: 768px) {
    header.video {
      height: 50vh; } }
  @media screen and (max-width: 480px) {
    header.video {
      height: 50vh; } }
  header.video .video-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    overflow: hidden; }
    @media screen and (max-width: 480px) {
      header.video .video-wrapper {
        height: 120%; } }
    header.video .video-wrapper #bgvideo {
      margin: 0 auto;
      height: 100%;
      width: 100%; }
    header.video .video-wrapper #replaceVideoBg img {
      max-width: none;
      width: auto;
      height: 100%;
      margin: 0 auto; }
    header.video .video-wrapper video {
      -ms-flex: 1;
          flex: 1;
      transition: 1s opacity;
      margin: 0 auto;
      width: 100%; }
      @media screen and (max-width: 1720px) {
        header.video .video-wrapper video {
          width: auto;
          height: 100%; } }
      @media screen and (max-width: 480px) {
        header.video .video-wrapper video {
          width: auto;
          height: 100%; } }
    header.video .video-wrapper .video-overlay {
      background: rgba(0, 0, 0, 0.4);
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
    header.video .video-wrapper .stopfade {
      opacity: .5; }

.overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; }

.home-slider.video-slider {
  -ms-flex-pack: center;
      justify-content: center;
  height: 50%;
  width: 100%;
  position: absolute;
  top: 90px; }

.navbar-fixed-top {
  height: 90px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }

.userbar {
  background: #55BCE0;
  height: 60px;
  width: 100%;
  margin-top: 90px;
  font-size: 23px;
  color: #fff;
  line-height: 60px;
  font-weight: 400;
  z-index: 103;
  font-size: 18px; }
  .userbar span {
    font-weight: 400;
    font-size: 18px; }
  .userbar a {
    font-weight: 600;
    line-height: 60px;
    text-transform: uppercase;
    color: #fff; }
    .userbar a:hover {
      border-color: #fff; }
  .userbar.affix, .userbar.affix-top {
    position: fixed; }
    .userbar.affix + div, .userbar.affix + iframe, .userbar.affix-top + div, .userbar.affix-top + iframe {
      margin-top: 150px; }
  .userbar + .account.customlogin {
    margin-top: 50px; }
  @media screen and (max-width: 992px) {
    .userbar {
      font-size: 18px; }
      .userbar #logoutBtn {
        font-size: 18px;
        padding: 3px 10px;
        margin-top: 14px; } }
  @media screen and (max-width: 768px) {
    .userbar {
      font-size: 16px; }
      .userbar a {
        font-size: 16px; }
      .userbar #logoutBtn {
        font-size: 16px;
        margin-top: 16px; } }
  @media screen and (max-width: 480px) {
    .userbar {
      min-height: 60px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      font-size: 14px;
      line-height: 30px;
      padding-bottom: 5px; }
      .userbar a {
        font-size: 14px;
        line-height: 24px;
        margin-top: 0; }
      .userbar #logoutBtn {
        margin-top: 2px;
        font-size: 14px; }
      .userbar .vmiddle {
        text-align: center; }
        .userbar .vmiddle #logoutBtn {
          float: none !important;
          margin-left: 5px; } }

#application-form-step2 {
  margin-top: 150px; }

.page-template-multimedia-page .navbar.affix + .page-header-container {
  padding-top: 202px; }

.page-id-47 .navbar.affix + .page-header-container {
  padding-top: 180px; }

.page-id-6708 .navbar.affix {
  border-bottom: 1px solid rgba(225, 225, 225, 0.5); }
  .page-id-6708 .navbar.affix + .page-header-container {
    padding-top: 210px; }

body header .show-sub-menu {
  background: white;
  border-bottom: none !important; }
  body header .show-sub-menu .social-icon-color,
  body header .show-sub-menu .logo-color {
    display: block; }
  body header .show-sub-menu .social-icon-white,
  body header .show-sub-menu .logo-white {
    display: none; }
  body header .show-sub-menu .navbar-nav > li > a,
  body header .show-sub-menu .navbar-nav > li.active > a {
    color: #5f6064; }
  body header .show-sub-menu.affix-top .navbar-nav > li > a:hover {
    color: #5f6064 !important;
    border-color: #5f6064 !important; }

header .navbar-nav {
  /*&> li:hover{
		&>.sub-menu{
			display: block;
			}
	}*/ }
  header .navbar-nav > li > .sub-menu {
    border-bottom: 1px solid rgba(225, 225, 225, 0.5) !important;
    visibility: hidden;
    opacity: 0;
    /*@include animated(500ms);*/
    background: white;
    border: 0;
    position: fixed;
    left: 0;
    top: 90px;
    width: 100%;
    padding: 30px; }
    header .navbar-nav > li > .sub-menu .contact-url {
      color: #11a6da; }
    header .navbar-nav > li > .sub-menu.show-menu {
      visibility: visible;
      opacity: 1; }
    header .navbar-nav > li > .sub-menu a {
      color: #5f6064; }
      header .navbar-nav > li > .sub-menu a:hover {
        border-color: #5f6064; }
    header .navbar-nav > li > .sub-menu .bold a {
      font-weight: bold; }
    header .navbar-nav > li > .sub-menu .sub-menu {
      background: none;
      border: 0; }
    header .navbar-nav > li > .sub-menu > .overlay-submenu h3 {
      color: #8d1230;
      font-size: 42px;
      font-weight: 600;
      margin-top: 0;
      line-height: 1; }
    header .navbar-nav > li > .sub-menu > .overlay-submenu > div > li {
      display: inline-block;
      float: left;
      margin-right: 20px;
      width: 30%;
      font-size: 16px; }
      header .navbar-nav > li > .sub-menu > .overlay-submenu > div > li > a {
        font-weight: bold; }
      header .navbar-nav > li > .sub-menu > .overlay-submenu > div > li > ul {
        list-style-type: none;
        padding-left: 0;
        margin-top: -6px; }
        header .navbar-nav > li > .sub-menu > .overlay-submenu > div > li > ul li {
          margin-bottom: 2px; }
          header .navbar-nav > li > .sub-menu > .overlay-submenu > div > li > ul li.bold {
            margin-top: 10px; }
        header .navbar-nav > li > .sub-menu > .overlay-submenu > div > li > ul li:first-child {
          margin-top: 6px; }
        header .navbar-nav > li > .sub-menu > .overlay-submenu > div > li > ul li.bold:first-child {
          margin-top: 12px; }

header .affix-top .navbar-nav > li.active.current-menu-ancestor > a {
  border-color: transparent; }

header .affix-top.show-sub-menu .navbar-nav > li.active.current-menu-ancestor > a {
  border-color: transparent;
  color: #5f6064; }

section.contact input, section.contact select {
  height: auto;
  padding: 17px 20px;
  transition: all 200ms ease-in-out; }

table.table tr th, table.table tr td {
  padding: 4px 8px; }

table.table tr th {
  border-top: none;
  width: 35%;
  padding-left: 0; }
  table.table tr th + td {
    text-align: left; }

table.table tr td {
  border-top: none; }

.graybg table.table tr th, .graybg table.table tr td {
  padding: 4px 8px;
  color: #a1a1a1; }

.costs-table {
  border-collapse: collapse; }
  .costs-table, .costs-table td, .costs-table th {
    border: 1px solid #e1e1e1; }
  .costs-table td, .costs-table p, .costs-table ul, .costs-table li {
    font-size: 16px; }
  .costs-table tbody tr:first-child > td {
    width: 33.3333%; }
  .costs-table tbody td {
    padding: 10px;
    vertical-align: top; }
  .costs-table tbody li {
    list-style-type: disc; }

.fellows {
  background: #f7f7f7;
  padding: 50px 0 80px;
  margin-top: 50px; }
  .fellows h4 {
    color: #BDBDBD;
    font-size: 22px; }

.sub-menu {
  background: #f7f7f7;
  border-top: 1px solid rgba(225, 225, 225, 0.5);
  border-bottom: 1px solid rgba(225, 225, 225, 0.5);
  position: relative;
  z-index: 99; }
  .sub-menu .menu-container .menu, .sub-menu .menu-academy-menu-container .menu {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    list-style: none;
    margin: 0;
    padding: 0; }
    .sub-menu .menu-container .menu li, .sub-menu .menu-academy-menu-container .menu li {
      position: relative;
      padding: 15px 0;
      z-index: 100; }
      .sub-menu .menu-container .menu li a, .sub-menu .menu-academy-menu-container .menu li a {
        transition: all 200ms ease-in-out;
        color: #5f6064;
        font-size: 16px; }
        .sub-menu .menu-container .menu li a:hover, .sub-menu .menu-container .menu li a:focus, .sub-menu .menu-container .menu li a:active, .sub-menu .menu-academy-menu-container .menu li a:hover, .sub-menu .menu-academy-menu-container .menu li a:focus, .sub-menu .menu-academy-menu-container .menu li a:active {
          text-decoration: none !important;
          border-bottom: none; }
      .sub-menu .menu-container .menu li.current-menu-item, .sub-menu .menu-academy-menu-container .menu li.current-menu-item {
        overflow: hidden; }
        .sub-menu .menu-container .menu li.current-menu-item a, .sub-menu .menu-academy-menu-container .menu li.current-menu-item a {
          color: #89112e; }
        .sub-menu .menu-container .menu li.current-menu-item:before, .sub-menu .menu-academy-menu-container .menu li.current-menu-item:before {
          position: absolute;
          top: -4px;
          left: calc(50% - 4px);
          content: '';
          display: block;
          width: 8px;
          height: 8px;
          transform: rotate(45deg);
          background: #89112e;
          border: 2px solid #89112e;
          z-index: 999; }
    @media screen and (max-width: 992px) {
      .sub-menu .menu-container .menu, .sub-menu .menu-academy-menu-container .menu {
        -ms-flex-direction: column;
            flex-direction: column;
        padding: 15px 25px 5px 25px;
        display: none; }
        .sub-menu .menu-container .menu li, .sub-menu .menu-academy-menu-container .menu li {
          -ms-flex-item-align: start;
              align-self: flex-start;
          padding: 5px 0; }
          .sub-menu .menu-container .menu li.current-menu-item:before, .sub-menu .menu-academy-menu-container .menu li.current-menu-item:before {
            border: none;
            background: none; } }
  @media screen and (max-width: 992px) {
    .sub-menu.open .menu-container .menu, .sub-menu.open .menu-academy-menu-container .menu {
      display: -ms-flexbox;
      display: flex; } }
  .sub-menu.people-section .menu-container .menu {
    -ms-flex-pack: start;
        justify-content: flex-start; }
    .sub-menu.people-section .menu-container .menu li {
      margin-right: 50px; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  -moz-osx-font-smoothing: grayscale; }
  body > footer .newsletter .error {
    margin-top: 10px;
    margin-bottom: 15px; }
  body > footer .newsletter input[type="email"] {
    width: calc(100% - 92px); }

.custom-login form label {
  display: block;
  text-align: left;
  padding-left: 5%; }

.custom-login form input:not([type="submit"]):not([type="checkbox"]) {
  width: 90%;
  border: 1px solid #e1e1e1;
  background: #fff;
  padding: 10px; }

.custom-login form input[type="submit"] {
  display: block;
  text-align: center;
  background: #8d1230;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 20px auto 0px auto;
  border-radius: 4px;
  width: 200px;
  height: 56px;
  border: none; }
  .custom-login form input[type="submit"]:hover {
    background: #9a1434; }

#nav {
  text-align: center;
  padding-top: 20px;
  margin-top: 100px; }
  #nav a {
    font-size: 18px;
    font-weight: 600;
    color: #8d1230;
    position: relative; }
    #nav a:before {
      content: "";
      background: #e1e1e1;
      position: absolute;
      top: -90px;
      left: 50%;
      height: 70px;
      width: 1px; }

.customlogin-partner #login {
  padding: 2% 0 0;
  overflow: visible; }

.customlogin-partner #login_error,
.customlogin-partner p.message {
  margin-top: 30px; }

.customlogin-partner #login_error {
  border-left: 5px solid #8d1230; }

.customlogin-partner h1 a {
  display: none; }

.customlogin-partner h1 {
  background: url(../images/CL_logo_gradient_v2.svg) no-repeat center center;
  background-size: 250px 77px;
  height: 150px; }

.customlogin-partner h2 {
  font-size: 32px;
  color: #5f6064;
  font-weight: 300;
  width: auto;
  line-height: 1.2;
  text-align: center;
  margin: 70px 0 50px 0px; }

.customlogin-partner h3 {
  font-size: 32px;
  color: #5f6064;
  font-weight: 300;
  text-align: center; }

.customlogin-partner form {
  box-shadow: none; }
  .customlogin-partner form .forgetmenot {
    float: none; }
    .customlogin-partner form .forgetmenot label {
      font-size: 16px; }

.customlogin-partner label {
  font-size: 16px;
  font-weight: 400;
  color: #5f6064; }

.customlogin-partner input[type="text"],
.customlogin-partner input[type="password"] {
  width: 100%;
  background: #f7f7f7;
  border-radius: 4px;
  margin: 0px 0 10px 0;
  border: none;
  padding: 11px 20px;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  box-shadow: none; }

.customlogin-partner .button-large {
  float: none;
  border: none;
  display: block;
  background: #8d1230;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  outline: none;
  margin: 45px auto 20px;
  border-radius: 4px;
  height: 56px !important;
  text-shadow: none;
  text-transform: uppercase;
  box-shadow: none; }
  .customlogin-partner .button-large:focus, .customlogin-partner .button-large:active, .customlogin-partner .button-large:hover {
    background: #8d1230;
    opacity: .9;
    box-shadow: none;
    transform: translateY(0px); }

.customlogin-partner p.submit {
  text-align: center; }

.customlogin-partner #backtoblog {
  display: none; }

.customlogin-partner #nav {
  text-align: center;
  padding-top: 20px; }
  .customlogin-partner #nav a {
    font-size: 18px;
    font-weight: 600;
    color: #8d1230;
    position: relative; }
    .customlogin-partner #nav a:before {
      content: "";
      background: #e1e1e1;
      position: absolute;
      top: -90px;
      left: 50%;
      height: 70px;
      width: 1px; }

.photo-wrapper {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  margin: 65px auto 30px; }
  @media screen and (max-width: 1200px) {
    .photo-wrapper {
      margin-top: 40px; } }
  .photo-wrapper .photo-overflow {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 5px; }
    .photo-wrapper .photo-overflow img {
      margin: 0; }
  .photo-wrapper .photo-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 99; }
    .photo-wrapper .photo-desc .photoinput {
      position: absolute;
      bottom: -45px;
      width: 90%;
      left: -8%;
      text-align: center; }
      .photo-wrapper .photo-desc .photoinput .labelphoto {
        display: inline-block;
        background: #11a6da;
        color: #fff;
        padding: 5px 25px;
        margin: 0 auto;
        border-radius: 3px;
        font-size: 16px;
        font-weight: 600; }
        .photo-wrapper .photo-desc .photoinput .labelphoto:hover {
          cursor: pointer; }
      .photo-wrapper .photo-desc .photoinput label.error {
        bottom: -25px;
        left: 25px; }
      .photo-wrapper .photo-desc .photoinput .inputphoto {
        width: 0.1px;
        height: 0.1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1; }
  .photo-wrapper .photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 98; }

#showDeleteForm .button.btn-blue {
  padding: 6px 25px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600; }

.cl-apply table {
  font-size: 15px; }
  .cl-apply table th {
    padding-left: 0 !important;
    width: 46% !important; }
  .cl-apply table th, .cl-apply table td {
    color: #5f6064 !important; }

.cl-apply ol {
  list-style-type: decimal; }
  .cl-apply ol li {
    margin-bottom: 10px; }
  .cl-apply ol ol {
    list-style-type: lower-alpha; }

.cl-apply .application-contribution-additional-questions-sr:before {
  left: -90px !important; }

.cl-apply .additional-questions {
  margin-left: 26px;
  font-weight: 300;
  position: relative; }
  .cl-apply .additional-questions p {
    margin-bottom: 0; }
  .cl-apply .additional-questions p:last-child {
    margin-bottom: 30px; }
  .cl-apply .additional-questions input[type=number]::-webkit-inner-spin-button,
  .cl-apply .additional-questions input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; }
  .cl-apply .additional-questions textarea {
    border-color: #5f6064; }
    .cl-apply .additional-questions textarea.error {
      border-left: 1px solid; }
    .cl-apply .additional-questions textarea:focus {
      border: 1px solid #3ca4d9; }
  .cl-apply .additional-questions label.textarea {
    font-size: 16px;
    font-weight: 400;
    padding-left: 0;
    margin-top: 15px; }
  .cl-apply .additional-questions label.error {
    left: 0;
    bottom: 0; }
  .cl-apply .additional-questions #tuition_part {
    width: 80px; }
  .cl-apply .additional-questions #tuition_part-error,
  .cl-apply .additional-questions #application_fee-error {
    bottom: -27px; }
  .cl-apply .additional-questions.valid:not(.photoinput):before {
    top: 30px; }

.cl-apply input.inline-field {
  position: relative;
  width: 60px;
  height: 24px;
  padding: 0px 5px;
  margin-top: -10px;
  margin-right: 4px;
  font-weight: bold;
  border-color: #5f6064;
  visibility: visible !important; }
  .cl-apply input.inline-field:focus {
    border: 1px solid #3ca4d9; }

.account h2 {
  font-size: 48px;
  margin-top: 50px !important;
  margin-bottom: 30px; }

.account .custom-login form {
  width: 80%;
  margin: 0 auto; }
  .account .custom-login form label {
    display: none; }
  .account .custom-login form input[type="text"], .account .custom-login form input[type="password"] {
    background: #f7f7f7;
    height: 60px;
    border: none;
    font-size: 18px;
    border-radius: 5px; }
  .account .custom-login form input[type="submit"] {
    padding: 15px 50px;
    border: none;
    background: #11a6da;
    color: #fff;
    margin: 15px auto; }
    .account .custom-login form input[type="submit"]:disabled {
      background: #5f6064; }

.account table {
  font-size: 15px; }
  .account table th {
    padding-left: 0 !important;
    width: 35% !important; }
  .account table th, .account table td {
    color: #5f6064 !important; }

.account .rff h5 {
  margin-top: 20px; }

.account .rff h4 {
  text-transform: none; }

.account .rff p, .account .rff ul, .account .rff ol, .account .rff li {
  font-size: 16px; }

.account .rff ol {
  list-style-type: decimal; }
  .account .rff ol li {
    margin-bottom: 10px; }
  .account .rff ol ol {
    list-style-type: lower-alpha; }
    .account .rff ol ol li {
      margin-bottom: 0; }

.page-template-account-page p {
  font-size: 15px; }

.graybg {
  background: #f7f7f7;
  padding-bottom: 0px;
  margin-bottom: 30px; }

.progressbar {
  margin-top: 13px; }
  .progressbar .progressbar-wrapper {
    display: inline-block;
    height: 8px;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
    margin-top: 7px; }
    .progressbar .progressbar-wrapper span {
      display: block;
      background: #3eb068;
      height: 100%; }

#loader {
  margin: 40px auto; }

.cl-apply div.valid:not(.photoinput) {
  position: relative; }
  .cl-apply div.valid:not(.photoinput):before {
    display: block;
    width: 26px;
    height: 26px;
    content: '';
    position: absolute;
    bottom: 27px;
    left: -35px;
    top: auto;
    border: 1px solid #3eb068;
    background: url(../images/check.svg) center center no-repeat;
    background-size: 10px 10px; }
  .cl-apply div.valid:not(.photoinput).textarea-wrapper:before {
    bottom: 107px; }
  .cl-apply div.valid:not(.photoinput).info-right:before {
    left: auto;
    right: -35px; }
    @media screen and (max-width: 992px) {
      .cl-apply div.valid:not(.photoinput).info-right:before {
        left: -35px;
        right: auto; } }

@media screen and (max-width: 1200px) {
  .cl-apply {
    margin: 0 40px; } }

@media screen and (max-width: 768px) {
  .cl-apply {
    margin: 0 40px; }
    .cl-apply div.valid:not(.photoinput):before, .cl-apply div.valid:not(.photoinput).info-right:before {
      left: -28px; } }

@media screen and (max-width: 480px) {
  .cl-apply {
    margin: 0; }
    .cl-apply div.valid:not(.photoinput):before, .cl-apply div.valid:not(.photoinput).info-right:before {
      display: none; } }

@media screen and (max-width: 992px) {
  .graybg .cl-apply {
    margin: 0; } }

@media screen and (max-width: 480px) {
  .graybg .cl-apply {
    margin: 0; } }

#logoutBtn {
  margin: 14px 0 0 0;
  line-height: normal;
  transition: all 300ms ease-in-out; }
  #logoutBtn:hover {
    border-color: 1px solid #11a6da;
    background: #fff;
    color: #11a6da; }

.btn-inline-small.btn-blue {
  display: inline-block;
  background: #11a6da;
  color: #fff;
  padding: 5px 10px;
  margin: 0 auto;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400; }

tr.status td {
  color: #8d1230 !important; }

p.pay-info {
  color: #8d1230;
  font-size: 15px;
  font-weight: bold; }

.pay-button {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  border-radius: 4px;
  height: 32px;
  padding: 5px 30px;
  border: none;
  color: #fff;
  background: #8d1230;
  color: #fff;
  margin: 0px 0 20px 0; }
  .pay-button:hover {
    color: #fff;
    opacity: 0.9; }

html {
  position: relative;
  min-height: 100%;
  font-size: 100%; }
  html.not-responsive {
    min-width: 1200px;
    overflow-y: scroll; }

#accordion_panel_partner {
  margin-top: 50px; }

.panel-partner-alert {
  background: rgba(17, 166, 218, 0.1);
  color: #0d7fa7;
  font-size: 14px;
  margin-top: 50px;
  padding: 10px 20px;
  margin-bottom: 0; }

.panel-partner-info {
  color: #5F6064; }
  .panel-partner-info h2 {
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 43px; }
  .panel-partner-info p {
    font-size: 18px;
    line-height: 26px; }

.page-template-page-accordion,
.page-template-page-accordion-alumni,
.page-template-page-panel-alp-registration,
.page-template-page-panel-registration,
.page-template-page-panel-registration2step,
.page-template-page-panel-registration3step,
.page-template-page-panel-facebook,
.page-template-page-panel-voting,
.page-template-page-panel-invitation,
.page-template-page-panel-partner,
.page-template-page-panel-admin {
  font-size: 1rem;
  min-width: 1200px;
  /* Accordeon
	-------------------------------------------------- */
  /* ----------------------------------------------- */
  /* Sticky footer styles
	-------------------------------------------------- */ }
  .page-template-page-accordion > .container,
  .page-template-page-accordion-alumni > .container,
  .page-template-page-panel-alp-registration > .container,
  .page-template-page-panel-registration > .container,
  .page-template-page-panel-registration2step > .container,
  .page-template-page-panel-registration3step > .container,
  .page-template-page-panel-facebook > .container,
  .page-template-page-panel-voting > .container,
  .page-template-page-panel-invitation > .container,
  .page-template-page-panel-partner > .container,
  .page-template-page-panel-admin > .container {
    padding: 145px 15px 0; }
  .page-template-page-accordion .container .text-muted,
  .page-template-page-accordion-alumni .container .text-muted,
  .page-template-page-panel-alp-registration .container .text-muted,
  .page-template-page-panel-registration .container .text-muted,
  .page-template-page-panel-registration2step .container .text-muted,
  .page-template-page-panel-registration3step .container .text-muted,
  .page-template-page-panel-facebook .container .text-muted,
  .page-template-page-panel-voting .container .text-muted,
  .page-template-page-panel-invitation .container .text-muted,
  .page-template-page-panel-partner .container .text-muted,
  .page-template-page-panel-admin .container .text-muted {
    margin: 20px 0; }
  .page-template-page-accordion .dropdown .dropdown-toggle .caret,
  .page-template-page-accordion-alumni .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-alp-registration .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-registration .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-registration2step .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-registration3step .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-facebook .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-voting .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-invitation .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-partner .dropdown .dropdown-toggle .caret,
  .page-template-page-panel-admin .dropdown .dropdown-toggle .caret {
    background: url(../images/icon_open_white.svg) no-repeat 0 0;
    background-size: 100%;
    border: none;
    width: 10px;
    height: 5px;
    margin-top: -2px; }
  .page-template-page-accordion .dropdown.open .dropdown-toggle .caret,
  .page-template-page-accordion-alumni .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-alp-registration .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-registration .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-registration2step .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-registration3step .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-facebook .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-voting .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-invitation .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-partner .dropdown.open .dropdown-toggle .caret,
  .page-template-page-panel-admin .dropdown.open .dropdown-toggle .caret {
    background-image: url(../images/icon_close_white.svg); }
  .page-template-page-accordion .dropdown.open > a,
  .page-template-page-accordion-alumni .dropdown.open > a,
  .page-template-page-panel-alp-registration .dropdown.open > a,
  .page-template-page-panel-registration .dropdown.open > a,
  .page-template-page-panel-registration2step .dropdown.open > a,
  .page-template-page-panel-registration3step .dropdown.open > a,
  .page-template-page-panel-facebook .dropdown.open > a,
  .page-template-page-panel-voting .dropdown.open > a,
  .page-template-page-panel-invitation .dropdown.open > a,
  .page-template-page-panel-partner .dropdown.open > a,
  .page-template-page-panel-admin .dropdown.open > a {
    background: #730f27 !important;
    border-radius: 0; }
  .page-template-page-accordion .dropdown-menu,
  .page-template-page-accordion-alumni .dropdown-menu,
  .page-template-page-panel-alp-registration .dropdown-menu,
  .page-template-page-panel-registration .dropdown-menu,
  .page-template-page-panel-registration2step .dropdown-menu,
  .page-template-page-panel-registration3step .dropdown-menu,
  .page-template-page-panel-facebook .dropdown-menu,
  .page-template-page-panel-voting .dropdown-menu,
  .page-template-page-panel-invitation .dropdown-menu,
  .page-template-page-panel-partner .dropdown-menu,
  .page-template-page-panel-admin .dropdown-menu {
    background: rgba(40, 40, 43, 0.95);
    color: #fff;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 20px 0;
    min-width: 100%; }
    .page-template-page-accordion .dropdown-menu li a,
    .page-template-page-accordion-alumni .dropdown-menu li a,
    .page-template-page-panel-alp-registration .dropdown-menu li a,
    .page-template-page-panel-registration .dropdown-menu li a,
    .page-template-page-panel-registration2step .dropdown-menu li a,
    .page-template-page-panel-registration3step .dropdown-menu li a,
    .page-template-page-panel-facebook .dropdown-menu li a,
    .page-template-page-panel-voting .dropdown-menu li a,
    .page-template-page-panel-invitation .dropdown-menu li a,
    .page-template-page-panel-partner .dropdown-menu li a,
    .page-template-page-panel-admin .dropdown-menu li a {
      position: relative;
      color: #fff;
      border-bott: 1px solid transparent;
      white-space: normal; }
      .page-template-page-accordion .dropdown-menu li a:hover,
      .page-template-page-accordion-alumni .dropdown-menu li a:hover,
      .page-template-page-panel-alp-registration .dropdown-menu li a:hover,
      .page-template-page-panel-registration .dropdown-menu li a:hover,
      .page-template-page-panel-registration2step .dropdown-menu li a:hover,
      .page-template-page-panel-registration3step .dropdown-menu li a:hover,
      .page-template-page-panel-facebook .dropdown-menu li a:hover,
      .page-template-page-panel-voting .dropdown-menu li a:hover,
      .page-template-page-panel-invitation .dropdown-menu li a:hover,
      .page-template-page-panel-partner .dropdown-menu li a:hover,
      .page-template-page-panel-admin .dropdown-menu li a:hover {
        background: none;
        border: none;
        text-decoration: underline; }
  .page-template-page-accordion .panel-default > .panel-heading,
  .page-template-page-accordion-alumni .panel-default > .panel-heading,
  .page-template-page-panel-alp-registration .panel-default > .panel-heading,
  .page-template-page-panel-registration .panel-default > .panel-heading,
  .page-template-page-panel-registration2step .panel-default > .panel-heading,
  .page-template-page-panel-registration3step .panel-default > .panel-heading,
  .page-template-page-panel-facebook .panel-default > .panel-heading,
  .page-template-page-panel-voting .panel-default > .panel-heading,
  .page-template-page-panel-invitation .panel-default > .panel-heading,
  .page-template-page-panel-partner .panel-default > .panel-heading,
  .page-template-page-panel-admin .panel-default > .panel-heading {
    background-color: #ffffff; }
  .page-template-page-accordion .panel-body, .page-template-page-accordion .personal-note,
  .page-template-page-accordion-alumni .panel-body,
  .page-template-page-accordion-alumni .personal-note,
  .page-template-page-panel-alp-registration .panel-body,
  .page-template-page-panel-alp-registration .personal-note,
  .page-template-page-panel-registration .panel-body,
  .page-template-page-panel-registration .personal-note,
  .page-template-page-panel-registration2step .panel-body,
  .page-template-page-panel-registration2step .personal-note,
  .page-template-page-panel-registration3step .panel-body,
  .page-template-page-panel-registration3step .personal-note,
  .page-template-page-panel-facebook .panel-body,
  .page-template-page-panel-facebook .personal-note,
  .page-template-page-panel-voting .panel-body,
  .page-template-page-panel-voting .personal-note,
  .page-template-page-panel-invitation .panel-body,
  .page-template-page-panel-invitation .personal-note,
  .page-template-page-panel-partner .panel-body,
  .page-template-page-panel-partner .personal-note,
  .page-template-page-panel-admin .panel-body,
  .page-template-page-panel-admin .personal-note {
    background-color: #f7f7f7; }
  .page-template-page-accordion .panel-body,
  .page-template-page-accordion-alumni .panel-body,
  .page-template-page-panel-alp-registration .panel-body,
  .page-template-page-panel-registration .panel-body,
  .page-template-page-panel-registration2step .panel-body,
  .page-template-page-panel-registration3step .panel-body,
  .page-template-page-panel-facebook .panel-body,
  .page-template-page-panel-voting .panel-body,
  .page-template-page-panel-invitation .panel-body,
  .page-template-page-panel-partner .panel-body,
  .page-template-page-panel-admin .panel-body {
    padding: 20px 37px; }
    .page-template-page-accordion .panel-body h3,
    .page-template-page-accordion-alumni .panel-body h3,
    .page-template-page-panel-alp-registration .panel-body h3,
    .page-template-page-panel-registration .panel-body h3,
    .page-template-page-panel-registration2step .panel-body h3,
    .page-template-page-panel-registration3step .panel-body h3,
    .page-template-page-panel-facebook .panel-body h3,
    .page-template-page-panel-voting .panel-body h3,
    .page-template-page-panel-invitation .panel-body h3,
    .page-template-page-panel-partner .panel-body h3,
    .page-template-page-panel-admin .panel-body h3 {
      margin-top: 0;
      margin-bottom: 20px;
      font-size: 1.500rem;
      font-weight: 300; }
    .page-template-page-accordion .panel-body .h3,
    .page-template-page-accordion-alumni .panel-body .h3,
    .page-template-page-panel-alp-registration .panel-body .h3,
    .page-template-page-panel-registration .panel-body .h3,
    .page-template-page-panel-registration2step .panel-body .h3,
    .page-template-page-panel-registration3step .panel-body .h3,
    .page-template-page-panel-facebook .panel-body .h3,
    .page-template-page-panel-voting .panel-body .h3,
    .page-template-page-panel-invitation .panel-body .h3,
    .page-template-page-panel-partner .panel-body .h3,
    .page-template-page-panel-admin .panel-body .h3 {
      margin-top: 10px;
      margin-bottom: 10px; }
  .page-template-page-accordion .footer,
  .page-template-page-accordion-alumni .footer,
  .page-template-page-panel-alp-registration .footer,
  .page-template-page-panel-registration .footer,
  .page-template-page-panel-registration2step .footer,
  .page-template-page-panel-registration3step .footer,
  .page-template-page-panel-facebook .footer,
  .page-template-page-panel-voting .footer,
  .page-template-page-panel-invitation .footer,
  .page-template-page-panel-partner .footer,
  .page-template-page-panel-admin .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    background-color: #18191B; }
  .page-template-page-accordion .status-filter,
  .page-template-page-accordion-alumni .status-filter,
  .page-template-page-panel-alp-registration .status-filter,
  .page-template-page-panel-registration .status-filter,
  .page-template-page-panel-registration2step .status-filter,
  .page-template-page-panel-registration3step .status-filter,
  .page-template-page-panel-facebook .status-filter,
  .page-template-page-panel-voting .status-filter,
  .page-template-page-panel-invitation .status-filter,
  .page-template-page-panel-partner .status-filter,
  .page-template-page-panel-admin .status-filter {
    height: 60px;
    position: fixed;
    top: 90px;
    width: 100%;
    background: #f7f7f7;
    border-bottom: 1px solid #e1e1e1;
    padding-top: 18px;
    z-index: 999; }
    .page-template-page-accordion .status-filter a,
    .page-template-page-accordion-alumni .status-filter a,
    .page-template-page-panel-alp-registration .status-filter a,
    .page-template-page-panel-registration .status-filter a,
    .page-template-page-panel-registration2step .status-filter a,
    .page-template-page-panel-registration3step .status-filter a,
    .page-template-page-panel-facebook .status-filter a,
    .page-template-page-panel-voting .status-filter a,
    .page-template-page-panel-invitation .status-filter a,
    .page-template-page-panel-partner .status-filter a,
    .page-template-page-panel-admin .status-filter a {
      color: #5f6064;
      margin: 0 15px;
      font-weight: 400;
      position: relative; }
      .page-template-page-accordion .status-filter a:first-child,
      .page-template-page-accordion-alumni .status-filter a:first-child,
      .page-template-page-panel-alp-registration .status-filter a:first-child,
      .page-template-page-panel-registration .status-filter a:first-child,
      .page-template-page-panel-registration2step .status-filter a:first-child,
      .page-template-page-panel-registration3step .status-filter a:first-child,
      .page-template-page-panel-facebook .status-filter a:first-child,
      .page-template-page-panel-voting .status-filter a:first-child,
      .page-template-page-panel-invitation .status-filter a:first-child,
      .page-template-page-panel-partner .status-filter a:first-child,
      .page-template-page-panel-admin .status-filter a:first-child {
        margin-left: 0; }
      .page-template-page-accordion .status-filter a:hover,
      .page-template-page-accordion-alumni .status-filter a:hover,
      .page-template-page-panel-alp-registration .status-filter a:hover,
      .page-template-page-panel-registration .status-filter a:hover,
      .page-template-page-panel-registration2step .status-filter a:hover,
      .page-template-page-panel-registration3step .status-filter a:hover,
      .page-template-page-panel-facebook .status-filter a:hover,
      .page-template-page-panel-voting .status-filter a:hover,
      .page-template-page-panel-invitation .status-filter a:hover,
      .page-template-page-panel-partner .status-filter a:hover,
      .page-template-page-panel-admin .status-filter a:hover {
        border-bottom: none; }
      .page-template-page-accordion .status-filter a.active,
      .page-template-page-accordion-alumni .status-filter a.active,
      .page-template-page-panel-alp-registration .status-filter a.active,
      .page-template-page-panel-registration .status-filter a.active,
      .page-template-page-panel-registration2step .status-filter a.active,
      .page-template-page-panel-registration3step .status-filter a.active,
      .page-template-page-panel-facebook .status-filter a.active,
      .page-template-page-panel-voting .status-filter a.active,
      .page-template-page-panel-invitation .status-filter a.active,
      .page-template-page-panel-partner .status-filter a.active,
      .page-template-page-panel-admin .status-filter a.active {
        color: #89112e; }
        .page-template-page-accordion .status-filter a.active:before,
        .page-template-page-accordion-alumni .status-filter a.active:before,
        .page-template-page-panel-alp-registration .status-filter a.active:before,
        .page-template-page-panel-registration .status-filter a.active:before,
        .page-template-page-panel-registration2step .status-filter a.active:before,
        .page-template-page-panel-registration3step .status-filter a.active:before,
        .page-template-page-panel-facebook .status-filter a.active:before,
        .page-template-page-panel-voting .status-filter a.active:before,
        .page-template-page-panel-invitation .status-filter a.active:before,
        .page-template-page-panel-partner .status-filter a.active:before,
        .page-template-page-panel-admin .status-filter a.active:before {
          position: absolute;
          top: -23px;
          left: calc(50% - 4px);
          content: '';
          display: block;
          width: 8px;
          height: 8px;
          transform: rotate(45deg);
          background: #89112e;
          border: 2px solid #89112e;
          z-index: 999; }
  .page-template-page-accordion .navbar,
  .page-template-page-accordion-alumni .navbar,
  .page-template-page-panel-alp-registration .navbar,
  .page-template-page-panel-registration .navbar,
  .page-template-page-panel-registration2step .navbar,
  .page-template-page-panel-registration3step .navbar,
  .page-template-page-panel-facebook .navbar,
  .page-template-page-panel-voting .navbar,
  .page-template-page-panel-invitation .navbar,
  .page-template-page-panel-partner .navbar,
  .page-template-page-panel-admin .navbar {
    background: #8d1230;
    color: #fff;
    border-bottom: 1px solid rgba(225, 225, 225, 0.5); }
    .page-template-page-accordion .navbar .container,
    .page-template-page-accordion-alumni .navbar .container,
    .page-template-page-panel-alp-registration .navbar .container,
    .page-template-page-panel-registration .navbar .container,
    .page-template-page-panel-registration2step .navbar .container,
    .page-template-page-panel-registration3step .navbar .container,
    .page-template-page-panel-facebook .navbar .container,
    .page-template-page-panel-voting .navbar .container,
    .page-template-page-panel-invitation .navbar .container,
    .page-template-page-panel-partner .navbar .container,
    .page-template-page-panel-admin .navbar .container {
      padding-top: 17px;
      padding-bottom: 17px;
      position: relative; }
    .page-template-page-accordion .navbar .navbar-brand,
    .page-template-page-accordion-alumni .navbar .navbar-brand,
    .page-template-page-panel-alp-registration .navbar .navbar-brand,
    .page-template-page-panel-registration .navbar .navbar-brand,
    .page-template-page-panel-registration2step .navbar .navbar-brand,
    .page-template-page-panel-registration3step .navbar .navbar-brand,
    .page-template-page-panel-facebook .navbar .navbar-brand,
    .page-template-page-panel-voting .navbar .navbar-brand,
    .page-template-page-panel-invitation .navbar .navbar-brand,
    .page-template-page-panel-partner .navbar .navbar-brand,
    .page-template-page-panel-admin .navbar .navbar-brand {
      height: auto; }
      .page-template-page-accordion .navbar .navbar-brand:hover,
      .page-template-page-accordion-alumni .navbar .navbar-brand:hover,
      .page-template-page-panel-alp-registration .navbar .navbar-brand:hover,
      .page-template-page-panel-registration .navbar .navbar-brand:hover,
      .page-template-page-panel-registration2step .navbar .navbar-brand:hover,
      .page-template-page-panel-registration3step .navbar .navbar-brand:hover,
      .page-template-page-panel-facebook .navbar .navbar-brand:hover,
      .page-template-page-panel-voting .navbar .navbar-brand:hover,
      .page-template-page-panel-invitation .navbar .navbar-brand:hover,
      .page-template-page-panel-partner .navbar .navbar-brand:hover,
      .page-template-page-panel-admin .navbar .navbar-brand:hover {
        border: none; }
    .page-template-page-accordion .navbar .navbar-header,
    .page-template-page-accordion-alumni .navbar .navbar-header,
    .page-template-page-panel-alp-registration .navbar .navbar-header,
    .page-template-page-panel-registration .navbar .navbar-header,
    .page-template-page-panel-registration2step .navbar .navbar-header,
    .page-template-page-panel-registration3step .navbar .navbar-header,
    .page-template-page-panel-facebook .navbar .navbar-header,
    .page-template-page-panel-voting .navbar .navbar-header,
    .page-template-page-panel-invitation .navbar .navbar-header,
    .page-template-page-panel-partner .navbar .navbar-header,
    .page-template-page-panel-admin .navbar .navbar-header {
      position: relative;
      z-index: 10; }
    .page-template-page-accordion .navbar .navbar-nav,
    .page-template-page-accordion-alumni .navbar .navbar-nav,
    .page-template-page-panel-alp-registration .navbar .navbar-nav,
    .page-template-page-panel-registration .navbar .navbar-nav,
    .page-template-page-panel-registration2step .navbar .navbar-nav,
    .page-template-page-panel-registration3step .navbar .navbar-nav,
    .page-template-page-panel-facebook .navbar .navbar-nav,
    .page-template-page-panel-voting .navbar .navbar-nav,
    .page-template-page-panel-invitation .navbar .navbar-nav,
    .page-template-page-panel-partner .navbar .navbar-nav,
    .page-template-page-panel-admin .navbar .navbar-nav {
      padding-top: 22px; }
    .page-template-page-accordion .navbar .filter-nav,
    .page-template-page-accordion-alumni .navbar .filter-nav,
    .page-template-page-panel-alp-registration .navbar .filter-nav,
    .page-template-page-panel-registration .navbar .filter-nav,
    .page-template-page-panel-registration2step .navbar .filter-nav,
    .page-template-page-panel-registration3step .navbar .filter-nav,
    .page-template-page-panel-facebook .navbar .filter-nav,
    .page-template-page-panel-voting .navbar .filter-nav,
    .page-template-page-panel-invitation .navbar .filter-nav,
    .page-template-page-panel-partner .navbar .filter-nav,
    .page-template-page-panel-admin .navbar .filter-nav {
      margin: 0;
      padding-top: 0;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      text-align: right;
      padding-right: 160px;
      z-index: 5; }
      .page-template-page-accordion .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-accordion-alumni .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-alp-registration .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-registration .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-registration2step .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-registration3step .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-facebook .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-voting .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-invitation .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-partner .navbar .filter-nav .status-nav-link.evaluated,
      .page-template-page-panel-admin .navbar .filter-nav .status-nav-link.evaluated {
        color: #5f6064 !important; }
      .page-template-page-accordion .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-accordion-alumni .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-alp-registration .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-registration .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-registration2step .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-registration3step .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-facebook .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-voting .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-invitation .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-partner .navbar .filter-nav .status-nav-link.approved,
      .page-template-page-panel-admin .navbar .filter-nav .status-nav-link.approved {
        color: #11a6da !important; }
      .page-template-page-accordion .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-accordion-alumni .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-alp-registration .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-registration .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-registration2step .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-registration3step .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-facebook .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-voting .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-invitation .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-partner .navbar .filter-nav .status-nav-link.rejected,
      .page-template-page-panel-admin .navbar .filter-nav .status-nav-link.rejected {
        color: #b82145 !important; }
      .page-template-page-accordion .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-accordion-alumni .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-alp-registration .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-registration .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-registration2step .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-registration3step .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-facebook .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-voting .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-invitation .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-partner .navbar .filter-nav .status-nav-link.registered,
      .page-template-page-panel-admin .navbar .filter-nav .status-nav-link.registered {
        color: #11a6da; }
      .page-template-page-accordion .navbar .filter-nav > li,
      .page-template-page-accordion-alumni .navbar .filter-nav > li,
      .page-template-page-panel-alp-registration .navbar .filter-nav > li,
      .page-template-page-panel-registration .navbar .filter-nav > li,
      .page-template-page-panel-registration2step .navbar .filter-nav > li,
      .page-template-page-panel-registration3step .navbar .filter-nav > li,
      .page-template-page-panel-facebook .navbar .filter-nav > li,
      .page-template-page-panel-voting .navbar .filter-nav > li,
      .page-template-page-panel-invitation .navbar .filter-nav > li,
      .page-template-page-panel-partner .navbar .filter-nav > li,
      .page-template-page-panel-admin .navbar .filter-nav > li {
        float: none;
        display: inline-block; }
        .page-template-page-accordion .navbar .filter-nav > li > a,
        .page-template-page-accordion-alumni .navbar .filter-nav > li > a,
        .page-template-page-panel-alp-registration .navbar .filter-nav > li > a,
        .page-template-page-panel-registration .navbar .filter-nav > li > a,
        .page-template-page-panel-registration2step .navbar .filter-nav > li > a,
        .page-template-page-panel-registration3step .navbar .filter-nav > li > a,
        .page-template-page-panel-facebook .navbar .filter-nav > li > a,
        .page-template-page-panel-voting .navbar .filter-nav > li > a,
        .page-template-page-panel-invitation .navbar .filter-nav > li > a,
        .page-template-page-panel-partner .navbar .filter-nav > li > a,
        .page-template-page-panel-admin .navbar .filter-nav > li > a {
          color: #fff;
          background: none;
          font-size: 1rem;
          line-height: 1.375;
          padding: 50px 10px 33px;
          border: none; }
        .page-template-page-accordion .navbar .filter-nav > li.open li a,
        .page-template-page-accordion .navbar .filter-nav > li.open li a:focus,
        .page-template-page-accordion .navbar .filter-nav > li.open li a:hover,
        .page-template-page-accordion-alumni .navbar .filter-nav > li.open li a,
        .page-template-page-accordion-alumni .navbar .filter-nav > li.open li a:focus,
        .page-template-page-accordion-alumni .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-alp-registration .navbar .filter-nav > li.open li a,
        .page-template-page-panel-alp-registration .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-alp-registration .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-registration .navbar .filter-nav > li.open li a,
        .page-template-page-panel-registration .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-registration .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-registration2step .navbar .filter-nav > li.open li a,
        .page-template-page-panel-registration2step .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-registration2step .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-registration3step .navbar .filter-nav > li.open li a,
        .page-template-page-panel-registration3step .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-registration3step .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-facebook .navbar .filter-nav > li.open li a,
        .page-template-page-panel-facebook .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-facebook .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-voting .navbar .filter-nav > li.open li a,
        .page-template-page-panel-voting .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-voting .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-invitation .navbar .filter-nav > li.open li a,
        .page-template-page-panel-invitation .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-invitation .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-partner .navbar .filter-nav > li.open li a,
        .page-template-page-panel-partner .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-partner .navbar .filter-nav > li.open li a:hover,
        .page-template-page-panel-admin .navbar .filter-nav > li.open li a,
        .page-template-page-panel-admin .navbar .filter-nav > li.open li a:focus,
        .page-template-page-panel-admin .navbar .filter-nav > li.open li a:hover {
          background: none;
          border: none;
          padding: 0 10px;
          line-height: 2;
          font-size: 1rem; }
        .page-template-page-accordion .navbar .filter-nav > li.open > a,
        .page-template-page-accordion .navbar .filter-nav > li.open > a:hover,
        .page-template-page-accordion .navbar .filter-nav > li.open > a:focus,
        .page-template-page-accordion .navbar .filter-nav > li.open > a.focus,
        .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a,
        .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:hover,
        .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:focus,
        .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a,
        .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-registration .navbar .filter-nav > li.open > a,
        .page-template-page-panel-registration .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-registration .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-registration .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a,
        .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a,
        .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-facebook .navbar .filter-nav > li.open > a,
        .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-facebook .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-voting .navbar .filter-nav > li.open > a,
        .page-template-page-panel-voting .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-voting .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-voting .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-invitation .navbar .filter-nav > li.open > a,
        .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-invitation .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-partner .navbar .filter-nav > li.open > a,
        .page-template-page-panel-partner .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-partner .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-partner .navbar .filter-nav > li.open > a.focus,
        .page-template-page-panel-admin .navbar .filter-nav > li.open > a,
        .page-template-page-panel-admin .navbar .filter-nav > li.open > a:hover,
        .page-template-page-panel-admin .navbar .filter-nav > li.open > a:focus,
        .page-template-page-panel-admin .navbar .filter-nav > li.open > a.focus {
          color: #fff;
          background: none;
          border: none; }
          .page-template-page-accordion .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-accordion .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-accordion .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-accordion .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a.focus .evaluated,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a .evaluated,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a:hover .evaluated,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a:focus .evaluated,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a.focus .evaluated {
            color: #5f6064; }
          .page-template-page-accordion .navbar .filter-nav > li.open > a .approved,
          .page-template-page-accordion .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-accordion .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-accordion .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a .approved,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a.focus .approved,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a .approved,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a:hover .approved,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a:focus .approved,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a.focus .approved {
            color: #11a6da; }
          .page-template-page-accordion .navbar .filter-nav > li.open > a .registered,
          .page-template-page-accordion .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-accordion .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-accordion .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a .registered,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a.focus .registered,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a .registered,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a:hover .registered,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a:focus .registered,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a.focus .registered {
            color: #11a6da; }
          .page-template-page-accordion .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-accordion .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-accordion .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-accordion .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-accordion-alumni .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-alp-registration .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-registration .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-registration2step .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-registration3step .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-facebook .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-voting .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-invitation .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-partner .navbar .filter-nav > li.open > a.focus .rejected,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a .rejected,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a:hover .rejected,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a:focus .rejected,
          .page-template-page-panel-admin .navbar .filter-nav > li.open > a.focus .rejected {
            color: #b82145; }
    .page-template-page-accordion .navbar .navbar-right,
    .page-template-page-accordion-alumni .navbar .navbar-right,
    .page-template-page-panel-alp-registration .navbar .navbar-right,
    .page-template-page-panel-registration .navbar .navbar-right,
    .page-template-page-panel-registration2step .navbar .navbar-right,
    .page-template-page-panel-registration3step .navbar .navbar-right,
    .page-template-page-panel-facebook .navbar .navbar-right,
    .page-template-page-panel-voting .navbar .navbar-right,
    .page-template-page-panel-invitation .navbar .navbar-right,
    .page-template-page-panel-partner .navbar .navbar-right,
    .page-template-page-panel-admin .navbar .navbar-right {
      position: relative;
      z-index: 10;
      text-align: right; }
      .page-template-page-accordion .navbar .navbar-right .btn,
      .page-template-page-accordion-alumni .navbar .navbar-right .btn,
      .page-template-page-panel-alp-registration .navbar .navbar-right .btn,
      .page-template-page-panel-registration .navbar .navbar-right .btn,
      .page-template-page-panel-registration2step .navbar .navbar-right .btn,
      .page-template-page-panel-registration3step .navbar .navbar-right .btn,
      .page-template-page-panel-facebook .navbar .navbar-right .btn,
      .page-template-page-panel-voting .navbar .navbar-right .btn,
      .page-template-page-panel-invitation .navbar .navbar-right .btn,
      .page-template-page-panel-partner .navbar .navbar-right .btn,
      .page-template-page-panel-admin .navbar .navbar-right .btn {
        margin-left: 10px; }
        .page-template-page-accordion .navbar .navbar-right .btn.btn-trash,
        .page-template-page-accordion-alumni .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-alp-registration .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-registration .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-registration2step .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-registration3step .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-facebook .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-voting .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-invitation .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-partner .navbar .navbar-right .btn.btn-trash,
        .page-template-page-panel-admin .navbar .navbar-right .btn.btn-trash {
          width: 44px;
          height: 44px;
          padding: 9px; }
        .page-template-page-accordion .navbar .navbar-right .btn .trash,
        .page-template-page-accordion-alumni .navbar .navbar-right .btn .trash,
        .page-template-page-panel-alp-registration .navbar .navbar-right .btn .trash,
        .page-template-page-panel-registration .navbar .navbar-right .btn .trash,
        .page-template-page-panel-registration2step .navbar .navbar-right .btn .trash,
        .page-template-page-panel-registration3step .navbar .navbar-right .btn .trash,
        .page-template-page-panel-facebook .navbar .navbar-right .btn .trash,
        .page-template-page-panel-voting .navbar .navbar-right .btn .trash,
        .page-template-page-panel-invitation .navbar .navbar-right .btn .trash,
        .page-template-page-panel-partner .navbar .navbar-right .btn .trash,
        .page-template-page-panel-admin .navbar .navbar-right .btn .trash {
          display: inline-block;
          width: 24px;
          height: 24px;
          background: url(../images/icon_delete.svg); }
    .page-template-page-accordion .navbar > li > a,
    .page-template-page-accordion-alumni .navbar > li > a,
    .page-template-page-panel-alp-registration .navbar > li > a,
    .page-template-page-panel-registration .navbar > li > a,
    .page-template-page-panel-registration2step .navbar > li > a,
    .page-template-page-panel-registration3step .navbar > li > a,
    .page-template-page-panel-facebook .navbar > li > a,
    .page-template-page-panel-voting .navbar > li > a,
    .page-template-page-panel-invitation .navbar > li > a,
    .page-template-page-panel-partner .navbar > li > a,
    .page-template-page-panel-admin .navbar > li > a {
      color: #fff; }
    .page-template-page-accordion .navbar .logo,
    .page-template-page-accordion-alumni .navbar .logo,
    .page-template-page-panel-alp-registration .navbar .logo,
    .page-template-page-panel-registration .navbar .logo,
    .page-template-page-panel-registration2step .navbar .logo,
    .page-template-page-panel-registration3step .navbar .logo,
    .page-template-page-panel-facebook .navbar .logo,
    .page-template-page-panel-voting .navbar .logo,
    .page-template-page-panel-invitation .navbar .logo,
    .page-template-page-panel-partner .navbar .logo,
    .page-template-page-panel-admin .navbar .logo {
      display: inline-block;
      max-width: 219px;
      max-height: 56px;
      margin: -1px 0 0 15px; }
    .page-template-page-accordion .navbar .btn-reversed,
    .page-template-page-accordion-alumni .navbar .btn-reversed,
    .page-template-page-panel-alp-registration .navbar .btn-reversed,
    .page-template-page-panel-registration .navbar .btn-reversed,
    .page-template-page-panel-registration2step .navbar .btn-reversed,
    .page-template-page-panel-registration3step .navbar .btn-reversed,
    .page-template-page-panel-facebook .navbar .btn-reversed,
    .page-template-page-panel-voting .navbar .btn-reversed,
    .page-template-page-panel-invitation .navbar .btn-reversed,
    .page-template-page-panel-partner .navbar .btn-reversed,
    .page-template-page-panel-admin .navbar .btn-reversed {
      margin-top: 0;
      margin-bottom: 0;
      border: 0; }
      .page-template-page-accordion .navbar .btn-reversed:hover,
      .page-template-page-accordion-alumni .navbar .btn-reversed:hover,
      .page-template-page-panel-alp-registration .navbar .btn-reversed:hover,
      .page-template-page-panel-registration .navbar .btn-reversed:hover,
      .page-template-page-panel-registration2step .navbar .btn-reversed:hover,
      .page-template-page-panel-registration3step .navbar .btn-reversed:hover,
      .page-template-page-panel-facebook .navbar .btn-reversed:hover,
      .page-template-page-panel-voting .navbar .btn-reversed:hover,
      .page-template-page-panel-invitation .navbar .btn-reversed:hover,
      .page-template-page-panel-partner .navbar .btn-reversed:hover,
      .page-template-page-panel-admin .navbar .btn-reversed:hover {
        background: transparent;
        text-decoration: underline; }
  .page-template-page-accordion .dropdown-menu-filter,
  .page-template-page-accordion-alumni .dropdown-menu-filter,
  .page-template-page-panel-alp-registration .dropdown-menu-filter,
  .page-template-page-panel-registration .dropdown-menu-filter,
  .page-template-page-panel-registration2step .dropdown-menu-filter,
  .page-template-page-panel-registration3step .dropdown-menu-filter,
  .page-template-page-panel-facebook .dropdown-menu-filter,
  .page-template-page-panel-voting .dropdown-menu-filter,
  .page-template-page-panel-invitation .dropdown-menu-filter,
  .page-template-page-panel-partner .dropdown-menu-filter,
  .page-template-page-panel-admin .dropdown-menu-filter {
    width: 100vw;
    margin-left: calc(-50vw - -20px);
    padding: 10px calc(50vw - 585px);
    top: 104px; }
    .page-template-page-accordion .dropdown-menu-filter strong,
    .page-template-page-accordion-alumni .dropdown-menu-filter strong,
    .page-template-page-panel-alp-registration .dropdown-menu-filter strong,
    .page-template-page-panel-registration .dropdown-menu-filter strong,
    .page-template-page-panel-registration2step .dropdown-menu-filter strong,
    .page-template-page-panel-registration3step .dropdown-menu-filter strong,
    .page-template-page-panel-facebook .dropdown-menu-filter strong,
    .page-template-page-panel-voting .dropdown-menu-filter strong,
    .page-template-page-panel-invitation .dropdown-menu-filter strong,
    .page-template-page-panel-partner .dropdown-menu-filter strong,
    .page-template-page-panel-admin .dropdown-menu-filter strong {
      font-size: 16px;
      line-height: 45px; }
    .page-template-page-accordion .dropdown-menu-filter .all,
    .page-template-page-accordion-alumni .dropdown-menu-filter .all,
    .page-template-page-panel-alp-registration .dropdown-menu-filter .all,
    .page-template-page-panel-registration .dropdown-menu-filter .all,
    .page-template-page-panel-registration2step .dropdown-menu-filter .all,
    .page-template-page-panel-registration3step .dropdown-menu-filter .all,
    .page-template-page-panel-facebook .dropdown-menu-filter .all,
    .page-template-page-panel-voting .dropdown-menu-filter .all,
    .page-template-page-panel-invitation .dropdown-menu-filter .all,
    .page-template-page-panel-partner .dropdown-menu-filter .all,
    .page-template-page-panel-admin .dropdown-menu-filter .all {
      margin-top: 12px;
      margin-bottom: 0; }
    .page-template-page-accordion .dropdown-menu-filter li,
    .page-template-page-accordion-alumni .dropdown-menu-filter li,
    .page-template-page-panel-alp-registration .dropdown-menu-filter li,
    .page-template-page-panel-registration .dropdown-menu-filter li,
    .page-template-page-panel-registration2step .dropdown-menu-filter li,
    .page-template-page-panel-registration3step .dropdown-menu-filter li,
    .page-template-page-panel-facebook .dropdown-menu-filter li,
    .page-template-page-panel-voting .dropdown-menu-filter li,
    .page-template-page-panel-invitation .dropdown-menu-filter li,
    .page-template-page-panel-partner .dropdown-menu-filter li,
    .page-template-page-panel-admin .dropdown-menu-filter li {
      float: left;
      width: 100%;
      margin-bottom: 10px; }
      .page-template-page-accordion .dropdown-menu-filter li a,
      .page-template-page-accordion-alumni .dropdown-menu-filter li a,
      .page-template-page-panel-alp-registration .dropdown-menu-filter li a,
      .page-template-page-panel-registration .dropdown-menu-filter li a,
      .page-template-page-panel-registration2step .dropdown-menu-filter li a,
      .page-template-page-panel-registration3step .dropdown-menu-filter li a,
      .page-template-page-panel-facebook .dropdown-menu-filter li a,
      .page-template-page-panel-voting .dropdown-menu-filter li a,
      .page-template-page-panel-invitation .dropdown-menu-filter li a,
      .page-template-page-panel-partner .dropdown-menu-filter li a,
      .page-template-page-panel-admin .dropdown-menu-filter li a {
        line-height: normal !important;
        padding: 0 !important; }
        .page-template-page-accordion .dropdown-menu-filter li a.active,
        .page-template-page-accordion-alumni .dropdown-menu-filter li a.active,
        .page-template-page-panel-alp-registration .dropdown-menu-filter li a.active,
        .page-template-page-panel-registration .dropdown-menu-filter li a.active,
        .page-template-page-panel-registration2step .dropdown-menu-filter li a.active,
        .page-template-page-panel-registration3step .dropdown-menu-filter li a.active,
        .page-template-page-panel-facebook .dropdown-menu-filter li a.active,
        .page-template-page-panel-voting .dropdown-menu-filter li a.active,
        .page-template-page-panel-invitation .dropdown-menu-filter li a.active,
        .page-template-page-panel-partner .dropdown-menu-filter li a.active,
        .page-template-page-panel-admin .dropdown-menu-filter li a.active {
          text-decoration: underline; }
  .page-template-page-accordion .footer,
  .page-template-page-accordion-alumni .footer,
  .page-template-page-panel-alp-registration .footer,
  .page-template-page-panel-registration .footer,
  .page-template-page-panel-registration2step .footer,
  .page-template-page-panel-registration3step .footer,
  .page-template-page-panel-facebook .footer,
  .page-template-page-panel-voting .footer,
  .page-template-page-panel-invitation .footer,
  .page-template-page-panel-partner .footer,
  .page-template-page-panel-admin .footer {
    padding: 24px 0;
    text-align: center; }
    .page-template-page-accordion .footer .text-muted,
    .page-template-page-accordion-alumni .footer .text-muted,
    .page-template-page-panel-alp-registration .footer .text-muted,
    .page-template-page-panel-registration .footer .text-muted,
    .page-template-page-panel-registration2step .footer .text-muted,
    .page-template-page-panel-registration3step .footer .text-muted,
    .page-template-page-panel-facebook .footer .text-muted,
    .page-template-page-panel-voting .footer .text-muted,
    .page-template-page-panel-invitation .footer .text-muted,
    .page-template-page-panel-partner .footer .text-muted,
    .page-template-page-panel-admin .footer .text-muted {
      color: #b7b7b7;
      margin: 0; }
      @media all and (min-width: 992px) {
        .page-template-page-accordion .footer .text-muted,
        .page-template-page-accordion-alumni .footer .text-muted,
        .page-template-page-panel-alp-registration .footer .text-muted,
        .page-template-page-panel-registration .footer .text-muted,
        .page-template-page-panel-registration2step .footer .text-muted,
        .page-template-page-panel-registration3step .footer .text-muted,
        .page-template-page-panel-facebook .footer .text-muted,
        .page-template-page-panel-voting .footer .text-muted,
        .page-template-page-panel-invitation .footer .text-muted,
        .page-template-page-panel-partner .footer .text-muted,
        .page-template-page-panel-admin .footer .text-muted {
          margin: 4px 0 0;
          text-align: left; } }
    @media all and (min-width: 992px) {
      .page-template-page-accordion .footer .number-results .text-muted,
      .page-template-page-accordion-alumni .footer .number-results .text-muted,
      .page-template-page-panel-alp-registration .footer .number-results .text-muted,
      .page-template-page-panel-registration .footer .number-results .text-muted,
      .page-template-page-panel-registration2step .footer .number-results .text-muted,
      .page-template-page-panel-registration3step .footer .number-results .text-muted,
      .page-template-page-panel-facebook .footer .number-results .text-muted,
      .page-template-page-panel-voting .footer .number-results .text-muted,
      .page-template-page-panel-invitation .footer .number-results .text-muted,
      .page-template-page-panel-partner .footer .number-results .text-muted,
      .page-template-page-panel-admin .footer .number-results .text-muted {
        float: left !important; }
      .page-template-page-accordion .footer .number-results .pagination,
      .page-template-page-accordion-alumni .footer .number-results .pagination,
      .page-template-page-panel-alp-registration .footer .number-results .pagination,
      .page-template-page-panel-registration .footer .number-results .pagination,
      .page-template-page-panel-registration2step .footer .number-results .pagination,
      .page-template-page-panel-registration3step .footer .number-results .pagination,
      .page-template-page-panel-facebook .footer .number-results .pagination,
      .page-template-page-panel-voting .footer .number-results .pagination,
      .page-template-page-panel-invitation .footer .number-results .pagination,
      .page-template-page-panel-partner .footer .number-results .pagination,
      .page-template-page-panel-admin .footer .number-results .pagination {
        float: right !important; } }
    .page-template-page-accordion .footer .pagination,
    .page-template-page-accordion-alumni .footer .pagination,
    .page-template-page-panel-alp-registration .footer .pagination,
    .page-template-page-panel-registration .footer .pagination,
    .page-template-page-panel-registration2step .footer .pagination,
    .page-template-page-panel-registration3step .footer .pagination,
    .page-template-page-panel-facebook .footer .pagination,
    .page-template-page-panel-voting .footer .pagination,
    .page-template-page-panel-invitation .footer .pagination,
    .page-template-page-panel-partner .footer .pagination,
    .page-template-page-panel-admin .footer .pagination {
      margin: 10px 0 20px;
      border-radius: 0; }
      @media all and (min-width: 992px) {
        .page-template-page-accordion .footer .pagination,
        .page-template-page-accordion-alumni .footer .pagination,
        .page-template-page-panel-alp-registration .footer .pagination,
        .page-template-page-panel-registration .footer .pagination,
        .page-template-page-panel-registration2step .footer .pagination,
        .page-template-page-panel-registration3step .footer .pagination,
        .page-template-page-panel-facebook .footer .pagination,
        .page-template-page-panel-voting .footer .pagination,
        .page-template-page-panel-invitation .footer .pagination,
        .page-template-page-panel-partner .footer .pagination,
        .page-template-page-panel-admin .footer .pagination {
          margin: 0; } }
      .page-template-page-accordion .footer .pagination.number-results-switcher,
      .page-template-page-accordion-alumni .footer .pagination.number-results-switcher,
      .page-template-page-panel-alp-registration .footer .pagination.number-results-switcher,
      .page-template-page-panel-registration .footer .pagination.number-results-switcher,
      .page-template-page-panel-registration2step .footer .pagination.number-results-switcher,
      .page-template-page-panel-registration3step .footer .pagination.number-results-switcher,
      .page-template-page-panel-facebook .footer .pagination.number-results-switcher,
      .page-template-page-panel-voting .footer .pagination.number-results-switcher,
      .page-template-page-panel-invitation .footer .pagination.number-results-switcher,
      .page-template-page-panel-partner .footer .pagination.number-results-switcher,
      .page-template-page-panel-admin .footer .pagination.number-results-switcher {
        margin-bottom: 0; }
      .page-template-page-accordion .footer .pagination li,
      .page-template-page-accordion-alumni .footer .pagination li,
      .page-template-page-panel-alp-registration .footer .pagination li,
      .page-template-page-panel-registration .footer .pagination li,
      .page-template-page-panel-registration2step .footer .pagination li,
      .page-template-page-panel-registration3step .footer .pagination li,
      .page-template-page-panel-facebook .footer .pagination li,
      .page-template-page-panel-voting .footer .pagination li,
      .page-template-page-panel-invitation .footer .pagination li,
      .page-template-page-panel-partner .footer .pagination li,
      .page-template-page-panel-admin .footer .pagination li {
        display: inline-block;
        margin: 0 2px;
        background: none; }
        .page-template-page-accordion .footer .pagination li a,
        .page-template-page-accordion-alumni .footer .pagination li a,
        .page-template-page-panel-alp-registration .footer .pagination li a,
        .page-template-page-panel-registration .footer .pagination li a,
        .page-template-page-panel-registration2step .footer .pagination li a,
        .page-template-page-panel-registration3step .footer .pagination li a,
        .page-template-page-panel-facebook .footer .pagination li a,
        .page-template-page-panel-voting .footer .pagination li a,
        .page-template-page-panel-invitation .footer .pagination li a,
        .page-template-page-panel-partner .footer .pagination li a,
        .page-template-page-panel-admin .footer .pagination li a {
          display: inline-block;
          font-size: 1rem;
          font-weight: normal;
          color: #fff;
          background: none;
          border: 1px solid #5f6064;
          border-radius: 3px;
          width: 32px;
          height: 32px;
          box-sizing: border-box;
          padding: 0;
          line-height: 30px;
          text-align: center;
          transition: 0.2s ease; }
          .page-template-page-accordion .footer .pagination li a .glyphicon,
          .page-template-page-accordion-alumni .footer .pagination li a .glyphicon,
          .page-template-page-panel-alp-registration .footer .pagination li a .glyphicon,
          .page-template-page-panel-registration .footer .pagination li a .glyphicon,
          .page-template-page-panel-registration2step .footer .pagination li a .glyphicon,
          .page-template-page-panel-registration3step .footer .pagination li a .glyphicon,
          .page-template-page-panel-facebook .footer .pagination li a .glyphicon,
          .page-template-page-panel-voting .footer .pagination li a .glyphicon,
          .page-template-page-panel-invitation .footer .pagination li a .glyphicon,
          .page-template-page-panel-partner .footer .pagination li a .glyphicon,
          .page-template-page-panel-admin .footer .pagination li a .glyphicon {
            font-weight: 300;
            font-size: 0.6rem;
            top: -1px; }
        .page-template-page-accordion .footer .pagination li.active a, .page-template-page-accordion .footer .pagination li:hover a, .page-template-page-accordion .footer .pagination li:active a, .page-template-page-accordion .footer .pagination li:focus a,
        .page-template-page-accordion-alumni .footer .pagination li.active a,
        .page-template-page-accordion-alumni .footer .pagination li:hover a,
        .page-template-page-accordion-alumni .footer .pagination li:active a,
        .page-template-page-accordion-alumni .footer .pagination li:focus a,
        .page-template-page-panel-alp-registration .footer .pagination li.active a,
        .page-template-page-panel-alp-registration .footer .pagination li:hover a,
        .page-template-page-panel-alp-registration .footer .pagination li:active a,
        .page-template-page-panel-alp-registration .footer .pagination li:focus a,
        .page-template-page-panel-registration .footer .pagination li.active a,
        .page-template-page-panel-registration .footer .pagination li:hover a,
        .page-template-page-panel-registration .footer .pagination li:active a,
        .page-template-page-panel-registration .footer .pagination li:focus a,
        .page-template-page-panel-registration2step .footer .pagination li.active a,
        .page-template-page-panel-registration2step .footer .pagination li:hover a,
        .page-template-page-panel-registration2step .footer .pagination li:active a,
        .page-template-page-panel-registration2step .footer .pagination li:focus a,
        .page-template-page-panel-registration3step .footer .pagination li.active a,
        .page-template-page-panel-registration3step .footer .pagination li:hover a,
        .page-template-page-panel-registration3step .footer .pagination li:active a,
        .page-template-page-panel-registration3step .footer .pagination li:focus a,
        .page-template-page-panel-facebook .footer .pagination li.active a,
        .page-template-page-panel-facebook .footer .pagination li:hover a,
        .page-template-page-panel-facebook .footer .pagination li:active a,
        .page-template-page-panel-facebook .footer .pagination li:focus a,
        .page-template-page-panel-voting .footer .pagination li.active a,
        .page-template-page-panel-voting .footer .pagination li:hover a,
        .page-template-page-panel-voting .footer .pagination li:active a,
        .page-template-page-panel-voting .footer .pagination li:focus a,
        .page-template-page-panel-invitation .footer .pagination li.active a,
        .page-template-page-panel-invitation .footer .pagination li:hover a,
        .page-template-page-panel-invitation .footer .pagination li:active a,
        .page-template-page-panel-invitation .footer .pagination li:focus a,
        .page-template-page-panel-partner .footer .pagination li.active a,
        .page-template-page-panel-partner .footer .pagination li:hover a,
        .page-template-page-panel-partner .footer .pagination li:active a,
        .page-template-page-panel-partner .footer .pagination li:focus a,
        .page-template-page-panel-admin .footer .pagination li.active a,
        .page-template-page-panel-admin .footer .pagination li:hover a,
        .page-template-page-panel-admin .footer .pagination li:active a,
        .page-template-page-panel-admin .footer .pagination li:focus a {
          background: #5f6064; }
  .page-template-page-accordion .panel-group,
  .page-template-page-accordion-alumni .panel-group,
  .page-template-page-panel-alp-registration .panel-group,
  .page-template-page-panel-registration .panel-group,
  .page-template-page-panel-registration2step .panel-group,
  .page-template-page-panel-registration3step .panel-group,
  .page-template-page-panel-facebook .panel-group,
  .page-template-page-panel-voting .panel-group,
  .page-template-page-panel-invitation .panel-group,
  .page-template-page-panel-partner .panel-group,
  .page-template-page-panel-admin .panel-group {
    margin-top: 75px; }
  .page-template-page-accordion .panel-group .panel + .panel,
  .page-template-page-accordion-alumni .panel-group .panel + .panel,
  .page-template-page-panel-alp-registration .panel-group .panel + .panel,
  .page-template-page-panel-registration .panel-group .panel + .panel,
  .page-template-page-panel-registration2step .panel-group .panel + .panel,
  .page-template-page-panel-registration3step .panel-group .panel + .panel,
  .page-template-page-panel-facebook .panel-group .panel + .panel,
  .page-template-page-panel-voting .panel-group .panel + .panel,
  .page-template-page-panel-invitation .panel-group .panel + .panel,
  .page-template-page-panel-partner .panel-group .panel + .panel,
  .page-template-page-panel-admin .panel-group .panel + .panel {
    margin-top: 0; }

#accordion_panel_partner,
#accordion_panel_admin {
  padding-bottom: 0;
  margin-bottom: 115px; }

.page-template-page-panel-voting td,
.page-template-page-panel-facebook td {
  text-align: center; }

.page-template-page-panel-voting td.name,
.page-template-page-panel-facebook td.name {
  padding-right: 30px;
  text-align: left; }

.page-template-page-panel-voting th,
.page-template-page-panel-facebook th {
  padding-right: 10px; }

.page-template-page-panel-partner .dropdown-menu-filter {
  margin-left: -512px; }

.admin-bar .navbar-fixed-top {
  top: 32px; }

.admin-bar .status-filter {
  top: 122px; }

.no-app {
  color: #5f6064; }
  .no-app h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 25px; }
  .no-app p {
    font-size: 24px;
    font-weight: 300; }

.panel {
  color: #5f6064; }
  .panel__person {
    padding: 5px;
    border-bottom: 1px solid #e1e1e1; }
    .panel__person__status-notes {
      text-align: right; }
    .panel__person__number {
      float: left;
      min-width: 28px;
      width: 16%;
      color: #b7b7b7;
      padding: 30px 5px;
      box-sizing: border-box; }
      @media (min-width: 1200px) {
        .panel__person__number {
          width: 12%; } }
    .panel__person__image {
      float: left;
      position: relative;
      max-width: 22%;
      min-width: 60px;
      height: 60px;
      overflow: hidden;
      margin: 12px 8px 7px 0;
      border-radius: 6px; }
      .personally-invited .panel__person__image:before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background: #11a6da;
        bottom: 0;
        z-index: 10;
        border-radius: 3px 0 0 3px; }
      .panel__person__image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 6px; }
    .panel__person__name {
      display: table-cell;
      height: 85px;
      vertical-align: middle;
      line-height: 1.2;
      max-width: 55%;
      font-weight: 400;
      color: #5f6064; }
      .panel__person__name a {
        color: inherit; }
        .panel__person__name a:hover {
          color: inherit;
          border-bottom: none; }
      @media (min-width: 1200px) {
        .panel__person__name {
          max-width: 60%;
          font-size: 1.125rem; } }
    .panel__person__score {
      float: left;
      margin-top: 25px;
      margin-left: 10px;
      margin-right: 10px;
      text-align: left;
      border-color: #b7b7b7; }
      .panel__person__score .input-group-addon {
        background: #b7b7b7;
        color: #fff;
        padding-left: 5px;
        padding-right: 5px;
        min-width: 29px; }
      .panel__person__score > .btn {
        border-color: #b7b7b7;
        color: #b7b7b7;
        width: 65px;
        text-align: left;
        padding-left: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 25px; }
        .panel__person__score > .btn:hover, .panel__person__score > .btn:focus {
          background: none; }
        .panel__person__score > .btn.selected {
          color: #5f6064; }
        .panel__person__score > .btn .glyphicon {
          color: #8d1230;
          font-weight: 100;
          margin: 1px 0 0 10px;
          position: absolute;
          right: 8px;
          width: 12px;
          top: 8px; }
      .panel__person__score.open .btn {
        background: none;
        box-shadow: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        color: #b7b7b7;
        border-color: #b7b7b7; }
        .panel__person__score.open .btn:hover, .panel__person__score.open .btn:focus {
          background: none;
          color: #b7b7b7;
          border-color: #b7b7b7; }
      .panel__person__score.open .dropdown-menu {
        padding: 5px 0;
        background: #fff;
        border: 1px solid #b7b7b7;
        margin-top: -1px;
        border-top: none; }
        .panel__person__score.open .dropdown-menu > li > a {
          color: #5f6064;
          transition: 0.2s ease;
          padding-left: 10px;
          padding-right: 10px; }
          .panel__person__score.open .dropdown-menu > li > a:hover, .panel__person__score.open .dropdown-menu > li > a:focus {
            background: #f7f7f7;
            text-decoration: none; }
      .panel__person__score--score.open .dropdown-menu {
        min-width: 65px;
        margin-left: 29px; }
      .panel__person__score--status {
        padding-top: 5px; }
        .panel__person__score--status .publish {
          color: #b7b7b7; }
        .panel__person__score--status .nominated {
          color: #333; }
        .panel__person__score--status .approved {
          color: #11a6da; }
        .panel__person__score--status .registered {
          color: #11a6da; }
        .panel__person__score--status .rejected {
          color: #b82145; }
        .panel__person__score--status.open .btn {
          border-bottom-left-radius: 0;
          border-bottom-right-radius: 0; }
        .panel__person__score--status.open .dropdown-menu {
          min-width: 118px;
          box-sizing: border-box; }
          .panel__person__score--status.open .dropdown-menu > li > a.approved {
            color: #11a6da; }
          .panel__person__score--status.open .dropdown-menu > li > a.registered {
            color: #11a6da; }
          .panel__person__score--status.open .dropdown-menu > li > a.rejected {
            color: #b82145; }
    .panel__person__status {
      float: left;
      margin-top: 32px;
      min-width: 80px;
      display: inline-block;
      text-align: left;
      /*font-size: 0.875rem;*/
      color: #b7b7b7; }
      .panel__person__status .publish {
        color: #b7b7b7; }
      .panel__person__status .nominated {
        color: #333; }
      .panel__person__status .approved {
        color: #11a6da; }
      .panel__person__status .rejected {
        color: #b82145; }
      .panel__person__status .registered {
        color: #11a6da; }
      .panel__person__status .status.nominated {
        color: #5f6064; }
      .panel__person__status .status.evaluated {
        color: #5f6064; }
      .panel__person__status .status.approved {
        color: #11a6da; }
      .panel__person__status .status.registered {
        color: #11a6da; }
      .panel__person__status .status.rejected {
        color: #8d1230; }
    .panel__person__personal-note {
      box-sizing: border-box;
      float: left;
      min-width: 60%;
      max-width: 75%;
      resize: none;
      padding: 7px 10px;
      font-size: 0.875rem;
      margin: 5px 10px 5px 0;
      background: #f7f7f7;
      border: none;
      min-height: 75px;
      color: #5f6064;
      border-radius: 3px; }
      @media (min-width: 1200px) {
        .panel__person__personal-note {
          min-width: 70%; } }
      .panel__person__personal-note:focus {
        outline: none; }
    .panel__person__personal-note.partner_note {
      color: #fff;
      background: #b7b7b7; }
  .panel .expand-link {
    display: inline-block;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    background: transparent url("../images/icon_close_large.svg") no-repeat center center;
    width: 54px;
    height: 85px;
    float: right; }
    .panel .expand-link.collapsed {
      background-image: url("../images/icon_reveal_large.svg"); }

.nopadding {
  padding: 0 !important;
  margin: 0 !important; }

.person-details .content-header {
  font-weight: 600;
  margin-bottom: 0; }

.person-details p {
  word-wrap: break-word; }

.person-details a {
  color: #11a6da;
  transition: 0.2s ease;
  font-weight: normal; }
  .person-details a:hover, .person-details a:focus {
    outline: none;
    text-decoration: underline;
    border: none; }

.person-details__image {
  padding-right: 5px; }
  .person-details__image img {
    max-width: 100%;
    margin-bottom: 20px;
    height: auto;
    border-radius: 6px;
    border-radius: 3px; }

.person-details__positions p, .person-details__schools p {
  margin-bottom: 0; }

.person-details .textarea, .person-details .input-text {
  display: block;
  background: #fff;
  border: none;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  resize: vertical;
  margin-bottom: 30px;
  margin-top: 5px;
  color: #5f6064; }

.person-details .button-group {
  text-align: center; }
  .person-details .button-group .btn {
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 3px;
    padding: 15px 65px;
    border: none;
    transition: 0.2s ease;
    margin-bottom: 20px;
    min-width: 205px;
    box-sizing: border-box; }

.person-details .btn-primary {
  background: #5f6064; }
  .person-details .btn-primary:hover, .person-details .btn-primary:focus {
    outline: none;
    background: #46474a; }

.person-details .btn-info {
  background: #11a6da; }
  .person-details .btn-info:hover, .person-details .btn-info:focus {
    outline: none;
    background: #0d82ab; }

.page-template-page-panel-admin .panel-body.person-details {
  border-top: 1px solid #e1e1e1 !important; }

.page-template-page-panel-admin .panel__person__personal-note {
  max-width: 99%;
  min-width: 99%; }

.page-template-page-panel-admin .panel__person__score {
  width: 90px; }
  .page-template-page-panel-admin .panel__person__score--status {
    width: 120px; }
    .page-template-page-panel-admin .panel__person__score--status button {
      width: 118px !important;
      text-align: left; }

.page-template-page-panel-admin .panel__person .personal-notes-wrapper {
  float: left;
  width: 69%;
  position: relative; }
  @media (min-width: 1200px) {
    .page-template-page-panel-admin .panel__person .personal-notes-wrapper {
      width: 74%; } }
  .page-template-page-panel-admin .panel__person .personal-notes-wrapper .info {
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 75px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    display: table-cell;
    vertical-align: middle;
    padding-top: 17px;
    border-radius: 3px 0 0 3px;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    background: #b7b7b7 url(../images/icon_info.svg) no-repeat center; }

.page-template-page-panel-admin .panel__person__number {
  padding-top: 20px;
  padding-bottom: 0;
  text-align: center;
  font-weight: normal; }
  .page-template-page-panel-admin .panel__person__number .form-control {
    width: 14px;
    height: 14px;
    display: block;
    margin: 0 auto; }
    .page-template-page-panel-admin .panel__person__number .form-control:focus {
      outline: none;
      box-shadow: none; }

.page-template-page-panel-admin .panel__person__name {
  color: #5f6064; }
  .page-template-page-panel-admin .panel__person__name .name {
    display: inline-block;
    width: 125px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .page-template-page-panel-admin .panel__person__name .name a {
      color: inherit; }
    @media (min-width: 1200px) {
      .page-template-page-panel-admin .panel__person__name .name {
        width: 180px; } }
  .page-template-page-panel-admin .panel__person__name .position {
    display: inline-block;
    font-size: 0.875rem;
    width: 125px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media (min-width: 1200px) {
      .page-template-page-panel-admin .panel__person__name .position {
        width: 180px; } }
  .page-template-page-panel-admin .panel__person__name .download-photo {
    font-size: 10px; }

.page-template-page-panel-admin .panel__person__email {
  text-align: center;
  float: left; }
  .page-template-page-panel-admin .panel__person__email .envelope {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/icon_mail.svg);
    margin-top: 28px; }
    .page-template-page-panel-admin .panel__person__email .envelope:before {
      display: inline-block;
      width: 100%; }
  .page-template-page-panel-admin .panel__person__email .glyphicon {
    display: inline-block;
    margin-top: 28px;
    width: 100%; }
    .page-template-page-panel-admin .panel__person__email .glyphicon:before {
      display: inline-block;
      width: 100%; }

.page-template-page-panel-admin .panel__person__email__statuses {
  text-align: center;
  margin-top: -10px; }
  .page-template-page-panel-admin .panel__person__email__statuses .email-status {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #b7b7b7;
    border-radius: 100%;
    margin: 0 1px; }
    .page-template-page-panel-admin .panel__person__email__statuses .email-status.not_send {
      background: transparent; }
    .page-template-page-panel-admin .panel__person__email__statuses .email-status.send {
      background: #b7b7b7; }
    .page-template-page-panel-admin .panel__person__email__statuses .email-status.read {
      background: #11a6da; }
    .page-template-page-panel-admin .panel__person__email__statuses .email-status.error {
      background: #8d1230; }
    .page-template-page-panel-admin .panel__person__email__statuses .email-status.click {
      background: #5f6064; }

.page-template-page-panel-partner .panel__person__status {
  float: none; }

div.blue-box {
  clear: both;
  position: relative;
  background: #f7f7f7;
  padding: 30px 30px 15px 40px;
  border-radius: 4px;
  color: #5f6064;
  font-size: 1.125rem;
  font-weight: normal;
  background-repeat: no-repeat;
  background-position: right bottom;
  margin-bottom: 30px;
  margin-top: 50px; }
  @media screen and (max-width: 480px) {
    div.blue-box {
      padding: 15px 15px 15px 30px; } }
  div.blue-box.small {
    padding-top: 15px;
    padding-bottom: 1px; }
  div.blue-box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background: #11a6da;
    border-radius: 4px 0 0 4px; }
  div.blue-box p {
    margin-bottom: 15px; }
  div.blue-box h2, div.blue-box h3, div.blue-box h4 {
    margin-top: 0 !important;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px; }
  div.blue-box ul, div.blue-box ol {
    font-size: inherit;
    padding-left: 30px;
    margin-bottom: 15px; }
    div.blue-box ul li, div.blue-box ol li {
      margin-bottom: 5px; }
  div.blue-box ul {
    list-style-type: disc; }
  div.blue-box ol {
    list-style-type: decimal; }
  div.blue-box.target {
    background-image: url(../images/icon_target.svg); }
  div.blue-box.calendar {
    background-image: url(../images/icon-calendar.svg); }
  div.blue-box .row p {
    font-size: 1.5rem; }
    @media (max-width: 768px) {
      div.blue-box .row p {
        font-size: 1rem; } }
  div.blue-box.arrows {
    padding-left: 80px; }
    div.blue-box.arrows br {
      content: " ";
      display: block;
      margin-bottom: 10px; }
    div.blue-box.arrows .arrow {
      background: url(../images/arrow.png) no-repeat center center;
      width: 90px;
      height: 160px; }
    div.blue-box.arrows p {
      font-size: 1.125rem;
      color: #11a6da; }
  @media screen and (max-width: 480px) {
    div.blue-box {
      padding: 15px 15px 15px 30px !important; }
      div.blue-box ul, div.blue-box ol {
        margin-left: 5px; } }

/*!
 * jquery-confirm v2.5.1 (http://craftpip.github.io/jquery-confirm/)
 * Author: boniface pereira
 * Website: www.craftpip.com
 * Contact: hey$craftpip.com
 *
 * Copyright 2013-2016 jquery-confirm
 * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
 */
@keyframes jconfirm-rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

body.jconfirm-noscroll {
  overflow: hidden !important; }

.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden; }
  .jconfirm .jconfirm-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all .4s; }
    .jconfirm .jconfirm-bg.seen {
      opacity: 1; }
  .jconfirm .jconfirm-scrollpane {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    perspective: 500px;
    perspective-origin: center; }
    .jconfirm .jconfirm-scrollpane .jconfirm-box-container {
      width: 455px;
      margin: 0 auto; }
  .jconfirm .jconfirm-box {
    background: white;
    border-radius: 4px;
    position: relative;
    outline: none;
    padding: 30px 15px 0;
    text-align: center; }
    .jconfirm .jconfirm-box div.closeIcon {
      height: 20px;
      width: 20px;
      position: absolute;
      top: 5px;
      right: 5px;
      cursor: pointer;
      opacity: .6;
      text-align: center;
      transition: opacity .1s ease-in;
      display: none;
      font-size: 27px;
      line-height: 14px; }
      .jconfirm .jconfirm-box div.closeIcon .fa {
        font-size: 16px; }
      .jconfirm .jconfirm-box div.closeIcon .glyphicon {
        font-size: 16px; }
      .jconfirm .jconfirm-box div.closeIcon .zmdi {
        font-size: 16px; }
      .jconfirm .jconfirm-box div.closeIcon:hover {
        opacity: 1; }
    .jconfirm .jconfirm-box div.title-c {
      display: block;
      font-size: 22px;
      line-height: 20px; }
      .jconfirm .jconfirm-box div.title-c .icon-c {
        font-size: inherit;
        padding-bottom: 15px;
        display: inline-block;
        margin-right: 8px;
        vertical-align: middle; }
        .jconfirm .jconfirm-box div.title-c .icon-c i {
          vertical-align: middle; }
        .jconfirm .jconfirm-box div.title-c .icon-c:empty {
          display: none; }
      .jconfirm .jconfirm-box div.title-c .title {
        font-size: inherit;
        font-family: inherit;
        display: inline-block;
        vertical-align: middle;
        padding-bottom: 15px;
        color: #5f6064;
        font-weight: 300; }
        .jconfirm .jconfirm-box div.title-c .title:empty {
          display: none; }
    .jconfirm .jconfirm-box div.content-pane {
      margin-bottom: 15px;
      height: auto;
      transition: height .4s ease-in;
      display: inline-block;
      width: 100%;
      position: relative; }
      .jconfirm .jconfirm-box div.content-pane .content {
        position: absolute;
        top: 0;
        left: 0;
        transition: all .2s ease-in;
        right: 0;
        color: #5f6064;
        font-size: 18px;
        font-weight: 400; }
        .jconfirm .jconfirm-box div.content-pane .content img {
          width: 100%;
          height: auto; }
        .jconfirm .jconfirm-box div.content-pane .content:empty {
          display: none; }
        .jconfirm .jconfirm-box div.content-pane .content:empty.loading {
          height: 40px;
          position: relative;
          opacity: 0.6;
          display: block; }
          .jconfirm .jconfirm-box div.content-pane .content:empty.loading:before {
            content: '';
            height: 20px;
            width: 20px;
            border: solid 2px transparent;
            position: absolute;
            left: 50%;
            margin-left: -10px;
            border-radius: 50%;
            animation: jconfirm-rotate 1s infinite linear;
            border-bottom-color: #aaa;
            top: 50%;
            margin-top: -10px; }
          .jconfirm .jconfirm-box div.content-pane .content:empty.loading:after {
            content: '';
            position: absolute;
            left: 50%;
            margin-left: -15px; }
    .jconfirm .jconfirm-box .buttons {
      padding-bottom: 15px; }
      .jconfirm .jconfirm-box .buttons button + button {
        margin-left: 5px; }
      .jconfirm .jconfirm-box .buttons .btn-ok {
        display: inline-block;
        text-align: center;
        border-radius: 3px;
        text-transform: uppercase;
        font-weight: 600;
        margin: 0 3px;
        padding: 15px 35px;
        border: none;
        transition: 0.2s ease;
        margin-bottom: 20px;
        min-width: 205px;
        box-sizing: border-box;
        background: #11a6da;
        font-size: 18px; }
      .jconfirm .jconfirm-box .buttons .btn-cancel {
        display: inline-block;
        text-align: center;
        border-radius: 3px;
        text-transform: uppercase;
        font-weight: 600;
        margin: 0 3px;
        padding: 15px 65px;
        border: none;
        transition: 0.2s ease;
        margin-bottom: 20px;
        min-width: 205px;
        box-sizing: border-box;
        background: #5f6064;
        font-size: 18px; }
  .jconfirm .jquery-clear {
    clear: both; }
  .jconfirm.rtl {
    direction: rtl; }
    .jconfirm.rtl div.closeIcon {
      left: 12px;
      right: auto; }
  .jconfirm.jconfirm-white .jconfirm-bg {
    background-color: rgba(40, 40, 43, 0.5);
    opacity: 1	!important; }
  .jconfirm.jconfirm-white .jconfirm-box {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px; }
    .jconfirm.jconfirm-white .jconfirm-box .buttons button {
      border: none;
      background-image: none;
      text-transform: uppercase;
      font-size: 18px;
      font-weight: bold;
      text-shadow: none;
      transition: background .1s;
      color: white; }
    .jconfirm.jconfirm-white .jconfirm-box .buttons button.btn-default {
      box-shadow: none;
      color: #333; }
      .jconfirm.jconfirm-white .jconfirm-box .buttons button.btn-default:hover {
        background: #ddd; }
  .jconfirm.jconfirm-black .jconfirm-bg {
    background-color: rgba(0, 0, 0, 0.5); }
  .jconfirm.jconfirm-black .jconfirm-box {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    background: #444;
    border-radius: 5px;
    color: white; }
    .jconfirm.jconfirm-black .jconfirm-box .buttons {
      float: right; }
      .jconfirm.jconfirm-black .jconfirm-box .buttons button {
        border: none;
        background-image: none;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: bold;
        text-shadow: none;
        transition: background .1s;
        color: white; }
      .jconfirm.jconfirm-black .jconfirm-box .buttons button.btn-default {
        box-shadow: none;
        color: #fff;
        background: none; }
        .jconfirm.jconfirm-black .jconfirm-box .buttons button.btn-default:hover {
          background: #666; }
  .jconfirm .jconfirm-box.hilight {
    animation: hilight 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0); }

@keyframes hilight {
  10%, 90% {
    transform: translate3d(-2px, 0, 0); }
  20%, 80% {
    transform: translate3d(4px, 0, 0); }
  30%, 50%, 70% {
    transform: translate3d(-8px, 0, 0); }
  40%, 60% {
    transform: translate3d(8px, 0, 0); } }

/*Transition rules*/
.jconfirm {
  perspective: 400px; }
  .jconfirm .jconfirm-box {
    opacity: 1;
    transition-property: transform, opacity, box-shadow; }
    .jconfirm .jconfirm-box.anim-top, .jconfirm .jconfirm-box.anim-left, .jconfirm .jconfirm-box.anim-right, .jconfirm .jconfirm-box.anim-bottom, .jconfirm .jconfirm-box.anim-opacity, .jconfirm .jconfirm-box.anim-zoom, .jconfirm .jconfirm-box.anim-scale, .jconfirm .jconfirm-box.anim-none, .jconfirm .jconfirm-box.anim-rotate, .jconfirm .jconfirm-box.anim-rotatex, .jconfirm .jconfirm-box.anim-rotatey, .jconfirm .jconfirm-box.anim-scaley, .jconfirm .jconfirm-box.anim-scalex {
      opacity: 0; }
    .jconfirm .jconfirm-box.anim-rotate {
      transform: rotate(90deg); }
    .jconfirm .jconfirm-box.anim-rotatex {
      transform: rotateX(90deg);
      transform-origin: center; }
    .jconfirm .jconfirm-box.anim-rotatexr {
      transform: rotateX(-90deg);
      transform-origin: center; }
    .jconfirm .jconfirm-box.anim-rotatey {
      transform: rotatey(90deg);
      transform-origin: center; }
    .jconfirm .jconfirm-box.anim-rotateyr {
      transform: rotatey(-90deg);
      transform-origin: center; }
    .jconfirm .jconfirm-box.anim-scaley {
      transform: scaley(1.5);
      transform-origin: center; }
    .jconfirm .jconfirm-box.anim-scalex {
      transform: scalex(1.5);
      transform-origin: center; }
    .jconfirm .jconfirm-box.anim-top {
      transform: translate(0px, -100px); }
    .jconfirm .jconfirm-box.anim-left {
      transform: translate(-100px, 0px); }
    .jconfirm .jconfirm-box.anim-right {
      transform: translate(100px, 0px); }
    .jconfirm .jconfirm-box.anim-bottom {
      transform: translate(0px, 100px); }
    .jconfirm .jconfirm-box.anim-zoom {
      transform: scale(1.2); }
    .jconfirm .jconfirm-box.anim-scale {
      transform: scale(0.5); }
    .jconfirm .jconfirm-box.anim-none {
      display: none; }

.jconfirm.jconfirm-supervan .jconfirm-bg {
  background-color: rgba(54, 70, 93, 0.95); }

.jconfirm.jconfirm-supervan .jconfirm-box {
  background-color: transparent; }
  .jconfirm.jconfirm-supervan .jconfirm-box div.closeIcon {
    color: white; }
  .jconfirm.jconfirm-supervan .jconfirm-box div.title-c {
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: normal; }
    .jconfirm.jconfirm-supervan .jconfirm-box div.title-c > * {
      padding-bottom: 25px; }
  .jconfirm.jconfirm-supervan .jconfirm-box div.content-pane {
    margin-bottom: 25px; }
  .jconfirm.jconfirm-supervan .jconfirm-box div.content {
    text-align: center;
    color: white; }
  .jconfirm.jconfirm-supervan .jconfirm-box .buttons {
    text-align: center; }
    .jconfirm.jconfirm-supervan .jconfirm-box .buttons button {
      font-size: 16px;
      border-radius: 2px;
      background: #303f53;
      text-shadow: none;
      border: none;
      color: white;
      padding: 10px;
      min-width: 100px; }

.jconfirm.jconfirm-material .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.67); }

.jconfirm.jconfirm-material .jconfirm-box {
  background-color: white;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 25px 10px 25px; }
  .jconfirm.jconfirm-material .jconfirm-box div.closeIcon {
    color: rgba(0, 0, 0, 0.87); }
  .jconfirm.jconfirm-material .jconfirm-box div.title-c {
    color: rgba(0, 0, 0, 0.87);
    font-size: 22px;
    font-weight: bold; }
  .jconfirm.jconfirm-material .jconfirm-box div.content {
    text-align: left;
    color: rgba(0, 0, 0, 0.87); }
  .jconfirm.jconfirm-material .jconfirm-box .buttons {
    text-align: right; }
    .jconfirm.jconfirm-material .jconfirm-box .buttons button {
      text-transform: uppercase;
      font-weight: 500; }

.jconfirm.jconfirm-bootstrap .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.21); }

.jconfirm.jconfirm-bootstrap .jconfirm-box {
  background-color: white;
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.4);
  padding: 15px 0 0; }
  .jconfirm.jconfirm-bootstrap .jconfirm-box div.closeIcon {
    color: rgba(0, 0, 0, 0.87); }
  .jconfirm.jconfirm-bootstrap .jconfirm-box div.title-c {
    color: rgba(0, 0, 0, 0.87);
    font-size: 22px;
    font-weight: bold;
    padding-left: 15px;
    padding-right: 15px; }
  .jconfirm.jconfirm-bootstrap .jconfirm-box div.content {
    text-align: left;
    color: rgba(0, 0, 0, 0.87);
    padding: 0px 15px; }
  .jconfirm.jconfirm-bootstrap .jconfirm-box .buttons {
    text-align: right;
    padding: 0px 0 0px;
    margin: -5px 0 0px;
    border-top: solid 1px #ddd;
    overflow: hidden;
    border-radius: 0 0 4px 4px; }
    .jconfirm.jconfirm-bootstrap .jconfirm-box .buttons button {
      font-weight: 500;
      border-radius: 0px;
      margin: 0;
      border-left: solid 1px #ddd; }
