@charset "UTF-8";




.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,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:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}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{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;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-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]: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}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!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.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:400;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{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"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;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;width:100% \9;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;width:100% \9;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;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}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:400;line-height:1;color:#777}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%}cite{font-style:normal}mark,.mark{padding:.2em;background-color:#fcf8e3}.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:#777}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}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;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}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:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}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:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;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{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-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-right:15px;padding-left: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}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 #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.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 #ddd}.table .table{background-color:#fff}.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 #ddd}.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 #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.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}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.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{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;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:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px;line-height:1.42857143 \0}input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;min-height:20px;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;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}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm,.form-horizontal .form-group-sm .form-control{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}.input-lg,.form-horizontal .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:25px;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.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{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.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{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.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{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.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 .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{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.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{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.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: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:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;border-color:#285e8e}.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: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:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.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: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:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.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: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:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.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: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:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.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: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:#fff}.btn-link{font-weight:400;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;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:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;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;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .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;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.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;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{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:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.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:focus,.btn-group-vertical>.btn:focus{outline:0}.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-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-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-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>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;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-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.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-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;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>input[type=checkbox]{position:absolute;z-index:-1;filter:alpha(opacity=0);opacity:0}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left: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.33;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:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;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-top-right-radius:0;border-bottom-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-top-left-radius:0;border-bottom-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{margin-left:-1px}.nav{padding-left:0;margin-bottom: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:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.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 #ddd}.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:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.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 #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;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:#fff}}.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:#fff;background-color:#428bca}.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{margin-bottom:5px;text-align:center}.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 #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;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:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-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{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block;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-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-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;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@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;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;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;-webkit-box-shadow:none;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-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@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 .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}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{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-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.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{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;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:#555;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:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.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:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#777}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#777}.navbar-inverse .navbar-nav>li>a{color:#777}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.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{color:#fff;background-color:#080808}@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:#777}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;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:#fff;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:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#777}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#777}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.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:#444}.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{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.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;margin-left:-1px;line-height:1.42857143;color:#428bca;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.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:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.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:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.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:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.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{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.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:700}.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{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px}.progress-bar[aria-valuenow="0"]{min-width:30px;color:#777;background-color:transparent;background-image:none;-webkit-box-shadow:none;box-shadow:none}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;background-color:#eee}.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:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.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:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.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{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.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{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.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{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.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:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-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{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.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:first-child,.panel>.table-responsive:first-child>.table: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 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{border-top:1px solid #ddd}.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{margin-bottom:0;border: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{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-heading .badge{color:#428bca;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.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{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.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;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(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:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate3d(0,-25%,0);-o-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}.modal.in .modal-dialog{-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,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:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.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-bottom:0;margin-left:5px}.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{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(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-size:12px;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;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:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(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{padding:8px 14px;margin:0;font-size:14px;font-weight:400;line-height:18px;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{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.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;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;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;margin-top:-10px;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%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(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{right:20%;left: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{display:table;content:" "}.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{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{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;visibility:hidden!important}.affix{position:fixed;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@-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}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}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}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}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}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}}
/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,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:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}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{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;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-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]: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}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.html);src:url(../fonts/glyphicons-halflings-regulard41d.html?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular-2.html) format('woff'),url(../fonts/glyphicons-halflings-regular-3.html) format('truetype'),url(../fonts/glyphicons-halflings-regular-4.html#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;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{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"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;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;width:100% \9;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;width:100% \9;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;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}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:400;line-height:1;color:#777}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%}cite{font-style:normal}mark,.mark{padding:.2em;background-color:#fcf8e3}.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:#777}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}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;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:992px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}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:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}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:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;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{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-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-right:15px;padding-left: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}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 #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.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 #ddd}.table .table{background-color:#fff}.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 #ddd}.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 #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.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}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.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{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;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:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px;line-height:1.42857143 \0}input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;min-height:20px;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;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}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm,.form-horizontal .form-group-sm .form-control{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}.input-lg,.form-horizontal .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:25px;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.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{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.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{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.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{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.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 .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{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.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{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.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: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:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;border-color:#285e8e}.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: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:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.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: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:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.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: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:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.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: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:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.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: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:#fff}.btn-link{font-weight:400;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;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:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;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;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .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;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.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;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{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:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.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:focus,.btn-group-vertical>.btn:focus{outline:0}.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-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-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-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>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;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-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.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-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;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>input[type=checkbox]{position:absolute;z-index:-1;filter:alpha(opacity=0);opacity:0}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left: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.33;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:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;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-top-right-radius:0;border-bottom-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-top-left-radius:0;border-bottom-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{margin-left:-1px}.nav{padding-left:0;margin-bottom: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:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.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 #ddd}.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:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.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 #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;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:#fff}}.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:#fff;background-color:#428bca}.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{margin-bottom:5px;text-align:center}.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 #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;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:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-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{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:992px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;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-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-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;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@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;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;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;-webkit-box-shadow:none;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-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@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 .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}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{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-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.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{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;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:#555;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:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.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:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#777}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#777}.navbar-inverse .navbar-nav>li>a{color:#777}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.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{color:#fff;background-color:#080808}@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:#777}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;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:#fff;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:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#777}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#777}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.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:#444}.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{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.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;margin-left:-1px;line-height:1.42857143;color:#428bca;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.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:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.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:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.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:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.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{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.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:700}.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{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px}.progress-bar[aria-valuenow="0"]{min-width:30px;color:#777;background-color:transparent;background-image:none;-webkit-box-shadow:none;box-shadow:none}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;background-color:#eee}.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:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.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:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.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{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.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{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.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{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.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:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-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{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.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:first-child,.panel>.table-responsive:first-child>.table: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 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{border-top:1px solid #ddd}.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{margin-bottom:0;border: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{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-heading .badge{color:#428bca;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.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{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.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;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(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:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate3d(0,-25%,0);-o-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}.modal.in .modal-dialog{-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,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:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.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-bottom:0;margin-left:5px}.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{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(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-size:12px;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;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:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(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{padding:8px 14px;margin:0;font-size:14px;font-weight:400;line-height:18px;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{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.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;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;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;margin-top:-10px;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%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(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{right:20%;left: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{display:table;content:" "}.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{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{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;visibility:hidden!important}.affix{position:fixed;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@-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}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}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}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}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}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}}/****/

#color-switcher {
	background-color: #FFFFFF;
    padding:15px;
    position:fixed;
    right: -231px;
    top: 130px;
    width: 230px;
    z-index: 1000;
	box-shadow: 0px 1px 1px 0 rgba(0,0,0,0.4);
}

#toggle-switcher {
	background-color: #333333;
	color:#FFFFFF;
	font-size:26px;
	text-align: center;
    position: absolute;
    left: -46px;
    top: 0;
    width: 45px;
	height: 45px;
	cursor:pointer;
	padding-top:3px;
}

#color-switcher span {
	color:#333333;
	display:block;
	font-weight:700;
}

#color-switcher ul {
	margin-bottom:0;
}

#color-switcher ul li {
	background-color: #000000;
	width:30px;
	height:30px;
	margin-bottom:7px;
	cursor:pointer;
}

#color-switcher ul li:last-child {
	margin-bottom:0;
}

#color-switcher ul.list-inline {
	margin:5px 0 10px;
}

#color-switcher ul.list-inline:last-child {
	margin:5px 0 0;
}

#color-switcher ul.list-inline li {
	margin:0 2px;
}

#color-switcher ul li#blue {background-color: #0D58A6;}
#color-switcher ul li#green {background-color: #01AE68;}
#color-switcher ul li#orange {background-color: #FFB23A;}
#color-switcher ul li#red {background-color: #B81117;}
#color-switcher ul li#purple {background-color: #880045;}
#color-switcher ul li#light-blue {background-color: #2FC3DF;}
#color-switcher ul li#yellow {background-color: #E8CA20;}
#color-switcher ul li#pink {background-color: #E84097;}
#color-switcher ul li#light-green {background-color: #BAD72F;}
#color-switcher ul li#black {background-color: #868686;}


body.color-green a,
body.color-green .text-primary,
body.color-green .btn-inverse:hover,
body.color-green .btn-inverse:focus,
body.color-green .nav.vertical-nav li a:hover,
body.color-green form label,
body.color-green .owl-theme .owl-controls .owl-buttons div,
body.color-green .top-header .header-item,
body.color-green .navbar-default .navbar-brand:hover,
body.color-green .dropdown-menu > li > a:hover i,
body.color-green .jumbotron6 #slide-3 .btn:first-child,
body.color-green .jumbotron5 .btn:first-child,
body.color-green .pagination > li > a:hover,
body.color-green .pagination > li > span:hover,
body.color-green #section-introduction h2,
body.color-green #section-features .feature i,
body.color-green .text-highlight span,
body.color-green #section-portfolio .portfolio-item a:hover i,
body.color-green footer h3 i,
body.color-green footer .navbar-nav > li > a:hover,
body.color-green #features .features-sidebar h3,
body.color-green #features .features-content h3.features-title i,
body.color-green #faq h3,
body.color-green #services .service:hover h3,
body.color-green #services.services1 .service i,
body.color-green #services.services2 .service i,
body.color-green #services.services3 .service i,
body.color-green .profile h3 small,
body.color-green .box h3,
body.color-green .box ul li.active a,
body.color-green .box ul li a:hover,
body.color-green .box ul li a i,
body.color-green .box.box-tags a:hover span,
body.color-green .blog-post-detail span i,
body.color-green .blog-timeline .blog-post .blog-post-info .month,
body.color-green .comment a:hover,
body.color-green #eshop .eshop-sidebar h3,
body.color-green .shopping-cart-footer p.total-price,
body.color-green .jumbotron6 #slide-3 .btn:hover,
body.color-green .jumbotron5 .btn:hover,
body.color-green .jumbotron3 .btn:hover,
body.color-green #section-blog-posts .btn:hover,
body.color-green #separator1 .btn:hover  {
	color:#16A085;
}

body.color-green .btn-primary,
body.color-green .alert-primary,
body.color-green .label-primary,
body.color-green .panel-primary > .panel-heading,
body.color-green .blog-timeline .blog-post:hover .blog-post-info,
body.color-green .eshop-product .product-sale-label,
body.color-green .popover-title,
body.color-green .nav-tabs > li.active > a, 
body.color-green .nav-tabs > li.active > a:hover, 
body.color-green .nav-tabs > li.active > a:focus,
body.color-green .overlay-wrapper .overlay,
body.color-green .owl-theme .owl-controls .owl-page.active span,
body.color-green .owl-theme .owl-controls .owl-buttons div:hover,
body.color-green .brands.main li a,
body.color-green .navbar-default .navbar-nav > .active > a, 
body.color-green .navbar-default .navbar-nav > .active > a:hover, 
body.color-green .navbar-default .navbar-nav > .active > a:focus,
body.color-green .navbar-default .navbar-nav > .open > a, 
body.color-green .navbar-default .navbar-nav > .open > a:hover, 
body.color-green .navbar-default .navbar-nav > .open > a:focus,
body.color-green .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-green .jumbotron5 .btn:first-child:hover,
body.color-green .content-separator,
body.color-green .bg-color-1,
body.color-green .pagination > .active > a, 
body.color-green .pagination > .active > span, 
body.color-green .pagination > .active > a:hover, 
body.color-green .pagination > .active > span:hover, 
body.color-green .pagination > .active > a:focus, 
body.color-green .pagination > .active > span:focus,
body.color-green #section-features .feature:hover i,
body.color-green .recent-blog-post .post-date,
body.color-green .pricing-plan .pricing-plan-price,
body.color-green #services.services2 .service:hover i,
body.color-green #services.services3 .service:hover i,
body.color-green .blog-header .vertical-nav li a:hover .badge,
body.color-green .box ul li a span.badge,
body.color-green .blog-timeline-mark,
body.color-green #section-portfolio .portfolio-item .hover-overlay,
body.color-green .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: transparent;
}

body.color-green .popover,
body.color-green .navbar-nav > li > .dropdown-menu,
body.color-green .jumbotron6 #slide-3 .btn:first-child,
body.color-green .jumbotron5 .btn:first-child,
body.color-green .pagination > .active > a, 
body.color-green .pagination > .active > span, 
body.color-green .pagination > .active > a:hover, 
body.color-green .pagination > .active > span:hover, 
body.color-green .pagination > .active > a:focus, 
body.color-green .pagination > .active > span:focus,
body.color-green #section-features .feature i,
body.color-green .text-highlight,
body.color-green #services.services2 .service i,
body.color-green #services.services3 .service i  {
	border-color:#16A085;
}

body.color-green .popover.left > .arrow {border-left-color: #16A085;}
body.color-green .popover.right > .arrow {border-right-color: #16A085;}
body.color-green .popover.top > .arrow {border-top-color: #16A085;}
body.color-green .popover.bottom > .arrow {border-bottom-color: #16A085;}

/* TRANSPARENT */

body.color-green .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(22, 160, 133, 0.5);
}

body.color-green .jumbotron6 h2,
body.color-green .jumbotron5 h2,
body.color-green .jumbotron3 h2,
body.color-green .map-overlay {
	background-color:rgba(22, 160, 133, 0.8);
}

body.color-green .jumbotron2,
body.color-green .jumbotron4 {
	background-image: linear-gradient(rgba(22, 160, 133, 0.9), rgba(22, 160, 133, 0.9)), url(../image/bg3.jpg);
}

body.color-green .jumbotron7 {
	background-image: linear-gradient(rgba(22, 160, 133, 0.6), rgba(22, 160, 133, 0.6)),url(../image/gplaypattern.png);
}

body.color-green #section-blog-posts,
body.color-green #section-testimonials,
body.color-green #section-statistics,
body.color-green .jumbotron1 {
	background-image: linear-gradient(rgba(22, 160, 133, 0.6), rgba(22, 160, 133, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-green .navbar-default .navbar-toggle:hover,
	body.color-green .navbar-default .navbar-toggle:focus,
	body.color-green .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-green .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#16A085;
	}
	
	body.color-green .navbar-default .navbar-collapse {
		border-color:#16A085;
	}
}

/* DARKER */

body.color-green a:hover,
body.color-green a:focus {
	color:#119178;
}

body.color-green .btn-primary:hover,
body.color-green .btn-primary:focus,
body.color-green .btn-primary.active,
body.color-green .pricing-plan h3,
body.color-green .pricing-plan p {
	background-color:#119178;
}

body.color-green .btn-primary:hover,
body.color-green .btn-primary:focus,
body.color-green .btn-primary.active,
body.color-green .blog-timeline .blog-post:hover .blog-post-info,
body.color-green .eshop-product .product-sale-label {
	border-color:#119178;
}

/*------------------------------
	BLUE
------------------------------*/

body.color-blue a,
body.color-blue .text-primary,
body.color-blue .btn-inverse:hover,
body.color-blue .btn-inverse:focus,
body.color-blue .nav.vertical-nav li a:hover,
body.color-blue form label,
body.color-blue .owl-theme .owl-controls .owl-buttons div,
body.color-blue .top-header .header-item,
body.color-blue .navbar-default .navbar-brand:hover,
body.color-blue .dropdown-menu > li > a:hover i,
body.color-blue .jumbotron6 #slide-3 .btn:first-child,
body.color-blue .jumbotron5 .btn:first-child,
body.color-blue .pagination > li > a:hover,
body.color-blue .pagination > li > span:hover,
body.color-blue #section-introduction h2,
body.color-blue #section-features .feature i,
body.color-blue .text-highlight span,
body.color-blue #section-portfolio .portfolio-item a:hover i,
body.color-blue footer h3 i,
body.color-blue footer .navbar-nav > li > a:hover,
body.color-blue #features .features-sidebar h3,
body.color-blue #features .features-content h3.features-title i,
body.color-blue #faq h3,
body.color-blue #services .service:hover h3,
body.color-blue #services.services1 .service i,
body.color-blue #services.services2 .service i,
body.color-blue #services.services3 .service i,
body.color-blue .profile h3 small,
body.color-blue .box h3,
body.color-blue .box ul li.active a,
body.color-blue .box ul li a:hover,
body.color-blue .box ul li a i,
body.color-blue .box.box-tags a:hover span,
body.color-blue .blog-post-detail span i,
body.color-blue .blog-timeline .blog-post .blog-post-info .month,
body.color-blue .comment a:hover,
body.color-blue #eshop .eshop-sidebar h3,
body.color-blue .shopping-cart-footer p.total-price,
body.color-blue .jumbotron6 #slide-3 .btn:hover,
body.color-blue .jumbotron5 .btn:hover,
body.color-blue .jumbotron3 .btn:hover,
body.color-blue #section-blog-posts .btn:hover,
body.color-blue #separator1 .btn:hover  {
	color:#0D58A6;
}

body.color-blue .btn-primary,
body.color-blue .alert-primary,
body.color-blue .label-primary,
body.color-blue .panel-primary > .panel-heading,
body.color-blue .blog-timeline .blog-post:hover .blog-post-info,
body.color-blue .eshop-product .product-sale-label,
body.color-blue .popover-title,
body.color-blue .nav-tabs > li.active > a, 
body.color-blue .nav-tabs > li.active > a:hover, 
body.color-blue .nav-tabs > li.active > a:focus,
body.color-blue .overlay-wrapper .overlay,
body.color-blue .owl-theme .owl-controls .owl-page.active span,
body.color-blue .owl-theme .owl-controls .owl-buttons div:hover,
body.color-blue .brands.main li a,
body.color-blue .navbar-default .navbar-nav > .active > a, 
body.color-blue .navbar-default .navbar-nav > .active > a:hover, 
body.color-blue .navbar-default .navbar-nav > .active > a:focus,
body.color-blue .navbar-default .navbar-nav > .open > a, 
body.color-blue .navbar-default .navbar-nav > .open > a:hover, 
body.color-blue .navbar-default .navbar-nav > .open > a:focus,
body.color-blue .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-blue .jumbotron5 .btn:first-child:hover,
body.color-blue .content-separator,
body.color-blue .bg-color-1,
body.color-blue .pagination > .active > a, 
body.color-blue .pagination > .active > span, 
body.color-blue .pagination > .active > a:hover, 
body.color-blue .pagination > .active > span:hover, 
body.color-blue .pagination > .active > a:focus, 
body.color-blue .pagination > .active > span:focus,
body.color-blue #section-features .feature:hover i,
body.color-blue .recent-blog-post .post-date,
body.color-blue .pricing-plan .pricing-plan-price,
body.color-blue #services.services2 .service:hover i,
body.color-blue #services.services3 .service:hover i,
body.color-blue .blog-header .vertical-nav li a:hover .badge,
body.color-blue .box ul li a span.badge,
body.color-blue .blog-timeline-mark,
body.color-blue #section-portfolio .portfolio-item .hover-overlay,
body.color-blue .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #0D58A6;
}

body.color-blue .popover,
body.color-blue .navbar-nav > li > .dropdown-menu,
body.color-blue .jumbotron6 #slide-3 .btn:first-child,
body.color-blue .jumbotron5 .btn:first-child,
body.color-blue .pagination > .active > a, 
body.color-blue .pagination > .active > span, 
body.color-blue .pagination > .active > a:hover, 
body.color-blue .pagination > .active > span:hover, 
body.color-blue .pagination > .active > a:focus, 
body.color-blue .pagination > .active > span:focus,
body.color-blue #section-features .feature i,
body.color-blue .text-highlight,
body.color-blue #services.services2 .service i,
body.color-blue #services.services3 .service i  {
	border-color:#0D58A6;
}

body.color-blue .popover.left > .arrow {border-left-color: #0D58A6;}
body.color-blue .popover.right > .arrow {border-right-color: #0D58A6;}
body.color-blue .popover.top > .arrow {border-top-color: #0D58A6;}
body.color-blue .popover.bottom > .arrow {border-bottom-color: #0D58A6;}

/* TRANSPARENT */

body.color-blue .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(13, 88, 166, 0.5);
}

body.color-blue .jumbotron6 h2,
body.color-blue .jumbotron5 h2,
body.color-blue .jumbotron3 h2,
body.color-blue .map-overlay {
	background-color:rgba(13, 88, 166, 0.8);
}

body.color-blue .jumbotron2,
body.color-blue .jumbotron4 {
	background-image: linear-gradient(rgba(13, 88, 166, 0.9), rgba(13, 88, 166, 0.9)), url(../image/bg3.jpg);
}

body.color-blue .jumbotron7 {
	background-image: linear-gradient(rgba(13, 88, 166, 0.6), rgba(13, 88, 166, 0.6)),url(../image/gplaypattern.png);
}

body.color-blue #section-blog-posts,
body.color-blue #section-testimonials,
body.color-blue #section-statistics,
body.color-blue .jumbotron1 {
	background-image: linear-gradient(rgba(13, 88, 166, 0.6), rgba(13, 88, 166, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-blue .navbar-default .navbar-toggle:hover,
	body.color-blue .navbar-default .navbar-toggle:focus,
	body.color-blue .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-blue .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#0D58A6;
	}
	
	body.color-blue .navbar-default .navbar-collapse {
		border-color:#0D58A6;
	}
}

/* DARKER */

body.color-blue a:hover,
body.color-blue a:focus {
	color:#074C94;
}

body.color-blue .btn-primary:hover,
body.color-blue .btn-primary:focus,
body.color-blue .btn-primary.active,
body.color-blue .pricing-plan h3,
body.color-blue .pricing-plan p {
	background-color:#074C94;
}

body.color-blue .btn-primary:hover,
body.color-blue .btn-primary:focus,
body.color-blue .btn-primary.active,
body.color-blue .blog-timeline .blog-post:hover .blog-post-info,
body.color-blue .eshop-product .product-sale-label {
	border-color:#074C94;
}


/*------------------------------
	ORANGE
------------------------------*/

body.color-orange a,
body.color-orange .text-primary,
body.color-orange .btn-inverse:hover,
body.color-orange .btn-inverse:focus,
body.color-orange .nav.vertical-nav li a:hover,
body.color-orange form label,
body.color-orange .owl-theme .owl-controls .owl-buttons div,
body.color-orange .top-header .header-item,
body.color-orange .navbar-default .navbar-brand:hover,
body.color-orange .dropdown-menu > li > a:hover i,
body.color-orange .jumbotron6 #slide-3 .btn:first-child,
body.color-orange .jumbotron5 .btn:first-child,
body.color-orange .pagination > li > a:hover,
body.color-orange .pagination > li > span:hover,
body.color-orange #section-introduction h2,
body.color-orange #section-features .feature i,
body.color-orange .text-highlight span,
body.color-orange #section-portfolio .portfolio-item a:hover i,
body.color-orange footer h3 i,
body.color-orange footer .navbar-nav > li > a:hover,
body.color-orange #features .features-sidebar h3,
body.color-orange #features .features-content h3.features-title i,
body.color-orange #faq h3,
body.color-orange #services .service:hover h3,
body.color-orange #services.services1 .service i,
body.color-orange #services.services2 .service i,
body.color-orange #services.services3 .service i,
body.color-orange .profile h3 small,
body.color-orange .box h3,
body.color-orange .box ul li.active a,
body.color-orange .box ul li a:hover,
body.color-orange .box ul li a i,
body.color-orange .box.box-tags a:hover span,
body.color-orange .blog-post-detail span i,
body.color-orange .blog-timeline .blog-post .blog-post-info .month,
body.color-orange .comment a:hover,
body.color-orange #eshop .eshop-sidebar h3,
body.color-orange .shopping-cart-footer p.total-price,
body.color-orange .jumbotron6 #slide-3 .btn:hover,
body.color-orange .jumbotron5 .btn:hover,
body.color-orange .jumbotron3 .btn:hover,
body.color-orange #section-blog-posts .btn:hover,
body.color-orange #separator1 .btn:hover  {
	color:#FFB23A;
}

body.color-orange .btn-primary,
body.color-orange .alert-primary,
body.color-orange .label-primary,
body.color-orange .panel-primary > .panel-heading,
body.color-orange .blog-timeline .blog-post:hover .blog-post-info,
body.color-orange .eshop-product .product-sale-label,
body.color-orange .popover-title,
body.color-orange .nav-tabs > li.active > a, 
body.color-orange .nav-tabs > li.active > a:hover, 
body.color-orange .nav-tabs > li.active > a:focus,
body.color-orange .overlay-wrapper .overlay,
body.color-orange .owl-theme .owl-controls .owl-page.active span,
body.color-orange .owl-theme .owl-controls .owl-buttons div:hover,
body.color-orange .brands.main li a,
body.color-orange .navbar-default .navbar-nav > .active > a, 
body.color-orange .navbar-default .navbar-nav > .active > a:hover, 
body.color-orange .navbar-default .navbar-nav > .active > a:focus,
body.color-orange .navbar-default .navbar-nav > .open > a, 
body.color-orange .navbar-default .navbar-nav > .open > a:hover, 
body.color-orange .navbar-default .navbar-nav > .open > a:focus,
body.color-orange .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-orange .jumbotron5 .btn:first-child:hover,
body.color-orange .content-separator,
body.color-orange .bg-color-1,
body.color-orange .pagination > .active > a, 
body.color-orange .pagination > .active > span, 
body.color-orange .pagination > .active > a:hover, 
body.color-orange .pagination > .active > span:hover, 
body.color-orange .pagination > .active > a:focus, 
body.color-orange .pagination > .active > span:focus,
body.color-orange #section-features .feature:hover i,
body.color-orange .recent-blog-post .post-date,
body.color-orange .pricing-plan .pricing-plan-price,
body.color-orange #services.services2 .service:hover i,
body.color-orange #services.services3 .service:hover i,
body.color-orange .blog-header .vertical-nav li a:hover .badge,
body.color-orange .box ul li a span.badge,
body.color-orange .blog-timeline-mark,
body.color-orange #section-portfolio .portfolio-item .hover-overlay,
body.color-orange .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #FFB23A;
}

body.color-orange .popover,
body.color-orange .navbar-nav > li > .dropdown-menu,
body.color-orange .jumbotron6 #slide-3 .btn:first-child,
body.color-orange .jumbotron5 .btn:first-child,
body.color-orange .pagination > .active > a, 
body.color-orange .pagination > .active > span, 
body.color-orange .pagination > .active > a:hover, 
body.color-orange .pagination > .active > span:hover, 
body.color-orange .pagination > .active > a:focus, 
body.color-orange .pagination > .active > span:focus,
body.color-orange #section-features .feature i,
body.color-orange .text-highlight,
body.color-orange #services.services2 .service i,
body.color-orange #services.services3 .service i  {
	border-color:#FFB23A;
}

body.color-orange .popover.left > .arrow {border-left-color: #FFAA01;}
body.color-orange .popover.right > .arrow {border-right-color: #FFAA01;}
body.color-orange .popover.top > .arrow {border-top-color: #FFAA01;}
body.color-orange .popover.bottom > .arrow {border-bottom-color: #FFAA01;}

/* TRANSPARENT */

body.color-orange .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(255, 178, 58, 0.5);
}

body.color-orange .jumbotron6 h2,
body.color-orange .jumbotron5 h2,
body.color-orange .jumbotron3 h2,
body.color-orange .map-overlay {
	background-color:rgba(255, 178, 58, 0.8);
}

body.color-orange .jumbotron2,
body.color-orange .jumbotron4 {
	background-image: linear-gradient(rgba(255, 178, 58, 0.9), rgba(255, 178, 58, 0.9)), url(../image/bg3.jpg);
}

body.color-orange .jumbotron7 {
	background-image: linear-gradient(rgba(255, 178, 58, 0.6), rgba(255, 178, 58, 0.6)),url(../image/gplaypattern.png);
}

body.color-orange #section-blog-posts,
body.color-orange #section-testimonials,
body.color-orange #section-statistics,
body.color-orange .jumbotron1 {
	background-image: linear-gradient(rgba(255, 178, 58, 0.6), rgba(255, 178, 58, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-orange .navbar-default .navbar-toggle:hover,
	body.color-orange .navbar-default .navbar-toggle:focus,
	body.color-orange .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-orange .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#FFAA01;
	}
	
	body.color-orange .navbar-default .navbar-collapse {
		border-color:#FFAA01;
	}
}

/* DARKER */

body.color-orange a:hover,
body.color-orange a:focus {
	color:#E39802;
}

body.color-orange .btn-primary:hover,
body.color-orange .btn-primary:focus,
body.color-orange .btn-primary.active,
body.color-orange .pricing-plan h3,
body.color-orange .pricing-plan p {
	background-color:#E39802;
}

body.color-orange .btn-primary:hover,
body.color-orange .btn-primary:focus,
body.color-orange .btn-primary.active,
body.color-orange .blog-timeline .blog-post:hover .blog-post-info,
body.color-orange .eshop-product .product-sale-label {
	border-color:#E39802;
}

/*------------------------------
	RED
------------------------------*/

body.color-red a,
body.color-red .text-primary,
body.color-red .btn-inverse:hover,
body.color-red .btn-inverse:focus,
body.color-red .nav.vertical-nav li a:hover,
body.color-red form label,
body.color-red .owl-theme .owl-controls .owl-buttons div,
body.color-red .top-header .header-item,
body.color-red .navbar-default .navbar-brand:hover,
body.color-red .dropdown-menu > li > a:hover i,
body.color-red .jumbotron6 #slide-3 .btn:first-child,
body.color-red .jumbotron5 .btn:first-child,
body.color-red .pagination > li > a:hover,
body.color-red .pagination > li > span:hover,
body.color-red #section-introduction h2,
body.color-red #section-features .feature i,
body.color-red .text-highlight span,
body.color-red #section-portfolio .portfolio-item a:hover i,
body.color-red footer h3 i,
body.color-red footer .navbar-nav > li > a:hover,
body.color-red #features .features-sidebar h3,
body.color-red #features .features-content h3.features-title i,
body.color-red #faq h3,
body.color-red #services .service:hover h3,
body.color-red #services.services1 .service i,
body.color-red #services.services2 .service i,
body.color-red #services.services3 .service i,
body.color-red .profile h3 small,
body.color-red .box h3,
body.color-red .box ul li.active a,
body.color-red .box ul li a:hover,
body.color-red .box ul li a i,
body.color-red .box.box-tags a:hover span,
body.color-red .blog-post-detail span i,
body.color-red .blog-timeline .blog-post .blog-post-info .month,
body.color-red .comment a:hover,
body.color-red #eshop .eshop-sidebar h3,
body.color-red .shopping-cart-footer p.total-price,
body.color-red .jumbotron6 #slide-3 .btn:hover,
body.color-red .jumbotron5 .btn:hover,
body.color-red .jumbotron3 .btn:hover,
body.color-red #section-blog-posts .btn:hover,
body.color-red #separator1 .btn:hover  {
	color:#B81117;
}

body.color-red .btn-primary,
body.color-red .alert-primary,
body.color-red .label-primary,
body.color-red .panel-primary > .panel-heading,
body.color-red .blog-timeline .blog-post:hover .blog-post-info,
body.color-red .eshop-product .product-sale-label,
body.color-red .popover-title,
body.color-red .nav-tabs > li.active > a, 
body.color-red .nav-tabs > li.active > a:hover, 
body.color-red .nav-tabs > li.active > a:focus,
body.color-red .overlay-wrapper .overlay,
body.color-red .owl-theme .owl-controls .owl-page.active span,
body.color-red .owl-theme .owl-controls .owl-buttons div:hover,
body.color-red .brands.main li a,
body.color-red .navbar-default .navbar-nav > .active > a, 
body.color-red .navbar-default .navbar-nav > .active > a:hover, 
body.color-red .navbar-default .navbar-nav > .active > a:focus,
body.color-red .navbar-default .navbar-nav > .open > a, 
body.color-red .navbar-default .navbar-nav > .open > a:hover, 
body.color-red .navbar-default .navbar-nav > .open > a:focus,
body.color-red .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-red .jumbotron5 .btn:first-child:hover,
body.color-red .content-separator,
body.color-red .bg-color-1,
body.color-red .pagination > .active > a, 
body.color-red .pagination > .active > span, 
body.color-red .pagination > .active > a:hover, 
body.color-red .pagination > .active > span:hover, 
body.color-red .pagination > .active > a:focus, 
body.color-red .pagination > .active > span:focus,
body.color-red #section-features .feature:hover i,
body.color-red .recent-blog-post .post-date,
body.color-red .pricing-plan .pricing-plan-price,
body.color-red #services.services2 .service:hover i,
body.color-red #services.services3 .service:hover i,
body.color-red .blog-header .vertical-nav li a:hover .badge,
body.color-red .box ul li a span.badge,
body.color-red .blog-timeline-mark,
body.color-red #section-portfolio .portfolio-item .hover-overlay,
body.color-red .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #B81117;
}

body.color-red .popover,
body.color-red .navbar-nav > li > .dropdown-menu,
body.color-red .jumbotron6 #slide-3 .btn:first-child,
body.color-red .jumbotron5 .btn:first-child,
body.color-red .pagination > .active > a, 
body.color-red .pagination > .active > span, 
body.color-red .pagination > .active > a:hover, 
body.color-red .pagination > .active > span:hover, 
body.color-red .pagination > .active > a:focus, 
body.color-red .pagination > .active > span:focus,
body.color-red #section-features .feature i,
body.color-red .text-highlight,
body.color-red #services.services2 .service i,
body.color-red #services.services3 .service i  {
	border-color:#B81117;
}

body.color-red .popover.left > .arrow {border-left-color: #B81117;}
body.color-red .popover.right > .arrow {border-right-color: #B81117;}
body.color-red .popover.top > .arrow {border-top-color: #B81117;}
body.color-red .popover.bottom > .arrow {border-bottom-color: #B81117;}

/* TRANSPARENT */

body.color-red .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(184, 17, 23, 0.5);
}

body.color-red .jumbotron6 h2,
body.color-red .jumbotron5 h2,
body.color-red .jumbotron3 h2,
body.color-red .map-overlay {
	background-color:rgba(184, 17, 23, 0.8);
}

body.color-red .jumbotron2,
body.color-red .jumbotron4 {
	background-image: linear-gradient(rgba(184, 17, 23, 0.9), rgba(184, 17, 23, 0.9)), url(../image/bg3.jpg);
}

body.color-red .jumbotron7 {
	background-image: linear-gradient(rgba(184, 17, 23, 0.6), rgba(184, 17, 23, 0.6)),url(../image/gplaypattern.png);
}

body.color-red #section-blog-posts,
body.color-red #section-testimonials,
body.color-red #section-statistics,
body.color-red .jumbotron1 {
	background-image: linear-gradient(rgba(184, 17, 23, 0.6), rgba(184, 17, 23, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-red .navbar-default .navbar-toggle:hover,
	body.color-red .navbar-default .navbar-toggle:focus,
	body.color-red .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-red .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#B81117;
	}
	
	body.color-red .navbar-default .navbar-collapse {
		border-color:#B81117;
	}
}

/* DARKER */

body.color-red a:hover,
body.color-red a:focus {
	color:#96060B;
}

body.color-red .btn-primary:hover,
body.color-red .btn-primary:focus,
body.color-red .btn-primary.active,
body.color-red .pricing-plan h3,
body.color-red .pricing-plan p {
	background-color:#96060B;
}

body.color-red .btn-primary:hover,
body.color-red .btn-primary:focus,
body.color-red .btn-primary.active,
body.color-red .blog-timeline .blog-post:hover .blog-post-info,
body.color-red .eshop-product .product-sale-label {
	border-color:#96060B;
}

/*------------------------------
	PURPLE
------------------------------*/

body.color-purple a,
body.color-purple .text-primary,
body.color-purple .btn-inverse:hover,
body.color-purple .btn-inverse:focus,
body.color-purple .nav.vertical-nav li a:hover,
body.color-purple form label,
body.color-purple .owl-theme .owl-controls .owl-buttons div,
body.color-purple .top-header .header-item,
body.color-purple .navbar-default .navbar-brand:hover,
body.color-purple .dropdown-menu > li > a:hover i,
body.color-purple .jumbotron6 #slide-3 .btn:first-child,
body.color-purple .jumbotron5 .btn:first-child,
body.color-purple .pagination > li > a:hover,
body.color-purple .pagination > li > span:hover,
body.color-purple #section-introduction h2,
body.color-purple #section-features .feature i,
body.color-purple .text-highlight span,
body.color-purple #section-portfolio .portfolio-item a:hover i,
body.color-purple footer h3 i,
body.color-purple footer .navbar-nav > li > a:hover,
body.color-purple #features .features-sidebar h3,
body.color-purple #features .features-content h3.features-title i,
body.color-purple #faq h3,
body.color-purple #services .service:hover h3,
body.color-purple #services.services1 .service i,
body.color-purple #services.services2 .service i,
body.color-purple #services.services3 .service i,
body.color-purple .profile h3 small,
body.color-purple .box h3,
body.color-purple .box ul li.active a,
body.color-purple .box ul li a:hover,
body.color-purple .box ul li a i,
body.color-purple .box.box-tags a:hover span,
body.color-purple .blog-post-detail span i,
body.color-purple .blog-timeline .blog-post .blog-post-info .month,
body.color-purple .comment a:hover,
body.color-purple #eshop .eshop-sidebar h3,
body.color-purple .shopping-cart-footer p.total-price,
body.color-purple .jumbotron6 #slide-3 .btn:hover,
body.color-purple .jumbotron5 .btn:hover,
body.color-purple .jumbotron3 .btn:hover,
body.color-purple #section-blog-posts .btn:hover,
body.color-purple #separator1 .btn:hover  {
	color:#880045;
}

body.color-purple .btn-primary,
body.color-purple .alert-primary,
body.color-purple .label-primary,
body.color-purple .panel-primary > .panel-heading,
body.color-purple .blog-timeline .blog-post:hover .blog-post-info,
body.color-purple .eshop-product .product-sale-label,
body.color-purple .popover-title,
body.color-purple .nav-tabs > li.active > a, 
body.color-purple .nav-tabs > li.active > a:hover, 
body.color-purple .nav-tabs > li.active > a:focus,
body.color-purple .overlay-wrapper .overlay,
body.color-purple .owl-theme .owl-controls .owl-page.active span,
body.color-purple .owl-theme .owl-controls .owl-buttons div:hover,
body.color-purple .brands.main li a,
body.color-purple .navbar-default .navbar-nav > .active > a, 
body.color-purple .navbar-default .navbar-nav > .active > a:hover, 
body.color-purple .navbar-default .navbar-nav > .active > a:focus,
body.color-purple .navbar-default .navbar-nav > .open > a, 
body.color-purple .navbar-default .navbar-nav > .open > a:hover, 
body.color-purple .navbar-default .navbar-nav > .open > a:focus,
body.color-purple .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-purple .jumbotron5 .btn:first-child:hover,
body.color-purple .content-separator,
body.color-purple .bg-color-1,
body.color-purple .pagination > .active > a, 
body.color-purple .pagination > .active > span, 
body.color-purple .pagination > .active > a:hover, 
body.color-purple .pagination > .active > span:hover, 
body.color-purple .pagination > .active > a:focus, 
body.color-purple .pagination > .active > span:focus,
body.color-purple #section-features .feature:hover i,
body.color-purple .recent-blog-post .post-date,
body.color-purple .pricing-plan .pricing-plan-price,
body.color-purple #services.services2 .service:hover i,
body.color-purple #services.services3 .service:hover i,
body.color-purple .blog-header .vertical-nav li a:hover .badge,
body.color-purple .box ul li a span.badge,
body.color-purple .blog-timeline-mark,
body.color-purple #section-portfolio .portfolio-item .hover-overlay,
body.color-purple .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #880045;
}

body.color-purple .popover,
body.color-purple .navbar-nav > li > .dropdown-menu,
body.color-purple .jumbotron6 #slide-3 .btn:first-child,
body.color-purple .jumbotron5 .btn:first-child,
body.color-purple .pagination > .active > a, 
body.color-purple .pagination > .active > span, 
body.color-purple .pagination > .active > a:hover, 
body.color-purple .pagination > .active > span:hover, 
body.color-purple .pagination > .active > a:focus, 
body.color-purple .pagination > .active > span:focus,
body.color-purple #section-features .feature i,
body.color-purple .text-highlight,
body.color-purple #services.services2 .service i,
body.color-purple #services.services3 .service i  {
	border-color:#880045;
}

body.color-purple .popover.left > .arrow {border-left-color: #880045;}
body.color-purple .popover.right > .arrow {border-right-color: #880045;}
body.color-purple .popover.top > .arrow {border-top-color: #880045;}
body.color-purple .popover.bottom > .arrow {border-bottom-color: #880045;}

/* TRANSPARENT */

body.color-purple .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(136, 0, 69, 0.5);
}

body.color-purple .jumbotron6 h2,
body.color-purple .jumbotron5 h2,
body.color-purple .jumbotron3 h2,
body.color-purple .map-overlay {
	background-color:rgba(136, 0, 69, 0.8);
}

body.color-purple .jumbotron2,
body.color-purple .jumbotron4 {
	background-image: linear-gradient(rgba(136, 0, 69, 0.9), rgba(136, 0, 69, 0.9)), url(../image/bg3.jpg);
}

body.color-purple .jumbotron7 {
	background-image: linear-gradient(rgba(136, 0, 69, 0.6), rgba(136, 0, 69, 0.6)),url(../image/gplaypattern.png);
}

body.color-purple #section-blog-posts,
body.color-purple #section-testimonials,
body.color-purple #section-statistics,
body.color-purple .jumbotron1 {
	background-image: linear-gradient(rgba(136, 0, 69, 0.6), rgba(136, 0, 69, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-purple .navbar-default .navbar-toggle:hover,
	body.color-purple .navbar-default .navbar-toggle:focus,
	body.color-purple .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-purple .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#880045;
	}
	
	body.color-purple .navbar-default .navbar-collapse {
		border-color:#880045;
	}
}

/* DARKER */

body.color-purple a:hover,
body.color-purple a:focus {
	color:#630434;
}

body.color-purple .btn-primary:hover,
body.color-purple .btn-primary:focus,
body.color-purple .btn-primary.active,
body.color-purple .pricing-plan h3,
body.color-purple .pricing-plan p {
	background-color:#630434;
}

body.color-purple .btn-primary:hover,
body.color-purple .btn-primary:focus,
body.color-purple .btn-primary.active,
body.color-purple .blog-timeline .blog-post:hover .blog-post-info,
body.color-purple .eshop-product .product-sale-label {
	border-color:#630434;
}

/*------------------------------
	LIGHT BLUE
------------------------------*/

body.color-light-blue a,
body.color-light-blue .text-primary,
body.color-light-blue .btn-inverse:hover,
body.color-light-blue .btn-inverse:focus,
body.color-light-blue .nav.vertical-nav li a:hover,
body.color-light-blue form label,
body.color-light-blue .owl-theme .owl-controls .owl-buttons div,
body.color-light-blue .top-header .header-item,
body.color-light-blue .navbar-default .navbar-brand:hover,
body.color-light-blue .dropdown-menu > li > a:hover i,
body.color-light-blue .jumbotron6 #slide-3 .btn:first-child,
body.color-light-blue .jumbotron5 .btn:first-child,
body.color-light-blue .pagination > li > a:hover,
body.color-light-blue .pagination > li > span:hover,
body.color-light-blue #section-introduction h2,
body.color-light-blue #section-features .feature i,
body.color-light-blue .text-highlight span,
body.color-light-blue #section-portfolio .portfolio-item a:hover i,
body.color-light-blue footer h3 i,
body.color-light-blue footer .navbar-nav > li > a:hover,
body.color-light-blue #features .features-sidebar h3,
body.color-light-blue #features .features-content h3.features-title i,
body.color-light-blue #faq h3,
body.color-light-blue #services .service:hover h3,
body.color-light-blue #services.services1 .service i,
body.color-light-blue #services.services2 .service i,
body.color-light-blue #services.services3 .service i,
body.color-light-blue .profile h3 small,
body.color-light-blue .box h3,
body.color-light-blue .box ul li.active a,
body.color-light-blue .box ul li a:hover,
body.color-light-blue .box ul li a i,
body.color-light-blue .box.box-tags a:hover span,
body.color-light-blue .blog-post-detail span i,
body.color-light-blue .blog-timeline .blog-post .blog-post-info .month,
body.color-light-blue .comment a:hover,
body.color-light-blue #eshop .eshop-sidebar h3,
body.color-light-blue .shopping-cart-footer p.total-price,
body.color-light-blue .jumbotron6 #slide-3 .btn:hover,
body.color-light-blue .jumbotron5 .btn:hover,
body.color-light-blue .jumbotron3 .btn:hover,
body.color-light-blue #section-blog-posts .btn:hover,
body.color-light-blue #separator1 .btn:hover  {
	color:#2FC3DF;
}

body.color-light-blue .btn-primary,
body.color-light-blue .alert-primary,
body.color-light-blue .label-primary,
body.color-light-blue .panel-primary > .panel-heading,
body.color-light-blue .blog-timeline .blog-post:hover .blog-post-info,
body.color-light-blue .eshop-product .product-sale-label,
body.color-light-blue .popover-title,
body.color-light-blue .nav-tabs > li.active > a, 
body.color-light-blue .nav-tabs > li.active > a:hover, 
body.color-light-blue .nav-tabs > li.active > a:focus,
body.color-light-blue .overlay-wrapper .overlay,
body.color-light-blue .owl-theme .owl-controls .owl-page.active span,
body.color-light-blue .owl-theme .owl-controls .owl-buttons div:hover,
body.color-light-blue .brands.main li a,
body.color-light-blue .navbar-default .navbar-nav > .active > a, 
body.color-light-blue .navbar-default .navbar-nav > .active > a:hover, 
body.color-light-blue .navbar-default .navbar-nav > .active > a:focus,
body.color-light-blue .navbar-default .navbar-nav > .open > a, 
body.color-light-blue .navbar-default .navbar-nav > .open > a:hover, 
body.color-light-blue .navbar-default .navbar-nav > .open > a:focus,
body.color-light-blue .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-light-blue .jumbotron5 .btn:first-child:hover,
body.color-light-blue .content-separator,
body.color-light-blue .bg-color-1,
body.color-light-blue .pagination > .active > a, 
body.color-light-blue .pagination > .active > span, 
body.color-light-blue .pagination > .active > a:hover, 
body.color-light-blue .pagination > .active > span:hover, 
body.color-light-blue .pagination > .active > a:focus, 
body.color-light-blue .pagination > .active > span:focus,
body.color-light-blue #section-features .feature:hover i,
body.color-light-blue .recent-blog-post .post-date,
body.color-light-blue .pricing-plan .pricing-plan-price,
body.color-light-blue #services.services2 .service:hover i,
body.color-light-blue #services.services3 .service:hover i,
body.color-light-blue .blog-header .vertical-nav li a:hover .badge,
body.color-light-blue .box ul li a span.badge,
body.color-light-blue .blog-timeline-mark,
body.color-light-blue #section-portfolio .portfolio-item .hover-overlay,
body.color-light-blue .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #2FC3DF;
}

body.color-light-blue .popover,
body.color-light-blue .navbar-nav > li > .dropdown-menu,
body.color-light-blue .jumbotron6 #slide-3 .btn:first-child,
body.color-light-blue .jumbotron5 .btn:first-child,
body.color-light-blue .pagination > .active > a, 
body.color-light-blue .pagination > .active > span, 
body.color-light-blue .pagination > .active > a:hover, 
body.color-light-blue .pagination > .active > span:hover, 
body.color-light-blue .pagination > .active > a:focus, 
body.color-light-blue .pagination > .active > span:focus,
body.color-light-blue #section-features .feature i,
body.color-light-blue .text-highlight,
body.color-light-blue #services.services2 .service i,
body.color-light-blue #services.services3 .service i  {
	border-color:#2FC3DF;
}

body.color-light-blue .popover.left > .arrow {border-left-color: #2FC3DF;}
body.color-light-blue .popover.right > .arrow {border-right-color: #2FC3DF;}
body.color-light-blue .popover.top > .arrow {border-top-color: #2FC3DF;}
body.color-light-blue .popover.bottom > .arrow {border-bottom-color: #2FC3DF;}

/* TRANSPARENT */

body.color-light-blue .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(47, 195, 223, 0.5);
}

body.color-light-blue .jumbotron6 h2,
body.color-light-blue .jumbotron5 h2,
body.color-light-blue .jumbotron3 h2,
body.color-light-blue .map-overlay {
	background-color:rgba(47, 195, 223, 0.8);
}

body.color-light-blue .jumbotron2,
body.color-light-blue .jumbotron4 {
	background-image: linear-gradient(rgba(47, 195, 223, 0.9), rgba(47, 195, 223, 0.9)), url(../image/bg3.jpg);
}

body.color-light-blue .jumbotron7 {
	background-image: linear-gradient(rgba(47, 195, 223, 0.6), rgba(47, 195, 223, 0.6)),url(../image/gplaypattern.png);
}

body.color-light-blue #section-blog-posts,
body.color-light-blue #section-testimonials,
body.color-light-blue #section-statistics,
body.color-light-blue .jumbotron1 {
	background-image: linear-gradient(rgba(47, 195, 223, 0.6), rgba(47, 195, 223, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-light-blue .navbar-default .navbar-toggle:hover,
	body.color-light-blue .navbar-default .navbar-toggle:focus,
	body.color-light-blue .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-light-blue .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#2FC3DF;
	}
	
	body.color-light-blue .navbar-default .navbar-collapse {
		border-color:#2FC3DF;
	}
}

/* DARKER */

body.color-light-blue a:hover,
body.color-light-blue a:focus {
	color:#1DABC6;
}

body.color-light-blue .btn-primary:hover,
body.color-light-blue .btn-primary:focus,
body.color-light-blue .btn-primary.active,
body.color-light-blue .pricing-plan h3,
body.color-light-blue .pricing-plan p {
	background-color:#1DABC6;
}

body.color-light-blue .btn-primary:hover,
body.color-light-blue .btn-primary:focus,
body.color-light-blue .btn-primary.active,
body.color-light-blue .blog-timeline .blog-post:hover .blog-post-info,
body.color-light-blue .eshop-product .product-sale-label {
	border-color:#1DABC6;
}

/*------------------------------
	YELLOW
------------------------------*/

body.color-yellow a,
body.color-yellow .text-primary,
body.color-yellow .btn-inverse:hover,
body.color-yellow .btn-inverse:focus,
body.color-yellow .nav.vertical-nav li a:hover,
body.color-yellow form label,
body.color-yellow .owl-theme .owl-controls .owl-buttons div,
body.color-yellow .top-header .header-item,
body.color-yellow .navbar-default .navbar-brand:hover,
body.color-yellow .dropdown-menu > li > a:hover i,
body.color-yellow .jumbotron6 #slide-3 .btn:first-child,
body.color-yellow .jumbotron5 .btn:first-child,
body.color-yellow .pagination > li > a:hover,
body.color-yellow .pagination > li > span:hover,
body.color-yellow #section-introduction h2,
body.color-yellow #section-features .feature i,
body.color-yellow .text-highlight span,
body.color-yellow #section-portfolio .portfolio-item a:hover i,
body.color-yellow footer h3 i,
body.color-yellow footer .navbar-nav > li > a:hover,
body.color-yellow #features .features-sidebar h3,
body.color-yellow #features .features-content h3.features-title i,
body.color-yellow #faq h3,
body.color-yellow #services .service:hover h3,
body.color-yellow #services.services1 .service i,
body.color-yellow #services.services2 .service i,
body.color-yellow #services.services3 .service i,
body.color-yellow .profile h3 small,
body.color-yellow .box h3,
body.color-yellow .box ul li.active a,
body.color-yellow .box ul li a:hover,
body.color-yellow .box ul li a i,
body.color-yellow .box.box-tags a:hover span,
body.color-yellow .blog-post-detail span i,
body.color-yellow .blog-timeline .blog-post .blog-post-info .month,
body.color-yellow .comment a:hover,
body.color-yellow #eshop .eshop-sidebar h3,
body.color-yellow .shopping-cart-footer p.total-price,
body.color-yellow .jumbotron6 #slide-3 .btn:hover,
body.color-yellow .jumbotron5 .btn:hover,
body.color-yellow .jumbotron3 .btn:hover,
body.color-yellow #section-blog-posts .btn:hover,
body.color-yellow #separator1 .btn:hover  {
	color:#E8CA20;
}

body.color-yellow .btn-primary,
body.color-yellow .alert-primary,
body.color-yellow .label-primary,
body.color-yellow .panel-primary > .panel-heading,
body.color-yellow .blog-timeline .blog-post:hover .blog-post-info,
body.color-yellow .eshop-product .product-sale-label,
body.color-yellow .popover-title,
body.color-yellow .nav-tabs > li.active > a, 
body.color-yellow .nav-tabs > li.active > a:hover, 
body.color-yellow .nav-tabs > li.active > a:focus,
body.color-yellow .overlay-wrapper .overlay,
body.color-yellow .owl-theme .owl-controls .owl-page.active span,
body.color-yellow .owl-theme .owl-controls .owl-buttons div:hover,
body.color-yellow .brands.main li a,
body.color-yellow .navbar-default .navbar-nav > .active > a, 
body.color-yellow .navbar-default .navbar-nav > .active > a:hover, 
body.color-yellow .navbar-default .navbar-nav > .active > a:focus,
body.color-yellow .navbar-default .navbar-nav > .open > a, 
body.color-yellow .navbar-default .navbar-nav > .open > a:hover, 
body.color-yellow .navbar-default .navbar-nav > .open > a:focus,
body.color-yellow .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-yellow .jumbotron5 .btn:first-child:hover,
body.color-yellow .content-separator,
body.color-yellow .bg-color-1,
body.color-yellow .pagination > .active > a, 
body.color-yellow .pagination > .active > span, 
body.color-yellow .pagination > .active > a:hover, 
body.color-yellow .pagination > .active > span:hover, 
body.color-yellow .pagination > .active > a:focus, 
body.color-yellow .pagination > .active > span:focus,
body.color-yellow #section-features .feature:hover i,
body.color-yellow .recent-blog-post .post-date,
body.color-yellow .pricing-plan .pricing-plan-price,
body.color-yellow #services.services2 .service:hover i,
body.color-yellow #services.services3 .service:hover i,
body.color-yellow .blog-header .vertical-nav li a:hover .badge,
body.color-yellow .box ul li a span.badge,
body.color-yellow .blog-timeline-mark,
body.color-yellow #section-portfolio .portfolio-item .hover-overlay,
body.color-yellow .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #E8CA20;
}

body.color-yellow .popover,
body.color-yellow .navbar-nav > li > .dropdown-menu,
body.color-yellow .jumbotron6 #slide-3 .btn:first-child,
body.color-yellow .jumbotron5 .btn:first-child,
body.color-yellow .pagination > .active > a, 
body.color-yellow .pagination > .active > span, 
body.color-yellow .pagination > .active > a:hover, 
body.color-yellow .pagination > .active > span:hover, 
body.color-yellow .pagination > .active > a:focus, 
body.color-yellow .pagination > .active > span:focus,
body.color-yellow #section-features .feature i,
body.color-yellow .text-highlight,
body.color-yellow #services.services2 .service i,
body.color-yellow #services.services3 .service i  {
	border-color:#E8CA20;
}

body.color-yellow .popover.left > .arrow {border-left-color: #E8CA20;}
body.color-yellow .popover.right > .arrow {border-right-color: #E8CA20;}
body.color-yellow .popover.top > .arrow {border-top-color: #E8CA20;}
body.color-yellow .popover.bottom > .arrow {border-bottom-color: #E8CA20;}

/* TRANSPARENT */

body.color-yellow .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(232, 202, 32, 0.5);
}

body.color-yellow .jumbotron6 h2,
body.color-yellow .jumbotron5 h2,
body.color-yellow .jumbotron3 h2,
body.color-yellow .map-overlay {
	background-color:rgba(232, 202, 32, 0.8);
}

body.color-yellow .jumbotron2,
body.color-yellow .jumbotron4 {
	background-image: linear-gradient(rgba(232, 202, 32, 0.9), rgba(232, 202, 32, 0.9)), url(../image/bg3.jpg);
}

body.color-yellow .jumbotron7 {
	background-image: linear-gradient(rgba(232, 202, 32, 0.6), rgba(232, 202, 32, 0.6)),url(../image/gplaypattern.png);
}

body.color-yellow #section-blog-posts,
body.color-yellow #section-testimonials,
body.color-yellow #section-statistics,
body.color-yellow .jumbotron1 {
	background-image: linear-gradient(rgba(232, 202, 32, 0.6), rgba(232, 202, 32, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-yellow .navbar-default .navbar-toggle:hover,
	body.color-yellow .navbar-default .navbar-toggle:focus,
	body.color-yellow .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-yellow .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#E8CA20;
	}
	
	body.color-yellow .navbar-default .navbar-collapse {
		border-color:#E8CA20;
	}
}

/* DARKER */

body.color-yellow a:hover,
body.color-yellow a:focus {
	color:#E3C61F;
}

body.color-yellow .btn-primary:hover,
body.color-yellow .btn-primary:focus,
body.color-yellow .btn-primary.active,
body.color-yellow .pricing-plan h3,
body.color-yellow .pricing-plan p {
	background-color:#E3C61F;
}

body.color-yellow .btn-primary:hover,
body.color-yellow .btn-primary:focus,
body.color-yellow .btn-primary.active,
body.color-yellow .blog-timeline .blog-post:hover .blog-post-info,
body.color-yellow .eshop-product .product-sale-label {
	border-color:#E3C61F;
}

/*------------------------------
	PINK
------------------------------*/

body.color-pink a,
body.color-pink .text-primary,
body.color-pink .btn-inverse:hover,
body.color-pink .btn-inverse:focus,
body.color-pink .nav.vertical-nav li a:hover,
body.color-pink form label,
body.color-pink .owl-theme .owl-controls .owl-buttons div,
body.color-pink .top-header .header-item,
body.color-pink .navbar-default .navbar-brand:hover,
body.color-pink .dropdown-menu > li > a:hover i,
body.color-pink .jumbotron6 #slide-3 .btn:first-child,
body.color-pink .jumbotron5 .btn:first-child,
body.color-pink .pagination > li > a:hover,
body.color-pink .pagination > li > span:hover,
body.color-pink #section-introduction h2,
body.color-pink #section-features .feature i,
body.color-pink .text-highlight span,
body.color-pink #section-portfolio .portfolio-item a:hover i,
body.color-pink footer h3 i,
body.color-pink footer .navbar-nav > li > a:hover,
body.color-pink #features .features-sidebar h3,
body.color-pink #features .features-content h3.features-title i,
body.color-pink #faq h3,
body.color-pink #services .service:hover h3,
body.color-pink #services.services1 .service i,
body.color-pink #services.services2 .service i,
body.color-pink #services.services3 .service i,
body.color-pink .profile h3 small,
body.color-pink .box h3,
body.color-pink .box ul li.active a,
body.color-pink .box ul li a:hover,
body.color-pink .box ul li a i,
body.color-pink .box.box-tags a:hover span,
body.color-pink .blog-post-detail span i,
body.color-pink .blog-timeline .blog-post .blog-post-info .month,
body.color-pink .comment a:hover,
body.color-pink #eshop .eshop-sidebar h3,
body.color-pink .shopping-cart-footer p.total-price,
body.color-pink .jumbotron6 #slide-3 .btn:hover,
body.color-pink .jumbotron5 .btn:hover,
body.color-pink .jumbotron3 .btn:hover,
body.color-pink #section-blog-posts .btn:hover,
body.color-pink #separator1 .btn:hover  {
	color:#E84097;
}

body.color-pink .btn-primary,
body.color-pink .alert-primary,
body.color-pink .label-primary,
body.color-pink .panel-primary > .panel-heading,
body.color-pink .blog-timeline .blog-post:hover .blog-post-info,
body.color-pink .eshop-product .product-sale-label,
body.color-pink .popover-title,
body.color-pink .nav-tabs > li.active > a, 
body.color-pink .nav-tabs > li.active > a:hover, 
body.color-pink .nav-tabs > li.active > a:focus,
body.color-pink .overlay-wrapper .overlay,
body.color-pink .owl-theme .owl-controls .owl-page.active span,
body.color-pink .owl-theme .owl-controls .owl-buttons div:hover,
body.color-pink .brands.main li a,
body.color-pink .navbar-default .navbar-nav > .active > a, 
body.color-pink .navbar-default .navbar-nav > .active > a:hover, 
body.color-pink .navbar-default .navbar-nav > .active > a:focus,
body.color-pink .navbar-default .navbar-nav > .open > a, 
body.color-pink .navbar-default .navbar-nav > .open > a:hover, 
body.color-pink .navbar-default .navbar-nav > .open > a:focus,
body.color-pink .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-pink .jumbotron5 .btn:first-child:hover,
body.color-pink .content-separator,
body.color-pink .bg-color-1,
body.color-pink .pagination > .active > a, 
body.color-pink .pagination > .active > span, 
body.color-pink .pagination > .active > a:hover, 
body.color-pink .pagination > .active > span:hover, 
body.color-pink .pagination > .active > a:focus, 
body.color-pink .pagination > .active > span:focus,
body.color-pink #section-features .feature:hover i,
body.color-pink .recent-blog-post .post-date,
body.color-pink .pricing-plan .pricing-plan-price,
body.color-pink #services.services2 .service:hover i,
body.color-pink #services.services3 .service:hover i,
body.color-pink .blog-header .vertical-nav li a:hover .badge,
body.color-pink .box ul li a span.badge,
body.color-pink .blog-timeline-mark,
body.color-pink #section-portfolio .portfolio-item .hover-overlay,
body.color-pink .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #E84097;
}

body.color-pink .popover,
body.color-pink .navbar-nav > li > .dropdown-menu,
body.color-pink .jumbotron6 #slide-3 .btn:first-child,
body.color-pink .jumbotron5 .btn:first-child,
body.color-pink .pagination > .active > a, 
body.color-pink .pagination > .active > span, 
body.color-pink .pagination > .active > a:hover, 
body.color-pink .pagination > .active > span:hover, 
body.color-pink .pagination > .active > a:focus, 
body.color-pink .pagination > .active > span:focus,
body.color-pink #section-features .feature i,
body.color-pink .text-highlight,
body.color-pink #services.services2 .service i,
body.color-pink #services.services3 .service i  {
	border-color:#E84097;
}

body.color-pink .popover.left > .arrow {border-left-color: #E84097;}
body.color-pink .popover.right > .arrow {border-right-color: #E84097;}
body.color-pink .popover.top > .arrow {border-top-color: #E84097;}
body.color-pink .popover.bottom > .arrow {border-bottom-color: #E84097;}

/* TRANSPARENT */

body.color-pink .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(232, 64, 151, 0.5);
}

body.color-pink .jumbotron6 h2,
body.color-pink .jumbotron5 h2,
body.color-pink .jumbotron3 h2,
body.color-pink .map-overlay {
	background-color:rgba(232, 64, 151, 0.8);
}

body.color-pink .jumbotron2,
body.color-pink .jumbotron4 {
	background-image: linear-gradient(rgba(232, 64, 151, 0.9), rgba(232, 64, 151, 0.9)), url(../image/bg3.jpg);
}

body.color-pink .jumbotron7 {
	background-image: linear-gradient(rgba(232, 64, 151, 0.6), rgba(232, 64, 151, 0.6)),url(../image/gplaypattern.png);
}

body.color-pink #section-blog-posts,
body.color-pink #section-testimonials,
body.color-pink #section-statistics,
body.color-pink .jumbotron1 {
	background-image: linear-gradient(rgba(232, 64, 151, 0.6), rgba(232, 64, 151, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-pink .navbar-default .navbar-toggle:hover,
	body.color-pink .navbar-default .navbar-toggle:focus,
	body.color-pink .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-pink .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#E84097;
	}
	
	body.color-pink .navbar-default .navbar-collapse {
		border-color:#E84097;
	}
}

/* DARKER */

body.color-pink a:hover,
body.color-pink a:focus {
	color:#D23184;
}

body.color-pink .btn-primary:hover,
body.color-pink .btn-primary:focus,
body.color-pink .btn-primary.active,
body.color-pink .pricing-plan h3,
body.color-pink .pricing-plan p {
	background-color:#D23184;
}

body.color-pink .btn-primary:hover,
body.color-pink .btn-primary:focus,
body.color-pink .btn-primary.active,
body.color-pink .blog-timeline .blog-post:hover .blog-post-info,
body.color-pink .eshop-product .product-sale-label {
	border-color:#D23184;
}

/*------------------------------
	LIGHT GREEN
------------------------------*/

body.color-light-green a,
body.color-light-green .text-primary,
body.color-light-green .btn-inverse:hover,
body.color-light-green .btn-inverse:focus,
body.color-light-green .nav.vertical-nav li a:hover,
body.color-light-green form label,
body.color-light-green .owl-theme .owl-controls .owl-buttons div,
body.color-light-green .top-header .header-item,
body.color-light-green .navbar-default .navbar-brand:hover,
body.color-light-green .dropdown-menu > li > a:hover i,
body.color-light-green .jumbotron6 #slide-3 .btn:first-child,
body.color-light-green .jumbotron5 .btn:first-child,
body.color-light-green .pagination > li > a:hover,
body.color-light-green .pagination > li > span:hover,
body.color-light-green #section-introduction h2,
body.color-light-green #section-features .feature i,
body.color-light-green .text-highlight span,
body.color-light-green #section-portfolio .portfolio-item a:hover i,
body.color-light-green footer h3 i,
body.color-light-green footer .navbar-nav > li > a:hover,
body.color-light-green #features .features-sidebar h3,
body.color-light-green #features .features-content h3.features-title i,
body.color-light-green #faq h3,
body.color-light-green #services .service:hover h3,
body.color-light-green #services.services1 .service i,
body.color-light-green #services.services2 .service i,
body.color-light-green #services.services3 .service i,
body.color-light-green .profile h3 small,
body.color-light-green .box h3,
body.color-light-green .box ul li.active a,
body.color-light-green .box ul li a:hover,
body.color-light-green .box ul li a i,
body.color-light-green .box.box-tags a:hover span,
body.color-light-green .blog-post-detail span i,
body.color-light-green .blog-timeline .blog-post .blog-post-info .month,
body.color-light-green .comment a:hover,
body.color-light-green #eshop .eshop-sidebar h3,
body.color-light-green .shopping-cart-footer p.total-price,
body.color-light-green .jumbotron6 #slide-3 .btn:hover,
body.color-light-green .jumbotron5 .btn:hover,
body.color-light-green .jumbotron3 .btn:hover,
body.color-light-green #section-blog-posts .btn:hover,
body.color-light-green #separator1 .btn:hover  {
	color:#BAD72F;
}

body.color-light-green .btn-primary,
body.color-light-green .alert-primary,
body.color-light-green .label-primary,
body.color-light-green .panel-primary > .panel-heading,
body.color-light-green .blog-timeline .blog-post:hover .blog-post-info,
body.color-light-green .eshop-product .product-sale-label,
body.color-light-green .popover-title,
body.color-light-green .nav-tabs > li.active > a, 
body.color-light-green .nav-tabs > li.active > a:hover, 
body.color-light-green .nav-tabs > li.active > a:focus,
body.color-light-green .overlay-wrapper .overlay,
body.color-light-green .owl-theme .owl-controls .owl-page.active span,
body.color-light-green .owl-theme .owl-controls .owl-buttons div:hover,
body.color-light-green .brands.main li a,
body.color-light-green .navbar-default .navbar-nav > .active > a, 
body.color-light-green .navbar-default .navbar-nav > .active > a:hover, 
body.color-light-green .navbar-default .navbar-nav > .active > a:focus,
body.color-light-green .navbar-default .navbar-nav > .open > a, 
body.color-light-green .navbar-default .navbar-nav > .open > a:hover, 
body.color-light-green .navbar-default .navbar-nav > .open > a:focus,
body.color-light-green .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-light-green .jumbotron5 .btn:first-child:hover,
body.color-light-green .content-separator,
body.color-light-green .bg-color-1,
body.color-light-green .pagination > .active > a, 
body.color-light-green .pagination > .active > span, 
body.color-light-green .pagination > .active > a:hover, 
body.color-light-green .pagination > .active > span:hover, 
body.color-light-green .pagination > .active > a:focus, 
body.color-light-green .pagination > .active > span:focus,
body.color-light-green #section-features .feature:hover i,
body.color-light-green .recent-blog-post .post-date,
body.color-light-green .pricing-plan .pricing-plan-price,
body.color-light-green #services.services2 .service:hover i,
body.color-light-green #services.services3 .service:hover i,
body.color-light-green .blog-header .vertical-nav li a:hover .badge,
body.color-light-green .box ul li a span.badge,
body.color-light-green .blog-timeline-mark,
body.color-light-green #section-portfolio .portfolio-item .hover-overlay,
body.color-light-green .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #BAD72F;
}

body.color-light-green .popover,
body.color-light-green .navbar-nav > li > .dropdown-menu,
body.color-light-green .jumbotron6 #slide-3 .btn:first-child,
body.color-light-green .jumbotron5 .btn:first-child,
body.color-light-green .pagination > .active > a, 
body.color-light-green .pagination > .active > span, 
body.color-light-green .pagination > .active > a:hover, 
body.color-light-green .pagination > .active > span:hover, 
body.color-light-green .pagination > .active > a:focus, 
body.color-light-green .pagination > .active > span:focus,
body.color-light-green #section-features .feature i,
body.color-light-green .text-highlight,
body.color-light-green #services.services2 .service i,
body.color-light-green #services.services3 .service i  {
	border-color:#BAD72F;
}

body.color-light-green .popover.left > .arrow {border-left-color: #BAD72F;}
body.color-light-green .popover.right > .arrow {border-right-color: #BAD72F;}
body.color-light-green .popover.top > .arrow {border-top-color: #BAD72F;}
body.color-light-green .popover.bottom > .arrow {border-bottom-color: #BAD72F;}

/* TRANSPARENT */

body.color-light-green .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(186, 215, 47, 0.5);
}

body.color-light-green .jumbotron6 h2,
body.color-light-green .jumbotron5 h2,
body.color-light-green .jumbotron3 h2,
body.color-light-green .map-overlay {
	background-color:rgba(186, 215, 47, 0.8);
}

body.color-light-green .jumbotron2,
body.color-light-green .jumbotron4 {
	background-image: linear-gradient(rgba(186, 215, 47, 0.9), rgba(186, 215, 47, 0.9)), url(../image/bg3.jpg);
}

body.color-light-green .jumbotron7 {
	background-image: linear-gradient(rgba(186, 215, 47, 0.6), rgba(186, 215, 47, 0.6)),url(../image/gplaypattern.png);
}

body.color-light-green #section-blog-posts,
body.color-light-green #section-testimonials,
body.color-light-green #section-statistics,
body.color-light-green .jumbotron1 {
	background-image: linear-gradient(rgba(186, 215, 47, 0.6), rgba(186, 215, 47, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-light-green .navbar-default .navbar-toggle:hover,
	body.color-light-green .navbar-default .navbar-toggle:focus,
	body.color-light-green .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-light-green .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#BAD72F;
	}
	
	body.color-light-green .navbar-default .navbar-collapse {
		border-color:#BAD72F;
	}
}

/* DARKER */

body.color-light-green a:hover,
body.color-light-green a:focus {
	color:#A8C520;
}

body.color-light-green .btn-primary:hover,
body.color-light-green .btn-primary:focus,
body.color-light-green .btn-primary.active,
body.color-light-green .pricing-plan h3,
body.color-light-green .pricing-plan p {
	background-color:#A8C520;
}

body.color-light-green .btn-primary:hover,
body.color-light-green .btn-primary:focus,
body.color-light-green .btn-primary.active,
body.color-light-green .blog-timeline .blog-post:hover .blog-post-info,
body.color-light-green .eshop-product .product-sale-label {
	border-color:#A8C520;
}

/*------------------------------
	BLACK
------------------------------*/

body.color-black a,
body.color-black .text-primary,
body.color-black .btn-inverse:hover,
body.color-black .btn-inverse:focus,
body.color-black .nav.vertical-nav li a:hover,
body.color-black form label,
body.color-black .owl-theme .owl-controls .owl-buttons div,
body.color-black .top-header .header-item,
body.color-black .navbar-default .navbar-brand:hover,
body.color-black .dropdown-menu > li > a:hover i,
body.color-black .jumbotron6 #slide-3 .btn:first-child,
body.color-black .jumbotron5 .btn:first-child,
body.color-black .pagination > li > a:hover,
body.color-black .pagination > li > span:hover,
body.color-black #section-introduction h2,
body.color-black #section-features .feature i,
body.color-black .text-highlight span,
body.color-black #section-portfolio .portfolio-item a:hover i,
body.color-black footer h3 i,
body.color-black footer .navbar-nav > li > a:hover,
body.color-black #features .features-sidebar h3,
body.color-black #features .features-content h3.features-title i,
body.color-black #faq h3,
body.color-black #services .service:hover h3,
body.color-black #services.services1 .service i,
body.color-black #services.services2 .service i,
body.color-black #services.services3 .service i,
body.color-black .profile h3 small,
body.color-black .box h3,
body.color-black .box ul li.active a,
body.color-black .box ul li a:hover,
body.color-black .box ul li a i,
body.color-black .box.box-tags a:hover span,
body.color-black .blog-post-detail span i,
body.color-black .blog-timeline .blog-post .blog-post-info .month,
body.color-black .comment a:hover,
body.color-black #eshop .eshop-sidebar h3,
body.color-black .shopping-cart-footer p.total-price,
body.color-black .jumbotron6 #slide-3 .btn:hover,
body.color-black .jumbotron5 .btn:hover,
body.color-black .jumbotron3 .btn:hover,
body.color-black #section-blog-posts .btn:hover,
body.color-black #separator1 .btn:hover  {
	color:#868686;
}

body.color-black .btn-primary,
body.color-black .alert-primary,
body.color-black .label-primary,
body.color-black .panel-primary > .panel-heading,
body.color-black .blog-timeline .blog-post:hover .blog-post-info,
body.color-black .eshop-product .product-sale-label,
body.color-black .popover-title,
body.color-black .nav-tabs > li.active > a, 
body.color-black .nav-tabs > li.active > a:hover, 
body.color-black .nav-tabs > li.active > a:focus,
body.color-black .overlay-wrapper .overlay,
body.color-black .owl-theme .owl-controls .owl-page.active span,
body.color-black .owl-theme .owl-controls .owl-buttons div:hover,
body.color-black .brands.main li a,
body.color-black .navbar-default .navbar-nav > .active > a, 
body.color-black .navbar-default .navbar-nav > .active > a:hover, 
body.color-black .navbar-default .navbar-nav > .active > a:focus,
body.color-black .navbar-default .navbar-nav > .open > a, 
body.color-black .navbar-default .navbar-nav > .open > a:hover, 
body.color-black .navbar-default .navbar-nav > .open > a:focus,
body.color-black .jumbotron6 #slide-3 .btn:first-child:hover,
body.color-black .jumbotron5 .btn:first-child:hover,
body.color-black .content-separator,
body.color-black .bg-color-1,
body.color-black .pagination > .active > a, 
body.color-black .pagination > .active > span, 
body.color-black .pagination > .active > a:hover, 
body.color-black .pagination > .active > span:hover, 
body.color-black .pagination > .active > a:focus, 
body.color-black .pagination > .active > span:focus,
body.color-black #section-features .feature:hover i,
body.color-black .recent-blog-post .post-date,
body.color-black .pricing-plan .pricing-plan-price,
body.color-black #services.services2 .service:hover i,
body.color-black #services.services3 .service:hover i,
body.color-black .blog-header .vertical-nav li a:hover .badge,
body.color-black .box ul li a span.badge,
body.color-black .blog-timeline-mark,
body.color-black #section-portfolio .portfolio-item .hover-overlay,
body.color-black .hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #868686;
}

body.color-black .popover,
body.color-black .navbar-nav > li > .dropdown-menu,
body.color-black .jumbotron6 #slide-3 .btn:first-child,
body.color-black .jumbotron5 .btn:first-child,
body.color-black .pagination > .active > a, 
body.color-black .pagination > .active > span, 
body.color-black .pagination > .active > a:hover, 
body.color-black .pagination > .active > span:hover, 
body.color-black .pagination > .active > a:focus, 
body.color-black .pagination > .active > span:focus,
body.color-black #section-features .feature i,
body.color-black .text-highlight,
body.color-black #services.services2 .service i,
body.color-black #services.services3 .service i  {
	border-color:#868686;
}

body.color-black .popover.left > .arrow {border-left-color: #868686;}
body.color-black .popover.right > .arrow {border-right-color: #868686;}
body.color-black .popover.top > .arrow {border-top-color: #868686;}
body.color-black .popover.bottom > .arrow {border-bottom-color: #868686;}

/* TRANSPARENT */

body.color-black .hidden-control.owl-theme .owl-controls .owl-buttons div {
	background-color: rgba(134, 134, 134, 0.5);
}

body.color-black .jumbotron6 h2,
body.color-black .jumbotron5 h2,
body.color-black .jumbotron3 h2,
body.color-black .map-overlay {
	background-color:rgba(134, 134, 134, 0.8);
}

body.color-black .jumbotron2,
body.color-black .jumbotron4 {
	background-image: linear-gradient(rgba(134, 134, 134, 0.9), rgba(134, 134, 134, 0.9)), url(../image/bg3.jpg);
}

body.color-black .jumbotron7 {
	background-image: linear-gradient(rgba(134, 134, 134, 0.6), rgba(134, 134, 134, 0.6)),url(../image/gplaypattern.png);
}

body.color-black #section-blog-posts,
body.color-black #section-testimonials,
body.color-black #section-statistics,
body.color-black .jumbotron1 {
	background-image: linear-gradient(rgba(134, 134, 134, 0.6), rgba(134, 134, 134, 0.6)), url(../image/bg3.jpg);
}

@media (max-width:991px) {
	body.color-black .navbar-default .navbar-toggle:hover,
	body.color-black .navbar-default .navbar-toggle:focus,
	body.color-black .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	body.color-black .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color:#868686;
	}
	
	body.color-black .navbar-default .navbar-collapse {
		border-color:#868686;
	}
}

/* DARKER */

body.color-black a:hover,
body.color-black a:focus {
	color:#444444;
}

body.color-black .btn-primary:hover,
body.color-black .btn-primary:focus,
body.color-black .btn-primary.active,
body.color-black .pricing-plan h3,
body.color-black .pricing-plan p {
	background-color:#444444;
}

body.color-black .btn-primary:hover,
body.color-black .btn-primary:focus,
body.color-black .btn-primary.active,
body.color-black .blog-timeline .blog-post:hover .blog-post-info,
body.color-black .eshop-product .product-sale-label {
	border-color:#444444;
}


.brands {
	list-style:none;
	padding-left:0;
}

.brands > li {
	margin:0 0 8px;
}

/*------------------------------
	SIZES
------------------------------*/

.brands > li > a {
	background-color:#ebebeb;
	text-align:center;
	color:#555555;
	display:inline-block;	
	font-size:20px;
	padding-top:11px;
	width:50px;
	height:50px;
}

.brands-tn > li > a {
	font-size:12px;
	padding-top:4px;
	width:25px;
	height:25px;
}

.brands-sm > li > a {
	font-size:16px;
	padding-top:6px;
	width:35px;
	height:35px;
}

.brands-md > li > a {
	font-size: 18px;
	padding-top: 8px;
	width: 42px;
    height: 42px;
}

.brands-lg > li > a {
	font-size:40px;
	padding-top:12px;
	width:80px;
	height:80px;
}

.brands-hg > li > a {
	font-size:60px;
	padding-top:13px;
	width:110px;
	height:110px;
}

/*------------------------------
	COLORS
------------------------------*/

.brands-inverse > li > a {
	background-color:#555555;
	color:#ebebeb;
}

.brands-colored > li > a {
	color:#ffffff;
}

.brands-colored > li > a.brands-adn {background-color:#444444;}
.brands-colored > li > a.brands-android {background-color:#A4C639;}
.brands-colored > li > a.brands-apple {background-color:#000000;}
.brands-colored > li > a.brands-bitbucket {background-color:#205081;}
.brands-colored > li > a.brands-btc {background-color:#F89F37;}
.brands-colored > li > a.brands-css3 {background-color:#2177FF;}
.brands-colored > li > a.brands-dribbble {background-color:#F46899;}
.brands-colored > li > a.brands-dropbox {background-color:#3476E4;}
.brands-colored > li > a.brands-facebook {background-color:#3B5998;}
.brands-colored > li > a.brands-flickr {background-color:#FE0883;}
.brands-colored > li > a.brands-foursquare {background-color:#8FD400;}
.brands-colored > li > a.brands-github {background-color:#222222;}
.brands-colored > li > a.brands-gittip {background-color:#663300;}
.brands-colored > li > a.brands-google-plus {background-color:#C63D2D;}
.brands-colored > li > a.brands-html5 {background-color:#E44D26;}
.brands-colored > li > a.brands-instagram {background-color:#4E433C;}
.brands-colored > li > a.brands-linkedin {background-color:#4875B4;}
.brands-colored > li > a.brands-linux {background-color:#FFD133;}
.brands-colored > li > a.brands-maxcdn {background-color:#F7AC1B;}
.brands-colored > li > a.brands-pagelines {background-color:#135DA7;}
.brands-colored > li > a.brands-pinterest {background-color:#CB2027;}
.brands-colored > li > a.brands-renren {background-color:#005AAB;}
.brands-colored > li > a.brands-skype {background-color:#00ADF2;}
.brands-colored > li > a.brands-stack-exchange {background-color:#205296;}
.brands-colored > li > a.brands-stack-overflow {background-color:#D28A29;}
.brands-colored > li > a.brands-trello {background-color:#216884;}
.brands-colored > li > a.brands-tumblr {background-color:#2B4964;}
.brands-colored > li > a.brands-twitter {background-color:#33CCFF;}
.brands-colored > li > a.brands-vimeo {background-color:#86B32D;}
.brands-colored > li > a.brands-vk {background-color:#44678D;}
.brands-colored > li > a.brands-weibo {background-color:#D52B2A;}
.brands-colored > li > a.brands-windows {background-color:#00ADEF;}
.brands-colored > li > a.brands-xing {background-color:#005A5F;}
.brands-colored > li > a.brands-youtube {background-color:#FF3333;}

.brands-transparent > li > a {
	background-color:rgba(235,235,235,0.4);
}

.brands-transparent-inverse > li > a {
	background-color:rgba(85,85,85,0.2);
	color:#ebebeb;
}

/*------------------------------
	SHAPES
------------------------------*/

.brands-rounded.brands-tn > li > a {
	border-radius:2px;
}

.brands-rounded.brands-sm > li > a {
	border-radius:4px;
}

.brands-rounded.brands-md > li > a {
	border-radius:5px;
}

.brands-rounded > li > a {
	border-radius:6px;
}

.brands-rounded.brands-lg > li > a {
	border-radius:8px;
}

.brands-rounded.brands-hg > li > a {
	border-radius:10px;
}

.brands-circle > li > a {
	border-radius:50%;
}

/*------------------------------
	ANIMATION
------------------------------*/

.brands-spin > li > a:hover i {
	animation: spin 0.5s linear;
	-webkit-animation: spin 0.5s linear;
}

.brands-transition > li > a {
	transition-duration:0.5s;
}

/*------------------------------
	STRUCTURE
------------------------------*/

.brands-justified > li {
    display: table-cell;
	width:1%;
	float:none;
}

.brands-justified > li > a {
    width:100%;
}

.brands-justified.brands-rounded.brands-tn > li > a,
.brands-justified.brands-rounded.brands-sm > li > a, 
.brands-justified.brands-rounded.brands-md > li > a, 
.brands-justified.brands-rounded > li > a, 
.brands-justified.brands-rounded.brands-lg > li > a,
.brands-justified.brands-rounded.brands-hg > li > a,
.brands-justified.brands-circle > li > a {
	border-radius:0;
}

.brands-justified.brands-rounded.brands-tn > li:first-child > a {
	border-radius:2px 0 0 2px;
}

.brands-justified.brands-rounded.brands-tn > li:last-child > a {
	border-radius:0 2px 2px 0;
}

.brands-justified.brands-rounded.brands-sm > li:first-child > a {
	border-radius:4px 0 0 4px;
}

.brands-justified.brands-rounded.brands-sm > li:last-child > a {
	border-radius:0 4px 4px 0;
}

.brands-justified.brands-rounded.brands-md > li:first-child > a {
	border-radius:5px 0 0 5px;
}

.brands-justified.brands-rounded.brands-md > li:last-child > a {
	border-radius:0 5px 5px 0;
}

.brands-justified.brands-rounded > li:first-child > a {
	border-radius:6px 0 0 6px;
}

.brands-justified.brands-rounded > li:last-child > a {
	border-radius:0 6px 6px 0;
}

.brands-justified.brands-rounded.brands-lg > li:first-child > a {
	border-radius:8px 0 0 8px;
}

.brands-justified.brands-rounded.brands-lg > li:last-child > a {
	border-radius:0 8px 8px 0;
}

.brands-justified.brands-rounded.brands-hg > li:first-child > a {
	border-radius:10px 0 0 10px;
}

.brands-justified.brands-rounded.brands-hg > li:last-child > a {
	border-radius:0 10px 10px 0;
}

.brands-justified.brands-circle > li:first-child > a {
	border-radius:50% 0 0 50%;
}

.brands-justified.brands-circle > li:last-child > a {
	border-radius:0 50% 50% 0;
}

.brands-inline > li {
	display:inline-block;
	margin-right:5px;
}

.brands-inline > li:last-child {
	margin-right:0;
}

/*------------------------------
	HOVERS
------------------------------*/

.brands > li > a:hover {
	color:#ffffff;
}

.brands > li > a.brands-adn:hover {background-color:#444444;}
.brands > li > a.brands-android:hover {background-color:#A4C639;}
.brands > li > a.brands-apple:hover {background-color:#000000;}
.brands > li > a.brands-bitbucket:hover {background-color:#205081;}
.brands > li > a.brands-btc:hover {background-color:#F89F37;}
.brands > li > a.brands-css3:hover {background-color:#2177FF;}
.brands > li > a.brands-dribbble:hover {background-color:#F46899;}
.brands > li > a.brands-dropbox:hover {background-color:#3476E4;}
.brands > li > a.brands-facebook:hover {background-color:#3B5998;}
.brands > li > a.brands-flickr:hover {background-color:#FE0883;}
.brands > li > a.brands-foursquare:hover {background-color:#8FD400;}
.brands > li > a.brands-github:hover {background-color:#222222;}
.brands > li > a.brands-gittip:hover {background-color:#663300;}
.brands > li > a.brands-google-plus:hover {background-color:#C63D2D;}
.brands > li > a.brands-html5:hover {background-color:#E44D26;}
.brands > li > a.brands-instagram:hover {background-color:#4E433C;}
.brands > li > a.brands-linkedin:hover {background-color:#4875B4;}
.brands > li > a.brands-linux:hover {background-color:#FFD133;}
.brands > li > a.brands-maxcdn:hover {background-color:#F7AC1B;}
.brands > li > a.brands-pagelines:hover {background-color:#135DA7;}
.brands > li > a.brands-pinterest:hover {background-color:#CB2027;}
.brands > li > a.brands-renren:hover {background-color:#005AAB;}
.brands > li > a.brands-skype:hover {background-color:#00ADF2;}
.brands > li > a.brands-stack-exchange:hover {background-color:#205296;}
.brands > li > a.brands-stack-overflow:hover {background-color:#D28A29;}
.brands > li > a.brands-trello:hover {background-color:#216884;}
.brands > li > a.brands-tumblr:hover {background-color:#2B4964;}
.brands > li > a.brands-twitter:hover {background-color:#33CCFF;}
.brands > li > a.brands-vimeo:hover {background-color:#86B32D;}
.brands > li > a.brands-vk:hover {background-color:#44678D;}
.brands > li > a.brands-weibo:hover {background-color:#D52B2A;}
.brands > li > a.brands-windows:hover {background-color:#00ADEF;}
.brands > li > a.brands-xing:hover {background-color:#005A5F;}
.brands > li > a.brands-youtube:hover {background-color:#FF3333;}

/*------------------------------
	MEDIA QUERIES
------------------------------*/

@media (max-width:767px) {
	.brands > li > a {color:#ffffff;}
	
	.brands > li > a.brands-adn {background-color:#444444;}
	.brands > li > a.brands-android {background-color:#A4C639;}
	.brands > li > a.brands-apple {background-color:#000000;}
	.brands > li > a.brands-bitbucket {background-color:#205081;}
	.brands > li > a.brands-btc {background-color:#F89F37;}
	.brands > li > a.brands-css3 {background-color:#2177FF;}
	.brands > li > a.brands-dribbble {background-color:#F46899;}
	.brands > li > a.brands-dropbox {background-color:#3476E4;}
	.brands > li > a.brands-facebook {background-color:#3B5998;}
	.brands > li > a.brands-flickr {background-color:#FE0883;}
	.brands > li > a.brands-foursquare {background-color:#8FD400;}
	.brands > li > a.brands-github {background-color:#222222;}
	.brands > li > a.brands-gittip {background-color:#663300;}
	.brands > li > a.brands-google-plus {background-color:#C63D2D;}
	.brands > li > a.brands-html5 {background-color:#E44D26;}
	.brands > li > a.brands-instagram {background-color:#4E433C;}
	.brands > li > a.brands-linkedin {background-color:#4875B4;}
	.brands > li > a.brands-linux {background-color:#FFD133;}
	.brands > li > a.brands-maxcdn {background-color:#F7AC1B;}
	.brands > li > a.brands-pagelines {background-color:#135DA7;}
	.brands > li > a.brands-pinterest {background-color:#CB2027;}
	.brands > li > a.brands-renren {background-color:#005AAB;}
	.brands > li > a.brands-skype {background-color:#00ADF2;}
	.brands > li > a.brands-stack-exchange {background-color:#205296;}
	.brands > li > a.brands-stack-overflow {background-color:#D28A29;}
	.brands > li > a.brands-trello {background-color:#216884;}
	.brands > li > a.brands-tumblr {background-color:#2B4964;}
	.brands > li > a.brands-twitter {background-color:#33CCFF;}
	.brands > li > a.brands-vimeo {background-color:#86B32D;}
	.brands > li > a.brands-vk {background-color:#44678D;}
	.brands > li > a.brands-weibo {background-color:#D52B2A;}
	.brands > li > a.brands-windows {background-color:#00ADEF;}
	.brands > li > a.brands-xing {background-color:#005A5F;}
	.brands > li > a.brands-youtube {background-color:#FF3333;}
	
	.brands-spin > li > a:hover i {
		animation:none;
		-webkit-animation: none;
	}
}


/* line 3, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* line 9, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #F0F0F0;
}

/* line 14, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#page-wrapper {
  background-color: #FFFFFF;
}

/* line 18, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.page-boxed {
  width: auto;
  margin: 0 auto;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

/* line 24, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
div.search {
  background-image: url(data:image/jpeg;base64,%2F9j%2F4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP%2FsABFEdWNreQABAAQAAABQAAD%2F4QMpaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu%2B7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI%2FPiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MCA2MS4xMzQ3NzcsIDIwMTAvMDIvMTItMTc6MzI6MDAgICAgICAgICI%2BIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI%2BIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgV2luZG93cyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBRkM2MjNGNDk2QUMxMUU0OEZGRTlFNENEQzE0QjFBRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBRkM2MjNGNTk2QUMxMUU0OEZGRTlFNENEQzE0QjFBRSI%2BIDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFGQzYyM0YyOTZBQzExRTQ4RkZFOUU0Q0RDMTRCMUFFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkFGQzYyM0YzOTZBQzExRTQ4RkZFOUU0Q0RDMTRCMUFFIi8%2BIDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY%2BIDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8%2B%2F%2B4ADkFkb2JlAGTAAAAAAf%2FbAIQAAgICAgICAgICAgMCAgIDBAMCAgMEBQQEBAQEBQYFBQUFBQUGBgcHCAcHBgkJCgoJCQwMDAwMDAwMDAwMDAwMDAEDAwMFBAUJBgYJDQsJCw0PDg4ODg8PDAwMDAwPDwwMDAwMDA8MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM%2F8AAEQgAkwSwAwERAAIRAQMRAf%2FEAI8AAAMBAQEBAQAAAAAAAAAAAAECAwQABQYJAQEBAQEBAAAAAAAAAAAAAAAAAQIDBBAAAQMCAwUFBwIEBgIDAQEBAQARAiEDMUESUXGBIjJhscFSBJGh0UJyEzPhYvCCIwWyQ1NzFDTxkmODJKLCFREBAQACAgAHAQAAAAAAAAAAAAERAhIDMUFRgZETBCH%2F2gAMAwEAAhEDEQA%2FAP3Zt2oW%2Bkc2cjig0WqGf0FAwQGm7uQU0yNuFKEkugaMAHcuUwmYtQoZgnqPeiklF65oOtxIng9CgEpxj1GuwIM1y9M0jyxOWaB7P4z9Xggr3ICz4exB04nWXpVAQAN6AS6LmzQUGOE5QLxJG0INlv1EZECXKfcgPqIylCDB6lBGNoCsqnZkgrluQUljwHcg7egaI5qVQAR2%2BxA3YiZHI7wigg4g5ICaAPSgQTMx8vtQLEkzBNaoKDJByDiDpcVqgUDPFA25Bmvfk4BAYXiKSqNuaDVEidYl8UGKNuR6qBBcREcAyBxgd4QHcg5AWNKZIO%2FgomRGIRXZlApDoDEEakCymI41OxBCVyUqYDYgpHojx7ygKDmchtuCBGOdEDZMgjf%2FABT3x70GOF6dttJePlOCDbbvwuUfTLYfAoI%2BrtTlO20aaccsUE4WoxYkaj24ILDGO8IHl1S3lAN%2FtQNEEibc3KgIhnI8ES3BqYDLJCWUSzR7XRSGL0KCRhJw1XOCC92QhKRkdI2lBgueqNRbDfuOKCVgmVyUiXJhJz7EGpB3u7kHThLTAtStcsUCiIFce3JA4xGVRVB4t6UoepvyhIxkLkmI3oNtj%2B44RvjsMx4hBvu%2F1fS3zaP3NVumneEHj2%2FSyLG5yjyjFBtjGMY6Yx0gZBBoj%2BKP1S8EBy8EAZ8DwQWnCRnJ%2BX%2FwgIEY4e3NXDPKeqkcTtY9yjWS5P7kE5W%2FKge2JC2XGMqHggjc9RCFBznYMOKDBcu3Lh5jTKOSDblH6Y%2F4QgL7a96AiJk4jzHSe5BEROfszQUywZskGP1%2F4bP%2B5LuQZbHrLtlg%2Bu3lGXgg9iz6m1fHLJp5wOPDag871np7s%2FV3TpaJ0tI4MyB7ViFurapeY%2BCDVa%2FIOPcgYZIDTOnageMJGEmDvIV4ICIAYlzkMkS2RShHYmCbSjIViOwIpZR1bxmgSEJfdhRwDigac4wczLd6DDd9TOTi3yROeaDvT1F18zHxQaH2IB7kAuQkDFww0ipQdEAb9qBo9Q49yDwLdydoiVuRjIIPWsf3CEmje5D5xhxQW9bCVz0pNsawZxLxrSqDzrfpc7lT5R4lBsAADAMBkMEGg9Nv6B3lB2zNA0A84NWopxQHRJzq5Q9RmgoGjQUVwzynqYNplw71Gsg1GyOSCUoEYIKgGNu3qDYu6DNc9TGNIc0tuSDD9ydycTKTkSDdlUG89UvqPeg7f7Qg7TKUJtXCo3oJiO2p2D4oHxZB539wpcsf7fiUAseuu22jc%2FqQGBOIG9B7Fi9bvmJtycgh4mhHBB5Vr093%2FmxlKOkRvg1%2BpBqMSC0gxW5u8%2B355fOz3PaFbn0FS7Za6%2BiaXMtOsuxhbMg55Y7TidwQaWh9uEa0JqiWZLpZ5O42rXJz%2BmGEU5E6oY9R2LLqD0rljsQJG%2FDUYh5NE8wpggyEa6wJkTjE4%2FqgmdiDTZ%2FHul4IKoKCHmPAIGnASkSCxzBwQIxHYyBZUjP6CgwoHjA0kTpjtOe5BttSgbTDUwliUHGJFcRtVyzdJSlXkx9U9apLHgO5ZdXAE4B0FIAA4uUBYHD2FXLN1lBMpwHLiFGpMAigZCOOOxAtyQkY1IpnggkQRigMOqO9BUZICxPYNpQMw0tXHFAmkiuPag5BmvdfAIJAGRYB0F7RjGcamUjSmA%2BKCxD1HsRMFVyzes0cDvCW5XXWaio0LbadmaBzpplREsyFRxzVyzwjhiEys1Dao0HaSwzKAfci02feggYuHidQ944IJoLx6I8e8oCAThVA8YgScmr4BADEEls8igSu7sQSvfinviPeg844oHEGrcloBwHzHgg3xlCdq0zihYmueaFmU5RkMajKWSsrnt1ylHVHeFeTE6JLnNUl1S3lZd3CMpOwpmTggvCMYxmCTJxXJADAHAu2S1ycr1SlzTkTqgnCLdqza6a6yA9d6KlK%2FbtkA80nDxHiUGb1Mo3b0wJmMolhGXSdxyQZJCUCRIEHtQU9N1yG2EvBBrQUjbMgDLkj248AgrKEJQhEEgxfSf0QQNuUNxwkMEADOH2hB4nqT%2F8Aovn98u9AkLc7j6RQdUjSI3lB6foJ2bc7sNc7spWzqkKR4DxQaTAlzDmGz5lcs3SXxRbh2LXNwv5pfO%2FK8Q1qP1S8Fm3Lt19c0mINdjnIKNqxtsXmW%2FaMeKC9zQZSILH3FWXDG2k28UjFqK8nP6IeIrwPcpa3OuT%2BlGHao6FlOMAJSkIjInPcM0EZ%2Bptz9OQBOIM9LhnwxQYZWyBqifuQ8wf3jJBMmqD0fL2xj%2FhCBhGUiwD7dgQXtRjAkyOokEFsMEEjZzhzAYRz%2FVBNv%2FCDH6%2F8Nn%2FcL%2BxB5Yclg5ODD4INAhG1W9MxIr9qHVxOSD27hhd0yiTEmMTzbqIlmWeUJRLENShWps47dEvnZ7nsgfcHY%2Fcrd8pp%2BeaXObkwwCw9B4wlKvTHzHwQaYiEbRjU8zuiWZKY5jmAzWuTlemUoHvTkTpkPLEbNIWXWTEwV8kUkfU2hdhAEzJLOMB8UGCbXpGUJnWT%2BOfgUEJAxcEEEYgoNPpum5vj4oL%2B9BUW85nSNmaCl2EJmJBYiIDnBkGcwMSxDeKAx6htrXgg%2BdeiCkLcpjU4hAY3JYcNvBB63o52ftXrYNyVYvMsPYMkFJWyHlHmjtHiFZs57dUqTf8Aha51xv5db42%2FLQem39A7ysW5enXXjMOAJIADnYEVe1bEJxMpOXwGA4oHMYknSWJOBVlw57dc2IxBbAhXkx9EMByy2sO9S3LprpI51G053YW6zLOKRzPBBD1F%2B3dt2ovO2JA1xAalQgxyhKLE1icJAuECRPPE9o70HonqlvPegMYyk7CgxkcEGiEICFyJJlqZzgghK0YvIcwGzEcECMg871%2FXYA%2F06e0oMMRKZ0xBlI4AVKDXY%2B3Yu2jcuGUxID7ds0Fc5eAQe00ZXxKJb%2BoCQd%2BSJhN6aZASiMIn4oprVqMtemTPEjSRggpGMY4c0tp8AgNXJJxQN8g3lB0c0D0ONO5BK9dhbkY9cxlg29BhuXZzI1GmURgEDW%2Bo%2FTLuQK%2BCCgm9JjV%2B75gg1WoR%2B24m8TLZVBUMOmnbmgPyoGzKDsmNRsQIbYImAWBicckGDVGPSNR8xw4BApJMnkTInMoNdj8Z%2BrwCCwJGCANE48p25IKGIBqXoKBAezAbEBHUgVAz7aoOLCJJOaCMrhwjQbc0E0DS%2BXcEABI3bMkDwETIMdJfBBUADtPuQc6DsuKDnQcwPYUGe%2FGMZvIvQNEfFBAzJDYR8oQNa%2FJDeg1hB2ONdiAiIMSXpTFAcMPag5ATluQCo3IGABOyqCU5iJIHMc9iCEpEl5F0BjQS3DvQI%2BYoUDahLqFfMEF4wAjDmcNlvQP2CgQDMb0HIAahiHQSu2wbUyZiIoXIQecZiNLYr%2FqSx4DJBCRckmpNSUHo2vw2tx%2FxFBVyMDjigAhGUg3KXHaEFDACRcuXLDLigNadhwQEfNuQBACR81TtGKBbpt24QlIuC7ACpQYLl%2Bcww5IbBid5QZxiGQdeP9W79SDo3SBpIE4eSXhsQavTW7dyUzCZidBeEu90GuMYxw5pbT4BAzlySXdB2UTvQc5G7MIF%2B3GUomPIXqMQg8X1UbNn1N4k%2FenrJ%2B2KAPkSgyXLk7jai0I9NsUiNwQafQfmn%2FtS7wg9QdmSAlpDnDnKYx%2FVBYWR9uPPTUS7IGDRbSG2nP2oBgNyB5dRQAE7xsKB4CJJLtQ0O5BgueqApZDnO4cOAQYZSlIkykZS2lBQUsf%2FAGeCCcZyiXiTE7Qgq9u5SY%2B3I%2FPHp4hB6Rsxi2qWoaYgAbgEDdmAyAogI6uB7kAQcRGXXl8wxQYvXWIfYtSndEYxmcBUuMB2oPJ%2B9pBjYH2gaGeMzxy4IM5QfRDCH0R7ggZyAxYxOMTggazbjK48ZaWflO7JA8bcYMDzyHs9iB3LuTkyAjplvQCuRbtQGhxp2hBP1Fy3Z0g80jEaYjxQebdv3LgaREY5QGCBbP5rezUgQlA4ukjTMfcjk%2BI3FBt9PahKF2ULlCYuCKhn%2BKDSBGPSK5yOP6IOyNe1ATkewIOdnFCDkcEAjajKY0nTQvE19hQfOn7NgmIa%2FOJbUaQHDEoJXJzmdU5GRwD5bkG%2F%2B39F%2FfDxQbw4qCx2oCRGXUGkcZjxCC5sgC2TNwI4DEoDgGHKG%2FhygI6o7wg44oCDtqMh8EBaAt3JmTABy4wQefc9UaiyNAPzmp4IMRckklzmUFZloWd0u9AkZyiXiWfEHAjtCC1sW7s4D8U9Q7Yn4IPRNuMZy1HUXNMBxQM5p2ZIOykg6uRYjNAshGYJIaWUh4hB539wtW4GxO5d%2BQjREcxrkcgg82V6UomFsfatnGMcT9RxKCdv8lr6496D6OH5h9figQ6Y9ZY%2BQY%2FogpYuy1yEWjHSeVBYkHGh2jDiEAIOOWRQH5BvKDhQPLlG0oFN3KA%2FmPwQLeInMiYcBmIoRxQZpWSKwOsZ7RwQC11HPll3IFjEyLRDnYg0xtCJ5%2BY%2BUYcSg1QkdDMAAWZqIDQ4UOxAcBggJxKAEgY47AgGsh2pQ0QZpW4zy0y2jDiEGeUJQIfDKQwQarH4z9XgEFmzNBtKAagMP%2FYoLGTs9aBAG2exAY4oB2IOcDtOxBxkdJ2E4IJGAOFDsQIQQWIZAZZfSEHCJNTQIKw5SGGOaB3Bx9qANxCDsuKDu3AbUHOMvaUCXGkQJB6fxVBnlaOMeYbM0C2%2FyQ3oNQ2AVQEkDGp2BA0ZFpbNiA0PYUAYjEIOOW5B2FTRBwlUNRvegnJpPqHEIJyiQDmNqBY9M9wQCMTKgDoKiEY48x9yC4kWDsUAZ8PYgGY3oB70HEgdp2BAspnTLBqUZBinZhLp%2Fpy2fL%2BiDJOEoFpBicNhQbrX4rW4%2FwCIoK5OeUdvwQKLjGOilcTUlBokXJ1bcsUAbZUIOHzbggG3szQTM4jDmO3L9UAnMyhGMgJAvQhBknYBrbNcoE9xQZSCJsQxBwKAXq3rn1YILW%2FTlnu8gygKy%2FRBusS0ExhEQBiT28SgqTE40O0YIAxxyOBQccI8UANA8jpBz27ggQ3WI0Bq9Rx%2FRBl9RG3euT%2B7B6kCcaSHx4oPMu%2BkuQBlE%2FdtipkMRvCB%2FQH%2BtLYbcvBB6oBLgB0AM4RoGnL3D4oNNq5OVsAkEajlkgNCaUOz4FAC4xDFA0%2BosgQmMeosfKKn9EHQuy1ExAiBE03BBklbt3HJGiR%2BeOHEIMty3O2Kh4nCYwKDv8j%2FAOzwQC3ancrEARGMzQINkIQt1A1yHznLcEG4zMmMmNB3IFZ3017M0HDHge5ABXAOc0CmcRhzyz2BBO7cMrQjIRlEyYxIcGmxB5lz0cZVsnTL%2FTkaHcfig8%2BcJWyYziYyGIKD33pbP7IdwQOWiHmdOyIxPBA1m6fuxEAIxNCMSaZlBcyB6hXaEAbA4jagI6TvQLkSaAYklAhugUgHPmI7ggW9LXpjcAmNI3jtBQY52G5rZ1jExPUPiglZ%2FPbcYSqCgnpMpaYhycAEGuHp9LG6eb%2FTj4lBuszaM4xAjEM0QKVdAxMSfKfcgBBGI3ICTUfSEALRbWdOyOJ9iBY3TrjpGkHEYoPPu2rd55TGmZ%2FzYhq9owKDzr3prlkai0rb0uRqOOxBr9B03x2w8UHoRBIcBojGRwQAzgHERrI%2BY4cAg1i5KULZk0qVQBgenHynFB0eqNM0HVegd0CylGBLl5D5RX2lABdlouEMAw5W2lBklatzqP6Us%2FL7MkGS5CcCBKLbDkdxQNc%2FHY%2BmXegNuxOfMWjDzHPcM0Gy2I2jEwi5frlj%2BiDZKTmWoPXEYoFalKgYn9EHZS3BB3aMBiTggmZxFI8x8xw9iCV%2BX3Y243IicdNQRm%2BRyQeZc9E7ysSfbal1cDmgxwBjdtghpRnFwcqhB9FH88e2figyBBosdZ%2BkoNKDgSMM8kFJgi3ExgNT4fogyAmRJlJ0DIGn%2BSXDuQLh2FBa1ASkZTgCSCNWGKBSNI0iOgeUZ%2FFByB4dJ7JICgpFy2YQC4ZA0DDagmEB27igmg4Euwq%2BSC4gIW%2BWABfB0ESSTUoOQaNm4dyAIKRqXI4oJSMsGYbEHZBBxw4oCgDPRtXYgaUQCGGWOKBf4dAR1RQcgOBogc9L6Q7oJYmvsQcgEseCBEFIREpRkYu2BQCT4Mw7ECoHhhLggZBwfDHsQNKjMMscUE95dARiECHPeg4EioQPGAMZExDnggQvgzdiAIKDAIOQNGprUIJyJwZg9GQIgB6ZcO9BLuQcAZPHTqBxicEFjHRCAhAUG9kGUkkuS5zQEYjeg1lnO8oBhUUQUFYzeIJaj0dBlkZEtKjfLkgRA0sIcUE5YoGjH7koiUPuRBxOXFA12AhcnKEBF8Zip%2FRBFBS31nYYlBZBwJFBnkge48YQMYB6vm24IMZJkXkXKDsxvCCdwf1J%2FUacUE3YuHHag1ensxe5dNoCUoECbs%2FDxQSuSuPpI0AfIKBBMINdn8f8x8EFMkDRJJAI1RzB%2BKDr5nGZ0jSDjMV%2F8IMqB4Yn6ZdyCYwQEEjDPEYvwQW%2BxD7A%2FojVqfS57n9yCJJdjlgMG4IAcEGrIbh3BAMGI9qCtvmcyiDQsTRBluSmeUjQMojD9UE0HT%2FHHtme5BFARD7w0Sh92IyOXa%2BSDXf1WyBbhpiIgaxUinuQY6uXq6Ctj8sOPcg1IC5BogqX%2B0SIAyd2%2FRBilKUjzGoy2IFQPPqj9AQKgrZgLlyM5wE9OE8P%2FKBJQ%2B2SIR0AnEZ8UCoKWv8AM%2Fl8UFEBBPSA42IGvmUWMIgBg8sSEGPGpLk5oHh1x3oMzIOEjE0Qa7NmNu1dkLMYzkRygs%2BymSDNOUyeajfLgBwQKg3Q%2FHb%2BnxKAoK23lIag4GBKCF0zEiANEHLEZ8UEEDjoubh3oFQcHPK2sHGBDoLTswjC0Y2hqiDQl2zwzQRJJNalB2cd6DScTvKAVBcUKCo6JEwBlk5Z0GOcpSLSo3yoAgW7ha%2BnxQRwCCtu2L07ZnbExAjnJYjig0yM434gR0xlMcwzrtQQ0xlh%2FTkf%2FX9EDWYTjcLg9B3INOnAypsGaDtTUA0g%2B1APljtBLIO0iQqK%2BYYoElCQqBqG0IGlCUrkmGxyUDRhGPaduSB9pJ%2BU9yCQJAbEbCgLA9JY%2BU%2BBQPAS0sx6kDMBjU7EBdx4IJkkTLUqgJ0nsPuQcxc0yKBRE58oPtQMC3TQHPNAfl4oOoeoP25oFMSzguEF2PuD%2BxB1BhXtQcC5QDfUbEAbFvYUAILYZoGbzUOwIO7BQbEAOIPYEApuO1AQDqGx8UBbbQIOdsA3agBw4oOyrVAMnFUHSBJwyFUAYD9x9yBgeYOgAwbLMIAwOFOwoDEFpU2IHZsfYgBJww7EBOW5ACxZ6Hag5iCNm0IF0kvkHxQEADDHagJwkgm%2BRqEBZ6xL9maBwCwpkgNN5QK5JG9BIOMDTZkgLROFDsyQAiTTpWnegTR5qftzQcSwIFBmg40EGxA8UAk0uoV8wQIYSBHzBwxCDSQSZPQOaoOcDAcSg7HU%2BxApAIaXMEEzbLctf2nFACJEQ5S9UBEA%2FNU%2BUeJQNiwwAPTkgjMmN2ZBaqAckv2E5%2FL%2BiBrcZiZcfKa5ILaWrItsGfsQcZEUA0j3oI3PkrgC3tQLqB6xXzjHigGggAjmi%2BIQLO3KVy5RgJF5mgQECMOka5eY%2BAQNEkm4SXJifBAuosx5o%2BU%2BCBft6nNs%2FwAhx4bUF7MZC2Ax6jluQVYDtOYy9qASkTTZgAgMn1EjigmbcSach93sQLGEhIgx%2BWTNXJAIWyQDLljtOPBBWIERy0LVkcUCXByDbq8ECagQBMamwOY4oAYuHgdQzbHiEGliaGgEYueCDqDAamzKBJEkSc%2FKe5BGMiA3VHynBAdMSeQ18h8CgWUZG3HlJJmQzdiAC2I1mXI%2BQHvKAykSNIaMfKMEDzJFzlLFhXggQiEiX5JH5hgd4QG3bnG9Bw9SxFQaINAjQGXKP4yQHU3SGfPNB2MTvogUgSHMH7c%2FaglK3IB48w94QGUJGUdMT0BAwtwFTzHMZIKBzKLncEGYSMXrQ4g1CAtGWB0y8pw4FA9uMgJvE%2FL4oKsAa9Xl%2BKAGRZsBsCCMyRNwWOkdyAExl1csj8w8QgMYSE4UocJCoQRjbkQ55I4OfAIHDQ6BXAzNT%2BiAj8c9plHxQB3A1jWPeOKBDbJDwOobMwg1WxL7doMenxKB2iMOY%2B5B2oylHeEA2jI4jEIJm3E9PKfKcEC6ZCFwGJcAd6Ai0WefLsGaCtIgiPKDjtKCV1x9tiRQ96BTIS6sfMMeO1B2iTxMeaLioQaCCSXoHNSg5wOkdmooJzcwm5xbvQTEspDVHtxG4oBpdzDm2jP9UAnCRFoCJJMfZVABCEernPlGH6oG1GUoPg4YDAIHgSLwALPOvtQTAJwDtjuQWs3IQ%2B4NZk0SeXCmx0BiYz5oS1bRnxQFkDfIN5QdHNBQUqS3ZmgSd6BuSgZEEMK4IG4Mg4YHcUEkAycsI5k4IKxuwMG1SxZ0BypUbQgIwQTl1HegPYA%2B1A8JCJIcktlggVthfvQBA%2Fy8UCoD01JY7BigpKUSWdqDFBx7UBGKAIOZ%2BwbUDGQjHE1LIFoQ4qNoQd7kAOI3BB2Yo6DoyAkA9TiAgIIlUF%2BzNAEHHAb0AQdhU02bUDyLsxOGaBPBB3zBBwwQd%2FBQMJgRlU70Hbi4QBAxy3IBw3IGjQitTkECa4zJY1fAoCgB6TwQTQdQByWCCmuJjGprmUBOSAZjegl8UHbWGGJQPGURGQEjTMZbkEyMwXG1AhwQE4Q3HvQcgMZCEo6pEF6xFfagYzjKcgJVBwPggJGLoCPmQBBzOxJYbSgW7ehCNuJlIanru2oFBFCKg4SFQUBCCFz8k%2B0oFYnAOgpZvW4mcdZJ0k8uFEDxMZDVCWraMxvQFBO58m496CXv2BA8ZC3KJlIggjljjxQUu885NKoppl4IIlwahiMQgMf8z6T4IFyQFqOSIx8x8EGj70PtQBnOpIc%2BPtQc1AxcZSGCAEIKT6igUBywFUDxlG3qJk7Alo4UqghC7C7WBc5xNJIKIEuuYD6vBBDJBxkLfNM6DkB1ezJBpldtzkAJGNARqwqHQEitfYgU4S%2Bk9yDOMAgOlw55Y4aiguLkZWdInPqbV8QggYkVLEH5hggBy7EDz6%2F5R3IFAJoA5yQWsTjC4xmSSC8Y1HEoDGcblYSc%2BU9SAoGHTLfRAtEDANUnT3oFu%2BoticbcpGPKC5wqgPDcckBieYb0GVB200AGMjQBBS3fti3cGuR0kVApXZ7EFAxBMZCUdoQcyCVzr%2FlHcgQAkgAOTsQVszjC5EGRMpU0xw4lAsueRlGRk%2BUsUCIOj%2BOe%2BPigGSBm0gSkdAy2ncEF53rchbiZSDxoZYbKtuQE5e4oOHVHeg4oOAfAM2JKBjdjat3CZSLAO3so6CcZxmNUDqGe0bwgb3IJ3fkOwHvQS2BnQGNyNqcdciJOAYRqeKC5nCc5CMuaJI0yp7EHEVLoFn0T2U70EEBZgJSOgYg58Ag0TnG5bttOQcYnA72QZzEihzw2FBw64bx3oHh%2BYfX4oISnKdHaL9IwQdDC59EkCAsxBIIzCDRG%2FlcD%2FvGPEINQETbjISBi5YoDE%2BUN25oOQed6j81zegNu%2FOFOqHlKDdanC4%2BksdJeJQZ5XYxpFpy2%2FL%2BqCE5SmXkSUF7f4%2F5j3IHiTE0LILxuA0I0nLYgE9MZEkuX6QgQyJLUA2BA0OrgUBqgZx82O1AzNBzIM6BDJumnbmgTacUDS6uA7kBjIijuNhQVgRI0odhQGg7UANcUCXOgb0EgSC4LFBUTB6qHaEDTYMScqAIImRNMBsQdDqjvQEYBA4ltr2oHYGL6hQoJ6tg4lAED%2FAIOqO0bEBiAZBjwKAUD11HswQISTieCAjplwQAEioogfUDjTtyQUIDAvlkgD7KIOGI3oMZxOx0DxuyHVzD3oLgxlGREsMXyQRMwOmp8x%2BCCRJJclygoOmG495QMJEYHhkgpGQkQMDsQTLRJ%2BY7BggQknHgEBh0z4d6DgSMCyDjplQ0O0YexAZRAEDKQZssTVBIzOEeUe%2FigSNCM6hB0uqf1HvQNG4Y0PMMO32oNFsxmJGMsBUHEIC4GT9qBZVqUGL1f%2BVuKDLC5O2eSTP1DI8EG61fhMgS%2FpyemxAvqJ27dyeo65P0DxOSDDcuzuBjyxyhHD9UDWOqY%2FwDjkgqCzEFiM0GiN%2FK4P5h4hBS4I6Lc9Y0l2bE7ggzm5RoDQMz8x4%2FBAgxjvHeg0XOue8oBqLAT5gMNo3FBSEBL7hjMadBpLEII64RHLzy8xw9iCRMpF5EkoHl%2BKH1S8ECxmYl4lnxGRQaY3YzYS5JOz%2FL%2BiDRMCMi5f9oQKSTQUGwIFl0XPol3IPFBIqMRgdiDZb9XKkbo1jKef6oNkzblYExcGjVjnuZBgn6jEWhpGczWXDYgzElyTjmSg2SxH0x%2FwhA8LsoBuqI%2BU%2BBQaoGF3VGMtMtJeMvigzaoRcDnO09P6oEMjIvIuUFYn%2BkNuvwQcDIFwWQHklhySHs%2FRA94QhPnk9Byxxw9yDPKcpAgcsfKPEoDapMce5BIYBBojfIYTGoeYUP6oNcNMrZkJgh8UAcDpG6RxQDtNSUHnes%2FN%2FJHuQStX7lukS8M7ZwQelYvW7sosdEz8h8CgzXLtu2SA1yb4DpG85oMly5O5WZwwAoBuCCtnoujtj4oKRkYkSjIxIQaY3omlwaCMJDDiEBvCMZAykC8Q0Y4lBCVyRDBoROIGPEoOtflt7%2FBA38BA%2BofONWWoY%2FqgcQH2rkvuR0gjGjb0EDcEaQ%2F9zjwCCTkkklzmSgef%2BWcOTxKDoXJQpEuM4nBBqtXIXJRD6Zk9J8CgqQIkvzF8EAJJ7BkMkEPUf8AXucO9B5UZSgdUSYyGEgg3W%2FVuwvBj5x4hBovG2IWpm4NJBZqk7ggwyvylSA%2B3HMjqO8oIQpKJ%2FcKcUGuXVP6j3oKwvSDA88cO0cUF%2BS5bmYzAAYyEqEIM%2BuI6Q5Hzy8AgmSS5JJJzQXf%2Bna%2Bk96AAkUxicYmoKB4iM5QMTpk4eMvAoGAhG%2BAZapawwjvzKDKYEBw04j5h47EBt0%2B52wkyBQCSwD9gQQueos26P8AduD5QeUbz8EA%2FwD%2Bhej6e0dMGM5gxZnAb4oN%2Fp%2FV2b9AdE%2FJLwOaDXtGxB51%2Bt65XAoGjZkWlLkjkTidwQa7OmEmhHEFyakoBOzGdY8kvd%2BiDJO3K2QJBthyQVt%2Fj%2FmQOMCTQDGRwQRnfjH8Y1EfNIU4BBskRM8wZ8wgXQRUVG1A0OrgUB7GfsQOIij%2BwIDOTRFAzmiCbA9Jr5SgVuBCBpY8B3IA4jWRZ8sygEL3ONMQAxxxwQdC%2B%2FWGf5h8EGgMzioOaBJ9PFBIAnAIHEQO0%2B5BWTSA1DKhCCUrZFRzBAsOqO9Aw2IFlOMcanyjxQNbuGUZAgM4YIG07KHYUC9h9iCnwCDgHyYbUDRYGg4oJODjQ7QgBGePagI6ZcEAFfEoJyuRHTzHbkgMr8hocAgxDhBWM4z6TXy5oHGI3oMpDnjRA%2BjOVOzNBaDASAiGZBOVsHpLHYUECDEsQxQUHTDce8oOLAPI6RtPggkLw1wEI01Bycf0QXOmRJIY7R8ECSiQK4bQgMemfBBwBNAHQOIgY83ZkgW5LpBAZsPggjod9BfbE4oEAqN6AypKW3Ue9BOc4WvyGv8Apjq%2FRBK36yYF%2FRGMRGDxzzArtxQUs%2BuhNo3R9uXm%2BU%2FBBtOAOIOBQY%2FV%2FwCUNoPegzwtTmKDlzmaBBohGFsgga5A9UsOAQab9q3dlLUNMvOPEZoPNu%2Bnnac9cPOPHYgX0%2FVP6D4ILxBkWiH3IIXPUWbbgH7tzYDyjec%2BCDRYvyv%2Bnh9yES0pAABqPlsQObT1tl9sTj%2BqCQx7XDjig0zYSlvKAxg4eXKNmZ4IKuLcLhhEBo4mvtQY%2BSf%2FAMctvy%2FogWUTE8wZ8CMDuKBi32odkj4IE%2BUykRGIxmTQIMlz1sIfgjrkP8yYpTZH4oNFz%2B4zj6icbkBK2CANNJCg9qDdau270dVqWpsRmN4QPI8lw%2Fsl3IPHjEyIYPI4AINMfTgF7pr%2FAKY8Sg3w0ysmBhHQJdLIMd30j1tF%2FwBhx4HNBiIMZNIaSMQUGyRw2mMf8IQLOULYErstANQMZHcEE%2FT%2BsJ9RGNu2IwMZPqqcCcUGsxhOv45ZN0nhkgnKEoMJBthyKCsPx%2Fz%2BCAxiZmg4nD2oKxhGNaTl7kEr8wbpE4uzMRSQQSMCQ8eeIqWxG8IOtUmDv7kCAEsAHOwIJ3L1m1SZ1zGFuJw3nJAkfX3o%2BmnKMYBrsQA2RBKDVY9bZutGR%2B1c8pNDuPxQbMCzMg8%2F1lbzfsj3IEhYnMAnkh5j4DNBs9PGFu5DRFy7GcseGxA12xbuEn8c%2FMMOIQedcs3LXUHBwkMPagez0XB2xf3oKgEuco1MsAN5QZbnqrUHFsC7PzHp4DNBvjc%2B9bsyuQDyhEkxoRuQKbbOYHXH3jeEHWvyW9joG2NXYgqLdBrp%2B0YoHnLRalpjFtQBcPjtQZGjKsTollGWHA%2FFAhiYliGKB54W%2Fop7SgSRjCOq5IQj5jnuGJQQt%2BsAv2Y2YcpmAZTqS52ZIGh%2Fcj9yYvxDai04UIrmM0HpRnCcdduQnHzDxQJ6j8Fzh3oPNhCUi0AZHYEGmNiEC8%2BeXkHSN5zQbjGFy1bjOEWAIDUbcgwXPSSFbR1xFdOfsQZY0nHIiQog1y65bTI96BLly1Zpdk0v9IVlx2IO9L6uVyV6H24i3pBAZzjmc0Gg24SrHkl5ThwQSIMS0gxyCCwb7dr6T3oGjEyqzAYyOCC1uMYmJiNRfEjuQRjMS9RHVHm1hpRpnmgziRidUTpKDVZiJxuyNlzoLaaauwIPEvX703tkfZgKG0HHtOJQZQBVBeQ%2F%2FLY7Lk%2B4IJ22r2IPT9L6m%2Fqjb0m%2FF%2BnMbig9O7CMLkpxhWVdRrXsQTqcS52oHt9Y49yCyAUZiNQOIOCBLsRataoWjI6ul6DxQeZOc51lJwMBkNwQKcCg9XMcEDDaMUDwAJJMcsQgYBqAMg5AtzpjvKCSBgSeUjUMtqDr8jA0izgc5qgyOSXJcnNA9vrHHuQIgaM5Q6S21Bui87bygQXff2oB2At2IOQNkNwQcg4REpAkVGYQZJzkCYgaB7%2Fagig0WcDvCC6Duwh0FJABi2WJQLxQcMQgkgILYcUDt%2FTkRBzsQYpTlLGgHy5IEQUn8n0hBNBqsXJykIkawMZbEFTEQJYM%2BeaBEDwzQMgBAIYjUNiCV57cYaIOK8xqyDFKRkXkXKAR64fUEG5AahyEDxjEiR0kP70HNRmbsQKglcxj9PiUEfdXFBW2TcnESjrY9WfFBk9VduW7k4wh9pz%2BTEncckHnHGpcmpKCtscnqP8Aa8QgyoLWfUXbRa2SYn%2FLNQeCD25QFy1auTsGMw7wJwfaglIktsyCBUGk4nOtUAwcgoFFm3%2FUuRtEy0FoxLPwQeFev3ZvbI%2BzEUNoU9uZQZBV0Hsej%2F68Pql3oNKCkf6khGcNdRzChA7Sg0TiITkYxYn5jX2IFPt7UCy%2FHd%2BnxQYUDRkRTGJxgcEFfUPa9NCcPTmUhIkglwO0jFqIPCu3bl06pz1NhHIbggl8rhBo9UP%2FANF09o7gghGUoSEokxkMJAsQg970F%2B76kTjdtaomJH3hR%2BwoH0i28Ix%2B3t2neUAQXt9Mvq8EDFAs4Qucs4athwI3FBi9dcn6eYjataImIEb5rk1Mgg8aRlI6pHVKWJOKDR6QN6iG6X%2BEoPXyQEEigqDjE1QaY2o%2FaB%2B2QdT6XQdlsAwjkEAKDLf%2FACy7W7kEgSCCKEZhBr9OPuT1StuwPOKPTNB49%2B%2FeBlaED6eIcGPzEdp%2BCDEwdBcD%2FwDLcya7FvYUGfwxQbPTervwkLcAb0ThZNfYcQg9u%2FbjqhdNo6jEPqqA3ZtQRJJLkugeHXD6ggugGRGIOIOCCU7Ubdi9O3YM5Ej%2BmD4Y5oPCvX7t6k5NEYWxQDggz5EoPds%2Fhs%2F7ce5BQbcxgUF7IE5gyg5D84p7UDiIgTGMdPacfag5BO9W1L6h4oMfvQPGUi0G%2B4MonwzQH1spenhalbsPy1uS5hHhtQeHcnOZ13JmcsHKB7A%2Fr2Prj3oJzpOefMe9Abd2dmWq3IwlmQg%2Bg9LKfqvT3PvWCHZpRoJVyQDpBhEaB5R4oAg0Q6I8e9AdiAG1buyjrg5B6hQ8UHl%2BsvXbV25bhbNgEk68TLcdm5B5edS5NXQbvQdd76R3oPSQMCeltUfL8EGk24xhbIgaDA1AfagDk5oOBqN6DJD%2FALEf9wd6BeSOA1y2nAbhmgaMpS%2B6TIkmBqgjKMLkRG7H7kciTzDcUGG56OUea1L7sc4%2FMOGfBAkoyl6awBEkm5MAcAg2%2Bn%2Ft8%2Bq%2BdALf0x1cdiD1oQhbjptxEI7BnvQSnKUbk2OJq%2FwQcDGX7T7v0QPbBEwDix7kFcnNBkfggTX5KfuzQIX0ipDSPggjO3C4%2BoNLzjxCDNctTgCeqPmGCD0gCTQYMgNB%2B4%2B5A0X1VL0KB8mxQcA%2BHsQLPpjvKBGA6vYEAMiQwoNgQNInUe0DdggkbcZVjyHZkgSMZRmAQxY9yDoWpTwDDzFBphbjCo5j5igaT6eOKAaspV7UB7cQgYPytsCDiQO0%2B5AHLhz8EEsQ0uYbCglK1nAv%2B04oGshhJwRUIL76dmaDuwUGxA7mm5AKHsQEAghBEA7u1AQQMPaUHfLKpxCBTGMuoV82aCErZjUcw2jxQdKMj9sAEkxDBBWFgCsy58o%2BKDRGjAUAOAQTch9j4FB1DhTsQNH5gaU8UDUHVTvQIZHAUCBZEgxrl4oJStwn%2ByW0YIM%2BiULkHFNQYjA1QbACX2Zk4IDQYVO34IGi51OXoEDGuNUCtsqgjcBJiweniUE2iOrmPlHiUHajIxqwBpEUAQCXVcB5o6i8Thigx3PSxNbRY%2F6cvAoIQjKMfUCUSCLdQd4QGz6O7daUv6dvzSxO4IPTtWLdgDQOY43Dj%2BiDrxP9MgkEPVAgmJMJ0PmHiEHEEVxjlIINUuo7BigkbkRSI1S8xwQSJMvuGRJOg1QZpxhciI3Y6xlJ%2BYbigwXfRyi8rR%2B7EYhuYbxnwQbfRg%2F8eFCSZSb2oNmmMTz1PkHiUAMiWyiDSIwQaiSJSzc1QKwOHL2HBAswRC6CK6MEGMQLPLljtOJ3BAdQi4t8u2fzH4ICSRatnUQRKVXrkgz3bNm85mNE%2FwDUhnvGaDzr3p7toEkaoZXI4fogtds3bvqbsbcDIuH2CgqdiDdY%2Ft9uBErxF2fkHSPig9DCMgKAQkABgKIMcbhiGIEo%2BU5cUFQBLoLnyHHhtQVt9EvqHcgaRjHqx8oxQRlOUg3THyjxQSmSJyrQiLxNQaDJBiueltTraIsz8p6DuOSCXprdy36mMZwMS0m%2F9Tmg9URJi5IjHzHwCBtQFIBjnM4oKW30Y4S8EFHB6sfMEAIIqKgYkIMt6MjekAMhuFECckdlyQ%2F9f1QPblKVwPJ2BAGAwQQYShpuAXIbJZbjkgx3fR4mxIzH%2BmeobjmgkIy%2F4twaSCL0QRwKC9n%2B33JtK8ftQOEfmPDLig9a1at2RptR0A4nM7ygnelKN0EFuUdyACcJYjRLaMPYgpAEXLbjGQYjNBbaTSO04IJm4AeQVHzHwQRkSYTLl9UXL70Ge5btXvyx5mpdjSXHag8%2B76W5b5o%2F1LY%2BeIw3jJB6lgE2rAAc%2FbjTggs0I4852ZcdqBoSkbkCTnQZBBYFg2I2FBzP0%2F8AqfBBO6D9qQauqL%2B9Bm0sHmdIyj8yDjOhjAaI9mJ3lAZGUftEFjob3nFBluems3aj%2Bjc2jpO8ZIMluzdteosicaG5FpCoNRgUAh6a9euTEIlhI6pnpFcyg9Wx6Gza5pD70xmcBuHxQarpJtTck4d6DMLlGnzDI5jcUFGBDw5hmMxwQXhW3Bhi9OKASnCOPNLYDT2oJGcpGLmgNIigQQljcjICcTIvCVRigxXfRxlWxJj%2FAKMv%2FwDJ%2BKDvRRlG5eE4mJjEODTMIPT00BnyjLaUHaqNDkDVOZ3lBeJOi2cwD3oDQ40Pm%2FRAQCDHYTQoMtuMjfBEaC5U5YoIbezEIHh%2FmdsCgSqDsBqJ0RGMyWAQb7N2F6xEwuamkQZENVA4BGKAoM138k96BQHwqUGmzySOqWR5RVAJAly%2BoHE5%2BxAqAHpG8oFQHWINKU9A2Yk8EGiXOeWT9iBUDRxO4oHQc4FSQAMygH3IzhyzzZ2QSIIx9qAIGlWR3DuQAO%2B1BS3ICYjqqflQULmruP4yQKgEunigRAwBxdu1BSRdgJZYIE70HZhAgQd%2FDoHjOJiQJ1fFkHVHFByBjluQcyDhOMZCJlU5fFAhcuQdXYgVAR0nggCDiWqTpG1BdxKMSDiM6IFLjHFAY4jegjmd6DgCcEFYlhLm9mSCZBxxG1AEAl8u7xKBUBExCY1SYkjlxPFA8nJJBfsQKgeOfBAyCZlGA1SlpG34IBK5G5CBhNhIYGjoMxBBYhig4dUT2hB0uqX1HvQBi7AOgt6e7bJnb%2B7qIi7AOAN6CrHHF80AOCCF%2Bv2ux6oIfwEFYAwkJSlo7%2FYgree5M6Zu3yGnsQZ%2F4KDsp%2FSUEaoDgNUpCERjMmiDTG9C9YhouklyCSGdAhBiWIQcMQg1S6jvQBAlv1VkyuWhd1SECeUOA3bmgyyjKs9X3AcZfFAlDxQUP4odkpeCCaA%2FcjZIncufaGUcZEbvig9OfMXjJwwLYIJ1GIQd8s8%2BWXcg88YIGjGUn04DGRoEG2Mms6DdOrU2pvcgzmJDPngcigBQJc6zuHcECAEmgJJyQX9Petwu%2FbN3mIlyAagN5wQNKJLyEtYzOfsQJ2oNFvo%2Fm8EDIJXL9v041XJ6NkcZHgg6%2FIXpDRccGIIgaCodBkwLEMRiCgpa6x2g9yCQwCBmNcgMZEsBvJQbPTXrdy1cjG7rMJDmbuQUIIx4HFAqDN6j8o%2BgdyCOYYOdgQa7ANu5Eynpf5MX37EHTBmZSjIzGzAjggmgU9Et4b3oJIOMvtjXKf2wMJHE7hiUGyUxejAwuOJRBYjS6CLEOCGIQUtfkhvQWyQAsASSABiTQDigSPqrV23djbvF4EDU1K7M8kGSUTGpqD84wKAIHnUW%2FoHeUCVPagrauwtXrcZ3NMpyA%2B2Kmu3Yg3SBJkYlwHph7kCIEu%2FhuN2d6DFvQPCEpMQdIHzHwQbZye3biLp1NVwzsgzEEFjQoBmN6CUuqf1HvQcATQAnagv6e%2FbIu2xe1SAGAcCuRzQdKMhV9QPzIFQaY9ENx70HbO1Ah9Tas3IRnc0ylIDQKmu3Yg4%2F1PURInqEZjlNGrkgza3YXI6gPmFJfqgrbtahcMZgx0HGhG90Hn3PU2rfLAfenmflHxQefcu3LpecjLYMhuCD2v7d%2FwBU%2FwC5LuCD0I0cYg5IGFew7EEbsB9yRlJgcAKkoFejRDD%2BM0DQx4HuQGuWKDnieqh8w8Qg6cdNsSlKIiD1Ogxz9QB%2BIfznHgMkGcklyS52oPUGXBBR9te9A0I4saMX2oI3PURjSHOduSDJKcpkGRfYMkGi1%2BM%2FV4BBUEjCo2ZICwOHKdhw9qDrmmB5pZBgMcEGeVwmg5Rsz9qBrP5Ifxkg2bsUHO%2BOO1AZROnLFAgAGFTtQdxdAdm4IB2HDYgMQCaHeEEJTjCh5pYMMPaghKcpYmmwYILWcDvCDRuQChwofcgM5Rg2o5YDFBlnelJwOUe9Atr8kd6DQgLviOKBm5ZFw21BnldApHmPmPwQRJMi5LlBtt%2FjhuQO%2BRqEDRDkNtqEEjEB3OeAQAngNiAjCSAAkYIDQ9h25IFuNERMpABt5QZZXjhAaRtzQSj%2BSP1DvQbggLvj7QgYBoykZDSM3QZbvqwKWw58xw4IME5SnImUjInag2W%2FxWu2J%2FxFA%2Boijao7CgMYiUhoLOaxPggleuW7U5ictUnLQjjxOSDz7t%2Bdzl6YeQYcdqDR%2Fb%2Fyz%2Bg94QeoKFwgBY0Zu1Al22TG2SQAHq%2B1BEaYDlxzkcf0QK9XQNPrnvQDUDSY1DbmOKBhbeNwwmNOk4lm3oPNueqtQcWx96eZ%2BUfFB59y7cunVckZHIZDcEHqei%2FBH6pINgkRTGOw4IDGIlIaC0iemXgUA9T6qz6eUhI67j%2Fjjjx2IPGv%2BsvX3iTot%2F6ccOOZQN6L8s%2F9qXeEHoRJiXBY9iBnhPqGiXmGB3hA92It2ITnchGOo8z7Ww2oPNuesAcWItl92WJ3DJBglIyJlIkku8ig%2BqyiP2juQNqykHagQNGOoS0nGJFaYhBiFuEayOqQ%2BUGnEoCSTmwGAFAgb5P5vBAoJG44jIoC0JNpOiWw4cCgj6mVuzM%2FdmHYNbjWRp7kHmXfVTmDGA%2B1bOMRid5QD0f54ZUl%2FhKD2QSGILHagLxlSQ0nzDxCCvLata7k4xhq6n7EHl3%2FAO4k8vp4mI%2F1JY8Bkg8yUjIylImUjUklyg9sjp7IQ%2FwhA2ssBKOuI24jcUFbNsSmNEnixcGhFEGG5ftWnj%2Ba4KaY9I3n4IPPu37l088uXKAoBuCD0%2F7X%2BO%2F9Ue5B6YJDkZ4hAaE0Gk5DJBK%2Fb5wZSERpAGZLdiCQIiGgNI25%2B1A0OuO9Au7ggLxPWH%2FcMeO1AZQazOeuOgEcxLbUHmXPVwjSyNchjdkKcB8UGCU5TlqnIylmSg9ux%2BGz9Ee5BbU1CNQyBx4FBS1ESuRMDR3INCgzX%2FW2rDxj%2FVuCjR6RvPwQeRe9Tdv%2FAJJcoNIDpHBBp9F0X%2Bww8UGyJlF2O8YhAw0T%2FwDjn%2F8Az%2BiA%2BoEbMbcr04wGnAVJqcAg8y76uR5bINqJxPzHjlwQR9Of69ntnHvQfSnqPYUBJfqD%2FuzQCdsytXNJFWZ6ZugyiMIl6Tll5f1QEknEugaXTDax70ABIpQx8pQNGMZyjokxesT4FBjv3bVicxM656i1qBrxOSDzb3qLl3lfTbytxw47UF%2FQdd36R3oPUBMagoDyy%2FZIew%2FBBW5OFi3CV6YAagFSdwQeRf8A7hcny2QbUMNXzHjlwQYbdbls4nXGvFB7sP8AsR%2F3R3oALZIBkdMcjmdwQaLWga4CAIlEiWqroPPvf26Mub08hE%2F6UjTgfig8q5Cds6bkTCWYIZB7X9uI%2FwCL%2FwDZLuCD0I59maDjcAw5jtyQNcEZEkhj5ggiYGPaNoQGGJ3HuQHxQLKUY9Rr5BigMTG%2FaInAMJUbcgy3PSyi8oHXHZn%2BqDMc0HqDLggfJzQdqDtekSIi7RJqgxcksOQ7PlPwQLpMS0gxQarX4j9XggoAThVA2mI%2Fcfcga7bjcLnlk3UEGSVqcMQ8cpDBA1n8kP4yQbEHYY%2BwIC%2FKQ1HQK3lr2IB%2FDIDs3BAO3AbUAjMaogB%2B0%2BCBJ2YyrHlOzJBmlGUS0gyC1nA7wgugBIHaR7EEb0gZgSjkKjFBIwLODqjtCA2vyQ3oNCBhHbTYEDDSYyBjQnBBnnYzgX%2FacUECCCxoRkg22%2Fxw3IH9w2oCCHDbcSgBYvkgmQR8UBGEkCoAZRjjzHYEDGMb0I6ogEUBGVUGSdicKjnjtHiEEY%2Fkj9Q70G%2FJB2AeVOzNBOdwC1c5ARQMe3agw6Yz6DpPkJx3FBKQIJBDSGSDdb%2FFa3H%2FABFAwgZPszKCkBGMoltRfE4cAglf9LbuylKP9OZOOR3hB5d2zcsuJxYZSGHtQaf7f%2BWf0HvCD1PegWUoihqdg8UBMhKEdURiWbJBEwoTE6g%2FFBJAZ9c96BS0Q8zoBwJxO4IOs3ozuSti2DblAgmVSf0QZb39uB5vTy0nH7UjTgfig8q5GcJaZxMJDGJDIPV9F%2BCO%2BSDWAS7UAxJoEHC5GMhpGuTipw4BB5nqblq76i8Jw%2B3ITI%2B7GuHmGfBBlnZlDmpK2cLkagoNHoaXrn%2B1LwQbgCSAA5OSCotiP5DXyDHickFpW7V%2BxGE7Y0gnS1CO0IPJveguW3laP3YA4fMN4z4IPPNCduxB9UCGj9I7kBwAMjpGROe5AbdwGTCLgguTiaIJG3A1jyHZkfggkQYliGQN8n83ggUAmgDtiglO9CDiP9WX%2FwDI%2BKCl%2FwBNa9UI3JD7dyUIn7kdwNRmg8i%2F6W96d9Q1QyuRqOOxAPR%2F9iG4%2FwCEoPYqwYOckBOmFJmvkGPE5IM%2Fq74%2F49uMrMZRlcNC4wD0O1B5n2hcD2TqP%2BjLqG7aggQ28YgoPcl8n0R%2FwhA0bZkNRIjHzH%2BKoNNjRC4BGLuC8jjhlsQYr%2F8Ab7dzmskWpE1h8p%2BCDybtu5ZOm5ExOT57ig9T%2B1t9u%2F8AVHuKD0w5NKoFM4xw5zsyQPPTMQMosdI5higzygYhxzR2jJB0OuG9AqASMYD%2BodJ8oxKDrU4eohetztRFvlLHHPE8EGG9%2FbpB52JawK%2FbPUN21B5sgYyaQMSMYmhQe5Y%2FDZ%2BiKCoBbUeWPmKBrd2MbkdEdWLyOOGWxB4ZlZvEkgenma6h0E9oxCCc7U7ZGsMD0yFQdxQbPRfjv74eKDZGJkQIhyckFRCEermPlGA3lBS%2FYtepha%2B5HTIRaM40I3IPGveiu2eYf1bfnjjxGSCHp%2F8AsWfrj3oPpiQ53oASAHkdNKDP2IGhMEXBoGls9%2BaCJtg9BYt0HwKCdQWIY7EDS6be496BRUPQRGMjQIJf8iMJxEB9w6g85YcAgb1PorV6U5Q%2FpXCXJyJ7Qg8e9Yu2CRciwflmKxO4oL%2F2%2Fru%2FSO9B6jEkABydiDjKMOrml5RhxKDH669GX%2FHhOyCNBLikhVqIMErLgytS%2B7EVIwlHePggS3%2BW19ce9B7sf%2ByP9wd6DsakvvQVtdUvpKCiBZ24XY6LkROOQOW4oOt2IemsAQjKUTImvagTUZ4mmQGCAoNJxKDsMEHQhEknSQwOCDFO7IPGINva%2BPFBBBt9P%2BM%2FV4ILIFnZt3QNQ5vMKFAZtbLCOGZ8EEnJNS%2FagJfTP6JIMKCsZkBjzRziUG61CP2hIRkHLsUBfLAbEAQVPgEHfwUAjahrEgGIyGCAGRFANO3ag4DPagbI7wgCA44h9hzQC4dJi0ThicEECScS6Aw647wgsg7EMQ42FABbjCMiBKpwQKS9MBsQKUEb3XwCCYJBcFigvZadwExqKuMOKDQwBLBmzOKAb0DDAoAgEoxn1B%2B3NA7CEYxAJYYlAhc4nBARiN6A58UHOg5hpkQDuCDNKZNByjYgmg1W%2BiPHvKB8EEzZhOcZMxBd4570CylpJADdpxQJ70Ebn4bj7YoMRQOJkjTMaxkDiNxQeiLcYW7R0ywwlveqAFzicMAg4YjegqXc7ygGIINQcQagoEtemt25TuQEgdLaRhwQLKZNOkZjPigmKIKisI8UHIDpEyBKLnzDFBl9TcNq7OMbZBJcXJeAQecZSkdUiTI4koNPpD%2FVNPkkg9HegW5bhdjpuxExk%2BI3FBP7Fv01mAhGcgSTzYV2oISnKdSaZRyHBAofUMg4rxQeV6n%2FALF%2F%2FcPegS3cnAkwkxz2HeEHq%2F2%2B3bvSu3BalAiBDx6K7HzQa30giIMMifm4oFQaIdA3nwQH3HIoIXvS2fUka4nV540lx2oNF0%2FaOmMcAGkcEGYvIuS57UFLXXwPcgoAgL0YgSj5SgS5GNuxrFuc2k%2Bkfxgg8u5encoaQyhGgQSQe1AnRDZoj3BA3FnxQRh6Owbv3YwMZAE6Y4FxsQSlcIeMRo2v1cSgjwcoM%2FrfwWnx%2B5LuQeaCzFBpjP7pjC7A3SaCcaXPbnxQe9ctwtyi0JHlAGrCgQSLkuS6Clrrjx7kFEAlGM4mE4icD8pFEC2fTW%2FT27krcZkTkCYns2IElMyo7R2DBAmCDTiI%2FSEHCmGKBoQjK5E6WIzjgd6Dzr16UJShCJtEEjVLq%2FRBjJJLmpOKDd6L%2FN%2Fl8UG1BK9YteoDXY6jlMUkOKAXIR9PG3CMZSEYgCUsKeKDPKUpl5HU6A231x2V7kHgjsQWt3ZQBAYwPVbkHieCD2PRWrcrF64LdyOqQeLuC3lJyqgq9GHLHYPFAEGkdMPp8Sg6oqCx2oJf8OxcvQuaTGYkC8KAttCClyZjKQjHSXPMceCDPV3xKC1vC5uHegdkHFiGkBIZdm5BP1GmzC3IW5TcEAnAPtQeZO5O4eYuMhkNwQLHqj9Q70HtyqTvKBSAQYmsTjE1BQRt%2Bks2vu3YRmHAGiJpi9EEZXDJ4gaRmB8UE60YIMfr8fT7ft%2BJQYokgggkEYEUZBu9OY%2Bov2o3bRlPUCbluhpXmGCD2tMYXwBAuZ9Ut%2BSCWkS6CxPyHwKBrTicnDERNEFQM8BtKAuA4iN5KBLhkIwIkcSgQGMseU%2BYYcQg4gjdlIYINRxLBAKDGqBgSTjkUEpRjOkw%2Fbn7UGadiUXMeeO0Yjggr6f8cvq8EGhtpbszQF6bAgJq4NRsKCRtjGJ%2FlPggnIUuODSEkGaFqc%2BnDORwQbLdmEKtqltOHAILSJ0iuZQK4ONO1ACCK5bUFTjTYO5AKb%2BxAc8cigk%2B2qBm2V7M0DDA7wg5ttOxAX2UQcTxpggkYA9NDsKBYgicQQxcILM%2B7agNB2nag6rY5oFIB7DtQIQQPEIIXQTcYBywogeFjOZ%2FlCDRHlYCgGxAoJzqgO72ZoOjgeCAttoEHPsog4u4L5IFp9PcgIcEAhtiBsXbiUHUHadqDnLEugSUYzxDHzBBCVuUa4x2hBa30RauPeUD7%2FYg56jJAprjUdqCZh5S%2FZmgzXPxXN8e9BG36edxj0wzkfBBthZharEPLzHFA05SBixOHigXlP7TtyQBiJB8yKoKmpO8uUHUpmfcgEidE65IIO%2FVX92aDjE4xOoZnMb0FI9EaZlAWasj%2FKg4SOAoOxALgEjISGsHEGqDFc9JnZL%2FALJY8Cgn6YGN8iQYxhJwcUHogZnlG0oC4D6eJKAuWjU5oIStQlUch2DA%2FBBnlCUZREgzkF8Xqg8q7auXfU3424GZ1yoN%2BZQehY%2Ft1uIEr5Fyf%2BmOkbzmg9HCExHliIsIigCCIk4aY1duftQAxLPE6gMdo3hBW3%2BMdsj4IKM3VT9uaAPSlB2Y%2B1BO5KQuTq4fpNQgRoyPKdJ8pNPaga2CLjEMWPcUFQCRsG1AXEemp8xQFzpJc9Xggy3LFu456J%2BYYcQgw3LNy0OYUymKhB6sATG2AH5I%2FwCEIDygV5jkBggYEvjkcKZIJyEZDnrslmOKDPOzKLmJ1xGO0cEGD1n4LX%2B5LuQJY9Bcu810%2FZt5P1HcEHr2rNqwGtR0k9Uz1Hig65OQuEO4YODhhsQK0ZYcp8pw4FAbYMbsRIMa4jsQWAJD4DaUBeINKnzH4IFmZfbcSI5vBBF4y6gx848QgBiQHDGPmCDQHaFHJiGQFgMS58oQGJJlFqVwCCc4xmGuDUO3EbigxXPSSi8rR%2B5Hy%2FMPigb0f%2Bft5Q3tQbmzJ0j3lAHDcvL3oDLY7ggUNckGeVmJcwOk%2BU4cCglGMo3IxkDEh6cEHi2fT3b9LcSdssIjeUHsWPQWbTSn%2FWnj%2B0cM0GyZl9uRcjmizU2oI6hIDWK%2BcY8UAMSA45oj5h47EGiPTbADnT4lAzAPqLt8o8UBB5osWqGZBm1EEiXNFzQ%2BCAaRLoLnyHHhtQUtP%2FUfYO8IK6XqTpCDtQHTxKAknTGpzpligx3PTQm5h%2FTns%2BU%2FBBjlbnbnCM46eYMcjXIoPXLkybaXKDniCPmO3JAQS0qnJBKcIz6qS84x47UGaduUA45o%2BYeOxB5%2FrYky9MACSbbMBU1OSClj%2B3SlzeolojlbHUfgg9a1bha0wtRFsOHbxKBYSl94AnUNeBrnkglXIOg12RKIl9yQwoDUhAstWJqMigBqgS70Q3lBOKC1sScF2icXz4INEyDIxBB%2FagRA0ceBQKgIfEZZoHBiY8sg71LIENDVAWogbMoO96AxIdiRhQIBg1KZIOQdLpG8oJoHiJYigzdBWWNK0wQTQMMeB7kEUDsSzIKO0akO%2BKBS6AICctyAIHiWIfgEAL7XCAIOy4oO%2FhkHYVdkDSDsQ2CBfcg4YoFCDq4AIKCgLkPlmgUu9fagCAyy3IF2oGgCDsGwoCamhcIFQEYSQBAcK4DagZwRHSRwogXDFB2YQBB3B0BeMhIEgncgH8OgU4oJTxju8UAQUtiTgnli%2BBz4IHk5JYuAcAgTFADSE9yDOgMRIl44jNBpMhGERrAlXJnQTIahQcgMuqW9Au7FA8JRBlGUhr04M5HFAstWJqMiEANUBIpDigGSAiQgxmRAE4Gr8EDziNUjFiDUgU9u1Agr2OgB6Ln0oMwQNETJ5QXGezig2VFuI1jW5ctmglUFiKoObNBK7%2BSe9BPHDNBrsCUXM5AAAtE1IQB9XMDqAwI%2BCAIG%2BT%2BbwQKg59IJkQI9ufDNBWZ1NoIIIHKKIJIDEMTuPcgAwQcHemWexBR4Tg4lEyjLqbP%2BM0CF3YiuKAH2oJXfyy3DuCBPeg1WBKMucsKtE1%2F8IOLmrvHIj4IFxFEAn%2BP%2BbwQZ0DwjN3B0jORw%2FVBrnIOIxkHYDTg6CeFNiAxfVHegGCAMThigpGcSJtKJm4cs%2FtKBC4PNnmgBDoDLEfSEAPtQPCUYyjGUgHwgan9EAIYHSBpFaBgH7EAQLP8AFL6o%2BKDOMEDwFwl4crfNkg2TwiIkE6ajB0EcCxFUBiOeO8IMxxKDmJYAEvgAg12zphIzmHYMcW3lApc8xOp%2FmxQBAxwgew96AIOBETHWQA9Aa%2B5A03JLF4g1b4IEx3oCOmWdB3oOQAFubpA%2BYoKHRONuUDF2IBAY8EE6uxBBCBo9Ud4qghD8w%2Bsd6CwAAaIbtzKAx%2BbcUAdi4LIC4Nek%2B5ALluemNAzlygEIRjhzHacPYgpxQRuD%2BpL3IGjcOEubtzQWgxLgvQ8EE5TjGj6pDIeKCMpmeJYZAYILW%2Bg%2FV4IKA5YjYgLAhh7Cg6ZESXLdmaCJuE0FB70Bh18CgsgND2IOMSYjegAAHafcgKAnH2IOfbXvQcATggQRbq9iBuwUGxAJVjxQcHGdNiAhj2diAyozlgyCZn5ad6DodUd6B8MEBcHsO1BzFn7cUCGQGFe1AhJNcUFchuCDn21QECtC6BdLY%2BxAd1EByPBAAW%2FVAccKHYg4xNHoGxQCgw9qAjEbwgntKAiT9XtQOA4LFwgSUwMOY%2B5BIkyqS%2BxBWPTH%2BM0DPkaoOZyGyLoEkRF3x2IJmZlTAbEBtfPwQVqgBAJxYoEnblynAAY8UHARGAc%2BYoGGI3oAcTvQc4OPtHig4xlKMtPM4oyCYtgVlU%2BUIH9w2IJXR0cUCiRiNo2FA8Wlga%2BUoDdlG3I65Z0jmUGSV6UgRHkiaFsTvKA2PyH6Cg1AsXBZAXBr0n3IOnEwjEyIiK1KDNL1DOID%2Bc%2BAQZySSHJLkOeKD0ZdR3oOcENKp8yDtEpRmI1eNCgkLQHUX%2FaEFOzADIICemO8oAJM4xGwoC2qkcT8pQJO1IzlqaMTgdqAxAj0U2nNARhL6ZdyDLEmNYkgoLC4CWlynzDD2IL6SIO4Z8XDIMs78RSFT5jhwCDPIykTKReRxdBuyj9Me4IG1OwNe0YoGESS8S4AI92xBnlchD98hiB4lBnnclM1wGERggvY%2FGfr8EFgSKYjYgLAk6f%2FAFKBLlqX3CZERBAY7ggMRGI5Q37jigaPUEAdqiiAuDjQ%2BYYIBK3MwJABcu79iBBbhHHnPuQO5o5QRu9Y%2BkIOFyQpLnHv9qC9tpyjpL7RmEE5zhbcSLyHyDHigzTuymGJ0x8o%2FiqCnp%2F8z%2BXxQaBJs6bCgLA0jQmjHwKAXBobWREMEGaV%2BXTAacnzQTskm7b%2BrFBsqMKIGocaHaPgg6VuUrZAD1Bd9joJRtxGPOdmSChrjlkgMvl3eKAaqMaj38EDCLkaS7GoNCEEftFzrLN8uZQOKBo8oOPbvKAT%2FFPh3oIxMo9Jbs270FYzjIseQ%2B5BWY0xjKREYsalBllfq1sN%2B448AggHMgXcmQclBvOJ3oC4liN0h4oDoJjKTggjFBnlejDp5zgTkPigzyuSmdUi%2Bz9EGq3%2BK3uPegoDlLmCBox5hpqxqM0CRtEXQZHTzOBtqgKBhn9KBc0HIKFvtDDGmKBQgKCM%2BuXBAqC1ltRwwOLoM%2BZb3eDoOQaLfSfq8EDoGGA3oJXuvvZBPNBWHVwKCqDtiB%2FkyxQKg7JATieCAIGhigU5oOGaAHBADwQcUBufLhggmgaHVHegdByDpfjOGKCSDkFchuCDs0DQxQKf4ZByA5HHEIAg7agaWAwwQKcUBGI4IEyKBEFINpnh70ETmg7LggrDpG7xQMgIxG9Bml1Sw4IAgpaxnwQUQLJA0umOHYyCaBhiMcQg6WJ3lAEDwbm3dqBEAQSuYx4oJn%2BNqAx64u2OeHuQJ6lvvSZsnZ%2Fe6CHtQVsfkP0lBqzQcgn6lvtW%2Bl8sX%2Fjegx5FBwxG8IPRlid6BdqCllmlhhXFBNAUDHpjvKBUHDEO2P8AGCCl3rGDoJID5t0u5Bly%2BKDsvggsdP8Axfl6v3YoMeQQcc0HoZR%2BmPcg5A8GeTt0nb4IPMo5bDJnbg6DkGux%2BM%2FV4IKoB82Tdvigrd6htbL%2BGQT2IGj1BAqDkFA32pYY9qCeQQcgjd6x9IQTzQWsN92OGJZ39yDPcb7k2bE4O3vQTCDR6f8AzP5fFBoQA5oI%2BrbXDB2GDvnwQZigpZ%2FJb%2BpBsQA4FBWDfanhiHd0Eh%2FDoCgY%2FL9PigXYga31x9yDp9Um936oEQCf457h3oM%2BWSDtiCt9vtWOnAsz%2FwAe1BlzCAxxjvCDfLE70AQcW%2B1dfThV38EHnx8EHDJBtt%2Fit7j3oHQdD8gwxo6Ch%2FLTzDDf2oP%2F2Q%3D%3D);
}

@media (min-width: 992px) {
  /* line 29, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .page-boxed {
    width: 1000px;
  }
}
@media (min-width: 1200px) {
  /* line 35, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .page-boxed {
    width: 1200px;
  }
}
/* line 46, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
a,
a:focus,
a:hover,
button,
button:focus,
button:hover,
button:active {
  outline: 0 none;
  text-decoration: none;
}

/* line 51, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
p {
  margin: 0 0 20px;
}

/* line 60, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  color: #555555;
}

/* TYPOGRAPHY */
/* line 67, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
ul.list-large li {
  font-size: 18px;
  line-height: 36px;
}

/* line 72, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-lg {
  font-size: 20px;
}

/* line 76, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-success {
  color: #2ECC71;
}

/* line 80, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-info {
  color: #3498DB;
}

/* line 84, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-danger {
  color: #C0392B;
}

/* line 88, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-warning {
  color: #E67E22;
}

/* line 92, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.dl-horizontal dt {
  width: 250px;
}

/* line 96, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.dl-horizontal dd {
  margin-left: 270px;
}

/* line 101, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.dl-horizontal dt,
.dl-horizontal dd {
  margin-bottom: 10px;
}

/* BUTTONS */
/* line 109, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: 0 none;
  outline-offset: 0;
}

/* line 114, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom-width: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 12px 7px;
}

/* line 124, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn:active,
.btn.active {
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.2) inset;
}

/* line 128, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn i {
  margin-right: 8px;
}

/* line 133, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-default,
.alert-default {
  background-color: #F0F0F0;
  color: #555555;
}

/* line 140, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-default:hover,
.btn-default:focus,
.btn-default.active {
  background-color: #E0E0E0;
  border-color: #E0E0E0;
}

/* line 146, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-default:active,
.btn-default.active {
  box-shadow: 0 2px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

/* line 158, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body a.btn-default,
body a.btn-default:hover,
body a.btn-default:focus,
body button.btn-default,
body button.btn-default:hover,
body button.btn-default:focus,
body .btn-group label.btn-default,
body .btn-group label.btn-default:hover,
body .btn-group label.btn-default:focus {
  color: #555555;
}

/* line 191, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body a.btn-primary,
body a.btn-primary:hover,
body a.btn-primary:focus,
body button.btn-primary,
body button.btn-primary:hover,
body button.btn-primary:focus,
body a.btn-danger,
body a.btn-danger:hover,
body a.btn-danger:focus,
body button.btn-danger,
body button.btn-danger:hover,
body button.btn-danger:focus,
body a.btn-info,
body a.btn-info:hover,
body a.btn-info:focus,
body button.btn-info,
body button.btn-info:hover,
body button.btn-info:focus,
body a.btn-success,
body a.btn-success:hover,
body a.btn-success:focus,
body button.btn-success,
body button.btn-success:hover,
body button.btn-success:focus,
body a.btn-warning,
body a.btn-warning:hover,
body a.btn-warning:focus,
body button.btn-warning,
body button.btn-warning:hover,
body button.btn-warning:focus {
  color: #FFFFFF;
}

/* line 198, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-danger,
.alert-danger,
.label-danger,
.panel-danger > .panel-heading {
  background-color: #C0392B;
}

/* line 204, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  background-color: #A3271A;
  border-color: #A3271A;
}

/* line 212, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-info,
.alert-info,
.label-info,
.panel-info > .panel-heading {
  background-color: #3498DB;
}

/* line 218, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  background-color: #2280BF;
  border-color: #2280BF;
}

/* line 226, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-warning,
.alert-warning,
.label-warning,
.panel-warning > .panel-heading {
  background-color: #E67E22;
}

/* line 232, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  background-color: #D67118;
  border-color: #D67118;
}

/* line 240, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-success,
.alert-success,
.label-success,
.panel-success > .panel-heading {
  background-color: #2ECC71;
}

/* line 246, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  background-color: #18BA5D;
  border-color: #18BA5D;
}

/* line 251, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-inverse {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
  border-width: 2px;
}

/* line 259, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-inverse:hover,
.btn-inverse:focus {
  background-color: #FFFFFF;
}

/* line 263, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-xs {
  font-size: 10px;
  padding: 6px 8px 5px;
}

/* line 268, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-sm {
  font-size: 11px;
  padding: 6px 9px 5px;
}

/* line 273, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-lg {
  font-size: 14px;
  padding: 11px 16px 10px;
}

/* ALERTS AND LABELS */
/* line 280, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.alert {
  border: 0;
  border-radius: 2px;
  color: #FFFFFF;
}

/* line 286, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.alert .close {
  color: #000;
  font-size: 30px;
  position: relative;
  top: -5px;
}

/* line 293, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.label-default {
  background-color: #BBBBBB;
}

/* VERTICAL NAV */
/* line 299, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav.vertical-nav li {
  border-bottom: 1px solid #E5E5E5;
}

/* line 303, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav.vertical-nav li:last-child {
  border-bottom: 0;
}

/* line 307, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav.vertical-nav li a {
  color: #555555;
  font-weight: 400;
  padding: 6px 0;
  transition-duration: 0.4s;
}

/* line 315, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav.vertical-nav li a:hover,
.nav.vertical-nav li a:focus {
  background-color: transparent;
}

/* line 319, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav.vertical-nav li a i {
  margin-right: 8px;
}

/* line 323, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav.vertical-nav li a .badge {
  float: right;
}

/* POPOVER */
/* line 329, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.popover {
  padding: 0;
  border-radius: 3px;
  border-top-width: 0;
  z-index: 1020;
}

/* line 336, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.popover-title {
  color: #FFFFFF;
  border: 0;
  border-radius: 2px 2px 0 0;
  font-weight: 700;
}

/* TABS */
/* line 345, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav-tabs {
  border-bottom: 1px solid #DDDDDD;
}

/* line 349, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav-tabs > li > a {
  border: 0;
  border-radius: 0;
  margin-right: 0;
  background-color: #E0E0E0;
  color: #555555;
  padding: 12px 18px;
  font-weight: 700;
}

/* line 359, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav-tabs > li > a:hover {
  background-color: #D0D0D0;
  color: #555555;
}

/* line 366, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: 0;
  color: #FFFFFF;
  cursor: default;
  padding: 14px 18px;
  margin-top: -4px;
}

/* line 374, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.tab-content {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 50px;
}

/* PANELS */
/* line 383, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 0;
  margin-bottom: 20px;
}

/* line 391, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-heading {
  border-radius: 0;
  padding: 12px 15px;
}

/* line 396, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-default > .panel-heading {
  background-color: #E5E5E5;
  color: #555555;
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 406, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-primary > .panel-heading,
.panel-success > .panel-heading,
.panel-info > .panel-heading,
.panel-warning > .panel-heading,
.panel-danger > .panel-heading {
  color: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 415, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-primary > .panel-heading .panel-title > a,
.panel-success > .panel-heading .panel-title > a,
.panel-info > .panel-heading .panel-title > a,
.panel-warning > .panel-heading .panel-title > a,
.panel-danger > .panel-heading .panel-title > a {
  color: #FFFFFF;
}

/* line 419, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 0;
}

/* COLLAPSE */
/* line 425, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-title > a {
  color: #FFFFFF;
  display: block;
  cursor: pointer;
}

/* line 431, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-title > a > i {
  margin-right: 8px;
}

/* line 436, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .panel-default .panel-title > a,
body .panel-default .panel-title > a:after {
  color: #555555;
}

/* line 440, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-title a:after {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  content: "\f068";
  color: #FFFFFF;
  float: right;
  margin: 2px 0 0;
}

/* line 452, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-title a.collapsed:after {
  content: "\f067";
}

/* line 456, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-group .panel {
  border-radius: 0;
}

/* line 460, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.panel-group .panel + .panel {
  margin-top: 10px;
}

/* FORM CONTROL */
/* line 466, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.form-control {
  border: 1px solid #D5D5D5;
  border-bottom-width: 2px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1) inset;
  color: #555555;
  height: 42px;
  transition: 0.3s ease-in-out 0s;
  border-radius: 0;
}

/* line 476, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.form-control:focus {
  outline: none;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08) inset;
  border-color: #B5B5B5;
}

/* line 482, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

/* line 483, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.form-control:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
/* line 484, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.form-control:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
/* line 486, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
textarea.form-control {
  height: 180px;
  resize: vertical;
}

/* line 491, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
form .row:last-child .form-group {
  margin-bottom: 0;
}

/* line 495, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
form label span {
  color: #E74C3C;
  margin-left: 5px;
}

/* line 500, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
form span.form-info {
  color: #555555;
  margin-left: 15px;
  font-weight: bold;
  position: relative;
  top: 11px;
}

/* line 508, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
form .pull-left span.form-info {
  margin-left: 0;
}

/* line 512, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
form span.required {
  color: #E74C3C;
  margin-right: 5px;
}

/* line 517, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
form button.btn {
  margin: 20px 0 0;
}

/* line 521, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.input-group .form-control {
  height: 40px;
  border-radius: 4px 0 0 4px;
}

/* line 526, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.input-group .btn {
  padding: 9px 13px 8px;
  font-size: 14px;
  margin: 0;
}

/* line 533, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: 0;
}

/* line 537, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.input-group-btn .btn i {
  margin-right: 0;
}

/* line 541, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.input-group-addon {
  border-radius: 0;
  border-bottom-width: 2px;
  color: #888888;
  font-size: 20px;
  border-color: #D5D5D5;
}

/* line 549, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.form-group.nospace {
  margin: 0;
}

/* line 557, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 12px;
}

/* IMAGE OVERLAY */
/* line 563, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.overlay-wrapper {
  position: relative;
}

/* line 567, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.overlay-wrapper .overlay {
  margin: 2px;
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  transition-duration: 0.5s;
}

/* line 580, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.overlay-wrapper .overlay a {
  font-size: 30px;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -18px;
}

/* line 590, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.overlay-wrapper .overlay a:hover {
  color: #FFFFFF;
}

/* line 594, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.overlay-wrapper .overlay .overlay-title {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  top: 20px;
}

/* line 602, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.overlay-wrapper:hover .overlay {
  opacity: 1;
}

/* OWL CAROUSEL */
/* line 608, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-carousel .owl-wrapper-outer {
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
}

/* line 612, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-pagination {
  text-align: center;
  margin-top: 20px;
}

/* line 617, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-theme .owl-controls {
  margin-top: 0;
}

/* line 622, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-theme .owl-controls .owl-page span,
.owl-theme .owl-controls .owl-page.active span {
  background-color: #CCCCCC;
  border-radius: 50%;
  display: block;
  margin: 0 5px 0 0;
  opacity: 1;
  width: 16px;
  height: 16px;
}

/* line 632, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-theme .owl-controls .owl-page:last-child span {
  margin-right: 0;
}

/* line 636, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  top: 0;
  bottom: 46px;
  margin: auto;
  width: 44px;
  height: 46px;
  font-size: 29px;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  transition-duration: 0.3s;
}

/* line 652, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .owl-theme .owl-controls .owl-buttons div:hover {
  color: #FFFFFF;
}

/* line 656, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: -80px;
}

/* line 660, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-theme .owl-controls .owl-buttons div.owl-prev i {
  margin-right: 3px;
}

/* line 664, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-theme .owl-controls .owl-buttons div.owl-next {
  right: -80px;
}

/* line 668, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.owl-theme .owl-controls .owl-buttons div.owl-next i {
  margin-left: 3px;
}

/* line 672, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.hidden-control.owl-theme .owl-controls .owl-buttons div {
  opacity: 0;
  transition-duration: 0s;
}

/* line 677, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.hidden-control.owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: 40px;
  color: #FFFFFF;
}

/* line 682, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.hidden-control.owl-theme .owl-controls .owl-buttons div.owl-next {
  right: 40px;
  color: #FFFFFF;
}

/* ISOTOPE */
/* line 689, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.isotope-filter {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0 0 50px;
  padding: 20px;
}

/* line 696, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.isotope-filter ul {
  margin: 0;
}

/* line 700, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.isotope-filter ul li {
  line-height: 60px;
}

/* CREATIVE BRANDS */
/* line 706, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.brands.main {
  margin: 0;
}

/* line 710, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.brands > li {
  margin-bottom: 0;
}

/* line 714, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.brands.main li a {
  color: #FFFFFF;
  transition-duration: 0.2s;
}

/* line 719, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .brands.main li a:hover {
  background-color: #AAAAAA;
}

/* line 723, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.brands > li > a:hover {
  color: #FFFFFF;
}

/*------------------------------
	HEADER
------------------------------*/
/* line 731, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.top-header {
  background-color: #F0F0F0;
  border-bottom: 1px solid #DDDDDD;
  padding: 12px 0;
  height: 50px;
}

/* line 738, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.top-header .header-item {
  display: inline-block;
  margin-right: 20px;
  font-size: 12px;
  padding-top: 4px;
}

/* line 745, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.top-header .header-item:last-child {
  margin-right: 0;
}

/* line 749, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.top-header .header-item i {
  margin-right: 7px;
}

/* line 753, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.top-header .brands {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  top: -2px;
}

/* line 760, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar {
  border-bottom: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  margin: 0;
  height: 70px;
}

/* line 767, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-offset {
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.05);
}

/* line 771, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-brand {
  padding: 0;
  font-size: 35px;
  font-weight: 600;
  color: #555555;
}

/* line 778, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-nav > li > a {
  padding-bottom: 25px;
  padding-top: 25px;
  color: #777777;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}

/* line 786, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-nav > li > a > i {
  font-size: 10px;
  position: relative;
  top: -1px;
  left: 3px;
}

/* line 794, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
}

/* line 803, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #FFFFFF;
}

/* DROPDOWN */
/* line 809, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu {
  background-color: #FFFFFF;
  border: 0;
  border-bottom: 3px solid #16A085;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 0;
  min-width: 260px;
}

/* line 820, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.dropdown-menu > li {
  border-bottom: 1px solid #E5E5E5;
}

/* line 824, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.dropdown-menu > li:last-child {
  border-bottom: 0;
}

/* line 828, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.dropdown-menu > li > a {
  color: #555555;
  font-weight: 400;
  padding: 10px 15px;
  transition: 0.3s ease-in-out 0s;
  background-color: #FFFFFF;
}

/* line 836, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.dropdown-menu > li > a i {
  margin-right: 8px;
}

/* line 840, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.dropdown-menu > li > a:hover {
  background-color: #E5E5E5;
  color: #333333;
  padding-left: 20px;
}

/* WIDE MENU */
/* line 848, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.yamm-content {
  padding: 20px;
}

/* line 852, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.yamm-content h3 {
  margin: 0 0 20px;
}

/* line 856, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.yamm-content p {
  margin: 0;
  line-height: 24px;
}

/* line 861, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.yamm-content img {
  margin-bottom: 20px;
}

/* line 865, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.yamm-content ul li a:hover {
  background-color: transparent;
}

/* NAVBAR SHOPPING CART */
/* line 874, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-nav > li.shopping-cart-toggle > a,
.navbar-default .navbar-nav > li.shopping-cart-toggle.open > a,
.navbar-default .navbar-nav > li.shopping-cart-toggle.open > a:hover,
.navbar-default .navbar-nav > li.shopping-cart-toggle.open > a:focus {
  padding: 16px 0 0;
  background-color: transparent;
}

/* line 882, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-nav > li.search-form-toggle > a,
.navbar-default .navbar-nav > li.search-form-toggle.open > a,
.navbar-default .navbar-nav > li.search-form-toggle.open > a:hover,
.navbar-default .navbar-nav > li.search-form-toggle.open > a:focus {
  padding: 16px 15px 0;
  background-color: transparent;
}

/* line 888, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-nav > li.shopping-cart-toggle > a > i,
.navbar-default .navbar-nav > li.search-form-toggle > a > i {
  font-size: 22px;
  background-color: #F0F0F0;
  color: #AAAAAA;
  padding: 8px;
  border-radius: 4px;
}

/* line 897, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-default .navbar-nav > li.shopping-cart-toggle.open > a > i,
.navbar-default .navbar-nav > li.search-form-toggle.open > a > i {
  border-radius: 4px 4px 0 0;
}

/* line 901, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-counter {
  position: absolute;
  background-color: #C0392B;
  padding: 0 6px 1px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
  border-radius: 4px;
  right: -10px;
  top: 5px;
}

/* line 914, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart,
.navbar-nav > li > .dropdown-menu.navbar-search-form {
  background-color: #F0F0F0;
  padding: 0;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  right: -3px;
  border: 0;
  margin-top: -1px;
  width: 400px;
  font-size: 13px;
  color: #777777;
}

/* line 926, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li {
  padding: 0 0 7px;
}

/* line 930, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li:hover {
  background-color: #F9F9F9;
}

/* line 934, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li:last-child {
  padding: 0 10px;
  background-color: #FFFFFF;
}

/* line 939, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart a.delete {
  position: relative;
  top: 9px;
  left: 10px;
  color: #444;
}

/* line 946, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart a h3 {
  font-size: 13px;
  margin: 12px 0 0;
  color: #777777;
}

/* line 952, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart a:hover h3 {
  text-decoration: underline;
}

/* line 956, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart p {
  margin: 10px 0 0;
}

/* line 960, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart p.price {
  font-weight: bold;
  color: #555555;
  position: relative;
  right: 5px;
}

/* line 967, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li:last-child p.price {
  right: -1px;
  color: #C0392B;
}

/* line 972, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li:last-child .btn {
  margin: 10px 0;
  color: #FFFFFF;
}

/* line 977, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-search-form {
  right: 12px;
  padding: 10px;
  width: 300px;
}

/*------------------------------
	JUMBOTRON
------------------------------*/
/* line 987, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron {
  padding: 0;
  border-bottom: 0;
  margin: 0;
  background-color: transparent;
}

/* line 995, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6,
.jumbotron3 {
  background-color: transparent;
  padding: 0;
}

/* line 1001, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 .item,
.jumbotron3 .item {
  height: 450px;
  background-size: 100%;
  background-repeat: no-repeat;
}

/* line 1009, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 h2,
.jumbotron5 h2,
.jumbotron3 h2 {
  color: #FFFFFF;
  padding: 7px 14px;
  margin: 70px 30px 40px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 40px;
  display: inline-block;
}

/* line 1022, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 h3,
.jumbotron5 h3,
.jumbotron3 h3 {
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  padding: 7px 14px;
  margin: 0 30px 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 40px;
  display: inline-block;
}

/* JUMBOTRON 1 */
/* line 1037, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#jumbotron-slider.hidden-control.owl-theme .owl-controls .owl-buttons div,
#jumbotron-eshop-slider.hidden-control.owl-theme .owl-controls .owl-buttons div {
  opacity: 0;
  background-color: transparent;
  color: #FFFFFF;
  transition-duration: 0s;
  border: 0;
  font-size: 60px;
}

/* line 1047, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#jumbotron-slider.hidden-control.owl-theme .owl-controls .owl-buttons div:hover,
#jumbotron-eshop-slider.hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
  background-color: transparent;
}

/* line 1052, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#jumbotron-slider.owl-carousel .owl-wrapper-outer,
#jumbotron-eshop-slider.owl-carousel .owl-wrapper-outer {
  box-shadow: none;
}

/* JUMBOTRON 2 */
/* line 1058, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron2 {
  padding: 100px 0;
  background-position: center center;
}

/* line 1063, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron2 h2 {
  font-size: 80px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

/* line 1072, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron2 h2 small {
  font-size: 50px;
  color: #FFFFFF;
  font-weight: 300;
  margin: 30px 0 0;
  display: block;
}

/* JUMBOTRON 3 */
/* line 1082, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron3 {
  border-bottom: 0;
}

/* line 1086, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#jumbotron-eshop-slider .owl-pagination {
  position: absolute;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  bottom: 20px;
}

/* line 1105, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron3 h2 {
  font-size: 80px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  margin: 90px 0 40px;
  padding: 20px;
  line-height: 90px;
}

/* line 1115, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron3 #slide-2 h2 {
  font-size: 60px;
  padding: 10px 15px;
}

/* line 1120, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron3 h3 {
  margin: 0 0 20px;
}

/* JUMBOTRON 4 */
/* line 1126, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron4 {
  padding: 150px 0;
  background-position: center center;
}

/* line 1131, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron4 h2 {
  color: #FFFFFF;
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 50px;
}

/* line 1138, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron4 .input-group .form-control {
  height: 80px;
  border: 0;
  font-size: 26px;
  padding: 0 20px;
}

/* line 1145, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron4 .input-group .btn {
  font-size: 26px;
  padding: 20px 13px 19px;
  background-color: #444444;
}

/* line 1153, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron4 .input-group .btn:hover,
.jumbotron4 .input-group .btn:focus,
.jumbotron4 .input-group .btn.active {
  border-color: #333333;
  background-color: #333333;
}

/* JUMBOTRON 5 */
/* JUMBOTRON 6 */
/* line 1170, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-1 {
  background-image: url(data:image/jpeg;base64,%2F9j%2F4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP%2FsABFEdWNreQABAAQAAABQAAD%2F4QMpaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu%2B7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI%2FPiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MCA2MS4xMzQ3NzcsIDIwMTAvMDIvMTItMTc6MzI6MDAgICAgICAgICI%2BIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI%2BIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgV2luZG93cyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMjk0Njc3ODk2QUMxMUU0OTYyNEU2Rjc0Mzg1RjgxMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMjk0Njc3OTk2QUMxMUU0OTYyNEU2Rjc0Mzg1RjgxMSI%2BIDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUyOTQ2Nzc2OTZBQzExRTQ5NjI0RTZGNzQzODVGODExIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUyOTQ2Nzc3OTZBQzExRTQ5NjI0RTZGNzQzODVGODExIi8%2BIDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY%2BIDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8%2B%2F%2B4ADkFkb2JlAGTAAAAAAf%2FbAIQAAgICAgICAgICAgMCAgIDBAMCAgMEBQQEBAQEBQYFBQUFBQUGBgcHCAcHBgkJCgoJCQwMDAwMDAwMDAwMDAwMDAEDAwMFBAUJBgYJDQsJCw0PDg4ODg8PDAwMDAwPDwwMDAwMDA8MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM%2F8AAEQgAsgC8AwERAAIRAQMRAf%2FEAJEAAAMBAQEBAQAAAAAAAAAAAAIDBAEFAAYIAQEBAQEBAQAAAAAAAAAAAAAAAQIDBAcQAAIABAMGAQkGBgIDAQAAAAECABEhAzFBElFxgSIyBBNhkbHB0UJScjOh4bIjUwXxYoKSwnPwNEODFCQRAQEAAwEAAgIDAAIDAAAAAAABETECIVEDQRJhMhNxgbEEFP%2FaAAwDAQACEQMRAD8A%2FJduy9zpEhmxoI%2Bvzm3TzOlYtLYdWA1XARJmHl2R254wjo3TO7cn8RrxjduaAlxG2A1epfmEJuDzdTbzCjyqWIyBwMMCm0oR1pMzHNKePojUAMgY0oxzlSJfQkqVx88TQOz9W3vhNiiKoGdVBLMAozgidO6D3dFsUKudZ8ik0iTv4GUONDtEQeijD0XPl9YhBNWQ8nriBq28C2GSjH7oA7ncPY7e61uQkVGmVKmLesc0DY7%2B1dAVj4T7DgdxjPPco6EbVB%2B5f9Q%2F7V%2FyjH2f1Hz0o82B2pESIywlgI9s%2Bu2eON%2B%2FiXFv%2FkQHMu2YnGv8umJ%2F7X12yS7VXPqXPmPpjnXoD6YKO3JriA0mwqIvO0NKKGf3iCamNTjLHX2c87bPOX2xv%2FP%2BXL%2F6J8DQ8y0zifpY3%2FtA4TmZ4nZHPDq8VBFYD1q0PFUgylWUXmeiS73K2yVU6jm06TjN6xoQO7XJlmLS4DhHO3IPtBO6DmFf8Ji87FkbG4T8uMAaqHS7Okl35iLPchICrgCJ5yrGQUAjuq9pelkUNaZxO%2F60cSX3R5xZ2%2Fe3rBCnnt%2FAT6DG%2Be7B1LrWu%2B7NyjlNDqWBkZYjybY7YnfKo%2F8A5LUpSPzTrPf90Z%2FzY%2FeKmskVUl0HVLEcI6ezTVkpYPMoBpMQzak4k1Fdz6lz5j6YlVq2yZE8q%2FEfVFkFNsKjDStZymakxZ4NY6iSwqTiMotoEiUpVXaPXDN3ln9OfhqSDKPKImc1ZMBEgSJkk1rEaBcupb620k1VZTY8IXzaJrXeu95FRQiMSCMTxMSd%2BiXxBcM7qhWNfFQSO4jAxjOdgHtuqlgQ6ZOKjjs4xLAXazF4D%2BV5j%2BkxediyNBy2q8507FGJ9kawKEbQGCqAJVArGpQk21aZHKThLA%2ByJZAllZOoSnhGbMCbu%2F8Aq3vmT0xnv%2BtHFVWchUUsWyAr5o4YyHm3as%2FWOtx%2F4UOHzN7IuJNq6fY9zca1eUKiopXSqqJCc578M47fX1mVD9Nvq0mfwz5fNGvNjcDMGW6ANFS5cAdSSSKr6xFnoodFV2IE2LTrlM5CNWSUeInOZJnjWM5HpTZPmEWDYl2MwIM5HKsIGJIuJrWdCPPWNc%2BjnX%2B5dWa3bHhlCedurhsjn11i%2BDnNMmcyxapJrHMM7aXj29%2BHCLzsJ1UHklEBo7qdSHSTTDGLLgX9mEu3SfDKsqsJp01EsMsY6cSdUWqoQyUSpVs41rQ2QodmERXgOZvl9Yh%2BEelSURXp104rmpqDFyhN%2Bxabtb5Zbmmh0pU0M6Q6k%2FWj51r5lotKLKHqAxb5mxMeb9vgIMhQZxmjp%2Ft3Rf3p%2FlHb6tUdDKNjWklbhlsUVJ9kax8gPGYsun8sTBAX1nExM%2FA6LMdTT5hM09kayAFaLjjpOPqnDA0dSeVhOJBhnlWsW7AsyoSGPN8K%2Bs5Q8gBLrNdT3RqA0jZPOJLQlz4tLo1ywOBG4xM52Jm7dhM2ucDL3hwzjN5%2BAjtvr295pwic7ClVmYBQWJFABOMi232wUDxmmf01OG8%2ByNzn5F1l2DhVkiyaSrhgY1KHFpjmmxyOf%2FN8al%2BRgrVTqUUJzhgb8Y%2Fl9eUSDAZiY4nZDAWzovSA7HH4fvhnAA3bnh3TrIPLUUlXKGRz7tu1eq40XDXxVGO8UBjF5lHPu9tcs8x57eAuLUcdnGOPXFgs%2Fb%2Bi%2FvT%2FACjp9Wr%2FANC%2BspyptjeRLWda7YKICq1zE4qOs3U0tp9MWgZVB2QUdolmBI1Sz2cY3z6hN5nVmCr4akmoz4xnrYmjKmWvqW%2FmHpizaF7YyN%2ByKH9uguXA72w7AfVw%2FjGuZmhbL4ZKqnhKcAMxvziaC4gZa%2BoJ4SafmMJsUwVnTMih80VDUE0c6AxIpOk5bY3PRFcd2MmGmXuylKOdtC4K0%2FSunZp9MESyngZgUPpiDysQTpmJ5eo7YZVfYsi3YusO2AdyDoBlPhljG5ziaRL417XL%2BnwpU3SiehhRGqD4bbPdPsieBLIyuocSMxLYR5DnEswOo02dwMQT%2FGN4GcqyHURDQ9qYslTiBISkJ%2BSEoyUic1NSDnwhaFtaBqlDmpw4GJiAEBW6gYFTqFDvhNhaqzEhRPbEkFC2lXE62y2ffFxgMrqBmABhKNc%2B0SK5AlipxU4RiUFpVukyPwN6jDA20CLsiJEBqHcYTYeBqAM5LiScIsg2YGAmcJxdBbklblSeUEk4GohdBIfAMNajI4jcYzke0A9B1fynH74Y%2BAJpauzGGmY4wn5CVtF%2BboQ%2B83q2wkDl0J0CZ%2FUbHhshnGgQJ8N64ss%2FthND2tpY8c%2FPjDNAQU%2B1NWQsVW2SOvA7pxYh7nWzhWDBTzKpw3xroDMzEsDjGRgoyb5SnlxiwFEuxkxnljBTbcwyAyA90H1RvmVC9avq0MrICZ6cBvEZowEHCIrRiKRedoijA9SAqsPpYq7KOUyDY%2Fwjpz%2FIKZIDkhlyIwn5BEoypmDhlEAPQXBtA88xD8CeIrQCSAtTlLGIiu20rd3W1suJYyPnjpNCZ9c%2Bec8jlwMYv8gIKMfSf5l9cJpAZRBjXVXoXWw944cB7YugmZZwzkkkjm9UNg7hIv3nDEEO0mB8plC7Dk7nK7j%2BoPWIuc7Fa8xUqQyk4ioiyDZGpNAMSYY9HgQDNRM%2FEfZC3Gh5RzqTUzFYS%2BjgB2R5qxUz6h6I4y4F9rvUPLdGg%2FqLgd49kbnedi5Dq0kcysDIis46czFEhkilrjBF2nE7hiY5iZ%2B5NfAGmnWZat42RL18BfbtO4Sxm2h%2BbM8pic7Dkd7cijaScsiPKI1nArTuEaQaVtpf0njlGvKHODouZ0mPOIYEpkom7adijqPD2xMfIW14mapyKcRmd5hkFZlouy2L6YT8gwxFJTBxU4QzRulW6TI%2FA3qMXGRoVvDuDSQQyzHnhJcDPDbCY1S%2BnPm80TFEZmJgzDYEYUgrRMMo8o9kQFdkLl0zoHMvPFu0ABkBMtgMYB1m6lm%2FbFy7oZmC%2BGtcac2yEs5vtFS91Zv3XRLmplJGhqGh93bF%2FadXwNnBRr1LvEJtHzrVNJy2xxBaCSFVSxagGJgOn2VtrVxS9zTMS8EV%2FuyjtxMX0I7jtrpY3AxujEn3gN3sjPXN%2FwCRCc5gCOYb28i5nkjS%2FtMa42GZb40olVidKqGIxMXaKe1v2wb1oXyX0z5RMCsqHbWLz1PZkJe3cXU4Otc7g9cTACpltOUQOsjkvbl9MWfkFBRKrOZKJ7TlxhjKKSdHbupussyACBh5BG9TY5%2FgtOetdH6s6e2MYHvE5QtwC4vunMbj7YZBLa1svhHxASKGjCuyGM6GdwFs3LjXnFtZkqoqzVOA9sTq42Obd7xiCtgeEppq948cuEcuvs%2BAixXuLH%2BxfxCMTcUD0u3NodvTC7F%2Fb%2FuN23y3h4yCmqfMOOfGOnP2X8o7Xa3bV7SbLBgKkGjDeI7c39tDnr2zqT4v5Ynhix3CMfr8h4CrS2ujInM7zGp%2FAZZpcQ7DDnYpBwOBiqnu2Ld6YYaW%2FUXHiIWSomt9neW7STrpaTDCqkDyxnnm5CLly1Zn4jan%2FRQ1HkJwES9Tnaufd7m5dGmYS3P6a4cdvGOXXdqHft%2F1bv8ArP4lh9e1dYEqZgkGO6MZEczP5bfEBTiPZDwMt2LgW7JZg6ZEHHdFkoMWgCNZmfhGHEwx8hsjSRkowUQyFdx9BvnX1w%2FA50hLyyjKiUMxCqJk5D7YqHW%2FDtOhc63BFENAZ5n2RYJ%2B87e3e7i66OUuaiGVzymVKHKOffH7Xwcq7buWmCXEKMNvpnHGyzYLtzO%2FY%2F2J6RCX2AbpncuZczemHWx63auXm02kLHYMt8JzbfFdzsewWzcS7cctdHSq0UT2nOPR9f1%2Frc3aGl7dxjoJRielj6DF2MIIMiJEQDLP1U3wmw8ec7YqvV2UzOUJMoEXLYL4tNGmRy4AmLLIOE%2FZzme3YuP0mo3DIxwv1%2FAgM1YgjSRQqaGeyOQu7Azu3P8AWfxLHT69jqR2BBSRM8q%2FEfVDApstbVLoAZhQkkynlwjXNmAWmQ5ebyQwMocDviKT3H0Grgy188QQVxnX%2FnqiINnJGlRpT4V9ZxMXIEdSzEsIQFc0%2BLd2FjIcYXYCYZfDcC5b%2BFsBuOUS69C7XZKe4tNZuAAOpKOZGhnQ5xmfX74Gr%2B1%2Fmub7grqJCJnXM5Q%2Fy99HSS2ttQiIEQYBc98dNaDF6llthNjkYk7Z0jMUy3dYDSw1qMActxyi5RX2%2Bh7qlGwMyrY%2FfFk98DGdUJE9ZGQwHGFxBOzs8tRoMFyES3IwS5p4aW%2FCYTYkpKuOXsiK11S8JXgGlQXMGHHPjDqS7RvadmUe663FZPDpOhqQajhE4%2Bv3Yr5V%2FnbacBwzjXgEksZsZmFDrMpPOUpD0xYHRFex6sc2GMaz8oC7b1WXGtVAYGZpQQs8EErOGptXx00%2BbGM4V5kZRqnqQU1qafdEwgBMspzBE4oK7I3Lpz1N6YXYGR06ywRRi5oBEC7fe20v2hat%2BKS4BuPTEy5QPXGZ9kz4O0xUszHkmcR647XFGEFQJ5jEVjNgJOpd4hBx6cwO2rRkMW2783SvxNn7YsgrsaLdxSizNZu2PADCNc3FAko5JI0MdlR90TygCCspiU8DkYlHger5G%2FCYQSGUt%2BdYitYraGu6%2BhTWXvNuELZNoLtO8VnuW0sDQUnqarGRArlKsTn7M3QqkjdPK3wnDgY3jIEgihEjEDrPS9ZdPpjXIdEVNf7q124lcabnC0vVx2ROupztE9nvjes9wGsrpDLIVNDPE7aQ5%2Bz9pfAM7PVJv9X3w8wBDMhmpkRj%2FCEDrYtXXSY8JiR04HhlF2Ed53Fqxfuqi%2BLd1GcxJVJrxjn33JRyrt25ebU7ajkMhuGUcbbR6x9azP41pxEOdxX1Zxj1VHqicjKcJcA7YBYTmpBnLEGNTYhKW0Y%2F%2BQgmpEhjszjHkGEljMmZgDt9a8Ys2FxFEGK0FRmpwhLhDba23L1NvlaYxEiJUiySjjXO9Vadutc7zD8Iyjjfs%2BBAzMzFmJZiasamOVyK%2Bw%2Bq%2FwAh9Ijf17HWjuog5A0kal2HLcYZQ5TaSzeulyFQAsJTI9samJLRx%2B4%2FcrjzWyPCT4vePHKOHX2%2FA5kyaznPOOSuj2X0u53p%2FlHb69VFMl1Y8sbDltEgFuRNrY8BFwHIVtsCiyrVzUmLn4B9129ruGbxU5hPS60YSwrnxh1J1scW%2FwBheszKfnWwJllFRvEcL9dnoksfWtfOteIjHG4r6snhOcpx67tGFtNX5RkMSeEMY2Bt3T4iBBpUtI5kzOcJfRr6XmXFT7wFeO2G9hLW2Wo5l2j1iJYPW%2Btf%2BZQ52FjLacoyPMy26XGkfgHV90XWwPb9zcbuFVVCIVbkFSZKSJkxOevRt%2FsbN8lh%2BVcJ6wKHePZDriUca%2F216xPWs0nIXBVTxjh1zeQzsPqv8h9Ii%2FXtXXAJMgJk4CO6MZkt0Y6mHuL6zDQXd7q6vbXypCgFQokJAEyMTrqzmjkzs3uqVi4cGXoO8ZcI4%2BX%2BAt7T25axQ9LCoO4iM%2FrjYs7L6Xcb0%2Fyjr9WqKZUwM5YxsVEkmZMzFGriN8FWNVm%2BY%2BmLUDXIkboKSezsXbqXGQhwwOpKTlthOJblDLtwo7Kq6SPeNTwi9CXOcZDLX1LfzD0xZsUSJzp5IitzpFzgbaRWuAlZETquB3jKNT2o5N6%2Byl0RDZ0kiZ6j7OEc71jyCIzauZjmK%2BzaV9ae634TGudjrxtWSnMTocVyO8RchNvs%2B3Rrt1UYNp6Fw4T3QnE9uESteYgoORTioz3mJkJrsnlhEUN8H%2F5e4nSqemM9%2FwBaORHnDrd10EgZo3VbaqneI3LhHa7G1Zftr1wWLi6mEwDMGXwkjCsd%2FrkxkNmspaF07M%2FPjONZGyVugyPwH1GGMgZEMARIzqDGRaxmzSB6iPtjVnow6QBr4LT05RcYBLPUsqVGEMiQu2pg3OszQ%2BqM5HtIboNfgOP3wwPW%2Fq26S5h6Ys2KRsAgr0gvVIkVAHti4wglJ1CRlXIRZfQm4guLK6PE%2FmwI3GM%2BUQXOzdDqtfmoMsGHDOMXj4Adqf8A9KHJVaf9picbHVxwBMdMZGnQDI8zfZu8sXQIFpNWVKypmIZCbltLnWObK4MfvibEj2Xt831FFWI9YiWCW9Xte43p6Yx1%2FWq51nt73cNptKW%2BJsAN5jjzzetDtWP2%2BzZ5rkrzrX%2BQcM%2BMd%2BfrkRdcZxaMmI5hKWWMdM%2BCfxDKchr%2FAFJV9kTICIKLOp2UFdaAipy3GLz7RRcJVjpWQJqRnPGNdBUlqJDyiMq1AdabNVBsiolbqbeYyBiCrt9TupZdag0c4jjnG%2BfaGvMGWmQnl6zFoCMKJSQyyrMxrnaBykaxlXjQExYNtojOLj2xrKkajQ7OMakR5ix5Sslxll98SgaETAnsiDVmA86nTjhnAYKqJjEQV6gOwnMQiDNi09q4HsqdUiVnKeyeEo1%2BuYFyVALenQFHSBICfkiA4yoLn0jlzD1xfwiXKMihbSirHUdgw88angbMyAyGA2RQRJVnI2mfliZAyFABpagnl90Xyj1QybdQ4wgl0s7sFGdTsjOMhq21FTzn7B7YuMByVZSRnKXkiyiNXZCSpxoRtjMtgoW4rYyRthwPGKGAHUuRPTOLzsD7szJQMScAYgmfuRVbQmTQOfUPbDOAuyzN3ALkliGmT8piSi6cgBiNmUXI2QPTyy90%2BoxcAc32aajjADqCgNcOlTmc922GBNc7msrYKjNj1fdEyN7Ukm8ZmoWZ4xIquZoCupRhPLdGso8QTIrXaucMALn0jLJl9BifgT6H06tJltiYuBXFV6CNbqbeYKGQxP2wBo2l1BaQY9J9QjU8R5zqZiGBANQsKAG%2BcYUS9S7xFm0QxkegK%2B31q6hm0g4IceAyjpxmCW%2BtwsWY60E5EYDhlGesiUVmBnlGQ%2Ft5eOvytL%2B0xYLsYqvSwzJP2wBB5JcU3Fmq0LVlvjecflHMcXJlrnMDg%2BI4Rzv8hUstu3yRFWdpL86VRJYsFcAJmZSE5mkWRDDdW3aZrtxFqBM1kdhMbtknoXPl16uXq8SfLt6ox%2FI4tj9ydZL3ANwfqCjDftjjz9t%2FKuxaupeAa0wuLnLEHYRlHae6Q1xJmLSVSTMmLgIa7kn9x9QiZ%2BAtSTcUmpLCZMSbGEkOSDIgmogGrdHviW11x4iL%2BwekyykCak0YVEWQSBDi3INpiY%2BRusLS2JHNzjw2RM%2FA2z9ZKzrCbD1wBnWWMXIS9hXPL%2BWcZ%2B6Tuh5QqzauJeWak0bmFR0mVYSCokL1HTLBc%2FNDGNhLXWNF5R9vnhkJboufKPxCJAlGZcDynqBqDvBhnAP8tzyflscVPSdxy4wxBR2y3F8aamZAl5a%2FbFkFMpdXBRjFwNmZSFBsHrhkc79y%2FwCn%2FwCxfQ0c%2Fs%2FqrgTOnRM6MdM6b5Rwz%2BEDGVX%2FALb%2FANy19TH3PX5NsdPq%2FsO73P1Pe44cI9HW0IiK1epPmEJuI83U28wVkBR231Pe%2Fpw4xrjaAv8A1W6sfe9XkidbCoimWfq298JtFEFeiwNtYv1YZYfxjXCOe%2FW3Vj72PGOf5GRVC%2FRc%2BUfiEPlE7dRwiDy4HcccMoDqdn9B%2Bvjh%2FTHTjQ0Yf8nhnGaNiK5%2F7j%2F1D%2FtH%2BUZ%2BzSPnso8yv%2F%2FZ);
  background-position: right -280px;
}

/* line 1175, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-2 {
  background-position: right -180px;
  background-color: rgba(0, 0, 0, 0.1);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAx4AAAMeCAMAAACk5CIMAAAA7VBMVEVEQ0lGRUtFREpHRkxJSE5IR01KSU9NTFJPTlRMS1FQT1VOTVNLSlBTUlhWVVtSUVdaWV9XVlxRUFZUU1lZWF5bWmBVVFpeXWNhYGZYV11dXGJgX2VfXmRkY2liYWdcW2FlZGpnZmxmZWtranBoZ21jYmhsa3FpaG51dHpvbnRwb3VtbHJzcnhubXN8e4FqaW9xcHZ0c3l4d31%2FfoR2dXt3dnx5eH5ycXd9fIKCgYeAf4WBgIZ7eoCDgoiOjZN6eX%2BEg4mMi5GKiY%2BIh42HhoyioaeYl52JiI6SkZePjpSVlJqGhYuRkJZ%2BfYO6ub8i7ObfAAAiYElEQVR4Xu3d1ZYkR9Ku4S8QkpmzmKsRxDQzP9O%2B%2F8vZa0kzUvcos5IC3D3e50RHrZWVGeFgbuamGgqUB0z1D6EMlepgSKY6HTwVzlf5sFCucK3fAbx7zcezln7nhTocYlkllNMGyo0%2FvwhkNPjKV%2BfTz9oTPNUMX93Nv12rrjD5j1i%2BtsMr1RTixI%2BkaMH2pSL4TgaL6hNK9hSrSAAAn8wRF12qWASaEOkLUxkLYI6bylrBUrbwF9oCZJayWo181Vyi2uj7qhuQYNVOSpqRot3fI8mC1KyMbHrtvaNjmIj%2BQ5ZCT8WYq1hNWcOfyBbdcv8t7wqiRLZ4eK%2FjfaU8NWSujEPoHMWCqQ%2Fq3TFhtUiWAwAAyGQL%2F7FNVHcLwEu0FUCe9UyAYtlhXPvcQVBQQi4HsLQh2wJMMF3rVksR5Rq5ApJ%2BKIBZs1oAKb3g3Lpt%2BNIdwFDVY%2B2JlbYAOOgKjBulEnIJLP0GETi9IAFoyPb1e1kCaKjOQMPLlgwEMJyMuKDhH9gr9lqOhQAAv6ucLB4JiW8GhGdnpcctA68%2BOx6grYK8v9Q2ALJA%2F2Sg3wAY0QUCsDf2BXyakae0BeC%2FkiHGcg9utAcw%2B5C3gJFv6PbcrW5nYJAZaIf2pWJ97lq%2FAVjkeMWdhwMAAAAk%2BgEAOvoHoK%2FPgPIveLWKSqOVqHaA1OyNdygAO%2FJ9WIePMtUIXssm7GGzrqyEAflgxbudxdoIwDBRPTHgRrITECyiQhuaL2Ut4Pr5fr97AhdLHeNB9qKpEC4sjgOBlwakS5PgjYguPOC0QLEqxl8AeFV3NAQAtIMjdxLh8YM7grZsgOZUOVsQ3dyptVYhgOTKhWxf4gXwZCYgq7okscF59BbAeN3URgDuv57KURRJoqfTtOOGHAV2zg2Hj5ZB3fiEzSqZhwDtPMFhBxMEjM%2FwBvCJOlMCt7DsgcBsoc0AGtzH7wIVD4%2BfZIDAI0oG8xbozWmgrQCEhUa4AA6TU85vQMnHNrE8WQc4W3C2sAUwZw1SMAAA4ahwqG0AeK8FDi%2BO0KV1uiR1VST%2FTCAJ1vC4wEQgpENoLhcAGGgT1RvzIeljmGgLhDSgI9PKIrhtNjltK2QRdC3rwctaPbkP6FNpvw2nFmiMBKCi0CjOnrl1ZwvA62mToQCosTFM9VpfAtC2bZUEAACAhazRFACwWT4IEKRCjgGoqRwCL1SNtJqqBMA1Gu1xDonzHdUEXbc8d4MyABl3QJjKBQ2VZqjagBe4OBVR9gCgI4C%2Ba0UDwv0fSBISAFykMhnw1C%2B342eTfoc2QRhrNwxjbQQg%2BHasjQA83ct6mKkI8N4pL0DQd%2Bv43eca%2Fhd4jSp6Ao7s7Yiz7st6QFSfNlYgAYpGPUB7xxJ%2B0fG1CYDwhdoQulMAb7XZmOZB%2BUHKT7iXq4VyBnjSk29%2FqP%2FV8LsflTMgkH5MjKha8k6o0%2Bg%2FJavHq2uVjdJrbrZqmL9i63YU3D4N5CzAOynQ3L2Tw1YyCUaySqY0ZQkBom8HLAE9AUT5pUiwPTsHob4EAAAAIJB%2F0vEjYnd3zvRrebfQZuCgEvGMRBo7AAxkc%2FfGHc4fAAAIaFJjCnjWLB8BtF0tHlt4eVyzAEBqW78wBWi2DAAgHAGsOzrZ5JYqqByhZ8yt5J1RT0YBWs3IkJVOMtE%2FAEmg6vlZ08CsP3Ik4RtxXufdCoqUk8zc9jmxamf4b21Z4TtVBeH1TDU1dGDIgV%2FsNPOv38hU1AMvVaCoLnuSaSIXIXBzrP%2Fw9Vz%2FJDN2HOipJEAzkbr%2F9Ve5BYjzKZD6KpPaZXfTRFM2wGtJmghA3qv5e%2BUMwYUMgtik%2BnbO%2FzNPpULQV61NVEOEZwGAARVhQf%2BPrk6CfiqrYaBjgZ6HpALebo34AIxg3yt%2FDVUN%2BCaPxziRJC0EUIy5EXDGqXctw1dBT%2FZirO3rJWudCGk9YvoAQDMXzM8DvcS7kG3Q0fH8RL9DeN7US7JAReIwvJFLTjVAosNS5YmHmQwAhA5%2BJlCx46X1K%2FdvESLYE25e%2FvEvtIfArgOm1UqbAZTiDC5Y%2FroBSVtbAAj6EfMgsDE1rD8bN7QRWF8hnBhRhwoAXC%2B8ULXAKgvcFQLSycEaBR%2FPZQQgtLiAuEGFgMmagaznXbN%2Bpv1xIc7PmUC2YL%2BCcK49YfbftjzyzKaMaUxSLRkHPKdDLlYsNHSBdVubgbAWWoHVk07Drk8MIGN3fxB0lI9EzgE%2BCfm%2B5QHJVcbASMbw4499hW9kFX7TlrypyhAVvm9vtVW5rrb420Mg6wS%2BTJM0%2BipPcCZnZE2Dz2i%2FvpImLDHt4l08cpJZmuWwzcGkVeZNvSy2MMT5nfIA%2BIZNqO1z2aCr38QZ6XsnQGDQZnAihwHRSVm4sSoAznHeyAw3OtEk0H6A8PSFMQC%2FqRxRD4VxTFWkTZCqPPffDnU49FSVvoqElf7w7imQtbx2dU9xpKN5lkyR8D0K2Q8w158BuDM20Ye9vp8I%2Byw42IOG4%2BW5gAN2As0adcqd3b0xrcgEscyAwb12ykodo2jhncy6Olxg9vqs%2Fft%2Fd7kyqux5IA1kEHYsw9tMleurGMtMO%2FyyMqyrQYfzwV0wzGltMLKpz0aLGr%2B9sM25XWq3tpHby0UoEG2qnldNlAvgYAXAzJaXN1O%2BxlNPtQBvZsSeM5VFbpbaCJxfojVZylBY1OPaj8zkNrBvm%2FoNxqFKw6XrnhVnB3dtFQ4gTgZyCIBmueeIj9Nq7jLk1wNRK5pdg3Xbq%2FyvLxmqFPCL7HiKe6uTStnWB4wN%2B%2BADjlIdJcj37wPGeklzyNhcJvh2FtYlK%2B2BMobBrC2j4Ommp6OcK1fwhs%2Bz66bMgnfF1s1OGvJVF3Mdbf5uMJkuElmD2P%2BtThc%2BNlSygSw0%2FZeZhvHBtaToSM5fbMamcP52HgxWi4MyiNCp6of0U5UI7V6vu0fZJRC2yj4pBLq2bIZGoeF50UCmfEUCeI3qtCAaqUBpRLAjL%2BHYpZT3dqr6wlxV88gwqmihCKSFTrFgVYU4lIkAjGUKwKvLdH2hogHc34BJX6VDXMDLCJybUtvaqyrGcpnJaMTCACyNXdt7Aqxs6O77khaF36%2B%2BPjlUlakcAO5LC0qvZC80OvqzB7cuZ%2BYKa6QWbP09yvkAUILqrpZOc3GlzQCkU1UC6JiXjxrYdj4EtuB91dwws%2BH1APyGa5k0kbYBmjfKAQBMVQlc57OX9%2BQeUGTasqGyNRFK6RGPjpubxV4Ojw8QlVl4faWy%2FDtVZVWh6nkhszVMakwApHtNH4zDPdUQzQaetVFDVmkL8AQAQMmthjM5KuaEGlU%2B6g1Z50yOwEwn%2BEE58C6jWt5YizTQTliFckcg11yoIFHf7BVzIElJ2%2FTT4T4Bv6rAe1RZ4uiorU1HgPWpPSt3A3Rg3vap7twJUV1ngb4AIh5AWcMyWi3tJ4ploqtUrsDE1TxpzHU4YPVN%2FkvYAauSaqH3kE9wLg6Ui8nd4Fy%2F6uYbiQFxuSC31iuP1TUOaT67k0OcHf8MBCoLLmc6yk0VAb7L8rdeqUB676GCs6LGy0hbeMdk%2BH6SXW6HST1PEsJYkl6rKqPdVT%2FnxbZ9fr6qQ11WaNohGmmgXqo8%2FK3YVpHN5LSuUtOZHMf9iUMV5tLxNPBYBWmSO2Xx3AugEXM72aG8YXmzYEALfoyEP%2B%2BEgLH20bElx%2BhOOzxK3agtxwGpjrA%2Bj0K5hHqR955Ohmup4WAACF9vfKvCvGJp0TK3asW2A%2FVBwOV9jS9tAjK95D9fyXQfUjoWbAHuvBn%2FEsp9cVegPxuA0lc8mKpyQEN1QiLDk%2FYwDk3JZOm4E%2B69lTrmpLDAa2lvYCJC7OjxGMgpijLZLVEdnUcqUHOliqAfyG1pqMLdJFY2kmRhS1Oy20guuAw5AjjV97%2BcqWiXeklsWrpgGJVzv4Ens6H38Pb55komQqpqIVUzPnvSFuASedzV7z6WoafdgL46H%2FSSdaCj%2BBfRznhKV%2FYbywwYFdAMJzwbqcboihd1VTgAiBxM0vQ4ncsJiRnDQsoLJsXt%2B%2BmzhnYlNyP%2BpSfc6FeNtk4XKOxz5Fh15HSUR9S89yYYr1%2FXsHNEhxbmxtdK9SXJq%2FQM96Ij71uVoOMTc%2FpMkMh8ZIFfjxTKAO9dW1v09bKhzIdwIE9G6ahMQXxezcL5VjBvqRBXvRdcGnYDUfST9gC8qm7z3FQugloNhu3mzu8bYQlxoescPh4Z4d2cA%2Fd3b5fLqXKE7p2Kg7DcrqOTm7F2Gg5sSvcMq2oVmEhScN2bW5wXmwgnpOvwKaOiNtmR2ZFsmhYj2zrJgF6ciM3IO225EF2fRpalkWBqeAvmz3vAxkaP%2FkGhzxfTFtgOAywhgNf3MtfPclzH7AJPdAoJO2YtYlnHY1Zm4zDbGoELKy%2Bm4hbDiQxAF87z3PvnBeW%2FWYGO1LjVF%2BBn2gzjSPKJnXHfG6R75Q%2FsWliHeiRXGfPlM1Z0bAgkfvyrchLV5rnGINEfvOPi8bc2VCB3PvKwHgDeupIfPFAJYhkte6%2BT4VqFWutIF6Y82Kn2kAUmbBs73qE50Ekk0BZz8%2B0KhHRuzrVJZvemhjJp%2FKjPgeD1lYlTWUqDiZfBM3SCO7ezdwZYRC90tJ7cxqoUrUyHu9QubeXpodw50bMp2AH4phVx%2FM9ToE0iT3ZCNzz9an3PiOe8acBmpiGD%2BblOnfCPruuM3%2BhzCOr%2BETCvbM85Nvaka6C8AV1zisOTuj31lIQP7cozmNcudxytuv488Ds6GVu1VqzCrGS415KkZdnH9547m2PcufMzeTpZt1%2BnmROXMlNP%2F5CYtEZNg6Q%2Bmw54bZkp1dGudLD%2B%2FpHTOJNnUVJtUFq4G8jOpO5KhUHaszcfgEIAX2ouA%2B2lcUDkuxkI5exa8e60b9vnOSgefDNPfKKfBGaeyuMb4yTXpzw6oAQoGr%2FQ%2F7Aru1yoxPwrYnC%2BrPVgzJDEFeSxtclPGBxfr%2BHkCIy5J8NNy8tgOZtYMRLFKhzYtTfdnWJ7PS4IKQUvX9uFtXCm0vUEo247w9KKXh08HRyrzPUZ8J5GTZ2sX8xTOlJp0jepTeVruKjx4cjgnX419wcFL8Gbts6dIDafaiFJwUpOetNw%2Fv72SChsrIz01YbckIH21yptbxF35Bp4Rs%2F3viY6Rl%2FVadc5DoIzFYT7ZLsF54DhKigrMS%2B17QY3ICk2OY3EyUWjkqVvZmfBBRp7X5cIz9GnEP7eAZtBoAP7%2BGdHRAPRCAKVAGP7N7IjC1cXf9FpnozpuEaEsBmaFhcMqg1z%2BpWnj%2FyPDEe7R4BSEwAAglwisf1Y1brWBu9MKPwGvpeJhnTMNAEAoFPYsXijRfJwRaF5DiyDun%2FBjb3rljHIO6eQeDjjHHh%2BAPjGV0pfyAZIG3ms7Ym4RtxeCOqNj5%2FDuoW9HvCqSEpkHRH8LBw8VeK81K06bkot5sn0hbb0JlB9JdquNy%2F5Ye7LSL2stsUDQ%2FtLHjifyLSf5EIHwXKivKBd3ZZqRl8HE6d0ogFTz9l9pCcEH7Ub3%2BZoy1%2B4FoJIhfjpXFW7eohlEE7jpnLVUrulLf0hiivfv339N1%2FFQlD9pOuZWIQ18AzNBED%2FlOOIzIlMx%2FjY7OeGLIBGaMSj2K5DBRC3HxFey2SEqKsvTLTTtV40MypORo1Av19k7d1AFUjKW71%2Fpw1Cw6OIQX6vV%2BR6scE6EIp4E7%2FV7xJPGyQFTQdxiV1rpzlvfO5VO7T%2F%2BIsKFh%2F%2FVjXYzbMpPOIB6Cg3C%2BVkpsK9UbFAA4SBtnpqlLu%2FCFolzXAd2Qa3foPkuV%2F9P9XSxUoHwFKFWDe1VSupKshJBepg1dL%2B4BtzmuD7VCz%2BbrnUH0JfJcLqkI36XAf4SnUCAmpXh0zxPTmndchCBwgL6rcJ9lLASpYZXOtoSC3Mu2xVmL4VyCrp3dOVijU6%2BLdfqHRpjTIPgkL%2BTUsOSru3jz8uVDmEps1ANCyOGlKw%2Bu5KJ8Mr954hZFIy1OkQd1PZJGwQg9mt3Xl6peKNAtklemkJ3ti47r46fAuTyjJJ3c73u%2F1SBo1MLoklSQ%2F6uzti8kXo1ah3y6Wjj0Aqz%2FQSr1imw%2FuKijVYT0%2B0p0D26Qz0z7oUP5lgsO1tovMKMKnFsjgu4BtKdYyBqpPZWI4EDPTmnEDIn4SJKtE1uulb4G%2BIhLjt%2Fm7ZUk0QFRzQlPolqafPtaTBbKycoHEms10P9Tnfjtiar5KMXL5AuKX8BHLSrKHixc5%2F1%2FA92eun%2F1Oh7pSrYWkb00woY4fcNCZtu99XGXwnyi%2BGxodnO4mM13mvl3VTY0o9024Ze%2BC2zNfyVKWhHOMdsxlMM1lqmWO2cevuqPhuS84KY0GXP%2BR1IbW5qYCDOK%2BNdCZnRcoNJx7PyltSeIw0NPx8KAq1ETjXQnSbCkaleiEoqq2%2Fd%2BhgElqQYwAmPoZbDj8wVZ14NSqMRLOi5jmVh37PprSjrE7DkkHb16Hm2sk3Z%2F3iG9qZNZp2VE%2Bs8YKXD2Q8eh6B7eK2AzMgqTzr4%2BKIcXrg2bU%2FJ8xGm5DpkZ%2B2d%2Fe4nmcy089nygeQtnSE%2Fr%2B8nr1Vqfwjx2%2FMVTKcld22pE2UxPjvEXHuQZPM4LcriItaRYP5NMjjOQILyIURcdpQG80cfcLPBVqN7ZARIyw3oIBRXRLq0KzvMWZkXlKUX6OJkZkII1UKAENjR2Cf7mwLssDAP7fNgMr7hVP2pnEgpzSmTfsOaQKVDmFXRfH6ptb%2FxV%2BvG8oPklUp02EyNDmw6csR7fvx7j%2BUIjIqkqPzA3YlXSKxebjUYVqOXz8y78tY68eKgh4Rez7iHuBXhpOX3LDwDmqZTDSLdZTQvV1WQw5By%2BKbGeM9JmxWC6Rrfy%2FTtUpv%2FzyjFVOeX71vyf66737O08y46SDQvq7Zbn8B0SHjTT%2BWo7DwVLyVdnqWdeLxjQ6DhcyGcTEFcwBi5cvLVDCA3ZkfyA3w%2FyktCaRx0oMZMxkNYPfz8a%2FU0RpTjX2d1joTITDvnLnzkWWiKbJvVqq5d9oMRFbGHVkk8wQAktSypTbEO%2FEfgD58DbsWJKnM4imWhYb%2BXo8fFjbECrhEckj%2FBfvicTzscerOYgWMITySCLMavUHEgsF1IwtGXuw3TGFS%2BLcdyxqYqjIp2yEzAecjHaYRKR99IgCHWFqea5deVLCv%2BVR2guBk3M%2BpNclTEStbL%2B8lM%2F2J2Lan2ls4C9qqq7ZeBPSVqFoEipDW4Ui%2FZV4zgbv308of9LGNIZBzSsdfcu9GzCvxtZ9orXwkJNnl3yTzjnBw1W%2Be70pRZ1b0tOjRC650D8tisucvEu3CSD%2FQ3mYu7cc4NvS0liEWOWfnO9YfJygzHkJ7VRDgA4cwHUuSEAC%2FkKSbhq2dfZcrTyj8FyexsucpPyuVpNmVZYCE0nJLFrCRO%2BO9r6JFylO45S9oDJWfOCmxmskz69R25Mo4%2BEMeC8RUW0WyyOx6oJz4Zwr69AGzPYwxUiGQKe1yxrdPRJuk0ebbazfqzqJadUakZVBWSlDuXmcy3LJ2V0O1DFjhd1WGxVQ5ail36dcX2m1d4oAccLlmzr87ActOfOxQ4KsA%2F7rvRBzrIFjLLUEuj6Un6VZfii4tyMfo7LtvQbPC32phfUV451614jeLDbOM5RDM4mK29j3bYjwhmb%2Bnwjfa303markBIs53dsG8zDOpf%2B%2FxlDjQ5HqgggF0N%2FKO3qzcVHFuO2iVVxjBvV3MApeqInrk%2B5KU1LBSECspk%2FtiGey9Kga0qkyV8%2F5p5fGzn2soGyD7OWWWtxneaCM%2Fn1bcV%2FnHOeJJtSnqgcDs8aBMR%2FI4bqcbvHFSM%2Buw3F9QBY2ejJeVXtwFfLK4ohG%2BcWtmdtUEXj0u7jsAuKjs0lOZniTp%2BvM%2BBuSvYSgL9JWf%2F1Mu8Hbok4afm8SQZfFP7iSCR%2B6EMBF79jx42R7FjqzLFypNsNKXvuq6UR5yob%2FzhrmPlGG1c6Gf%2B9A7oJ6uIPAtPyruZSoGfX%2FQlEH840bbLgHP0sV1iRuCfKyez49ogWms8qyKmCnIYWxb9Rb0tAmhdl9JnbtYBIotCzxgbEAyDL85OzHW4I8NVWqmYryanfazhWvt9PaYNJ95Dbv9JtLiL0mlearh5bOOEE7kJP%2BTrNEveO1G14uZpOY5eclf4vTuldy31Of8DTkF8TTbHXL3atcyCw%2BvVKTF28yenc9doJeg625J1kQbrH8oNv3e12wua0xsKEwIyutWhnXRFb6v15Ve2Z4IxmaG4exfHj1jj0DCsmravqtlhH2mimXmHxn074qcKPo6xS%2BpctGkHsrs6FzP3H7XPRlr%2FOHoXzyVmaayxmXBM1i2Vw%2BIQbgwpCBLUrevavj5%2FOt1OQPoSLX3sY4JMWlfpTjPbx2SuJtrNg30q2VXNdVUz5r351tO1X4zkeZl5IA32%2FrVQnX14dWq0ugc9cE3Olz7r18rd61Q9pjRPGIrmgL91wdVBq%2BLipTPeF22rmP2FfeKCioGnywtHcDA7bTgrGVA%2Bc%2F0UaA7xr3la9fXX9l%2FmwzMuFbutRyUyAx8f%2F6u8WatnCSxC7cJnheX0eRVOM4PXIo%2BzSNt0VL9dGUuuiEBPRMyZ1krdvdP5QQmqidu3wGb7aD0matVZXO4SR6fjls26QKI7k%2B8BjigQMCf6SRDz%2Fqjk2bsYprWW%2BPTCXyzs6eHkkJP26RS98edyxkvJu1yq%2BmVwwFZXHQNPqyNzE%2BnTy8OGBJWAmURTmUDRTke4v1yxUO6RXD4J6aR%2FVpVAQniPw%2BkVKdqE8pJQv0uU3jiVTfombgcYDUG%2BOvhuvqu8S%2FF004Rn7RSBYariVudvPrb3z4MSUvc3%2FRcL1n1NDBqiYQFkd0%2F63gqxPNlqBe80p9dqFxXqTlZky2ZiITTVAVpXOkFH5oGTAddlQnw%2FjwgTtYyVPxKktT7SifzXe0TDa%2FYFOTVUHZIvuvqz4bvVBWcPbZkPP%2Bk47PhWraI2vpCk8q5amfRs0Wv4NBjq8JT1Yws0uJ7BJwrH8n3Mk4oq6QjHaR1FZrbB7Ylx0W9w8IUtyoXGpfnqlx3qv1NVS9hhfehUmD5PN2VsRvWLKQeS8nBiY1BlZkBUsvNnMa49smE1NhEe%2F4Njdz%2Fqmsnz%2BRvyjlRS1WpVOXB%2FCwjobvy%2B%2BHAdahYFj2J9OvUq7XB3YnFZ%2FviPMfROXR%2Ba5YJHCqBrCsrL458MKRTGmf%2F95GK5QdtF%2Fuk3qggk0GOq2fvpDcbF88LHep9V4doeTKR52hS99lAY9PDhf7chmWmJ%2Bk6OGnqj02oOeh5%2BsNQbuCelmYeKyosv32o4PXoSbowfplI4gC9V5Lp9m%2Fof73iOiH6X59dm1nU8E4luZGlsjo0MUp3%2FkiXsXbyfB0n1VsVIS58PI3pB177OHxvUPQff98s8bTYc6YRwJ0qBWL3V7YFC305C4sqIsrXMg8w0GmyLLf4UtDNZ7GY1TbhF7GnFwxHG05Siv950rJ%2BxXbhsV9fexpltCAy77Dq8n9VpD4JzvtatvdbdoIj6iXZnVsA011HFKGnnDEmvR7qSxgcvyZBciWnoadAR0LzWYGJB9foa7Me1WEnxprbJcd8gbGn3eK65Lx3b2UWoLmSO8gWcrGUHNnRy7pzr9Jg9UCleK16Q6qjfNRBFkXu9xEVNHfAf6G7DmZFPmrwCxkZLgNTj%2BF95aTtyXbB4e2gYlkI%2FnkkNfLcFHQTX7WCjioXfKMiBO3cZ4kfn3Q0NLtqa7Mo0RaIV3IYhkPtMlfdXNNxxKh06Lashk5fpYsP2rIHXkBEHXRuKwaQlNeTxq%2FLrVjwOzJWdyX5KtGVinWhF4HmXldz7S3ItMmb6nJ4R643CAzNWf77dneDbJnSIDsufrCOVTY0Cx3W6HzqmxllBLGvoA5h%2FZnqjJE3saCYjy6Rjd6z6iZY1WDtG%2BgFk68WA20QVl778CrX9z7WqbwzGcFXabygdsPsWJ%2FpepJ8JpGj4Gb64MllkR%2Blc23To0niS5B821MxUp8Cf%2BlBsLnx%2FlJQVEGnz%2FtUucFkLgCwYqHjcaj8WpugL%2BvNTw6fNglxkUJxqG8yVeVCB7pUNd71VL2WQAWVpHdzFS47KFX5pqMveG0dA5TMrZq5dTGJTGnj%2FCQLgXAtACCT9Z4b2qyhygGBu7E4b3f0FMBtZ2LDoQ89CTE3IRjtvdLpxrnMSA19CU0OI62wdHFphp6Jd%2FmErDG2GGq7iMEYKCm5hOwRJCrVQocC4trsfQCiimGksvnf6AXAUIbwV5faoCNwdXTl2vnvQr99nUOZUkO%2B8oZmprLdcNXy57zQW%2FfyWDb6Oa9Eg5tURutyCDTXSzo74vRBMpUFxn%2BZ6gjhYWGAePehxn9b9bz5nk6B%2FvPFeVj8UjDTCQajTqDScUk15tIwHK3PjO6PHl5fvJGxBqqTKzlhkO2%2FMouW%2FaFO4C9VtJ7ch6Yvs8SXkjQKVYm0py9dHL31OrvRobo7dh3AdKmg8xCe0AkjrEmtWKLaunm4UX2dudnz%2BzlV1W6dSCt69dXVh0cWuHkfCGLiywF%2BlFs2HLwK1lFAYsXDq6kK1rd0VwPywYO1LAFcynUd%2Fd2jctQ0tLAKSZ4HgJHydqZqDAXS1T3Ty50b9LjcHwi%2Frpy7cANvCJGao9PXFnOdDv4Rzxmtz3x77wELBcir%2BW73%2Bk4bjaXaZwkj7ajegu6OhCAgMH06aBR8u1A6117iHEJcS%2BUK8A3pGRTlULtxOxS4%2F6iAxG0%2F40Y9ABWeYYI6i%2FsCSvTom4LMiTh157UdN7JP9Ku1YFQVwUdv55I3VGXO2UjAirvIWhUUYfnVjylZzdZe4DLstcOFfw16vJYtvr%2Bt%2FdDZIUhjvEk1ccFZRwf4Ppcn1pP1AAAABgYsdRKZCUDT%2BP8nMNJRstMnoocqQ2pA2lRRWgsDq%2Fs8eW%2B0H6B79FN4u8eY7BtQ0Q8EZL9qfMrbBFC5BAAIbSslQSyL4IeUwrDNgN5lja5RjTz9HYCpag%2B%2Bg50JR7l8AY%2BqJy5kSPept3u2MiFxqZOAHWGm0Q8l95CZl7WSiQQyR23Tk8GAlWrlb%2BfKwUTWQKvkI6S%2BgVv%2FSDuNtR%2BwyMqsy4IEWMkPaFFqGtJtOG6JTriS13Pg%2FB9v9RlEK22W1uScBLSbfjKrdUffsItDcelS25aQkWQbkI7X3ZmbMqISAlSaDvSCD3dPV%2FrDq3u5AMQrhzrdqKOzmzP97j8vQ%2F0KwJkUP%2F%2BizWaqM9BRLuyr%2Bfb7l0IVLVkilY1wWWlKy3p92k2hLTkASI4LdaY9HaZ1fWgQIpad2onc0BbGPgG9nI9GWjLdlaMpUV3lpZ%2FzMwkExp%2FzjqnbAnyVC4gsuic8kBLlyRsqfz%2BU%2FcYD%2FvujdwOdhr1VhIlOBr8n53W6OlJselZllGp%2FQLhQ4UDMn2Uwtfh4LG7hi5Hshg83chLlf%2FHp8xquHnQyr%2B1Ml8ygyE15SzaYjDr6DaKvbnSyVqCNAmvzDb%2FvS2FNi7STzlq%2Fgf9KB8mO2JwnFq%2F1k9TGiEjYdPWecSDqeJKUdrRZR3v71NFB0CFUbCLaboY3gtnNYBqGvqt9HQpYuVhNHe9o4tGRHQDPtHMDsA1YpaxcgM1taTvfXOsIY9NOq0czAXkncI0zleZs30gC8SfMVDrvQppSkG8FvB6d9lLNgqMK%2FjYDkNzVqdkFsFZNDTIZD29UrXD%2FOsw4lLOYjQCAARWgtBZgwmnKF8CrYgSgUdN7ohoCKmgWC9YDAKgl4WZE0L2BsjpgqUIB%2Fx9GdgGQJR9wUgAAAABJRU5ErkJggg%3D%3D);
  position: relative;
}

/* line 1182, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-2:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: inherit;
  content: ' ';
}

/* line 1194, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-1 img {
  margin-top: 50px;
}

/* line 1198, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-2 h2 {
  background-color: transparent;
  font-size: 80px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  margin: 80px 0 30px;
  text-align: left;
  padding: 0;
  line-height: 90px;
}

/* line 1210, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-2 h3 {
  font-size: 40px;
  color: #FFFFFF;
  font-weight: 300;
  margin: 0 0 10px;
  line-height: 50px;
}

/* line 1219, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-3 h2,
.jumbotron5 h2 {
  font-size: 60px;
  line-height: 70px;
  padding: 20px;
  margin: 100px 0 30px;
}

/* line 1227, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-3 h3,
.jumbotron5 h3 {
  font-size: 36px;
  margin: 0 0 30px;
}

/* line 1234, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-3 .btn,
.jumbotron5 .btn,
.jumbotron3 .btn {
  font-size: 20px;
  border-radius: 0;
  color: #FFFFFF;
}

/* line 1241, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .jumbotron6 #slide-3 .btn:first-child:hover,
body .jumbotron5 .btn:first-child:hover {
  color: #FFFFFF;
}

/* line 1246, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron6 #slide-3 span,
.jumbotron5 span {
  font-size: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  top: 5px;
  margin: 0 10px;
}

/* JUMBOTRON 7 */
/* line 1258, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron7 {
  padding: 0 0 50px;
  border-bottom: 0;
}

/* line 1263, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron7 img.application-image {
  position: relative;
  top: 40px;
  max-height: 522px;
}

/* line 1269, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron7 h2 {
  font-size: 50px;
  line-height: 65px;
  font-weight: bold;
  margin: 50px 0 30px;
  color: #FFFFFF;
}

/* line 1277, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron7 .application-feature {
  margin: 0 0 20px;
}

/* line 1281, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron7 .application-feature img {
  max-width: 64px;
  margin-left: 30px;
}

/* line 1286, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.jumbotron7 .application-feature h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  margin: 15px 20px 0;
}

/* line 1294, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.btn-download {
  width: 170px;
  height: 60px;
  display: inline-block;
  margin-top: 20px;
}

/*------------------------------
	CONTENT
------------------------------*/
/* line 1316, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.container2 {
  padding: 0 30px;
}

/* line 1320, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.container3 {
  padding: 0;
}

/* line 1324, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content {
  padding: 40px 0 30px;
}

/* line 1328, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content-full {
  text-align: center;
  height: auto !important;
  /* real browsers */
  height: 100%;
  /* IE6: treaded as min-height*/
  min-height: 100%;
  /* real browsers */
}

/* line 1335, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content-full header.navbar {
  padding: 13px 25px;
}

/* line 1339, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content-separator {
  color: #FFFFFF;
}

/* line 1343, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content h2 {
  text-transform: uppercase;
  font-size: 36px;
  margin: 0 0 40px;
}

/* line 1349, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content .secondary-headline {
  font-weight: 600;
  font-size: 16px;
  margin: -15px 0 40px;
  color: #888888;
}

/* line 1356, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.bg-color-2 {
  background-color: #F0F0F0;
}

/* BREADCRUMB */
/* line 1362, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.breadcrumb-wrapper {
  background-color: #E5E5E5;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

/* line 1368, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.breadcrumb-wrapper h2 {
  float: left;
  font-size: 24px;
  font-family: 'Roboto';
  margin: 0;
  color: #555555;
}

/* line 1376, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.breadcrumb-wrapper .breadcrumb {
  float: right;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 3px 0 0;
}

/* line 1384, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.breadcrumb-wrapper .breadcrumb > li {
  font-size: 14px;
  font-weight: 600;
}

/* line 1389, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.breadcrumb-wrapper .breadcrumb > .active {
  color: #777777;
  font-weight: 700;
}

/* line 1394, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.breadcrumb-wrapper .breadcrumb > li + li:before {
  color: #AAAAAA;
  content: "\f101";
  padding: 0 8px;
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

/* PAGINATION */
/* line 1407, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination {
  border-radius: 0;
  margin: 0;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* line 1414, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination > li > a,
.pagination > li > span {
  background-color: #F9F9F9;
  color: #555555;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: bold;
}

/* line 1422, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination > li i {
  font-size: 14px;
}

/* line 1427, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 6px 12px;
  font-size: 14px;
}

/* line 1432, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination-sm > li i {
  font-size: 12px;
}

/* line 1437, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 12px 20px;
  font-size: 18px;
}

/* line 1442, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination-lg > li i {
  font-size: 16px;
}

/* line 1449, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0;
}

/* line 1454, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pagination > li > a:hover,
.pagination > li > span:hover {
  background-color: #EEEEEE;
}

/* line 1463, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .pagination > li.disabled > span,
body .pagination > li.disabled > span:hover,
body .pagination > li.disabled > span:focus,
body .pagination > li.disabled > a,
body .pagination > li.disabled > a:hover,
body .pagination > li.disabled > a:focus {
  color: #BBBBBB;
  background-color: #F9F9F9;
}

/* line 1473, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .pagination > li.active > a,
body .pagination > li.active > span,
body .pagination > li.active > a:hover,
body .pagination > li.active > span:hover,
body .pagination > li.active > a:focus,
body .pagination > li.active > span:focus {
  color: #FFFFFF;
}

/*------------------------------
	CONTENT - SEPARATORS
------------------------------*/
/* line 1481, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content-separator h2 {
  font-size: 26px;
  color: #FFFFFF;
  text-align: center;
}

/* line 1487, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content-separator p {
  margin: 0;
}

/* line 1491, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#separator1 p {
  font-size: 18px;
}

/* line 1495, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#separator1 .btn {
  margin-left: 20px;
  color: #FFFFFF;
}

/* line 1500, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content-separator .input-group .btn {
  background-color: #444444;
}

/* line 1506, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.content-separator .input-group .btn:hover,
.content-separator .input-group .btn:focus,
.content-separator .input-group .btn.active {
  border-color: #333333;
  background-color: #333333;
}

/*------------------------------
	HOME SECTIONS - DEFAULT
------------------------------*/
/* INTRODUCTION */
/* line 1517, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-introduction {
  text-align: center;
}

/* line 1521, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-introduction h2 {
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0px 0 40px;
}

/* line 1529, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-introduction p {
  font-size: 20px;
  padding: 0 120px;
  color: #777777;
  line-height: 30px;
  margin: 0 0 30px;
}

/* FEATURES */
/* line 1539, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-features {
  padding: 40px 0;
}

/* line 1543, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-features .row > div {
  border-right: 1px solid #D5D5D5;
}

/* line 1547, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-features .row > div:last-child {
  border-right: 0;
}

/* line 1551, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-features .feature {
  text-align: center;
  padding: 15px 0;
}

/* line 1556, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-features .feature i {
  font-size: 40px;
  border: 2px solid #16A085;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding-top: 25px;
  transition-duration: 0.4s;
}

/* line 1566, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-features .feature h3 {
  text-transform: uppercase;
  font-size: 20px;
  margin: 20px 0 15px;
}

/* line 1572, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-features .feature p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* line 1578, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body #section-features .feature:hover i {
  color: #FFFFFF;
}

/* ABOUT US */
/* line 1584, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-about-us {
  padding: 0;
}

/* line 1588, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-about-us h2 {
  text-align: left;
  margin: 30px 0 15px;
}

/* line 1593, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-us-slider {
  padding: 50px 0 0;
}

/* line 1597, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-us-slider .owl-wrapper-outer {
  box-shadow: none;
}

/* line 1601, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-us-slider .owl-pagination {
  margin-top: 0;
}

/* line 1605, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-us-slider .carousel-indicators {
  bottom: -25px;
  padding-left: 3px;
}

/* line 1610, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-us-slider .item {
  transition-duration: 1.2s;
}

/* line 1614, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-highlight {
  background-color: #E5E5E5;
  padding: 20px;
  border-left: 5px solid #16A085;
}

/* line 1620, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-highlight i {
  color: #AAAAAA;
  font-size: 30px;
  margin-bottom: 10px;
}

/* line 1626, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-highlight p {
  font-style: italic;
  color: #555555;
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 12px;
}

/* line 1634, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-highlight span {
  text-align: right;
  font-weight: 600;
  font-style: italic;
  display: block;
}

/* BLOG POSTS */
/* line 1643, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-blog-posts {
  padding: 50px 0;
}

/* line 1647, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-blog-posts h2 {
  color: #FFFFFF;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
}

/* line 1652, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.recent-blog-post {
  padding: 18px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.2);
}

/* line 1658, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-blog-posts .row > div:first-child .recent-blog-post {
  margin-right: 20px;
}

/* line 1662, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-blog-posts .row > div:last-child .recent-blog-post {
  margin-left: 20px;
}

/* line 1666, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.recent-blog-post .post-date {
  color: #FFFFFF;
  padding: 5px 7px;
  font-weight: bold;
  font-size: 12px;
  display: inline-block;
}

/* line 1674, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.recent-blog-post h3 {
  margin: 10px 0 12px;
  padding: 0 0 6px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 14px;
  font-weight: bold;
  clear: both;
  line-height: 22px;
  color: #555555;
}

/* line 1685, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.recent-blog-post p {
  font-size: 13px;
  margin: 0 0 8px;
  color: #666666;
}

/* line 1691, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.recent-blog-post a {
  text-align: right;
  display: block;
  text-decoration: underline;
}

/* line 1697, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.recent-blog-post a i {
  margin-left: 5px;
}

/* line 1701, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.recent-blog-post a:hover {
  text-decoration: none;
}

/* line 1705, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-blog-posts .btn {
  margin-top: 50px;
  color: #FFFFFF;
}

/* PORTFOLIO */
/* line 1712, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio {
  position: relative;
  text-align: center;
  padding: 50px 0;
}

/* line 1718, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item {
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
}

/* line 1726, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item .hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease-out 0s;
  -webkit-transform: translateX(-100%);
  -webkit-transition: all 0.6s ease-out;
  padding: 20px 5% 0 35%;
}

/* line 1739, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item img {
  transform: translateX(0px);
  transition: all 0.6s ease-out 0s;
  -webkit-transform: translateX(0px);
  -webkit-transition: all 0.6s ease-out;
}

/* line 1746, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item:hover img {
  transform: translateX(70%);
  -webkit-transform: translateX(70%);
}

/* line 1751, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item:hover .hover-overlay {
  transform: translateX(-30%);
  -webkit-transform: translateX(-30%);
}

/* line 1756, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item-description {
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  border-top-width: 0;
  padding: 0 10px;
}

/* line 1763, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item-description h3 {
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  padding: 15px 0;
}

/* line 1772, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item p {
  color: #FFFFFF;
  line-height: 25px;
  text-align: left;
}

/* line 1778, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item a i {
  color: #FFFFFF;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 18px;
  padding-top: 12px;
  margin-right: 15px;
}

/* line 1790, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item a:hover i {
  background-color: #FFFFFF;
}

/* line 1794, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-portfolio .portfolio-item a:last-child i {
  margin-right: 0;
}

/* PARTNERS */
/* line 1800, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-partners #partners-slider {
  padding: 50px 0;
}

/* line 1804, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-partners #partners-slider .item {
  text-align: center;
}

/* line 1808, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#partners-slider.owl-carousel .owl-wrapper-outer {
  box-shadow: none;
}

/*------------------------------
	HOME SECTIONS - PRODUCT
------------------------------*/
/* line 1816, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.product-content {
  padding: 60px 0 50px;
}

/* line 1820, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.product-content h2 {
  font-size: 50px;
  line-height: 65px;
  font-weight: bold;
  margin: 0 0 20px;
  color: #999999;
  text-transform: none;
}

/* line 1829, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.product-content p {
  font-size: 18px;
  line-height: 32px;
  color: #AAAAAA;
}

/* TESTIMONIALS */
/* line 1837, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-testimonials {
  padding: 70px 0 60px;
}

/* line 1841, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#testimonials-slider .owl-wrapper-outer {
  box-shadow: none;
}

/* line 1845, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#testimonials-slider i {
  font-size: 54px;
  float: left;
  margin: 0 20px 0 0;
}

/* line 1851, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#testimonials-slider p {
  font-size: 22px;
  line-height: 40px;
}

/* line 1856, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#testimonials-slider h3 {
  color: #FFFFFF;
  font-size: 24px;
  text-align: right;
  font-weight: bold;
  margin: 20px 0 0;
}

/* line 1864, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#testimonials-slider h3 small {
  color: #EBEBEB;
  font-size: 16px;
  font-weight: bold;
}

/* line 1870, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#testimonials-slider.owl-theme .owl-controls .owl-page span {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  width: 18px;
  height: 18px;
}

/* line 1877, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#testimonials-slider.owl-theme .owl-controls .owl-page.active span {
  background-color: #FFFFFF;
}

/* STATISTICS */
/* line 1883, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-statistics {
  padding: 70px 0 60px;
}

/* line 1887, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.statistic {
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 20px 30px;
}

/* line 1893, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.statistic .number {
  font-size: 60px;
  font-weight: 300;
}

/* line 1898, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.statistic .title {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: bold;
}

/*------------------------------
	HOME SECTIONS - SEARCH
------------------------------*/
/* IMAGES */
/* line 1910, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-images {
  padding: 80px 0;
}

/* line 1914, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-images .row {
  margin: 0;
}

/* line 1918, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-images .row > div {
  padding: 0;
}

/* line 1922, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-images .overlay-wrapper .overlay {
  margin: 0;
}

/* line 1926, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-images .overlay-wrapper:hover .overlay {
  opacity: 0.75;
}

/*------------------------------
	HOME SECTIONS - PORTFOLIO
------------------------------*/
/* LATEST WORK */
/* line 1936, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-latest-work span.label {
  padding: 4px 8px 5px;
  font-size: 14px;
  line-height: 32px;
}

/* line 1942, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-latest-work #about-us-slider {
  padding: 0;
}

/*------------------------------
	HOME SECTIONS - APPLICATION
------------------------------*/
/* VIDEO */
/* line 1952, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-video {
  padding: 50px 0;
}

/* line 1956, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-video h2 {
  font-size: 32px;
  line-height: 45px;
  font-weight: 600;
  margin: 0 0 20px;
}

/* line 1963, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#section-video p {
  font-size: 18px;
  line-height: 28px;
  color: #888888;
}

/*------------------------------
	FOOTER
------------------------------*/
/* line 1973, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer {
  background-color: #EAEAEA;
  color: #555555;
  padding: 30px 0 15px;
}

/* line 1979, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 600;
}

/* line 1985, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer h3 i {
  margin-right: 15px;
  font-size: 16px;
}

/* line 1990, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer ul li {
  line-height: 23px;
}

/* line 1994, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer p {
  margin: 0;
  font-size: 13px;
}

/* line 1999, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer p.contact-text {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 14px;
}

/* line 2005, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer ul.contact-address li {
  border-bottom: 1px dashed #CACACA;
  line-height: 32px;
}

/* line 2010, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer ul.contact-address li:last-child {
  border-bottom: 0;
}

/* line 2014, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer .brands {
  margin: 18px 0 12px;
  text-align: center;
}

/* line 2019, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer .brands li {
  margin-bottom: 0;
  margin-right: 7px;
}

/* line 2024, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer .brands li a {
  background-color: #777777;
  color: #FFFFFF;
}

/* line 2029, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer .footer-bottom {
  border-top: 1px solid #DADADA;
  padding: 15px 0 0;
  margin: 10px 0 0;
}

/* line 2035, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer .footer-bottom .footer-copyright {
  float: left;
}

/* line 2039, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer .navbar-nav > li > a {
  color: #555555;
  font-size: 13px;
  padding: 0 10px;
}

/* line 2045, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
footer .navbar-nav > li > a:hover {
  background-color: transparent;
}

/* line 2049, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#latest-work-footer {
  margin: 0;
}

/* line 2053, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#latest-work-footer > div {
  padding: 2px;
}

/* line 2057, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#latest-work-footer .overlay-wrapper:hover .overlay {
  opacity: 0.75;
}

/*------------------------------
	COMMING SOON
------------------------------*/
/* line 2065, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.commingsoon .title {
  font-size: 150px;
  font-weight: bold;
  color: #555555;
  margin: 100px 0 20px;
}

/* line 2072, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.commingsoon h1 {
  font-size: 54px;
  margin: 0 0 100px;
}

/* line 2077, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.commingsoon .digits .cntSeparator {
  width: 20px;
}

/* line 2081, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.commingsoon .countdown-labels span {
  margin-right: 20px;
  width: 134px;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
}

/* line 2089, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.commingsoon .countdown-labels span:last-child {
  margin-right: 0px;
}

/* line 2093, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-commingsoon {
  height: auto;
  padding: 50px 0;
}

/* line 2098, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-commingsoon p {
  font-size: 26px;
  margin: 0 0 30px;
  color: #FFFFFF;
}

/* line 2104, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-commingsoon .input-group .form-control {
  height: 54px;
  font-size: 18px;
}

/* line 2109, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-commingsoon .input-group .btn {
  font-size: 18px;
  padding: 13px 13px 13px;
  background-color: #444444;
}

/* line 2117, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.navbar-commingsoon .input-group .btn:hover,
.navbar-commingsoon .input-group .btn:focus,
.navbar-commingsoon .input-group .btn.active {
  border-color: #333333;
  background-color: #333333;
}

/*------------------------------
	ERROR
------------------------------*/
/* line 2130, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.error .error-number {
  font-size: 200px;
  margin: 100px 0 0;
}

/* line 2135, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.error .error-text h1 {
  font-size: 80px;
  margin: 30px 0 50px;
}

/* line 2140, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.error .error-text p {
  font-size: 30px;
  line-height: 45px;
  padding: 0 50px;
}

/*------------------------------
	SIGN IN / SING UP
------------------------------*/
/* line 2150, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.forms-only h1 {
  font-size: 80px;
  margin: 80px 0 50px;
}

/* line 2155, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.forms-only {
  padding: 0 180px;
}

/* line 2159, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.forms-only form {
  text-align: left;
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
}

/* line 2166, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.forms-only form button.btn {
  margin-top: 5px;
}

/* line 2170, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.forms-only form h2 {
  font-size: 40px;
  margin: 0 0 20px;
}

/* line 2175, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.forms-only form h3 {
  font-size: 24px;
  margin: 0 0 20px;
  line-height: 32px;
}

/* line 2181, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.forms-only form .pull-right a {
  margin-top: 12px;
  display: block;
}

/* line 2186, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#reset-password {
  display: none;
  border-top: 1px solid #DDDDDD;
  margin-bottom: 20px;
}

/*------------------------------
	FEATURES
------------------------------*/
/* FEATURES SIDEBAR */
/* line 2198, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features .features-sidebar {
  top: 110px;
  width: 250px;
}

/* line 2203, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features .features-sidebar h3 {
  margin: 0 0 10px;
}

/* FEATURES CONTENT */
/* line 2209, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features .features-content h3.features-title {
  border-bottom: 2px solid #E5E5E5;
  padding: 0 0 10px;
  margin: 0 0 20px;
}

/* line 2215, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features .features-content h3.features-title i {
  margin-right: 15px;
}

/* line 2219, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features .features-content .features-item {
  margin-bottom: 50px;
}

/* line 2223, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features .features-content h2 {
  font-size: 30px;
  margin: 20px 0 10px;
  text-align: left;
  text-transform: none;
}

/* line 2232, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features #features-buttons .btn,
#features #features-buttons .brands,
#features #features-pagination .pagination {
  margin-bottom: 10px;
}

/* line 2236, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features #features-buttons .brands {
  margin-top: 10px;
}

/* line 2240, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features #features-tooltips-popovers > div {
  margin-bottom: 20px;
}

/* line 2244, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#features #features-collapse .panel-group {
  margin-bottom: 40px;
}

/*------------------------------
	FAQ
------------------------------*/
/* line 2253, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#faq h2,
#faq h3 {
  margin: 0 0 20px;
}

/*------------------------------
	PRICING
------------------------------*/
/* line 2262, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#pricing .row,
#pricingtable .row {
  margin: 0;
}

/* line 2267, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#pricing .row > div,
#pricingtable .row > div {
  padding: 0;
}

/* line 2271, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan {
  background-color: #F5F5F5;
  text-align: center;
  margin: 30px 0 0;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* line 2278, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan.popular {
  background-color: #E5E5E5;
  position: relative;
  top: -35px;
}

/* line 2285, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan h3,
.pricing-plan p {
  padding: 15px 0;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
}

/* line 2295, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .pricing-plan.popular h3,
body .pricing-plan.popular p {
  background-color: #555555;
}

/* line 2299, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan p {
  font-size: 14px;
  color: #EEEEEE;
  padding-top: 0;
}

/* line 2305, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan .pricing-plan-price {
  padding: 13px 0;
}

/* line 2309, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .pricing-plan.popular .pricing-plan-price {
  background-color: #666666;
}

/* line 2313, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan .pricing-plan-price span {
  color: #FFFFFF;
}

/* line 2317, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan .pricing-plan-price span.pricing-plan-small {
  font-size: 28px;
}

/* line 2321, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan .pricing-plan-price span.pricing-plan-number {
  font-size: 50px;
}

/* line 2325, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan .pricing-plan-price span.pricing-plan-text {
  font-size: 16px;
  display: block;
  font-weight: 300;
  position: relative;
  top: -10px;
  color: rgba(215, 215, 215, 0.7);
}

/* line 2334, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan ul {
  padding: 10px 30px;
  text-align: left;
}

/* line 2339, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan ul li {
  border-bottom: 1px solid #E5E5E5;
  font-size: 16px;
  color: #555555;
  line-height: 50px;
}

/* line 2346, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan.popular ul li {
  border-color: #D5D5D5;
}

/* line 2350, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan ul li:last-child {
  border-bottom: 0;
}

/* line 2354, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan ul li i {
  color: #999999;
  width: 35px;
}

/* line 2359, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan .btn {
  margin-bottom: 30px;
}

/* pricing table */
/* line 2365, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#pricingtable .pricing-plan ul {
  padding: 10px 30px;
  text-align: center;
}

/* line 2370, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.pricing-plan-titles {
  margin-top: 203px;
}

/* line 2374, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#pricingtable .pricing-plan-titles ul {
  text-align: left;
}

/*------------------------------
	SERVICES
------------------------------*/
/* line 2382, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services .service h3 {
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 400;
  color: #555555;
  transition: 0.3s ease-in-out 0s;
}

/* line 2391, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services .service p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* SERVICES 1 */
/* line 2399, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services.services1 .service {
  padding: 10px 0 20px;
}

/* line 2403, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services.services1 .service i {
  font-size: 40px;
  width: 60px;
  display: block;
  float: left;
}

/* line 2410, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services.services1 .service .service-body {
  overflow: hidden;
}

/* SERVICES 2 */
/* line 2417, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services.services2 .service,
#services.services3 .service {
  text-align: center;
  padding: 15px 0;
}

/* line 2423, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services.services2 .service i,
#services.services3 .service i {
  font-size: 40px;
  border: 2px solid #16A085;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding-top: 25px;
  transition: 0.3s ease-in-out 0s;
}

/* line 2434, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body #services.services2 .service:hover i,
body #services.services3 .service:hover i {
  color: #FFFFFF;
}

/* line 2439, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services.services2 .service h3,
#services.services3 .service h3 {
  margin: 20px 0 15px;
  font-size: 24px;
}

/* SERVICES 3 */
/* line 2446, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#services.services3 .service {
  text-align: center;
  padding: 20px;
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 30px;
}

/*------------------------------
	ABOUT
------------------------------*/
/* line 2458, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-content {
  padding: 50px 0;
}

/* line 2462, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-content h3 {
  font-size: 34px;
  color: #444;
  margin: 0 0 20px;
}

/* line 2468, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-content p {
  font-size: 18px;
  color: #666666;
  line-height: 30px;
}

/* line 2474, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#about-slider {
  margin-top: 61px;
}

/* ABOUT - TEAM */
/* line 2481, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.profile {
  text-align: center;
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  margin: 0 20px;
}

/* line 2488, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.profile img {
  margin-bottom: 20px;
}

/* line 2492, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.profile h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #666666;
  font-weight: 600;
}

/* line 2499, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.profile h3 small {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 0;
}

/* line 2506, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.profile p {
  color: #999999;
  font-size: 14px;
  margin: 20px;
  line-height: 24px;
  text-align: left;
}

/* line 2514, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.profile .address {
  margin: 20px 0;
}

/* line 2518, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.profile .address li {
  line-height: 26px;
}

/* line 2522, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.profile .brands {
  padding: 0 0 15px;
}

/*------------------------------
	CONTACT
------------------------------*/
/* line 2530, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact h2 {
  text-align: left;
  margin-bottom: 20px;
}

/* line 2535, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact p {
  font-size: 18px;
  color: #555555;
  line-height: 26px;
}

/* line 2541, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .contact-address li {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #E5E5E5;
}

/* line 2549, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .contact-address li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 2554, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .brands {
  margin: 30px 0 0;
}

/* line 2558, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .brands li {
  margin-right: 10px;
}

/* line 2562, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .panel-group .brands {
  margin: 0;
}

/* line 2566, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#map-canvas {
  height: 400px;
  margin: 0;
  padding: 0;
}

/* line 2572, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#google-map {
  position: relative;
}

/* line 2576, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.map-overlay-wrapper {
  position: relative;
}

/* line 2580, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.map-overlay {
  display: inline-block;
  position: absolute;
  bottom: 30px;
  width: 35%;
  color: #FFFFFF;
}

/* line 2588, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.map-overlay i {
  font-size: 64px;
  padding: 20px 20px 0 20px;
}

/* line 2593, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.map-overlay h3 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
}

/* line 2599, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.map-overlay ul {
  margin-bottom: 20px;
}

/* line 2603, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.map-overlay ul li {
  font-size: 16px;
  line-height: 26px;
}

/* line 2608, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.map-overlay:first-child {
  left: 10%;
}

/* line 2612, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.map-overlay:last-child {
  right: 10%;
}

/* line 2616, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .panel-group .profile {
  box-shadow: none;
  margin: 0;
  background-color: transparent;
  text-align: left;
}

/* line 2623, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .panel-group .profile h3 {
  margin: 0 0 20px;
}

/* line 2627, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .panel-group .profile .brands {
  padding: 0;
}

/* line 2631, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#contact .panel-group .profile img {
  margin-bottom: 0;
}

/*------------------------------
	BLOG
------------------------------*/
/* line 2639, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#blog {
  padding-top: 60px;
}

/* line 2644, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#blog.blog-col-2 .row > div,
#blog.blog-col-3 .row > div {
  margin-bottom: 60px;
}

@-moz-document url-prefix() {
  /* line 2650, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #blog.blog-col-2 .row > div,
  #blog.blog-col-3 .row > div {
    margin-bottom: 30px;
  }
}

/* line 2655, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-header .vertical-nav li a:hover {
  background-color: transparent;
}

/* BLOG - SIDEBAR */
/* line 2661, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.left-sidebar .blog-sidebar {
  padding-right: 30px;
}

/* line 2665, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.right-sidebar .blog-sidebar {
  padding-left: 30px;
}

/* line 2669, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.box {
  margin-bottom: 40px;
}

/* line 2673, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.box h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px;
}

/* line 2680, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.box ul li {
  margin: 0 0 14px 20px;
}

/* line 2684, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.box ul li a {
  font-size: 14px;
  color: #555555;
  display: block;
}

/* line 2690, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.box ul li a span.badge {
  float: right;
  border-radius: 15px;
  padding: 4px 8px;
}

/* line 2696, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.box ul li a i {
  margin-right: 12px;
}

/* line 2700, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.box.box-tags a span {
  font-weight: 600;
  color: #555555;
  padding: 0 3px 3px 0;
  white-space: nowrap;
}

/* line 2707, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-10 {
  font-size: 10px;
}

/* line 2708, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-12 {
  font-size: 12px;
}

/* line 2709, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-14 {
  font-size: 14px;
}

/* line 2710, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-16 {
  font-size: 16px;
}

/* line 2711, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-18 {
  font-size: 18px;
}

/* line 2712, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.text-20 {
  font-size: 20px;
}

/* BLOG - CONTENT */
/* line 2717, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.left-sidebar .blog-content {
  border-left: 1px solid #D5D5D5;
  padding-left: 30px;
}

/* line 2722, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.right-sidebar .blog-content {
  border-right: 1px solid #D5D5D5;
  padding-right: 30px;
}

/* line 2727, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0 0 50px;
}

/* line 2734, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-col-2 .blog-post,
.blog-col-3 .blog-post {
  margin: 0;
}

/* line 2738, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-body {
  padding: 0 50px 30px;
}

/* line 2743, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-col-2 .blog-post-body,
.blog-col-3 .blog-post-body {
  padding: 0 20px 20px;
}

/* line 2747, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-detail {
  background-color: #F5F5F5;
  padding: 10px 0;
  border-bottom: 1px solid #E5E5E5;
}

/* line 2753, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-detail span {
  padding: 10px 18px;
  border-right: 1px solid #E5E5E5;
  color: #777;
  font-weight: bold;
}

/* line 2760, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-detail span:last-child {
  border-right: 0;
  padding-right: 50px;
}

/* line 2765, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-detail span:first-child {
  padding-left: 50px;
}

/* line 2770, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-col-2 .blog-post-detail span:last-child,
.blog-col-3 .blog-post-detail span:last-child {
  padding-right: 18px;
}

/* line 2775, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-col-2 .blog-post-detail span:first-child,
.blog-col-3 .blog-post-detail span:first-child {
  padding-left: 18px;
}

/* line 2779, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-detail span.text-light {
  font-weight: 600;
}

/* line 2783, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-detail span i {
  margin-right: 12px;
}

/* line 2787, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post h3 {
  font-size: 35px;
  font-family: 'Roboto';
  line-height: 45px;
  margin: 18px 0 25px;
  color: #555555;
}

/* line 2795, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post p {
  font-size: 16px;
  line-height: 26px;
}

/* line 2800, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-buttons {
  border-top: 1px solid #E5E5E5;
  padding-top: 15px;
}

/* line 2805, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-buttons .btn {
  margin-right: 12px;
}

/* line 2809, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-buttons .btn:last-child {
  margin-right: 0;
}

/* line 2813, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-buttons .pull-right {
  padding-top: 3px;
}

/* line 2817, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post-buttons .pull-right .twitter-share-button {
  position: relative;
  top: 5px;
}

/* BLOG - TIMELINE */
/* line 2824, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline {
  position: relative;
}

/* line 2828, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background-color: #D0D0D0;
}

/* line 2838, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline .text-center .btn {
  position: relative;
  margin-top: 40px;
}

/* line 2843, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline-mark {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  padding: 6px 0;
  display: inline-block;
  clear: both;
  float: left;
  position: relative;
  left: 50%;
  width: 80px;
  text-align: center;
  margin: 40px 0 40px -40px;
}

/* line 2859, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline-mark:first-child {
  margin-top: 0;
}

/* line 2863, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline .blog-post {
  width: 43%;
  margin: 120px 0 0;
}

/* line 2868, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline .blog-post:first-child {
  margin-top: 0;
}

/* line 2872, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline .blog-post .blog-post-info {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  text-align: center;
  margin-left: -38px;
  border: 3px solid #E0E0E0;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition-duration: 0.5s;
}

/* line 2885, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline .blog-post .blog-post-info .number {
  font-size: 28px;
  color: #999;
  padding-top: 6px;
  font-weight: 600;
}

/* line 2892, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline .blog-post .blog-post-info .month {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  top: -6px;
}

/* line 2901, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
body .blog-timeline .blog-post:hover .blog-post-info .number,
body .blog-timeline .blog-post:hover .blog-post-info .month {
  color: #FFFFFF;
}

/* line 2905, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-timeline .blog-post .blog-post-body {
  padding: 0 20px 20px;
}

/* BLOG POST TYPOGRAPHY */
/* line 2911, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post .blog-post-body img {
  margin: 0 0 20px;
}

/* line 2915, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post h4 {
  font-size: 22px;
  margin: 0 0 13px;
  color: #555555;
  font-weight: 700;
}

/* line 2922, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post h5 {
  font-size: 18px;
  margin: 0 0 11px;
  color: #555555;
  font-weight: 600;
}

/* line 2930, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post ul,
.blog-post ol {
  margin: 0 0 30px;
}

/* line 2935, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post ul li,
.blog-post ol li {
  font-size: 16px;
  margin: 0 0 12px;
  color: #555555;
}

/* line 2941, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post p.text-small {
  font-size: 13px;
  line-height: 20px;
}

/* line 2946, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post .files {
  margin-left: 25px;
}

/* line 2950, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post .files li {
  margin-bottom: 10px;
}

/* line 2954, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post .files li a {
  font-size: 14px;
}

/* line 2958, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post .files li a i {
  margin-right: 17px;
  color: #333333;
}

/* line 2963, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.blog-post .files li a span {
  color: #AAAAAA;
  margin-left: 10px;
}

/*------------------------------
	ABOUT AUTHOR
------------------------------*/
/* line 2972, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0 0 50px;
  padding: 40px 40px 0;
}

/* line 2979, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author .media-object {
  max-width: 160px;
  margin-bottom: 20px;
}

/* line 2984, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author .pull-left {
  margin-right: 40px;
}

/* line 2988, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author h4 {
  font-size: 30px;
  font-family: 'Roboto';
  margin: 0 0 15px;
  color: #555555;
}

/* line 2995, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author p {
  font-size: 16px;
  line-height: 25px;
  color: #555555;
}

/* line 3001, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author .media-body ul {
  margin: 0;
  border-top: 1px solid #E5E5E5;
}

/* line 3006, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author .media-body ul li {
  padding: 10px 15px;
  border-right: 1px solid #E5E5E5;
}

/* line 3011, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author .media-body ul li:first-child {
  padding-left: 0;
}

/* line 3015, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author .media-body ul li:last-child {
  padding-right: 0;
  border-right: 0;
}

/* line 3020, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.about-author .media-body ul li a i {
  margin-right: 10px;
  color: #999999;
}

/*------------------------------
	COMMENTS
------------------------------*/
/* line 3029, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comments {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 20px 30px;
}

/* line 3036, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comments h2 {
  text-align: left;
}

/* line 3040, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comment {
  margin: 25px 0 0;
  clear: both;
}

/* line 3045, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comments > .comment {
  border-bottom: 1px solid #E5E5E5;
  padding: 0 0 20px;
}

/* line 3050, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comments > .comment:last-child {
  border-bottom: 0;
  padding: 0;
}

/* line 3055, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comment .media-object {
  max-width: 80px;
  margin-right: 20px;
}

/* line 3060, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comment h4 {
  font-size: 22px;
  margin: 0 0 10px;
  color: #555555;
}

/* line 3066, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comment h4 small {
  font-size: 14px;
  color: #999999;
  margin-left: 20px;
}

/* line 3072, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comment a {
  color: #999999;
}

/* line 3076, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comment a i {
  margin-right: 7px;
  color: #999999;
}

/* line 3081, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.comments-form h2 {
  text-align: left;
  margin: 30px 0 20px;
}

/*------------------------------
	PORTFOLIO
------------------------------*/
/* line 3090, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio {
  padding-top: 60px;
}

/* line 3094, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio .row > div {
  margin-bottom: 30px;
}

/* line 3099, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio.portfolio-nospaces .row.portfolio-wrapper,
#portfolio.portfolio-nospaces .row.portfolio-wrapper2 {
  margin: 0;
}

/* line 3104, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio.portfolio-nospaces .row.portfolio-wrapper > div,
#portfolio.portfolio-nospaces .row.portfolio-wrapper2 > div {
  padding: 0;
  margin-bottom: 0;
}

/* line 3109, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio .overlay {
  margin: 0;
}

/* line 3113, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio .overlay-wrapper:hover .overlay {
  opacity: 0.75;
}

/* line 3117, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio .portfolio-item article {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
}

/* line 3122, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio.portfolio-nospaces .portfolio-item article {
  background-color: transparent;
  box-shadow: none;
}

/* line 3127, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio .portfolio-item article .portfolio-item-description {
  padding: 20px;
}

/* line 3131, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio .portfolio-item article .portfolio-item-description h3 {
  margin: 0 0 10px;
  color: #555555;
}

/* line 3136, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#portfolio .portfolio-item article .portfolio-item-description p {
  margin: 0;
  color: #555555;
}

/* line 3141, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.portfolio-col-2 .overlay a {
  font-size: 60px;
  margin-left: -25px;
  margin-top: -38px;
}

/* line 3147, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.portfolio-col-3 .overlay a {
  font-size: 45px;
  margin-left: -15px;
  margin-top: -27px;
}

/* line 3153, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.portfolio-col-4 .overlay a {
  font-size: 30px;
}

/*------------------------------
	ESHOP
------------------------------*/
/* line 3161, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#eshop .eshop-header ul li {
  line-height: 40px;
}

/* line 3165, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#eshop .eshop-main {
  margin-top: 30px;
  margin-bottom: 20px;
}

/* line 3170, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#eshop .eshop-sidebar h3 {
  margin: 0 0 20px;
}

/* line 3174, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.select-perpage.form-control {
  float: right;
  transition-duration: 0;
}

/* line 3179, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-product {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 30px;
}

/* line 3185, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-product h3 {
  margin: 0 0 7px;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
}

/* line 3192, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-product .product-price {
  margin: -8px 15px 0 0;
}

/* line 3196, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-product .product-price .old-price {
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 700;
}

/* line 3202, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-product .product-price .new-price {
  font-weight: bold;
  font-size: 24px;
  color: #C0392B;
  margin-left: 5px;
}

/* ESHOP - ALERT */
/* line 3211, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#eshop-cart-alert {
  position: fixed;
  bottom: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding: 40px 60px 10px;
  font-size: 24px;
  display: none;
  z-index: 1030;
}

/* line 3223, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#eshop-cart-alert .close {
  font-size: 60px;
  top: -15px;
}

/* line 3228, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#eshop-cart-alert.active {
  display: block;
}

/* ESHOP - GRID  */
/* line 3234, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-grid .eshop-product img {
  padding: 20px;
}

/* line 3238, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-grid .eshop-product .eshop-product-body {
  border-top: 1px solid #EBEBEB;
  background-color: #FFFFFF;
  padding: 10px 20px 15px;
}

/* line 3244, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-grid .eshop-product .product-tags {
  padding: 0 10px 10px;
}

/* ESHOP - LIST */
/* line 3250, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-list .eshop-product img {
  padding: 30px 0 30px 30px;
}

/* line 3254, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-list .eshop-product .eshop-product-body {
  background-color: #FFFFFF;
  padding: 20px;
}

/* line 3259, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-list .eshop-product h3 {
  margin: 12px 0;
  font-size: 26px;
}

/* line 3264, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-list .eshop-product p {
  color: #555555;
  margin: 0 0 15px;
  line-height: 24px;
}

/* line 3270, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-list .eshop-product .product-price {
  background-color: #F9F9F9;
  border: 2px dashed #E0E0E0;
  padding: 5px 12px;
}

/* ESHOP - DETAIL */
/* line 3278, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product {
  margin: 0 0 30px;
  padding: 30px;
  position: relative;
}

/* line 3284, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#eshop-slider.owl-carousel .owl-wrapper-outer {
  box-shadow: none;
  background-color: #EBEBEB;
  border: 3px solid #DDDDDD;
}

/* line 3290, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#eshop-slider .owl-item img {
  padding: 0 10px;
  cursor: pointer;
}

/* line 3295, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-product .product-sale-label {
  position: absolute;
  top: -35px;
  right: -30px;
  border: 3px solid #119178;
  color: #FFFFFF;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  z-index: 990;
}

/* line 3310, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-product .product-sale-label .text {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* line 3317, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-product .product-sale-label .number {
  position: relative;
  top: -10px;
}

/* line 3322, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product .label {
  font-size: 14px;
  padding: 7px 10x;
}

/* line 3327, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product h3 {
  margin: 20px 0;
  font-size: 32px;
}

/* line 3332, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product .product-price {
  margin: 20px 0;
  padding: 5px 10px;
  background-color: #FFFFFF;
  text-align: left;
  border: 2px dashed #E0E0E0;
}

/* line 3340, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product .product-price .old-price {
  font-size: 18px;
}

/* line 3344, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product .product-price .new-price {
  font-size: 35px;
  margin-left: 15px;
}

/* line 3349, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product h4 {
  font-size: 20px;
  font-weight: 600;
}

/* line 3354, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product form .btn-group {
  display: block;
}

/* line 3358, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product form .form-group {
  margin: 10px 0;
}

/* line 3362, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
#quantity.form-control {
  height: 44px;
}

/* line 3366, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product form .bootstrap-touchspin .input-group-btn-vertical > .btn {
  padding: 10px 12px;
}

/* line 3370, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product form .bootstrap-touchspin .input-group-btn-vertical i {
  font-size: 12px;
  left: 7px;
  top: 5px;
  color: #777;
}

/* line 3377, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product form .bootstrap-touchspin .input-group-btn-vertical .btn:hover i {
  color: #555;
}

/* line 3381, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product form button[type=submit] {
  margin-top: 25px;
  float: right;
}

/* line 3386, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product .blog-post-buttons .pull-left {
  font-weight: bold;
}

/* line 3390, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .eshop-product .blog-post-buttons .pull-left a i {
  margin-right: 5px;
}

/* line 3394, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .tab-content ul {
  margin-bottom: 20px;
}

/* line 3398, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.eshop-detail .comments {
  background-color: #F9F9F9;
  box-shadow: none;
  padding: 0;
}

/* ESHOP - SHOPPING CART */
/* line 3406, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-header {
  text-align: center;
  margin: 10px 0 40px;
}

/* line 3411, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-header i {
  font-size: 50px;
  color: #DDDDDD;
}

/* line 3416, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-header p {
  font-size: 16px;
  font-weight: 700;
  color: #AAAAAA;
  margin: 10px 0 0;
}

/* line 3423, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-header .active i {
  color: #999999;
}

/* line 3427, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-header .active p {
  color: #777777;
}

/* line 3431, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart.tab-content {
  background-color: transparent;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
}

/* line 3438, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 25px 20px 40px;
  position: relative;
  margin: 0 0 15px;
}

/* line 3446, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item a.delete {
  position: absolute;
  display: block;
  font-size: 20px;
  color: #CCCCCC;
  z-index: 1000;
  left: 15px;
  top: 50%;
  margin-top: -14px;
}

/* line 3457, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item a.delete:hover {
  color: #AAAAAA;
}

/* line 3461, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item img {
  margin-top: 10px;
}

/* line 3465, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item h3 {
  color: #777777;
  margin: 20px 0 10px;
  font-weight: 600;
}

/* line 3471, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item p {
  color: #999999;
  margin: 0 0 8px;
}

/* line 3476, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item .form-control {
  margin: 18px 0 0;
}

/* line 3481, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item p.small-price,
.shopping-cart-item p.quantity {
  margin: 30px 0 0;
}

/* line 3486, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-item p.total-price,
.shopping-cart-footer p.total-price {
  margin: 20px 0;
  font-weight: 600;
  font-size: 30px;
  text-align: right;
}

/* line 3493, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-footer {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
  margin-top: 50px;
}

/* line 3500, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-footer .btn {
  margin: 5px 0 0;
  display: inline-block;
}

/* line 3505, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-footer .input-group-btn .btn {
  margin: 0;
}

/* line 3509, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-footer p.total-price-title {
  color: #555555;
  font-weight: bold;
  font-size: 16px;
  margin: 15px 0 0;
}

/* line 3516, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart-footer p.total-price {
  color: #C0392B;
  margin: 0px 0 0;
  font-size: 36px;
  font-weight: 700;
}

/* line 3523, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart .form-address {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
}

/* line 3529, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart .form-address fieldset > .row {
  margin-bottom: 50px;
}

/* line 3533, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart .form-address h3 {
  margin: 0;
}

/* line 3537, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart .form-address #billing-address {
  display: none;
}

/* line 3541, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart .form-address .billing-address-checkbox {
  padding: 2px 0 0 20px;
}

/* line 3545, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart .form-address .billing-address-checkbox label {
  font-size: 16px;
  font-weight: 600;
  color: #555555;
}

/* line 3551, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart .form-address p.conditions {
  font-size: 14px;
  font-weight: 600;
  color: #555555;
  border-top: 1px solid #DDDDDD;
  padding: 15px 0 0;
}

/* line 3559, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.shopping-cart .form-payment {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
}

@media (min-width: 1601px) {
  /* line 3566, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 .item {
    height: 520px;
  }
}
@media (max-width: 1366px) {
  /* 643 */
  /* line 3572, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .title {
    font-size: 120px;
    margin: 0 0 20px;
  }

  /* line 3577, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon h1 {
    font-size: 44px;
    margin: 0 0 65px;
  }

  /* line 3582, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon {
    padding: 30px 0;
  }
}
@media (max-width: 1280px) {
  /* 570 */
  /* line 3588, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .title {
    font-size: 110px;
  }

  /* line 3592, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon h1 {
    font-size: 40px;
  }

  /* line 3596, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon {
    padding: 15px 0;
  }

  /* line 3600, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon p {
    margin: 0 0 16px;
    font-size: 20px;
  }

  /* line 3605, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon .input-group .form-control {
    height: 44px;
    font-size: 14px;
  }

  /* line 3610, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon .input-group .btn {
    font-size: 14px;
    padding: 10px 13px 12px;
    background-color: #444444;
  }
}
@media (max-width: 1024px) {
  /* 445 */
  /* line 3618, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .title {
    font-size: 80px;
    margin: 0;
  }

  /* line 3623, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon h1 {
    font-size: 30px;
    margin: 0 0 30px;
  }

  /* line 3628, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon {
    padding: 15px 0;
  }

  /* line 3632, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon p {
    margin: 0 0 16px;
    font-size: 20px;
  }

  /* line 3637, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon .input-group .form-control {
    height: 44px;
    font-size: 14px;
  }

  /* line 3642, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon .input-group .btn {
    font-size: 14px;
    padding: 10px 13px 12px;
    background-color: #444444;
  }

  /* line 3648, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .eshop-product .product-sale-label {
    right: 0;
  }
}
/*------------------------------
	MEDIUM DEVICES
------------------------------*/
@media (min-width: 992px) and (max-width: 1199px) {
  /* NAVBAR */
  /* line 3661, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-nav > li > a {
    padding-left: 9px;
    padding-right: 9px;
  }

  /* line 3666, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-nav > li > .dropdown-menu {
    min-width: 240px;
  }

  /* line 3670, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .dropdown-menu > li > a {
    font-size: 13px;
  }

  /* JUMBOTRON */
  /* line 3676, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-2 h2 {
    margin: 30px 0 30px;
  }

  /* line 3680, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-1 h2 {
    font-size: 28px;
    line-height: 40px;
    margin: 40px 30px 40px;
  }

  /* line 3686, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-1 h3 {
    font-size: 22px;
    line-height: 40px;
    margin: 0 30px 15px;
  }

  /* line 3692, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron3 #slide-2 h2 {
    font-size: 50px;
    line-height: 60px;
    margin: 50px 0 40px;
  }

  /* line 3698, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-1 img {
    margin-top: 25px;
  }

  /* BLOG */
  /* line 3704, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-sidebar {
    padding-right: 30px;
  }

  /* line 3708, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-content {
    border-left: 0;
    padding-left: 0;
  }

  /* line 3713, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span {
    padding: 10px 12px;
  }

  /* line 3717, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span:last-child {
    padding-right: 12px;
  }

  /* line 3721, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span:first-child {
    padding-left: 12px;
  }

  /* line 3725, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span i {
    margin-right: 6px;
  }

  /* line 3729, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .comment .media-object {
    margin-right: 10px;
    max-width: 64px;
  }

  /* line 3734, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .pull-left {
    display: none;
  }

  /* line 3738, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .media-body ul {
    margin-bottom: 10px;
  }

  /* line 3742, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .media-body ul li {
    border-right: 0;
    display: block;
    padding: 10px 0 0;
    font-size: 14px;
  }

  /* FEATURES */
  /* line 3751, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #features .features-sidebar {
    width: 280px;
  }

  /* line 3755, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #features .features-sidebar ul li a {
    padding: 6px 0;
    font-size: 13px;
  }

  /* line 3760, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .forms-only {
    padding: 0 80px;
  }

  /* INTRODUCTION */
  /* line 3766, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-introduction h2 {
    font-size: 60px;
  }

  /* line 3770, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-introduction p {
    padding: 0 50px;
  }

  /* line 3774, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item .hover-overlay {
    padding-top: 5px;
  }

  /* line 3778, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item p {
    line-height: 21px;
    margin-bottom: 8px;
  }

  /* line 3783, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item a i {
    font-size: 14px;
    height: 35px;
    padding-top: 9px;
    width: 35px;
  }
}
/*------------------------------
	SMALL DEVICES

	AND

	EXTRA SMALL DEVICES
------------------------------*/
@media (max-width: 991px) {
  /* TYPOGRAPHY */
  /* line 3804, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .dl-horizontal dt {
    margin-bottom: 0;
  }

  /* line 3808, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .dl-horizontal dd {
    margin-left: 0;
  }

  /* OVERLAY */
  /* line 3814, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .overlay-wrapper .overlay a {
    font-size: 60px;
    margin-left: -25px;
    margin-top: -38px;
  }

  /* ISOTOPE */
  /* line 3822, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .isotope-filter {
    padding: 15px;
  }

  /* line 3826, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .isotope-filter ul li {
    line-height: 50px;
  }

  /* line 3830, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .isotope-filter ul li .btn {
    padding: 8px 12px 7px;
    font-size: 12px;
  }

  /* NAVBAR */
  /* line 3837, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default {
    background-color: #F0F0F0;
    height: 50px;
  }

  /* line 3842, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .container {
    width: auto;
  }

  /* line 3846, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-header {
    float: none;
    margin: 0 -15px;
  }

  /* line 3851, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-brand {
    font-size: 25px;
    padding: 0 15px;
    transition: none;
  }

  /* line 3857, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-brand img {
    max-height: 50px;
  }

  /* line 3861, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar > .container .navbar-brand {
    margin-left: 0;
  }

  /* line 3865, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-toggle {
    border: 0;
    padding: 0;
    border-radius: 0;
    margin: 4px 15px 0;
    font-size: 28px;
    color: #555555;
    display: block;
  }

  /* line 3876, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: transparent;
  }

  /* line 3880, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-collapse {
    border: 0;
    box-shadow: none;
    border-bottom: 3px solid #16A085;
    margin: 0 -15px;
    max-height: 300px;
  }

  /* line 3888, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-collapse .navbar-nav {
    margin: 0 -15px;
    background-color: #FFFFFF;
    padding: 5px 15px;
    float: none;
  }

  /* line 3895, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-nav.nav > li {
    display: block;
    position: relative;
    float: none;
  }

  /* line 3908, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  body .navbar.navbar-default .navbar-nav > li > a,
  body .navbar.navbar-default .navbar-nav > li.active > a,
  body .navbar.navbar-default .navbar-nav > li.active > a,
  body .navbar.navbar-default .navbar-nav > li.active > a:hover,
  body .navbar.navbar-default .navbar-nav > li.active > a:focus,
  body .navbar.navbar-default .navbar-nav > li.open > a,
  body .navbar.navbar-default .navbar-nav > li.open > a:hover,
  body .navbar.navbar-default .navbar-nav > li.open > a:focus {
    background-color: #FFFFFF;
    color: #555555;
    padding: 5px 0;
    border-bottom: 2px solid #E5E5E5;
    font-size: 14px;
    font-weight: 600;
  }

  /* line 3917, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-nav > li > a i {
    display: none;
  }

  /* line 3921, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-nav > li > .dropdown-menu {
    display: block;
    position: relative;
    width: 100%;
    float: none;
    box-shadow: none;
    border: 0;
    margin-bottom: 10px;
  }

  /* line 3931, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-nav > li:last-child > .dropdown-menu {
    margin-bottom: 0;
  }

  /* line 3937, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-default .navbar-nav .dropdown-menu > li > a,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a,
  .navbar-default .navbar-nav .dropdown-menu > li > a:hover {
    background-color: #FFFFFF;
    padding: 8px 10px;
    transition: none;
  }

  /* FULL WIDTH NAVBAR */
  /* line 3945, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .content-full header.navbar {
    height: 70px;
    background-color: #FFFFFF;
  }

  /* JUMBOTRON 2 */
  /* line 3952, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron2 {
    padding: 30px 0;
  }

  /* line 3956, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron2 h2 {
    font-size: 60px;
  }

  /* line 3960, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron2 h2 small {
    font-size: 30px;
    margin: 20px 0 0;
  }

  /* JUMBOTRON 6 */
  /* line 3968, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 .item,
  .jumbotron3 .item {
    background-size: 140%;
  }

  /* line 3972, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-1 {
    background-position: right top;
    padding: 50px 0;
  }

  /* line 3977, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-2 {
    background-position: -200px -50px;
  }

  /* line 3981, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 {
    background-position: left top;
  }

  /* line 3985, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-2 h2 {
    margin: 50px 0 40px;
  }

  /* line 3989, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-1 h2 {
    margin: 20px 30px 40px;
  }

  /* line 3993, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron3 #slide-2 h2 {
    font-size: 50px;
    line-height: 60px;
    margin: 50px 0 40px;
  }

  /* JUMBOTRON 7 */
  /* line 4001, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron7 {
    text-align: center;
  }

  /* line 4005, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron7 .application-feature img {
    margin: 0 auto;
  }

  /* line 4009, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron7 .application-feature h3 {
    margin: 0;
  }

  /* JUMBOTRON 4 */
  /* line 4015, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 {
    padding: 100px 0;
  }

  /* line 4019, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 h2 {
    font-size: 50px;
  }

  /* line 4023, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 .input-group .form-control {
    height: 60px;
    font-size: 20px;
  }

  /* line 4028, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 .input-group .btn {
    font-size: 20px;
    padding: 15px 13px 15px;
  }

  /* SEPARATOR */
  /* line 4035, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #separator1 p {
    line-height: 40px;
  }

  /* BREADCRUMB */
  /* line 4041, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .breadcrumb-wrapper .breadcrumb {
    display: none;
  }

  /* FOOTER */
  /* line 4047, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  footer {
    text-align: center;
  }

  /* line 4051, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  footer .footer-bottom .footer-copyright {
    float: none;
  }

  /* PRICING */
  /* line 4057, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .pricing-plan {
    margin: 0 0 30px;
  }

  /* line 4061, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .pricing-plan.popular {
    top: 0;
  }

  /* ABOUT */
  /* line 4067, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #about-content h3 {
    font-size: 30px;
  }

  /* line 4071, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #about-content p {
    font-size: 16px;
    line-height: 26px;
  }

  /* line 4076, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #about-slider {
    margin: 40px 0 20px;
  }

  /* line 4080, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .profile {
    margin-bottom: 40px;
  }

  /* CONTACT */
  /* line 4086, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #contact form {
    margin-bottom: 50px;
  }

  /* BLOG */
  /* line 4092, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-sidebar {
    padding-right: 15px;
  }

  /* line 4096, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-content {
    border-left: 0;
    padding-left: 15px;
  }

  /* line 4101, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span:last-child {
    padding-right: 18px;
  }

  /* line 4105, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span:first-child {
    padding-left: 18px;
  }

  /* line 4109, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-body {
    padding: 0 18px 15px;
  }

  /* line 4113, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #blog .blog-item {
    right: 0;
  }

  /* ABOUT AUTHOR */
  /* line 4119, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .pull-left {
    margin-right: 20px;
  }

  /* line 4123, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .media-object {
    margin-bottom: 20px;
    max-width: 100px;
  }

  /* line 4128, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .brands {
    display: none;
  }

  /* line 4132, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .media-body ul li {
    padding: 7px 10px;
    font-size: 12px;
  }

  /* PORTFOLIO */
  /* line 4139, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #portfolio .portfolio-item {
    right: 0;
  }

  /* line 4143, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #portfolio-slider .carousel-control {
    display: none;
  }

  /* line 4147, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #portfolio-slider {
    margin-bottom: 70px;
  }

  /* FAQ */
  /* line 4154, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #faq img,
  #faq .flex-video {
    margin-bottom: 20px;
  }

  /* COMMING SOON */
  /* line 4160, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .navbar-commingsoon {
    position: static;
    margin-top: 30px;
    padding: 30px 0;
  }

  /* ERROR */
  /* line 4168, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .error .error-number {
    margin: 0;
  }

  /* SIGN IN / SING UP */
  /* line 4174, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .forms-only h1 {
    font-size: 80px;
    margin: 20px 0 30px;
  }

  /* line 4179, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .forms-only {
    padding: 0;
  }

  /* ESHOP */
  /* line 4185, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .select-perpage.form-control {
    margin-bottom: 10px;
  }

  /* line 4189, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #eshop-slider {
    margin-bottom: 30px;
  }

  /* line 4193, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .eshop-detail .eshop-product form button[type=submit] {
    margin: 0;
  }

  /* line 4197, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .shopping-cart-header p {
    margin: 10px 0 20px;
  }

  /* line 4201, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .shopping-cart-header > div:last-child p {
    margin: 10px 0 0;
  }

  /* INTRODUCTION */
  /* line 4207, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-introduction h2 {
    font-size: 50px;
    line-height: 60px;
  }

  /* line 4212, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-introduction p {
    padding: 0 0;
  }

  /* line 4216, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-features .row > div {
    border-right: 0;
  }

  /* line 4220, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #about-us-slider {
    padding: 30px 0;
  }

  /* line 4224, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-blog-posts .row > div:first-child .recent-blog-post {
    margin-right: 0;
  }

  /* line 4228, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-blog-posts .row > div:last-child .recent-blog-post {
    margin-left: 0;
  }

  /* STATISTICS */
  /* line 4234, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-statistics .row > div .statistic {
    margin-bottom: 20px;
  }

  /* line 4238, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-statistics .row > div:last-child .statistic {
    margin-bottom: 0;
  }

  /* line 4242, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-video {
    text-align: center;
  }

  /* line 4246, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-video .flex-video {
    margin-bottom: 20px;
  }

  /* line 4250, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item-description {
    margin-bottom: 30px;
  }

  /* line 4254, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item p {
    font-size: 30px;
    line-height: 40px;
  }
}
/*------------------------------
	SMALL DEVICES
------------------------------*/
@media (min-width: 768px) and (max-width: 991px) {
  /* line 4265, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .profile {
    margin: 0;
  }

  /* line 4269, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .pricing-plan.popular {
    top: -35px;
  }

  /* line 4273, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #portfolio-slider .carousel-control {
    display: block;
  }

  /* line 4277, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #portfolio-slider .carousel-control.left {
    left: -65px;
  }

  /* line 4281, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #portfolio-slider .carousel-control.right {
    right: -65px;
  }

  /* BLOG - TIMELINE */
  /* line 4287, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-timeline .blog-post .blog-post-info {
    width: 70px;
    height: 70px;
    margin-left: -33px;
  }

  /* line 4293, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-timeline .blog-post .blog-post-info .number {
    font-size: 24px;
  }

  /* line 4297, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-timeline .blog-post .blog-post-info .month {
    font-size: 14px;
  }

  /* line 4301, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .shopping-cart .form-address h3 {
    margin: 0 0 10px;
  }
}
@media (max-width: 767px) {
  /* BLOG - TIMELINE */
  /* line 4310, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-timeline:before {
    display: none;
  }

  /* line 4314, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-timeline .text-center .btn {
    margin-top: 0;
  }

  /* line 4318, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-timeline-mark {
    margin-top: 0;
    margin-bottom: 20px;
  }

  /* line 4323, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-timeline .blog-post {
    width: 100%;
    margin: 0 0 50px;
  }

  /* line 4328, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-timeline .blog-post .blog-post-body {
    padding: 0 18px 15px;
  }

  /* line 4332, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-blog-posts .row > div:first-child .recent-blog-post {
    margin-bottom: 30px;
  }

  /* line 4337, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 .item,
  .jumbotron3 .item {
    background-size: auto;
  }

  /* line 4341, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .eshop-product .product-sale-label {
    top: -35px;
    width: 75px;
    height: 75px;
    font-size: 24px;
  }

  /* line 4348, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .eshop-product .product-sale-label .text {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  /* line 4354, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .comment .media-object {
    margin-right: 10px;
    max-width: 64px;
  }

  /* line 4359, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .pull-left {
    display: none;
  }

  /* line 4363, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .media-body ul {
    margin-bottom: 10px;
  }

  /* line 4367, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .about-author .media-body ul li {
    border-right: 0;
    display: block;
    padding: 10px 0 0;
    font-size: 14px;
  }

  /* line 4374, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .digits .cntSeparator {
    display: block !important;
  }

  /* line 4378, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .digits .cntDigit {
    margin-bottom: 40px;
  }

  /* line 4382, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .commingsoon-text {
    position: relative;
  }

  /* line 4386, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .countdown-labels {
    text-align: center;
    position: absolute;
    top: 160px;
    left: 50%;
    margin-left: -67px;
  }

  /* line 4394, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .countdown-labels span {
    display: block;
    height: 32px;
    margin: 0;
    margin-bottom: 100px;
  }

  /* line 4401, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-2 h2 {
    font-size: 60px;
    line-height: 80px;
    margin: 30px 0 30px;
  }

  /* line 4407, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-2 h3 {
    font-size: 30px;
    line-height: 40px;
  }

  /* line 4414, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 h2,
  .jumbotron5 h2,
  .jumbotron3 h2 {
    font-size: 50px;
    line-height: 60px;
    margin: 80px 0 30px;
  }

  /* line 4420, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron3 #slide-2 h2 {
    font-size: 36px;
    line-height: 40px;
    margin: 50px 0 40px;
  }

  /* line 4428, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 h3,
  .jumbotron5 h3,
  .jumbotron3 h3 {
    font-size: 30px;
    margin: 0 0 20px;
  }

  /* line 4433, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron3 #slide-2 h3 {
    font-size: 24px;
    margin: 0 0 20px;
  }

  /* line 4440, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 .btn,
  .jumbotron5 .btn,
  .jumbotron3 .btn {
    font-size: 18px;
  }
}
@media (max-width: 568px) {
  /* line 4450, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .overlay-wrapper .overlay a {
    font-size: 45px;
    margin-left: -15px;
    margin-top: -27px;
  }

  /* line 4456, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .error .error-number {
    font-size: 200px;
  }

  /* line 4460, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .error .error-text h1 {
    font-size: 60px;
  }

  /* line 4464, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .error .error-text p {
    padding: 0 10px;
  }

  /* line 4468, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .eshop-list .eshop-product > .row > div {
    width: 100%;
  }

  /* line 4472, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item p {
    font-size: 20px;
    line-height: 28px;
  }

  /* line 4477, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 h2 {
    font-size: 40px;
  }

  /* line 4481, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 .input-group .form-control {
    height: 50px;
    font-size: 16px;
  }

  /* line 4486, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 .input-group .btn {
    font-size: 16px;
    padding: 12px 13px 11px;
  }
}
@media (max-width: 480px) {
  /* line 4493, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .content-full header.navbar .brands {
    display: none;
  }

  /* line 4497, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #contact h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* line 4502, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #contact p {
    font-size: 14px;
    line-height: 26px;
  }

  /* line 4507, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #contact .contact-address li {
    font-size: 14px;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }

  /* line 4513, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #contact .brands li {
    margin-right: 10px;
  }

  /* line 4517, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #contact .brands li a {
    font-size: 16px;
    padding-top: 6px;
    width: 35px;
    height: 35px;
  }

  /* line 4524, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #map-canvas {
    display: none;
  }

  /* line 4528, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-buttons .btn {
    font-size: 11px;
    padding: 6px 9px 5px;
    margin-right: 5px;
  }

  /* line 4534, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-buttons .pull-right {
    padding-top: 0;
  }

  /* SIGN IN / SING UP */
  /* line 4540, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .forms-only h1 {
    font-size: 60px;
    margin: 20px 0 30px;
  }

  /* line 4545, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .forms-only form {
    padding: 20px;
  }

  /* line 4549, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .forms-only form h2 {
    font-size: 30px;
  }

  /* line 4553, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .forms-only .form-info {
    display: none;
  }

  /* line 4557, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .commingsoon .countdown-labels {
    top: 190px;
  }

  /* line 4561, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-1 h2 {
    margin: 20px 30px 40px;
  }

  /* line 4567, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 h2,
  .jumbotron5 h2,
  .jumbotron3 h2 {
    font-size: 45px;
    line-height: 55px;
    margin: 60px 0 20px;
  }

  /* line 4575, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 h3,
  .jumbotron5 h3,
  .jumbotron3 h3 {
    font-size: 28px;
    margin: 0 0 20px;
  }

  /* line 4582, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 .btn,
  .jumbotron5 .btn,
  .jumbotron3 .btn {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  /* FORM */
  /* line 4591, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  form span.form-info {
    margin-left: 5px;
    font-size: 12px;
    top: 11px;
  }

  /* TABS */
  /* line 4599, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .nav-tabs > li > a {
    padding: 8px 12px;
  }

  /* line 4605, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:hover,
  .nav-tabs > li.active > a:focus {
    padding: 10px 14px;
    margin-top: -4px;
  }

  /* line 4610, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .tab-content {
    padding: 10px;
  }

  /* CONTENT */
  /* line 4616, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .content h2 {
    font-size: 26px;
  }

  /* JUMBOTRON */
  /* line 4622, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron2 h2 {
    font-size: 40px;
  }

  /* line 4626, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron2 h2 small {
    font-size: 24px;
    line-height: 34px;
  }

  /* line 4631, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-2 h2 {
    font-size: 50px;
    line-height: 60px;
  }

  /* line 4636, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-1 h2 {
    font-size: 24px;
    line-height: 36px;
    margin: 0 10px 20px;
  }

  /* line 4642, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-1 h3 {
    font-size: 18px;
    line-height: 30px;
    margin: 0 10px 15px;
  }

  /* line 4650, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 h2,
  .jumbotron5 h2,
  .jumbotron3 h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 40px 0 20px;
  }

  /* line 4656, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron3 #slide-2 h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 30px 0 20px;
  }

  /* line 4664, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 h3,
  .jumbotron5 h3,
  .jumbotron3 h3 {
    font-size: 24px;
    margin: 0 0 20px;
  }

  /* line 4669, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron3 #slide-2 h3 {
    font-size: 18px;
    margin: 0 0 20px;
  }

  /* line 4676, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron6 #slide-3 .btn,
  .jumbotron5 .btn,
  .jumbotron3 .btn {
    font-size: 14px;
  }

  /* line 4680, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 {
    padding: 60px 0;
  }

  /* line 4684, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 h2 {
    font-size: 28px;
  }

  /* line 4688, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 .input-group .form-control {
    height: 40px;
    font-size: 13px;
  }

  /* line 4693, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .jumbotron4 .input-group .btn {
    font-size: 13px;
    padding: 10px 8px 10px;
  }

  /* ABOUT */
  /* line 4700, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .profile {
    margin: 0;
  }

  /* CONTACT */
  /* line 4706, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #contact form .btn {
    padding: 5px 8px;
  }

  /* BLOG */
  /* line 4712, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post h3 {
    font-size: 25px;
    line-height: 35px;
  }

  /* line 4717, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post p {
    font-size: 14px;
    line-height: 24px;
  }

  /* line 4722, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .pagination > li > a, .pagination > li > span {
    font-size: 16px;
    padding: 7px 13px;
  }

  /* line 4727, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span {
    padding: 10px 10px;
  }

  /* line 4731, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span:last-child {
    padding-right: 10px;
  }

  /* line 4735, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span:first-child {
    padding-left: 10px;
  }

  /* line 4739, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-detail span i {
    margin-right: 6px;
  }

  /* line 4743, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .blog-post-buttons .pull-right {
    display: none;
  }

  /* COMMENTS */
  /* line 4749, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .comment .media, .media-body {
    clear: both;
    margin-top: 20px;
  }

  /* line 4754, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .comment h4 {
    margin: 20px 0;
  }

  /* line 4758, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .comment h4 small {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }

  /* FEATURES */
  /* line 4766, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #features .features-content h3.features-title {
    font-size: 18px;
  }

  /* ERROR */
  /* line 4772, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .error .error-number {
    font-size: 160px;
  }

  /* line 4776, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .error .error-text h1 {
    font-size: 40px;
  }

  /* line 4780, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .error .error-text p {
    font-size: 22px;
    line-height: 35px;
  }

  /* ESHOP */
  /* line 4787, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .eshop-detail .blog-post-buttons {
    display: none;
  }

  /* line 4791, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .eshop-detail .eshop-product .product-price .old-price {
    font-size: 16px;
  }

  /* line 4795, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .eshop-detail .eshop-product .product-price .new-price {
    font-size: 35px;
    margin-left: 10px;
  }

  /* line 4800, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .form-address span.form-info {
    top: -8px;
  }

  /* line 4804, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .shopping-cart-footer p.total-price-title {
    font-size: 14px;
  }

  /* line 4808, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .shopping-cart-footer p.total-price {
    font-size: 26px;
  }

  /* INTRODUCTION */
  /* line 4814, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-introduction h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 20px;
  }

  /* line 4820, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-introduction p {
    font-size: 16px;
    margin: 0 0 10px;
  }

  /* line 4825, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .btn-googleplay {
    margin-right: 0;
  }

  /* line 4829, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .product-content {
    text-align: center;
  }
}
@media (max-width: 320px) {
  /* line 4835, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .overlay-wrapper .overlay a {
    font-size: 30px;
    margin-left: -15px;
    margin-top: -18px;
  }

  /* line 4841, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #contact .brands li {
    margin-right: 4px;
  }

  /* line 4845, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #features .features-content h3.features-title {
    font-size: 14px;
  }

  /* line 4849, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item .hover-overlay {
    padding-top: 5px;
  }

  /* line 4853, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item p {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 8px;
  }

  /* line 4859, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  #section-portfolio .portfolio-item a i {
    font-size: 14px;
    height: 35px;
    padding-top: 9px;
    width: 35px;
  }
}
/*------------------------------
	FLEX VIDEO
------------------------------*/
/* line 4871, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.flex-video {
  position: relative;
  padding-top: 25px;
  padding-bottom: 67.5%;
  height: 0;
  overflow: hidden;
}

/* line 4879, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.flex-video.widescreen {
  padding-bottom: 57.25%;
}

/* line 4880, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.flex-video.vimeo {
  padding-top: 0;
}

/* line 4881, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.flex-video.soundcloud {
  padding-bottom: 0;
  height: 166px;
}

/* line 4885, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
.flex-video iframe,
.flex-video object,
.flex-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0 none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  /* line 4901, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/custom.css.scss */
  .flex-video {
    padding-top: 0;
  }
}
/*! jQuery UI - v1.11.2 - 2015-02-04
* http://jqueryui.com
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/

.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
	font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
    background-color: #159f85;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0; /* support: IE7 */
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	/* Support: IE7 */
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
	right: 0.5em;
	left: auto;
	margin-top: -8px;
	position: absolute;
	top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
	text-align: left;
	padding: 0.4em 2.1em 0.4em 1em;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertically center icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #eeeeee url("../images/celfi/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;
	color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #e78f08;
	background: #f6a828 url("../images/celfi/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;
	color: #ffffff;
	font-weight: bold;
}
.ui-widget-header a {
	color: #ffffff;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #cccccc;
	background: #f6f6f6 url("../images/celfi/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;
	font-weight: bold;
	color: #1c94c4;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #1c94c4;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #fbcb09;
	background: #fdf5ce url("../images/celfi/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;
	font-weight: bold;
	color: #c77405;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
	color: #c77405;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #fbd850;
	background: #ffffff url("../images/celfi/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
	font-weight: bold;
	color: #eb8f00;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #eb8f00;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fed22f;
	background: #ffe45c url("../images/celfi/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #b81900 url("../images/celfi/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;
	color: #ffffff;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #ffffff;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #ffffff;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("../images/celfi/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("../images/celfi/ui-icons_ffffff_256x240.png");
}
.ui-state-default .ui-icon {
	background-image: url("../images/celfi/ui-icons_ef8c08_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url("../images/celfi/ui-icons_ef8c08_256x240.png");
}
.ui-state-active .ui-icon {
	background-image: url("../images/celfi/ui-icons_ef8c08_256x240.png");
}
.ui-state-highlight .ui-icon {
	background-image: url("../images/celfi/ui-icons_228ef1_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("../images/celfi/ui-icons_ffd27a_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #666666 url("../images/celfi/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;
	opacity: .5;
	filter: Alpha(Opacity=50); /* support: IE8 */
}
.ui-widget-shadow {
	margin: -5px 0 0 -5px;
	padding: 5px;
	background: #000000 url("../images/celfi/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;
	opacity: .2;
	filter: Alpha(Opacity=20); /* support: IE8 */
	border-radius: 5px;
}
/*! jQuery UI - v1.11.2 - 2015-02-04
* http://jqueryui.com
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */


.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#eee url("celfi/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("celfi/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#fff;font-weight:bold}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6 url("celfi/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#1c94c4}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #fbcb09;background:#fdf5ce url("celfi/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#c77405}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url("celfi/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#eb8f00}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("celfi/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("celfi/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#fff}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("celfi/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("celfi/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("celfi/ui-icons_ef8c08_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("celfi/ui-icons_ef8c08_256x240.png")}.ui-state-active .ui-icon{background-image:url("celfi/ui-icons_ef8c08_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("celfi/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("celfi/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("celfi/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url("celfi/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px}
/*!
 * jQuery UI CSS Framework 1.11.2
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */

/* Layout helpers
----------------------------------*/

.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
	font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
    background-color: #159f85;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0; /* support: IE7 */
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	/* Support: IE7 */
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
	right: 0.5em;
	left: auto;
	margin-top: -8px;
	position: absolute;
	top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
	text-align: left;
	padding: 0.4em 2.1em 0.4em 1em;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertically center icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}
/*! jQuery UI - v1.11.2 - 2015-02-01
* http://jqueryui.com
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */


.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}
/*!
 * jQuery UI CSS Framework 1.11.2
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
 */


/* Component containers
----------------------------------*/

.ui-widget {
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #eeeeee url("../images/celfi/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;
	color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #e78f08;
	background: #f6a828 url("../images/celfi/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;
	color: #ffffff;
	font-weight: bold;
}
.ui-widget-header a {
	color: #ffffff;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #cccccc;
	background: #f6f6f6 url("../images/celfi/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;
	font-weight: bold;
	color: #1c94c4;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #1c94c4;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #fbcb09;
	background: #fdf5ce url("../images/celfi/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;
	font-weight: bold;
	color: #c77405;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
	color: #c77405;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #fbd850;
	background: #ffffff url("../images/celfi/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
	font-weight: bold;
	color: #eb8f00;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #eb8f00;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fed22f;
	background: #ffe45c url("../images/celfi/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #b81900 url("../images/celfi/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;
	color: #ffffff;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #ffffff;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #ffffff;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("../images/celfi/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("../images/celfi/ui-icons_ffffff_256x240.png");
}
.ui-state-default .ui-icon {
	background-image: url("../images/celfi/ui-icons_ef8c08_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url("../images/celfi/ui-icons_ef8c08_256x240.png");
}
.ui-state-active .ui-icon {
	background-image: url("../images/celfi/ui-icons_ef8c08_256x240.png");
}
.ui-state-highlight .ui-icon {
	background-image: url("../images/celfi/ui-icons_228ef1_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("../images/celfi/ui-icons_ffd27a_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #666666 url("../images/celfi/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;
	opacity: .5;
	filter: Alpha(Opacity=50); /* support: IE8 */
}
.ui-widget-shadow {
	margin: -5px 0 0 -5px;
	padding: 5px;
	background: #000000 url("../images/celfi/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;
	opacity: .2;
	filter: Alpha(Opacity=20); /* support: IE8 */
	border-radius: 5px;
}
/*! jQuery UI - v1.11.2 - 2015-02-04
* http://jqueryui.com
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */


.ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#eee url("celfi/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("celfi/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#fff;font-weight:bold}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6 url("celfi/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#1c94c4}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #fbcb09;background:#fdf5ce url("celfi/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#c77405}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url("celfi/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#eb8f00}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("celfi/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("celfi/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#fff}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("celfi/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("celfi/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("celfi/ui-icons_ef8c08_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("celfi/ui-icons_ef8c08_256x240.png")}.ui-state-active .ui-icon{background-image:url("celfi/ui-icons_ef8c08_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("celfi/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("celfi/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("celfi/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url("celfi/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px}
/*
 *  Bootstrap TouchSpin - v3.0.1
 *  A mobile and touch friendly input spinner component for Bootstrap 3.
 *  http://www.virtuosoft.eu/code/bootstrap-touchspin/
 *
 *  Made by István Ujj-Mészáros
 *  Under Apache License v2.0 License
 */


.bootstrap-touchspin .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  margin-left: -1px;
  position: relative;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  border-top-right-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  margin-top: -2px;
  border-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical i {
  position: absolute;
  top: 3px;
  left: 5px;
  font-size: 9px;
  font-weight: normal;
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('fancybox_overlay.png');
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}
/* line 3, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

/* line 10, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #F0F0F0;
  background-image: url(data:image/jpeg;base64,%2F9j%2F4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP%2FsABFEdWNreQABAAQAAABQAAD%2F4QMpaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu%2B7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI%2FPiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MCA2MS4xMzQ3NzcsIDIwMTAvMDIvMTItMTc6MzI6MDAgICAgICAgICI%2BIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI%2BIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgV2luZG93cyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMjk0Njc3ODk2QUMxMUU0OTYyNEU2Rjc0Mzg1RjgxMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMjk0Njc3OTk2QUMxMUU0OTYyNEU2Rjc0Mzg1RjgxMSI%2BIDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUyOTQ2Nzc2OTZBQzExRTQ5NjI0RTZGNzQzODVGODExIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUyOTQ2Nzc3OTZBQzExRTQ5NjI0RTZGNzQzODVGODExIi8%2BIDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY%2BIDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8%2B%2F%2B4ADkFkb2JlAGTAAAAAAf%2FbAIQAAgICAgICAgICAgMCAgIDBAMCAgMEBQQEBAQEBQYFBQUFBQUGBgcHCAcHBgkJCgoJCQwMDAwMDAwMDAwMDAwMDAEDAwMFBAUJBgYJDQsJCw0PDg4ODg8PDAwMDAwPDwwMDAwMDA8MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM%2F8AAEQgAsgC8AwERAAIRAQMRAf%2FEAJEAAAMBAQEBAQAAAAAAAAAAAAIDBAEFAAYIAQEBAQEBAQAAAAAAAAAAAAAAAQIDBAcQAAIABAMGAQkGBgIDAQAAAAECABEhAzFBElFxgSIyBBNhkbHB0UJScjOh4bIjUwXxYoKSwnPwNEODFCQRAQEAAwEAAgIDAAIDAAAAAAABETECIVEDQRJhMhNxgbEEFP%2FaAAwDAQACEQMRAD8A%2FJduy9zpEhmxoI%2Bvzm3TzOlYtLYdWA1XARJmHl2R254wjo3TO7cn8RrxjduaAlxG2A1epfmEJuDzdTbzCjyqWIyBwMMCm0oR1pMzHNKePojUAMgY0oxzlSJfQkqVx88TQOz9W3vhNiiKoGdVBLMAozgidO6D3dFsUKudZ8ik0iTv4GUONDtEQeijD0XPl9YhBNWQ8nriBq28C2GSjH7oA7ncPY7e61uQkVGmVKmLesc0DY7%2B1dAVj4T7DgdxjPPco6EbVB%2B5f9Q%2F7V%2FyjH2f1Hz0o82B2pESIywlgI9s%2Bu2eON%2B%2FiXFv%2FkQHMu2YnGv8umJ%2F7X12yS7VXPqXPmPpjnXoD6YKO3JriA0mwqIvO0NKKGf3iCamNTjLHX2c87bPOX2xv%2FP%2BXL%2F6J8DQ8y0zifpY3%2FtA4TmZ4nZHPDq8VBFYD1q0PFUgylWUXmeiS73K2yVU6jm06TjN6xoQO7XJlmLS4DhHO3IPtBO6DmFf8Ji87FkbG4T8uMAaqHS7Okl35iLPchICrgCJ5yrGQUAjuq9pelkUNaZxO%2F60cSX3R5xZ2%2Fe3rBCnnt%2FAT6DG%2Be7B1LrWu%2B7NyjlNDqWBkZYjybY7YnfKo%2F8A5LUpSPzTrPf90Z%2FzY%2FeKmskVUl0HVLEcI6ezTVkpYPMoBpMQzak4k1Fdz6lz5j6YlVq2yZE8q%2FEfVFkFNsKjDStZymakxZ4NY6iSwqTiMotoEiUpVXaPXDN3ln9OfhqSDKPKImc1ZMBEgSJkk1rEaBcupb620k1VZTY8IXzaJrXeu95FRQiMSCMTxMSd%2BiXxBcM7qhWNfFQSO4jAxjOdgHtuqlgQ6ZOKjjs4xLAXazF4D%2BV5j%2BkxediyNBy2q8507FGJ9kawKEbQGCqAJVArGpQk21aZHKThLA%2ByJZAllZOoSnhGbMCbu%2F8Aq3vmT0xnv%2BtHFVWchUUsWyAr5o4YyHm3as%2FWOtx%2F4UOHzN7IuJNq6fY9zca1eUKiopXSqqJCc578M47fX1mVD9Nvq0mfwz5fNGvNjcDMGW6ANFS5cAdSSSKr6xFnoodFV2IE2LTrlM5CNWSUeInOZJnjWM5HpTZPmEWDYl2MwIM5HKsIGJIuJrWdCPPWNc%2BjnX%2B5dWa3bHhlCedurhsjn11i%2BDnNMmcyxapJrHMM7aXj29%2BHCLzsJ1UHklEBo7qdSHSTTDGLLgX9mEu3SfDKsqsJp01EsMsY6cSdUWqoQyUSpVs41rQ2QodmERXgOZvl9Yh%2BEelSURXp104rmpqDFyhN%2Bxabtb5Zbmmh0pU0M6Q6k%2FWj51r5lotKLKHqAxb5mxMeb9vgIMhQZxmjp%2Ft3Rf3p%2FlHb6tUdDKNjWklbhlsUVJ9kax8gPGYsun8sTBAX1nExM%2FA6LMdTT5hM09kayAFaLjjpOPqnDA0dSeVhOJBhnlWsW7AsyoSGPN8K%2Bs5Q8gBLrNdT3RqA0jZPOJLQlz4tLo1ywOBG4xM52Jm7dhM2ucDL3hwzjN5%2BAjtvr295pwic7ClVmYBQWJFABOMi232wUDxmmf01OG8%2ByNzn5F1l2DhVkiyaSrhgY1KHFpjmmxyOf%2FN8al%2BRgrVTqUUJzhgb8Y%2Fl9eUSDAZiY4nZDAWzovSA7HH4fvhnAA3bnh3TrIPLUUlXKGRz7tu1eq40XDXxVGO8UBjF5lHPu9tcs8x57eAuLUcdnGOPXFgs%2Fb%2Bi%2FvT%2FACjp9Wr%2FANC%2BspyptjeRLWda7YKICq1zE4qOs3U0tp9MWgZVB2QUdolmBI1Sz2cY3z6hN5nVmCr4akmoz4xnrYmjKmWvqW%2FmHpizaF7YyN%2ByKH9uguXA72w7AfVw%2FjGuZmhbL4ZKqnhKcAMxvziaC4gZa%2BoJ4SafmMJsUwVnTMih80VDUE0c6AxIpOk5bY3PRFcd2MmGmXuylKOdtC4K0%2FSunZp9MESyngZgUPpiDysQTpmJ5eo7YZVfYsi3YusO2AdyDoBlPhljG5ziaRL417XL%2BnwpU3SiehhRGqD4bbPdPsieBLIyuocSMxLYR5DnEswOo02dwMQT%2FGN4GcqyHURDQ9qYslTiBISkJ%2BSEoyUic1NSDnwhaFtaBqlDmpw4GJiAEBW6gYFTqFDvhNhaqzEhRPbEkFC2lXE62y2ffFxgMrqBmABhKNc%2B0SK5AlipxU4RiUFpVukyPwN6jDA20CLsiJEBqHcYTYeBqAM5LiScIsg2YGAmcJxdBbklblSeUEk4GohdBIfAMNajI4jcYzke0A9B1fynH74Y%2BAJpauzGGmY4wn5CVtF%2BboQ%2B83q2wkDl0J0CZ%2FUbHhshnGgQJ8N64ss%2FthND2tpY8c%2FPjDNAQU%2B1NWQsVW2SOvA7pxYh7nWzhWDBTzKpw3xroDMzEsDjGRgoyb5SnlxiwFEuxkxnljBTbcwyAyA90H1RvmVC9avq0MrICZ6cBvEZowEHCIrRiKRedoijA9SAqsPpYq7KOUyDY%2Fwjpz%2FIKZIDkhlyIwn5BEoypmDhlEAPQXBtA88xD8CeIrQCSAtTlLGIiu20rd3W1suJYyPnjpNCZ9c%2Bec8jlwMYv8gIKMfSf5l9cJpAZRBjXVXoXWw944cB7YugmZZwzkkkjm9UNg7hIv3nDEEO0mB8plC7Dk7nK7j%2BoPWIuc7Fa8xUqQyk4ioiyDZGpNAMSYY9HgQDNRM%2FEfZC3Gh5RzqTUzFYS%2BjgB2R5qxUz6h6I4y4F9rvUPLdGg%2FqLgd49kbnedi5Dq0kcysDIis46czFEhkilrjBF2nE7hiY5iZ%2B5NfAGmnWZat42RL18BfbtO4Sxm2h%2BbM8pic7Dkd7cijaScsiPKI1nArTuEaQaVtpf0njlGvKHODouZ0mPOIYEpkom7adijqPD2xMfIW14mapyKcRmd5hkFZlouy2L6YT8gwxFJTBxU4QzRulW6TI%2FA3qMXGRoVvDuDSQQyzHnhJcDPDbCY1S%2BnPm80TFEZmJgzDYEYUgrRMMo8o9kQFdkLl0zoHMvPFu0ABkBMtgMYB1m6lm%2FbFy7oZmC%2BGtcac2yEs5vtFS91Zv3XRLmplJGhqGh93bF%2FadXwNnBRr1LvEJtHzrVNJy2xxBaCSFVSxagGJgOn2VtrVxS9zTMS8EV%2FuyjtxMX0I7jtrpY3AxujEn3gN3sjPXN%2FwCRCc5gCOYb28i5nkjS%2FtMa42GZb40olVidKqGIxMXaKe1v2wb1oXyX0z5RMCsqHbWLz1PZkJe3cXU4Otc7g9cTACpltOUQOsjkvbl9MWfkFBRKrOZKJ7TlxhjKKSdHbupussyACBh5BG9TY5%2FgtOetdH6s6e2MYHvE5QtwC4vunMbj7YZBLa1svhHxASKGjCuyGM6GdwFs3LjXnFtZkqoqzVOA9sTq42Obd7xiCtgeEppq948cuEcuvs%2BAixXuLH%2BxfxCMTcUD0u3NodvTC7F%2Fb%2FuN23y3h4yCmqfMOOfGOnP2X8o7Xa3bV7SbLBgKkGjDeI7c39tDnr2zqT4v5Ynhix3CMfr8h4CrS2ujInM7zGp%2FAZZpcQ7DDnYpBwOBiqnu2Ld6YYaW%2FUXHiIWSomt9neW7STrpaTDCqkDyxnnm5CLly1Zn4jan%2FRQ1HkJwES9Tnaufd7m5dGmYS3P6a4cdvGOXXdqHft%2F1bv8ArP4lh9e1dYEqZgkGO6MZEczP5bfEBTiPZDwMt2LgW7JZg6ZEHHdFkoMWgCNZmfhGHEwx8hsjSRkowUQyFdx9BvnX1w%2FA50hLyyjKiUMxCqJk5D7YqHW%2FDtOhc63BFENAZ5n2RYJ%2B87e3e7i66OUuaiGVzymVKHKOffH7Xwcq7buWmCXEKMNvpnHGyzYLtzO%2FY%2F2J6RCX2AbpncuZczemHWx63auXm02kLHYMt8JzbfFdzsewWzcS7cctdHSq0UT2nOPR9f1%2Frc3aGl7dxjoJRielj6DF2MIIMiJEQDLP1U3wmw8ec7YqvV2UzOUJMoEXLYL4tNGmRy4AmLLIOE%2FZzme3YuP0mo3DIxwv1%2FAgM1YgjSRQqaGeyOQu7Azu3P8AWfxLHT69jqR2BBSRM8q%2FEfVDApstbVLoAZhQkkynlwjXNmAWmQ5ebyQwMocDviKT3H0Grgy188QQVxnX%2FnqiINnJGlRpT4V9ZxMXIEdSzEsIQFc0%2BLd2FjIcYXYCYZfDcC5b%2BFsBuOUS69C7XZKe4tNZuAAOpKOZGhnQ5xmfX74Gr%2B1%2Fmub7grqJCJnXM5Q%2Fy99HSS2ttQiIEQYBc98dNaDF6llthNjkYk7Z0jMUy3dYDSw1qMActxyi5RX2%2Bh7qlGwMyrY%2FfFk98DGdUJE9ZGQwHGFxBOzs8tRoMFyES3IwS5p4aW%2FCYTYkpKuOXsiK11S8JXgGlQXMGHHPjDqS7RvadmUe663FZPDpOhqQajhE4%2Bv3Yr5V%2FnbacBwzjXgEksZsZmFDrMpPOUpD0xYHRFex6sc2GMaz8oC7b1WXGtVAYGZpQQs8EErOGptXx00%2BbGM4V5kZRqnqQU1qafdEwgBMspzBE4oK7I3Lpz1N6YXYGR06ywRRi5oBEC7fe20v2hat%2BKS4BuPTEy5QPXGZ9kz4O0xUszHkmcR647XFGEFQJ5jEVjNgJOpd4hBx6cwO2rRkMW2783SvxNn7YsgrsaLdxSizNZu2PADCNc3FAko5JI0MdlR90TygCCspiU8DkYlHger5G%2FCYQSGUt%2BdYitYraGu6%2BhTWXvNuELZNoLtO8VnuW0sDQUnqarGRArlKsTn7M3QqkjdPK3wnDgY3jIEgihEjEDrPS9ZdPpjXIdEVNf7q124lcabnC0vVx2ROupztE9nvjes9wGsrpDLIVNDPE7aQ5%2Bz9pfAM7PVJv9X3w8wBDMhmpkRj%2FCEDrYtXXSY8JiR04HhlF2Ed53Fqxfuqi%2BLd1GcxJVJrxjn33JRyrt25ebU7ajkMhuGUcbbR6x9azP41pxEOdxX1Zxj1VHqicjKcJcA7YBYTmpBnLEGNTYhKW0Y%2F%2BQgmpEhjszjHkGEljMmZgDt9a8Ys2FxFEGK0FRmpwhLhDba23L1NvlaYxEiJUiySjjXO9Vadutc7zD8Iyjjfs%2BBAzMzFmJZiasamOVyK%2Bw%2Bq%2FwAh9Ijf17HWjuog5A0kal2HLcYZQ5TaSzeulyFQAsJTI9samJLRx%2B4%2FcrjzWyPCT4vePHKOHX2%2FA5kyaznPOOSuj2X0u53p%2FlHb69VFMl1Y8sbDltEgFuRNrY8BFwHIVtsCiyrVzUmLn4B9129ruGbxU5hPS60YSwrnxh1J1scW%2FwBheszKfnWwJllFRvEcL9dnoksfWtfOteIjHG4r6snhOcpx67tGFtNX5RkMSeEMY2Bt3T4iBBpUtI5kzOcJfRr6XmXFT7wFeO2G9hLW2Wo5l2j1iJYPW%2Btf%2BZQ52FjLacoyPMy26XGkfgHV90XWwPb9zcbuFVVCIVbkFSZKSJkxOevRt%2FsbN8lh%2BVcJ6wKHePZDriUca%2F216xPWs0nIXBVTxjh1zeQzsPqv8h9Ii%2FXtXXAJMgJk4CO6MZkt0Y6mHuL6zDQXd7q6vbXypCgFQokJAEyMTrqzmjkzs3uqVi4cGXoO8ZcI4%2BX%2BAt7T25axQ9LCoO4iM%2FrjYs7L6Xcb0%2Fyjr9WqKZUwM5YxsVEkmZMzFGriN8FWNVm%2BY%2BmLUDXIkboKSezsXbqXGQhwwOpKTlthOJblDLtwo7Kq6SPeNTwi9CXOcZDLX1LfzD0xZsUSJzp5IitzpFzgbaRWuAlZETquB3jKNT2o5N6%2Byl0RDZ0kiZ6j7OEc71jyCIzauZjmK%2BzaV9ae634TGudjrxtWSnMTocVyO8RchNvs%2B3Rrt1UYNp6Fw4T3QnE9uESteYgoORTioz3mJkJrsnlhEUN8H%2F5e4nSqemM9%2FwBaORHnDrd10EgZo3VbaqneI3LhHa7G1Zftr1wWLi6mEwDMGXwkjCsd%2FrkxkNmspaF07M%2FPjONZGyVugyPwH1GGMgZEMARIzqDGRaxmzSB6iPtjVnow6QBr4LT05RcYBLPUsqVGEMiQu2pg3OszQ%2BqM5HtIboNfgOP3wwPW%2Fq26S5h6Ys2KRsAgr0gvVIkVAHti4wglJ1CRlXIRZfQm4guLK6PE%2FmwI3GM%2BUQXOzdDqtfmoMsGHDOMXj4Adqf8A9KHJVaf9picbHVxwBMdMZGnQDI8zfZu8sXQIFpNWVKypmIZCbltLnWObK4MfvibEj2Xt831FFWI9YiWCW9Xte43p6Yx1%2FWq51nt73cNptKW%2BJsAN5jjzzetDtWP2%2BzZ5rkrzrX%2BQcM%2BMd%2BfrkRdcZxaMmI5hKWWMdM%2BCfxDKchr%2FAFJV9kTICIKLOp2UFdaAipy3GLz7RRcJVjpWQJqRnPGNdBUlqJDyiMq1AdabNVBsiolbqbeYyBiCrt9TupZdag0c4jjnG%2BfaGvMGWmQnl6zFoCMKJSQyyrMxrnaBykaxlXjQExYNtojOLj2xrKkajQ7OMakR5ix5Sslxll98SgaETAnsiDVmA86nTjhnAYKqJjEQV6gOwnMQiDNi09q4HsqdUiVnKeyeEo1%2BuYFyVALenQFHSBICfkiA4yoLn0jlzD1xfwiXKMihbSirHUdgw88angbMyAyGA2RQRJVnI2mfliZAyFABpagnl90Xyj1QybdQ4wgl0s7sFGdTsjOMhq21FTzn7B7YuMByVZSRnKXkiyiNXZCSpxoRtjMtgoW4rYyRthwPGKGAHUuRPTOLzsD7szJQMScAYgmfuRVbQmTQOfUPbDOAuyzN3ALkliGmT8piSi6cgBiNmUXI2QPTyy90%2BoxcAc32aajjADqCgNcOlTmc922GBNc7msrYKjNj1fdEyN7Ukm8ZmoWZ4xIquZoCupRhPLdGso8QTIrXaucMALn0jLJl9BifgT6H06tJltiYuBXFV6CNbqbeYKGQxP2wBo2l1BaQY9J9QjU8R5zqZiGBANQsKAG%2BcYUS9S7xFm0QxkegK%2B31q6hm0g4IceAyjpxmCW%2BtwsWY60E5EYDhlGesiUVmBnlGQ%2Ft5eOvytL%2B0xYLsYqvSwzJP2wBB5JcU3Fmq0LVlvjecflHMcXJlrnMDg%2BI4Rzv8hUstu3yRFWdpL86VRJYsFcAJmZSE5mkWRDDdW3aZrtxFqBM1kdhMbtknoXPl16uXq8SfLt6ox%2FI4tj9ydZL3ANwfqCjDftjjz9t%2FKuxaupeAa0wuLnLEHYRlHae6Q1xJmLSVSTMmLgIa7kn9x9QiZ%2BAtSTcUmpLCZMSbGEkOSDIgmogGrdHviW11x4iL%2BwekyykCak0YVEWQSBDi3INpiY%2BRusLS2JHNzjw2RM%2FA2z9ZKzrCbD1wBnWWMXIS9hXPL%2BWcZ%2B6Tuh5QqzauJeWak0bmFR0mVYSCokL1HTLBc%2FNDGNhLXWNF5R9vnhkJboufKPxCJAlGZcDynqBqDvBhnAP8tzyflscVPSdxy4wxBR2y3F8aamZAl5a%2FbFkFMpdXBRjFwNmZSFBsHrhkc79y%2FwCn%2FwCxfQ0c%2Fs%2FqrgTOnRM6MdM6b5Rwz%2BEDGVX%2FALb%2FANy19TH3PX5NsdPq%2FsO73P1Pe44cI9HW0IiK1epPmEJuI83U28wVkBR231Pe%2Fpw4xrjaAv8A1W6sfe9XkidbCoimWfq298JtFEFeiwNtYv1YZYfxjXCOe%2FW3Vj72PGOf5GRVC%2FRc%2BUfiEPlE7dRwiDy4HcccMoDqdn9B%2Bvjh%2FTHTjQ0Yf8nhnGaNiK5%2F7j%2F1D%2FtH%2BUZ%2BzSPnso8yv%2F%2FZ);
  background-repeat: repeat;
}

/* line 17, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#page-wrapper {
  background-color: #F0F0F0;
}

/* line 21, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.page-boxed {
  width: auto;
  margin: 0 auto;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  /* line 28, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .page-boxed {
    width: 1000px;
  }
}
@media (min-width: 1200px) {
  /* line 34, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .page-boxed {
    width: 1200px;
  }
}
/* line 45, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
a,
a:focus,
a:hover,
button,
button:focus,
button:hover,
button:active {
  outline: 0 none;
  text-decoration: none;
}

/* line 50, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
p {
  margin: 0 0 20px;
}

/* line 59, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  color: #555555;
}

/* TYPOGRAPHY */
/* line 66, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
ul.list-large li {
  font-size: 18px;
  line-height: 36px;
}

/* line 71, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-lg {
  font-size: 20px;
}

/* line 75, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-success {
  color: #2ECC71;
}

/* line 79, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-info {
  color: #3498DB;
}

/* line 83, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-danger {
  color: #C0392B;
}

/* line 87, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-warning {
  color: #E67E22;
}

/* line 91, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.dl-horizontal dt {
  width: 250px;
}

/* line 95, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.dl-horizontal dd {
  margin-left: 270px;
}

/* line 100, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.dl-horizontal dt,
.dl-horizontal dd {
  margin-bottom: 10px;
}

/* BUTTONS */
/* line 108, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: 0 none;
  outline-offset: 0;
}

/* line 113, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom-width: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 12px 7px;
}

/* line 123, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn:active,
.btn.active {
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.2) inset;
}

/* line 127, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn i {
  margin-right: 8px;
}

/* line 132, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-default,
.alert-default {
  background-color: #F0F0F0;
  color: #555555;
}

/* line 139, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-default:hover,
.btn-default:focus,
.btn-default.active {
  background-color: #E0E0E0;
  border-color: #E0E0E0;
}

/* line 145, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-default:active,
.btn-default.active {
  box-shadow: 0 2px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

/* line 157, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body a.btn-default,
body a.btn-default:hover,
body a.btn-default:focus,
body button.btn-default,
body button.btn-default:hover,
body button.btn-default:focus,
body .btn-group label.btn-default,
body .btn-group label.btn-default:hover,
body .btn-group label.btn-default:focus {
  color: #555555;
}

/* line 190, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body a.btn-primary,
body a.btn-primary:hover,
body a.btn-primary:focus,
body button.btn-primary,
body button.btn-primary:hover,
body button.btn-primary:focus,
body a.btn-danger,
body a.btn-danger:hover,
body a.btn-danger:focus,
body button.btn-danger,
body button.btn-danger:hover,
body button.btn-danger:focus,
body a.btn-info,
body a.btn-info:hover,
body a.btn-info:focus,
body button.btn-info,
body button.btn-info:hover,
body button.btn-info:focus,
body a.btn-success,
body a.btn-success:hover,
body a.btn-success:focus,
body button.btn-success,
body button.btn-success:hover,
body button.btn-success:focus,
body a.btn-warning,
body a.btn-warning:hover,
body a.btn-warning:focus,
body button.btn-warning,
body button.btn-warning:hover,
body button.btn-warning:focus {
  color: #FFFFFF;
}

/* line 197, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-danger,
.alert-danger,
.label-danger,
.panel-danger > .panel-heading {
  background-color: #C0392B;
}

/* line 203, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  background-color: #A3271A;
  border-color: #A3271A;
}

/* line 211, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-info,
.alert-info,
.label-info,
.panel-info > .panel-heading {
  background-color: #3498DB;
}

/* line 217, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  background-color: #2280BF;
  border-color: #2280BF;
}

/* line 225, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-warning,
.alert-warning,
.label-warning,
.panel-warning > .panel-heading {
  background-color: #E67E22;
}

/* line 231, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  background-color: #D67118;
  border-color: #D67118;
}

/* line 239, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-success,
.alert-success,
.label-success,
.panel-success > .panel-heading {
  background-color: #2ECC71;
}

/* line 245, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  background-color: #18BA5D;
  border-color: #18BA5D;
}

/* line 250, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-inverse {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
  border-width: 2px;
}

/* line 258, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-inverse:hover,
.btn-inverse:focus {
  background-color: #FFFFFF;
}

/* line 262, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-xs {
  font-size: 10px;
  padding: 6px 8px 5px;
}

/* line 267, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-sm {
  font-size: 11px;
  padding: 6px 9px 5px;
}

/* line 272, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-lg {
  font-size: 14px;
  padding: 11px 16px 10px;
}

/* ALERTS AND LABELS */
/* line 279, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.alert {
  border: 0;
  border-radius: 2px;
  color: #FFFFFF;
}

/* line 285, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.alert .close {
  color: #000;
  font-size: 30px;
  position: relative;
  top: -5px;
}

/* line 292, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.label-default {
  background-color: #BBBBBB;
}

/* VERTICAL NAV */
/* line 298, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav.vertical-nav li {
  border-bottom: 1px solid #E5E5E5;
}

/* line 302, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav.vertical-nav li:last-child {
  border-bottom: 0;
}

/* line 306, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav.vertical-nav li a {
  color: #555555;
  font-weight: 400;
  padding: 6px 0;
  transition-duration: 0.4s;
}

/* line 314, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav.vertical-nav li a:hover,
.nav.vertical-nav li a:focus {
  background-color: transparent;
}

/* line 318, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav.vertical-nav li a i {
  margin-right: 8px;
}

/* line 322, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav.vertical-nav li a .badge {
  float: right;
}

/* POPOVER */
/* line 328, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.popover {
  padding: 0;
  border-radius: 3px;
  border-top-width: 0;
  z-index: 1020;
}

/* line 335, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.popover-title {
  color: #FFFFFF;
  border: 0;
  border-radius: 2px 2px 0 0;
  font-weight: 700;
}

/* TABS */
/* line 344, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav-tabs {
  border-bottom: 1px solid #DDDDDD;
}

/* line 348, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav-tabs > li > a {
  border: 0;
  border-radius: 0;
  margin-right: 0;
  background-color: #E0E0E0;
  color: #555555;
  padding: 12px 18px;
  font-weight: 700;
}

/* line 358, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav-tabs > li > a:hover {
  background-color: #D0D0D0;
  color: #555555;
}

/* line 365, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: 0;
  color: #FFFFFF;
  cursor: default;
  padding: 14px 18px;
  margin-top: -4px;
}

/* line 373, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.tab-content {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 50px;
}

/* PANELS */
/* line 382, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 0;
  margin-bottom: 20px;
}

/* line 390, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-heading {
  border-radius: 0;
  padding: 12px 15px;
}

/* line 395, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-default > .panel-heading {
  background-color: #E5E5E5;
  color: #555555;
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 405, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-primary > .panel-heading,
.panel-success > .panel-heading,
.panel-info > .panel-heading,
.panel-warning > .panel-heading,
.panel-danger > .panel-heading {
  color: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 414, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-primary > .panel-heading .panel-title > a,
.panel-success > .panel-heading .panel-title > a,
.panel-info > .panel-heading .panel-title > a,
.panel-warning > .panel-heading .panel-title > a,
.panel-danger > .panel-heading .panel-title > a {
  color: #FFFFFF;
}

/* line 418, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 0;
}

/* COLLAPSE */
/* line 424, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-title > a {
  color: #FFFFFF;
  display: block;
  cursor: pointer;
}

/* line 430, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-title > a > i {
  margin-right: 8px;
}

/* line 435, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .panel-default .panel-title > a,
body .panel-default .panel-title > a:after {
  color: #555555;
}

/* line 439, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-title a:after {
  display: inline-block;
  font-family: FontAwesome/FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  content: "\f068";
  color: #FFFFFF;
  float: right;
  margin: 2px 0 0;
}

/* line 451, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-title a.collapsed:after {
  content: "\f067";
}

/* line 455, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-group .panel {
  border-radius: 0;
}

/* line 459, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.panel-group .panel + .panel {
  margin-top: 10px;
}

/* FORM CONTROL */
/* line 465, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.form-control {
  border: 1px solid #D5D5D5;
  border-bottom-width: 2px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1) inset;
  color: #555555;
  height: 42px;
  transition: 0.3s ease-in-out 0s;
  border-radius: 0;
}

/* line 475, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.form-control:focus {
  outline: none;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08) inset;
  border-color: #B5B5B5;
}

/* line 481, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

/* line 482, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.form-control:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
/* line 483, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.form-control:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
/* line 485, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
textarea.form-control {
  height: 180px;
  resize: vertical;
}

/* line 490, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
form .row:last-child .form-group {
  margin-bottom: 0;
}

/* line 494, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
form label span {
  color: #E74C3C;
  margin-left: 5px;
}

/* line 499, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
form span.form-info {
  color: #555555;
  margin-left: 15px;
  font-weight: bold;
  position: relative;
  top: 11px;
}

/* line 507, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
form .pull-left span.form-info {
  margin-left: 0;
}

/* line 511, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
form span.required {
  color: #E74C3C;
  margin-right: 5px;
}

/* line 516, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
form button.btn {
  margin: 20px 0 0;
}

/* line 520, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.input-group .form-control {
  height: 40px;
  border-radius: 4px 0 0 4px;
}

/* line 525, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.input-group .btn {
  padding: 9px 13px 8px;
  font-size: 14px;
  margin: 0;
}

/* line 532, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: 0;
}

/* line 536, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.input-group-btn .btn i {
  margin-right: 0;
}

/* line 540, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.input-group-addon {
  border-radius: 0;
  border-bottom-width: 2px;
  color: #888888;
  font-size: 20px;
  border-color: #D5D5D5;
}

/* line 548, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.form-group.nospace {
  margin: 0;
}

/* line 556, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 12px;
}

/* IMAGE OVERLAY */
/* line 562, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.overlay-wrapper {
  position: relative;
}

/* line 566, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.overlay-wrapper .overlay {
  margin: 2px;
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  transition-duration: 0.5s;
}

/* line 579, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.overlay-wrapper .overlay a {
  font-size: 30px;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -18px;
}

/* line 589, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.overlay-wrapper .overlay a:hover {
  color: #FFFFFF;
}

/* line 593, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.overlay-wrapper .overlay .overlay-title {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  top: 20px;
}

/* line 601, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.overlay-wrapper:hover .overlay {
  opacity: 1;
}

/* OWL CAROUSEL */
/* line 607, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-carousel .owl-wrapper-outer {
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  height: 300px;
}

/* line 612, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-pagination {
  text-align: center;
  margin-top: 20px;
}

/* line 617, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-theme .owl-controls {
  margin-top: 0;
}

/* line 622, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-theme .owl-controls .owl-page span,
.owl-theme .owl-controls .owl-page.active span {
  background-color: #CCCCCC;
  border-radius: 50%;
  display: block;
  margin: 0 5px 0 0;
  opacity: 1;
  width: 16px;
  height: 16px;
}

/* line 632, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-theme .owl-controls .owl-page:last-child span {
  margin-right: 0;
}

/* line 636, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  top: 60px;
  bottom: 10px;
  margin: auto;
  width: 44px;
  height: 46px;
  font-size: 29px;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  transition-duration: 0.3s;
}

/* line 652, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .owl-theme .owl-controls .owl-buttons div:hover {
  color: #FFFFFF;
}

/* line 656, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: -80px;
}

/* line 660, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-theme .owl-controls .owl-buttons div.owl-prev i {
  margin-right: 3px;
}

/* line 664, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-theme .owl-controls .owl-buttons div.owl-next {
  right: -80px;
}

/* line 668, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-theme .owl-controls .owl-buttons div.owl-next i {
  margin-left: 3px;
}

/* line 672, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.hidden-control.owl-theme .owl-controls .owl-buttons div {
  opacity: 0;
  transition-duration: 0s;
}

/* line 677, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.hidden-control.owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: 40px;
  color: #FFFFFF;
}

/* line 682, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.hidden-control.owl-theme .owl-controls .owl-buttons div.owl-next {
  right: 40px;
  color: #FFFFFF;
}

/* ISOTOPE */
/* line 689, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.isotope-filter {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0 0 50px;
  padding: 20px;
}

/* line 696, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.isotope-filter ul {
  margin: 0;
}

/* line 700, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.isotope-filter ul li {
  line-height: 60px;
}

/* CREATIVE BRANDS */
/* line 706, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.brands.main {
  margin: 0;
}

/* line 710, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.brands > li {
  margin-bottom: 0;
}

/* line 714, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.brands.main li a {
  color: #FFFFFF;
  transition-duration: 0.2s;
}

/* line 719, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .brands.main li a:hover {
  background-color: #AAAAAA;
}

/* line 723, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.brands > li > a:hover {
  color: #FFFFFF;
}

/*------------------------------
	HEADER
------------------------------*/
/* line 731, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.top-header {
  background-color: #F0F0F0;
  border-bottom: 1px solid #DDDDDD;
  padding: 12px 0;
  height: 50px;
}

/* line 738, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.top-header .header-item {
  display: inline-block;
  margin-right: 20px;
  font-size: 12px;
  padding-top: 4px;
}

/* line 745, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.top-header .header-item:last-child {
  margin-right: 0;
}

/* line 749, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.top-header .header-item i {
  margin-right: 7px;
}

/* line 753, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.top-header .brands {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  top: -2px;
}

/* line 760, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar {
  border-bottom: 1px solid #5b57ae;
  border-top: 1px solid #000;
  background-color: #159F85;
  margin: 0;
  height: 70px;
}

/* line 768, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-offset {
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.05);
}

/* line 772, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-brand {
  padding: 0;
  font-size: 35px;
  font-weight: 600;
  color: #555555;
}

/* line 779, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-nav > li > a {
  padding-bottom: 25px;
  padding-top: 25px;
  color: #000;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}

/* line 787, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-nav > li > a > i {
  font-size: 10px;
  position: relative;
  top: -1px;
  left: 3px;
}

/* line 795, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
}

/* line 804, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #FFFFFF;
}

/* DROPDOWN */
/* line 810, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu {
  background-color: #FFFFFF;
  border: 0;
  border-bottom: 3px solid #16A085;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 0;
  min-width: 260px;
}

/* line 821, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.dropdown-menu > li {
  border-bottom: 1px solid #E5E5E5;
}

/* line 825, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.dropdown-menu > li:last-child {
  border-bottom: 0;
}

/* line 829, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.dropdown-menu > li > a {
  color: #555555;
  font-weight: 400;
  padding: 10px 15px;
  transition: 0.3s ease-in-out 0s;
  background-color: #FFFFFF;
}

/* line 837, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.dropdown-menu > li > a i {
  margin-right: 8px;
}

/* line 841, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.dropdown-menu > li > a:hover {
  background-color: #E5E5E5;
  color: #333333;
  padding-left: 20px;
}

/* WIDE MENU */
/* line 849, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.yamm-content {
  padding: 20px;
}

/* line 853, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.yamm-content h3 {
  margin: 0 0 20px;
}

/* line 857, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.yamm-content p {
  margin: 0;
  line-height: 24px;
}

/* line 862, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.yamm-content img {
  margin-bottom: 20px;
}

/* line 866, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.yamm-content ul li a:hover {
  background-color: transparent;
}

/* NAVBAR SHOPPING CART */
/* line 875, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-nav > li.shopping-cart-toggle > a,
.navbar-default .navbar-nav > li.shopping-cart-toggle.open > a,
.navbar-default .navbar-nav > li.shopping-cart-toggle.open > a:hover,
.navbar-default .navbar-nav > li.shopping-cart-toggle.open > a:focus {
  padding: 16px 0 0;
  background-color: transparent;
}

/* line 883, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-nav > li.search-form-toggle > a,
.navbar-default .navbar-nav > li.search-form-toggle.open > a,
.navbar-default .navbar-nav > li.search-form-toggle.open > a:hover,
.navbar-default .navbar-nav > li.search-form-toggle.open > a:focus {
  padding: 16px 15px 0;
  background-color: transparent;
}

/* line 889, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-nav > li.shopping-cart-toggle > a > i,
.navbar-default .navbar-nav > li.search-form-toggle > a > i {
  font-size: 22px;
  background-color: #F0F0F0;
  color: #AAAAAA;
  padding: 8px;
  border-radius: 4px;
}

/* line 898, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-default .navbar-nav > li.shopping-cart-toggle.open > a > i,
.navbar-default .navbar-nav > li.search-form-toggle.open > a > i {
  border-radius: 4px 4px 0 0;
}

/* line 902, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-counter {
  position: absolute;
  background-color: #C0392B;
  padding: 0 6px 1px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
  border-radius: 4px;
  right: -10px;
  top: 5px;
}

/* line 915, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart,
.navbar-nav > li > .dropdown-menu.navbar-search-form {
  background-color: #F0F0F0;
  padding: 0;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  right: -3px;
  border: 0;
  margin-top: -1px;
  width: 400px;
  font-size: 13px;
  color: #777777;
}

/* line 927, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li {
  padding: 0 0 7px;
}

/* line 931, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li:hover {
  background-color: #F9F9F9;
}

/* line 935, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li:last-child {
  padding: 0 10px;
  background-color: #FFFFFF;
}

/* line 940, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart a.delete {
  position: relative;
  top: 9px;
  left: 10px;
  color: #444;
}

/* line 947, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart a h3 {
  font-size: 13px;
  margin: 12px 0 0;
  color: #777777;
}

/* line 953, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart a:hover h3 {
  text-decoration: underline;
}

/* line 957, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart p {
  margin: 10px 0 0;
}

/* line 961, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart p.price {
  font-weight: bold;
  color: #555555;
  position: relative;
  right: 5px;
}

/* line 968, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li:last-child p.price {
  right: -1px;
  color: #C0392B;
}

/* line 973, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-shopping-cart li:last-child .btn {
  margin: 10px 0;
  color: #FFFFFF;
}

/* line 978, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-nav > li > .dropdown-menu.navbar-search-form {
  right: 12px;
  padding: 10px;
  width: 100%;
}

/*------------------------------
	JUMBOTRON
------------------------------*/
/* line 989, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron {
  padding: 0;
  border-bottom: 0;
  margin: 0;
  background-color: transparent;
}

/* line 997, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6,
.jumbotron3 {
  background-color: transparent;
  padding: 0;
}

/* line 1003, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 .item,
.jumbotron3 .item {
  height: 450px;
  background-size: 100%;
  background-repeat: no-repeat;
}

/* line 1011, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 h2,
.jumbotron5 h2,
.jumbotron3 h2 {
  color: #FFFFFF;
  padding: 7px 14px;
  margin: 70px 30px 40px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 40px;
  display: inline-block;
}

/* line 1024, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 h3,
.jumbotron5 h3,
.jumbotron3 h3 {
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  padding: 7px 14px;
  margin: 0 30px 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 40px;
  display: inline-block;
}

/* JUMBOTRON 1 */
/* line 1039, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#jumbotron-slider.hidden-control.owl-theme .owl-controls .owl-buttons div,
#jumbotron-eshop-slider.hidden-control.owl-theme .owl-controls .owl-buttons div {
  opacity: 0;
  background-color: transparent;
  color: #FFFFFF;
  transition-duration: 0s;
  border: 0;
  font-size: 60px;
}

/* line 1049, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#jumbotron-slider.hidden-control.owl-theme .owl-controls .owl-buttons div:hover,
#jumbotron-eshop-slider.hidden-control.owl-theme .owl-controls .owl-buttons div:hover {
  background-color: transparent;
}

/* line 1054, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#jumbotron-slider.owl-carousel .owl-wrapper-outer,
#jumbotron-eshop-slider.owl-carousel .owl-wrapper-outer {
  box-shadow: none;
}

/* JUMBOTRON 2 */
/* line 1060, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron2 {
  padding: 100px 0;
  background-position: center center;
}

/* line 1065, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron2 h2 {
  font-size: 80px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

/* line 1074, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron2 h2 small {
  font-size: 50px;
  color: #FFFFFF;
  font-weight: 300;
  margin: 30px 0 0;
  display: block;
}

/* JUMBOTRON 3 */
/* line 1084, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron3 {
  border-bottom: 0;
}

/* line 1088, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#jumbotron-eshop-slider .owl-pagination {
  position: absolute;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  bottom: 20px;
}

/* line 1107, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron3 h2 {
  font-size: 80px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  margin: 90px 0 40px;
  padding: 20px;
  line-height: 90px;
}

/* line 1117, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron3 #slide-2 h2 {
  font-size: 60px;
  padding: 10px 15px;
}

/* line 1122, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron3 h3 {
  margin: 0 0 20px;
}

/* JUMBOTRON 4 */
/* line 1128, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron4 {
  padding: 150px 0;
  background-position: center center;
}

/* line 1133, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron4 h2 {
  color: #FFFFFF;
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 50px;
}

/* line 1140, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron4 .input-group .form-control {
  height: 80px;
  border: 0;
  font-size: 26px;
  padding: 0 20px;
}

/* line 1147, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron4 .input-group .btn {
  font-size: 26px;
  padding: 20px 13px 19px;
  background-color: #444444;
}

/* line 1155, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron4 .input-group .btn:hover,
.jumbotron4 .input-group .btn:focus,
.jumbotron4 .input-group .btn.active {
  border-color: #333333;
  background-color: #333333;
}

/* JUMBOTRON 5 */
/* JUMBOTRON 6 */
/* line 1172, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-1 {
  background-image: url(data:image/jpeg;base64,%2F9j%2F4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP%2FsABFEdWNreQABAAQAAABQAAD%2F4QMpaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu%2B7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI%2FPiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MCA2MS4xMzQ3NzcsIDIwMTAvMDIvMTItMTc6MzI6MDAgICAgICAgICI%2BIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI%2BIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgV2luZG93cyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMjk0Njc3ODk2QUMxMUU0OTYyNEU2Rjc0Mzg1RjgxMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMjk0Njc3OTk2QUMxMUU0OTYyNEU2Rjc0Mzg1RjgxMSI%2BIDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUyOTQ2Nzc2OTZBQzExRTQ5NjI0RTZGNzQzODVGODExIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUyOTQ2Nzc3OTZBQzExRTQ5NjI0RTZGNzQzODVGODExIi8%2BIDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY%2BIDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8%2B%2F%2B4ADkFkb2JlAGTAAAAAAf%2FbAIQAAgICAgICAgICAgMCAgIDBAMCAgMEBQQEBAQEBQYFBQUFBQUGBgcHCAcHBgkJCgoJCQwMDAwMDAwMDAwMDAwMDAEDAwMFBAUJBgYJDQsJCw0PDg4ODg8PDAwMDAwPDwwMDAwMDA8MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM%2F8AAEQgAsgC8AwERAAIRAQMRAf%2FEAJEAAAMBAQEBAQAAAAAAAAAAAAIDBAEFAAYIAQEBAQEBAQAAAAAAAAAAAAAAAQIDBAcQAAIABAMGAQkGBgIDAQAAAAECABEhAzFBElFxgSIyBBNhkbHB0UJScjOh4bIjUwXxYoKSwnPwNEODFCQRAQEAAwEAAgIDAAIDAAAAAAABETECIVEDQRJhMhNxgbEEFP%2FaAAwDAQACEQMRAD8A%2FJduy9zpEhmxoI%2Bvzm3TzOlYtLYdWA1XARJmHl2R254wjo3TO7cn8RrxjduaAlxG2A1epfmEJuDzdTbzCjyqWIyBwMMCm0oR1pMzHNKePojUAMgY0oxzlSJfQkqVx88TQOz9W3vhNiiKoGdVBLMAozgidO6D3dFsUKudZ8ik0iTv4GUONDtEQeijD0XPl9YhBNWQ8nriBq28C2GSjH7oA7ncPY7e61uQkVGmVKmLesc0DY7%2B1dAVj4T7DgdxjPPco6EbVB%2B5f9Q%2F7V%2FyjH2f1Hz0o82B2pESIywlgI9s%2Bu2eON%2B%2FiXFv%2FkQHMu2YnGv8umJ%2F7X12yS7VXPqXPmPpjnXoD6YKO3JriA0mwqIvO0NKKGf3iCamNTjLHX2c87bPOX2xv%2FP%2BXL%2F6J8DQ8y0zifpY3%2FtA4TmZ4nZHPDq8VBFYD1q0PFUgylWUXmeiS73K2yVU6jm06TjN6xoQO7XJlmLS4DhHO3IPtBO6DmFf8Ji87FkbG4T8uMAaqHS7Okl35iLPchICrgCJ5yrGQUAjuq9pelkUNaZxO%2F60cSX3R5xZ2%2Fe3rBCnnt%2FAT6DG%2Be7B1LrWu%2B7NyjlNDqWBkZYjybY7YnfKo%2F8A5LUpSPzTrPf90Z%2FzY%2FeKmskVUl0HVLEcI6ezTVkpYPMoBpMQzak4k1Fdz6lz5j6YlVq2yZE8q%2FEfVFkFNsKjDStZymakxZ4NY6iSwqTiMotoEiUpVXaPXDN3ln9OfhqSDKPKImc1ZMBEgSJkk1rEaBcupb620k1VZTY8IXzaJrXeu95FRQiMSCMTxMSd%2BiXxBcM7qhWNfFQSO4jAxjOdgHtuqlgQ6ZOKjjs4xLAXazF4D%2BV5j%2BkxediyNBy2q8507FGJ9kawKEbQGCqAJVArGpQk21aZHKThLA%2ByJZAllZOoSnhGbMCbu%2F8Aq3vmT0xnv%2BtHFVWchUUsWyAr5o4YyHm3as%2FWOtx%2F4UOHzN7IuJNq6fY9zca1eUKiopXSqqJCc578M47fX1mVD9Nvq0mfwz5fNGvNjcDMGW6ANFS5cAdSSSKr6xFnoodFV2IE2LTrlM5CNWSUeInOZJnjWM5HpTZPmEWDYl2MwIM5HKsIGJIuJrWdCPPWNc%2BjnX%2B5dWa3bHhlCedurhsjn11i%2BDnNMmcyxapJrHMM7aXj29%2BHCLzsJ1UHklEBo7qdSHSTTDGLLgX9mEu3SfDKsqsJp01EsMsY6cSdUWqoQyUSpVs41rQ2QodmERXgOZvl9Yh%2BEelSURXp104rmpqDFyhN%2Bxabtb5Zbmmh0pU0M6Q6k%2FWj51r5lotKLKHqAxb5mxMeb9vgIMhQZxmjp%2Ft3Rf3p%2FlHb6tUdDKNjWklbhlsUVJ9kax8gPGYsun8sTBAX1nExM%2FA6LMdTT5hM09kayAFaLjjpOPqnDA0dSeVhOJBhnlWsW7AsyoSGPN8K%2Bs5Q8gBLrNdT3RqA0jZPOJLQlz4tLo1ywOBG4xM52Jm7dhM2ucDL3hwzjN5%2BAjtvr295pwic7ClVmYBQWJFABOMi232wUDxmmf01OG8%2ByNzn5F1l2DhVkiyaSrhgY1KHFpjmmxyOf%2FN8al%2BRgrVTqUUJzhgb8Y%2Fl9eUSDAZiY4nZDAWzovSA7HH4fvhnAA3bnh3TrIPLUUlXKGRz7tu1eq40XDXxVGO8UBjF5lHPu9tcs8x57eAuLUcdnGOPXFgs%2Fb%2Bi%2FvT%2FACjp9Wr%2FANC%2BspyptjeRLWda7YKICq1zE4qOs3U0tp9MWgZVB2QUdolmBI1Sz2cY3z6hN5nVmCr4akmoz4xnrYmjKmWvqW%2FmHpizaF7YyN%2ByKH9uguXA72w7AfVw%2FjGuZmhbL4ZKqnhKcAMxvziaC4gZa%2BoJ4SafmMJsUwVnTMih80VDUE0c6AxIpOk5bY3PRFcd2MmGmXuylKOdtC4K0%2FSunZp9MESyngZgUPpiDysQTpmJ5eo7YZVfYsi3YusO2AdyDoBlPhljG5ziaRL417XL%2BnwpU3SiehhRGqD4bbPdPsieBLIyuocSMxLYR5DnEswOo02dwMQT%2FGN4GcqyHURDQ9qYslTiBISkJ%2BSEoyUic1NSDnwhaFtaBqlDmpw4GJiAEBW6gYFTqFDvhNhaqzEhRPbEkFC2lXE62y2ffFxgMrqBmABhKNc%2B0SK5AlipxU4RiUFpVukyPwN6jDA20CLsiJEBqHcYTYeBqAM5LiScIsg2YGAmcJxdBbklblSeUEk4GohdBIfAMNajI4jcYzke0A9B1fynH74Y%2BAJpauzGGmY4wn5CVtF%2BboQ%2B83q2wkDl0J0CZ%2FUbHhshnGgQJ8N64ss%2FthND2tpY8c%2FPjDNAQU%2B1NWQsVW2SOvA7pxYh7nWzhWDBTzKpw3xroDMzEsDjGRgoyb5SnlxiwFEuxkxnljBTbcwyAyA90H1RvmVC9avq0MrICZ6cBvEZowEHCIrRiKRedoijA9SAqsPpYq7KOUyDY%2Fwjpz%2FIKZIDkhlyIwn5BEoypmDhlEAPQXBtA88xD8CeIrQCSAtTlLGIiu20rd3W1suJYyPnjpNCZ9c%2Bec8jlwMYv8gIKMfSf5l9cJpAZRBjXVXoXWw944cB7YugmZZwzkkkjm9UNg7hIv3nDEEO0mB8plC7Dk7nK7j%2BoPWIuc7Fa8xUqQyk4ioiyDZGpNAMSYY9HgQDNRM%2FEfZC3Gh5RzqTUzFYS%2BjgB2R5qxUz6h6I4y4F9rvUPLdGg%2FqLgd49kbnedi5Dq0kcysDIis46czFEhkilrjBF2nE7hiY5iZ%2B5NfAGmnWZat42RL18BfbtO4Sxm2h%2BbM8pic7Dkd7cijaScsiPKI1nArTuEaQaVtpf0njlGvKHODouZ0mPOIYEpkom7adijqPD2xMfIW14mapyKcRmd5hkFZlouy2L6YT8gwxFJTBxU4QzRulW6TI%2FA3qMXGRoVvDuDSQQyzHnhJcDPDbCY1S%2BnPm80TFEZmJgzDYEYUgrRMMo8o9kQFdkLl0zoHMvPFu0ABkBMtgMYB1m6lm%2FbFy7oZmC%2BGtcac2yEs5vtFS91Zv3XRLmplJGhqGh93bF%2FadXwNnBRr1LvEJtHzrVNJy2xxBaCSFVSxagGJgOn2VtrVxS9zTMS8EV%2FuyjtxMX0I7jtrpY3AxujEn3gN3sjPXN%2FwCRCc5gCOYb28i5nkjS%2FtMa42GZb40olVidKqGIxMXaKe1v2wb1oXyX0z5RMCsqHbWLz1PZkJe3cXU4Otc7g9cTACpltOUQOsjkvbl9MWfkFBRKrOZKJ7TlxhjKKSdHbupussyACBh5BG9TY5%2FgtOetdH6s6e2MYHvE5QtwC4vunMbj7YZBLa1svhHxASKGjCuyGM6GdwFs3LjXnFtZkqoqzVOA9sTq42Obd7xiCtgeEppq948cuEcuvs%2BAixXuLH%2BxfxCMTcUD0u3NodvTC7F%2Fb%2FuN23y3h4yCmqfMOOfGOnP2X8o7Xa3bV7SbLBgKkGjDeI7c39tDnr2zqT4v5Ynhix3CMfr8h4CrS2ujInM7zGp%2FAZZpcQ7DDnYpBwOBiqnu2Ld6YYaW%2FUXHiIWSomt9neW7STrpaTDCqkDyxnnm5CLly1Zn4jan%2FRQ1HkJwES9Tnaufd7m5dGmYS3P6a4cdvGOXXdqHft%2F1bv8ArP4lh9e1dYEqZgkGO6MZEczP5bfEBTiPZDwMt2LgW7JZg6ZEHHdFkoMWgCNZmfhGHEwx8hsjSRkowUQyFdx9BvnX1w%2FA50hLyyjKiUMxCqJk5D7YqHW%2FDtOhc63BFENAZ5n2RYJ%2B87e3e7i66OUuaiGVzymVKHKOffH7Xwcq7buWmCXEKMNvpnHGyzYLtzO%2FY%2F2J6RCX2AbpncuZczemHWx63auXm02kLHYMt8JzbfFdzsewWzcS7cctdHSq0UT2nOPR9f1%2Frc3aGl7dxjoJRielj6DF2MIIMiJEQDLP1U3wmw8ec7YqvV2UzOUJMoEXLYL4tNGmRy4AmLLIOE%2FZzme3YuP0mo3DIxwv1%2FAgM1YgjSRQqaGeyOQu7Azu3P8AWfxLHT69jqR2BBSRM8q%2FEfVDApstbVLoAZhQkkynlwjXNmAWmQ5ebyQwMocDviKT3H0Grgy188QQVxnX%2FnqiINnJGlRpT4V9ZxMXIEdSzEsIQFc0%2BLd2FjIcYXYCYZfDcC5b%2BFsBuOUS69C7XZKe4tNZuAAOpKOZGhnQ5xmfX74Gr%2B1%2Fmub7grqJCJnXM5Q%2Fy99HSS2ttQiIEQYBc98dNaDF6llthNjkYk7Z0jMUy3dYDSw1qMActxyi5RX2%2Bh7qlGwMyrY%2FfFk98DGdUJE9ZGQwHGFxBOzs8tRoMFyES3IwS5p4aW%2FCYTYkpKuOXsiK11S8JXgGlQXMGHHPjDqS7RvadmUe663FZPDpOhqQajhE4%2Bv3Yr5V%2FnbacBwzjXgEksZsZmFDrMpPOUpD0xYHRFex6sc2GMaz8oC7b1WXGtVAYGZpQQs8EErOGptXx00%2BbGM4V5kZRqnqQU1qafdEwgBMspzBE4oK7I3Lpz1N6YXYGR06ywRRi5oBEC7fe20v2hat%2BKS4BuPTEy5QPXGZ9kz4O0xUszHkmcR647XFGEFQJ5jEVjNgJOpd4hBx6cwO2rRkMW2783SvxNn7YsgrsaLdxSizNZu2PADCNc3FAko5JI0MdlR90TygCCspiU8DkYlHger5G%2FCYQSGUt%2BdYitYraGu6%2BhTWXvNuELZNoLtO8VnuW0sDQUnqarGRArlKsTn7M3QqkjdPK3wnDgY3jIEgihEjEDrPS9ZdPpjXIdEVNf7q124lcabnC0vVx2ROupztE9nvjes9wGsrpDLIVNDPE7aQ5%2Bz9pfAM7PVJv9X3w8wBDMhmpkRj%2FCEDrYtXXSY8JiR04HhlF2Ed53Fqxfuqi%2BLd1GcxJVJrxjn33JRyrt25ebU7ajkMhuGUcbbR6x9azP41pxEOdxX1Zxj1VHqicjKcJcA7YBYTmpBnLEGNTYhKW0Y%2F%2BQgmpEhjszjHkGEljMmZgDt9a8Ys2FxFEGK0FRmpwhLhDba23L1NvlaYxEiJUiySjjXO9Vadutc7zD8Iyjjfs%2BBAzMzFmJZiasamOVyK%2Bw%2Bq%2FwAh9Ijf17HWjuog5A0kal2HLcYZQ5TaSzeulyFQAsJTI9samJLRx%2B4%2FcrjzWyPCT4vePHKOHX2%2FA5kyaznPOOSuj2X0u53p%2FlHb69VFMl1Y8sbDltEgFuRNrY8BFwHIVtsCiyrVzUmLn4B9129ruGbxU5hPS60YSwrnxh1J1scW%2FwBheszKfnWwJllFRvEcL9dnoksfWtfOteIjHG4r6snhOcpx67tGFtNX5RkMSeEMY2Bt3T4iBBpUtI5kzOcJfRr6XmXFT7wFeO2G9hLW2Wo5l2j1iJYPW%2Btf%2BZQ52FjLacoyPMy26XGkfgHV90XWwPb9zcbuFVVCIVbkFSZKSJkxOevRt%2FsbN8lh%2BVcJ6wKHePZDriUca%2F216xPWs0nIXBVTxjh1zeQzsPqv8h9Ii%2FXtXXAJMgJk4CO6MZkt0Y6mHuL6zDQXd7q6vbXypCgFQokJAEyMTrqzmjkzs3uqVi4cGXoO8ZcI4%2BX%2BAt7T25axQ9LCoO4iM%2FrjYs7L6Xcb0%2Fyjr9WqKZUwM5YxsVEkmZMzFGriN8FWNVm%2BY%2BmLUDXIkboKSezsXbqXGQhwwOpKTlthOJblDLtwo7Kq6SPeNTwi9CXOcZDLX1LfzD0xZsUSJzp5IitzpFzgbaRWuAlZETquB3jKNT2o5N6%2Byl0RDZ0kiZ6j7OEc71jyCIzauZjmK%2BzaV9ae634TGudjrxtWSnMTocVyO8RchNvs%2B3Rrt1UYNp6Fw4T3QnE9uESteYgoORTioz3mJkJrsnlhEUN8H%2F5e4nSqemM9%2FwBaORHnDrd10EgZo3VbaqneI3LhHa7G1Zftr1wWLi6mEwDMGXwkjCsd%2FrkxkNmspaF07M%2FPjONZGyVugyPwH1GGMgZEMARIzqDGRaxmzSB6iPtjVnow6QBr4LT05RcYBLPUsqVGEMiQu2pg3OszQ%2BqM5HtIboNfgOP3wwPW%2Fq26S5h6Ys2KRsAgr0gvVIkVAHti4wglJ1CRlXIRZfQm4guLK6PE%2FmwI3GM%2BUQXOzdDqtfmoMsGHDOMXj4Adqf8A9KHJVaf9picbHVxwBMdMZGnQDI8zfZu8sXQIFpNWVKypmIZCbltLnWObK4MfvibEj2Xt831FFWI9YiWCW9Xte43p6Yx1%2FWq51nt73cNptKW%2BJsAN5jjzzetDtWP2%2BzZ5rkrzrX%2BQcM%2BMd%2BfrkRdcZxaMmI5hKWWMdM%2BCfxDKchr%2FAFJV9kTICIKLOp2UFdaAipy3GLz7RRcJVjpWQJqRnPGNdBUlqJDyiMq1AdabNVBsiolbqbeYyBiCrt9TupZdag0c4jjnG%2BfaGvMGWmQnl6zFoCMKJSQyyrMxrnaBykaxlXjQExYNtojOLj2xrKkajQ7OMakR5ix5Sslxll98SgaETAnsiDVmA86nTjhnAYKqJjEQV6gOwnMQiDNi09q4HsqdUiVnKeyeEo1%2BuYFyVALenQFHSBICfkiA4yoLn0jlzD1xfwiXKMihbSirHUdgw88angbMyAyGA2RQRJVnI2mfliZAyFABpagnl90Xyj1QybdQ4wgl0s7sFGdTsjOMhq21FTzn7B7YuMByVZSRnKXkiyiNXZCSpxoRtjMtgoW4rYyRthwPGKGAHUuRPTOLzsD7szJQMScAYgmfuRVbQmTQOfUPbDOAuyzN3ALkliGmT8piSi6cgBiNmUXI2QPTyy90%2BoxcAc32aajjADqCgNcOlTmc922GBNc7msrYKjNj1fdEyN7Ukm8ZmoWZ4xIquZoCupRhPLdGso8QTIrXaucMALn0jLJl9BifgT6H06tJltiYuBXFV6CNbqbeYKGQxP2wBo2l1BaQY9J9QjU8R5zqZiGBANQsKAG%2BcYUS9S7xFm0QxkegK%2B31q6hm0g4IceAyjpxmCW%2BtwsWY60E5EYDhlGesiUVmBnlGQ%2Ft5eOvytL%2B0xYLsYqvSwzJP2wBB5JcU3Fmq0LVlvjecflHMcXJlrnMDg%2BI4Rzv8hUstu3yRFWdpL86VRJYsFcAJmZSE5mkWRDDdW3aZrtxFqBM1kdhMbtknoXPl16uXq8SfLt6ox%2FI4tj9ydZL3ANwfqCjDftjjz9t%2FKuxaupeAa0wuLnLEHYRlHae6Q1xJmLSVSTMmLgIa7kn9x9QiZ%2BAtSTcUmpLCZMSbGEkOSDIgmogGrdHviW11x4iL%2BwekyykCak0YVEWQSBDi3INpiY%2BRusLS2JHNzjw2RM%2FA2z9ZKzrCbD1wBnWWMXIS9hXPL%2BWcZ%2B6Tuh5QqzauJeWak0bmFR0mVYSCokL1HTLBc%2FNDGNhLXWNF5R9vnhkJboufKPxCJAlGZcDynqBqDvBhnAP8tzyflscVPSdxy4wxBR2y3F8aamZAl5a%2FbFkFMpdXBRjFwNmZSFBsHrhkc79y%2FwCn%2FwCxfQ0c%2Fs%2FqrgTOnRM6MdM6b5Rwz%2BEDGVX%2FALb%2FANy19TH3PX5NsdPq%2FsO73P1Pe44cI9HW0IiK1epPmEJuI83U28wVkBR231Pe%2Fpw4xrjaAv8A1W6sfe9XkidbCoimWfq298JtFEFeiwNtYv1YZYfxjXCOe%2FW3Vj72PGOf5GRVC%2FRc%2BUfiEPlE7dRwiDy4HcccMoDqdn9B%2Bvjh%2FTHTjQ0Yf8nhnGaNiK5%2F7j%2F1D%2FtH%2BUZ%2BzSPnso8yv%2F%2FZ);
  background-position: right -280px;
}

/* line 1177, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-2 {
  background-position: right -180px;
  background-color: rgba(0, 0, 0, 0.1);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAx4AAAMeCAMAAACk5CIMAAAA7VBMVEVEQ0lGRUtFREpHRkxJSE5IR01KSU9NTFJPTlRMS1FQT1VOTVNLSlBTUlhWVVtSUVdaWV9XVlxRUFZUU1lZWF5bWmBVVFpeXWNhYGZYV11dXGJgX2VfXmRkY2liYWdcW2FlZGpnZmxmZWtranBoZ21jYmhsa3FpaG51dHpvbnRwb3VtbHJzcnhubXN8e4FqaW9xcHZ0c3l4d31%2FfoR2dXt3dnx5eH5ycXd9fIKCgYeAf4WBgIZ7eoCDgoiOjZN6eX%2BEg4mMi5GKiY%2BIh42HhoyioaeYl52JiI6SkZePjpSVlJqGhYuRkJZ%2BfYO6ub8i7ObfAAAiYElEQVR4Xu3d1ZYkR9Ku4S8QkpmzmKsRxDQzP9O%2B%2F8vZa0kzUvcos5IC3D3e50RHrZWVGeFgbuamGgqUB0z1D6EMlepgSKY6HTwVzlf5sFCucK3fAbx7zcezln7nhTocYlkllNMGyo0%2FvwhkNPjKV%2BfTz9oTPNUMX93Nv12rrjD5j1i%2BtsMr1RTixI%2BkaMH2pSL4TgaL6hNK9hSrSAAAn8wRF12qWASaEOkLUxkLYI6bylrBUrbwF9oCZJayWo181Vyi2uj7qhuQYNVOSpqRot3fI8mC1KyMbHrtvaNjmIj%2BQ5ZCT8WYq1hNWcOfyBbdcv8t7wqiRLZ4eK%2FjfaU8NWSujEPoHMWCqQ%2Fq3TFhtUiWAwAAyGQL%2F7FNVHcLwEu0FUCe9UyAYtlhXPvcQVBQQi4HsLQh2wJMMF3rVksR5Rq5ApJ%2BKIBZs1oAKb3g3Lpt%2BNIdwFDVY%2B2JlbYAOOgKjBulEnIJLP0GETi9IAFoyPb1e1kCaKjOQMPLlgwEMJyMuKDhH9gr9lqOhQAAv6ucLB4JiW8GhGdnpcctA68%2BOx6grYK8v9Q2ALJA%2F2Sg3wAY0QUCsDf2BXyakae0BeC%2FkiHGcg9utAcw%2B5C3gJFv6PbcrW5nYJAZaIf2pWJ97lq%2FAVjkeMWdhwMAAAAk%2BgEAOvoHoK%2FPgPIveLWKSqOVqHaA1OyNdygAO%2FJ9WIePMtUIXssm7GGzrqyEAflgxbudxdoIwDBRPTHgRrITECyiQhuaL2Ut4Pr5fr97AhdLHeNB9qKpEC4sjgOBlwakS5PgjYguPOC0QLEqxl8AeFV3NAQAtIMjdxLh8YM7grZsgOZUOVsQ3dyptVYhgOTKhWxf4gXwZCYgq7okscF59BbAeN3URgDuv57KURRJoqfTtOOGHAV2zg2Hj5ZB3fiEzSqZhwDtPMFhBxMEjM%2FwBvCJOlMCt7DsgcBsoc0AGtzH7wIVD4%2BfZIDAI0oG8xbozWmgrQCEhUa4AA6TU85vQMnHNrE8WQc4W3C2sAUwZw1SMAAA4ahwqG0AeK8FDi%2BO0KV1uiR1VST%2FTCAJ1vC4wEQgpENoLhcAGGgT1RvzIeljmGgLhDSgI9PKIrhtNjltK2QRdC3rwctaPbkP6FNpvw2nFmiMBKCi0CjOnrl1ZwvA62mToQCosTFM9VpfAtC2bZUEAACAhazRFACwWT4IEKRCjgGoqRwCL1SNtJqqBMA1Gu1xDonzHdUEXbc8d4MyABl3QJjKBQ2VZqjagBe4OBVR9gCgI4C%2Ba0UDwv0fSBISAFykMhnw1C%2B342eTfoc2QRhrNwxjbQQg%2BHasjQA83ct6mKkI8N4pL0DQd%2Bv43eca%2Fhd4jSp6Ao7s7Yiz7st6QFSfNlYgAYpGPUB7xxJ%2B0fG1CYDwhdoQulMAb7XZmOZB%2BUHKT7iXq4VyBnjSk29%2FqP%2FV8LsflTMgkH5MjKha8k6o0%2Bg%2FJavHq2uVjdJrbrZqmL9i63YU3D4N5CzAOynQ3L2Tw1YyCUaySqY0ZQkBom8HLAE9AUT5pUiwPTsHob4EAAAAIJB%2F0vEjYnd3zvRrebfQZuCgEvGMRBo7AAxkc%2FfGHc4fAAAIaFJjCnjWLB8BtF0tHlt4eVyzAEBqW78wBWi2DAAgHAGsOzrZ5JYqqByhZ8yt5J1RT0YBWs3IkJVOMtE%2FAEmg6vlZ08CsP3Ik4RtxXufdCoqUk8zc9jmxamf4b21Z4TtVBeH1TDU1dGDIgV%2FsNPOv38hU1AMvVaCoLnuSaSIXIXBzrP%2Fw9Vz%2FJDN2HOipJEAzkbr%2F9Ve5BYjzKZD6KpPaZXfTRFM2wGtJmghA3qv5e%2BUMwYUMgtik%2BnbO%2FzNPpULQV61NVEOEZwGAARVhQf%2BPrk6CfiqrYaBjgZ6HpALebo34AIxg3yt%2FDVUN%2BCaPxziRJC0EUIy5EXDGqXctw1dBT%2FZirO3rJWudCGk9YvoAQDMXzM8DvcS7kG3Q0fH8RL9DeN7US7JAReIwvJFLTjVAosNS5YmHmQwAhA5%2BJlCx46X1K%2FdvESLYE25e%2FvEvtIfArgOm1UqbAZTiDC5Y%2FroBSVtbAAj6EfMgsDE1rD8bN7QRWF8hnBhRhwoAXC%2B8ULXAKgvcFQLSycEaBR%2FPZQQgtLiAuEGFgMmagaznXbN%2Bpv1xIc7PmUC2YL%2BCcK49YfbftjzyzKaMaUxSLRkHPKdDLlYsNHSBdVubgbAWWoHVk07Drk8MIGN3fxB0lI9EzgE%2BCfm%2B5QHJVcbASMbw4499hW9kFX7TlrypyhAVvm9vtVW5rrb420Mg6wS%2BTJM0%2BipPcCZnZE2Dz2i%2FvpImLDHt4l08cpJZmuWwzcGkVeZNvSy2MMT5nfIA%2BIZNqO1z2aCr38QZ6XsnQGDQZnAihwHRSVm4sSoAznHeyAw3OtEk0H6A8PSFMQC%2FqRxRD4VxTFWkTZCqPPffDnU49FSVvoqElf7w7imQtbx2dU9xpKN5lkyR8D0K2Q8w158BuDM20Ye9vp8I%2Byw42IOG4%2BW5gAN2As0adcqd3b0xrcgEscyAwb12ykodo2jhncy6Olxg9vqs%2Fft%2Fd7kyqux5IA1kEHYsw9tMleurGMtMO%2FyyMqyrQYfzwV0wzGltMLKpz0aLGr%2B9sM25XWq3tpHby0UoEG2qnldNlAvgYAXAzJaXN1O%2BxlNPtQBvZsSeM5VFbpbaCJxfojVZylBY1OPaj8zkNrBvm%2FoNxqFKw6XrnhVnB3dtFQ4gTgZyCIBmueeIj9Nq7jLk1wNRK5pdg3Xbq%2FyvLxmqFPCL7HiKe6uTStnWB4wN%2B%2BADjlIdJcj37wPGeklzyNhcJvh2FtYlK%2B2BMobBrC2j4Ommp6OcK1fwhs%2Bz66bMgnfF1s1OGvJVF3Mdbf5uMJkuElmD2P%2BtThc%2BNlSygSw0%2FZeZhvHBtaToSM5fbMamcP52HgxWi4MyiNCp6of0U5UI7V6vu0fZJRC2yj4pBLq2bIZGoeF50UCmfEUCeI3qtCAaqUBpRLAjL%2BHYpZT3dqr6wlxV88gwqmihCKSFTrFgVYU4lIkAjGUKwKvLdH2hogHc34BJX6VDXMDLCJybUtvaqyrGcpnJaMTCACyNXdt7Aqxs6O77khaF36%2B%2BPjlUlakcAO5LC0qvZC80OvqzB7cuZ%2BYKa6QWbP09yvkAUILqrpZOc3GlzQCkU1UC6JiXjxrYdj4EtuB91dwws%2BH1APyGa5k0kbYBmjfKAQBMVQlc57OX9%2BQeUGTasqGyNRFK6RGPjpubxV4Ojw8QlVl4faWy%2FDtVZVWh6nkhszVMakwApHtNH4zDPdUQzQaetVFDVmkL8AQAQMmthjM5KuaEGlU%2B6g1Z50yOwEwn%2BEE58C6jWt5YizTQTliFckcg11yoIFHf7BVzIElJ2%2FTT4T4Bv6rAe1RZ4uiorU1HgPWpPSt3A3Rg3vap7twJUV1ngb4AIh5AWcMyWi3tJ4ploqtUrsDE1TxpzHU4YPVN%2FkvYAauSaqH3kE9wLg6Ui8nd4Fy%2F6uYbiQFxuSC31iuP1TUOaT67k0OcHf8MBCoLLmc6yk0VAb7L8rdeqUB676GCs6LGy0hbeMdk%2BH6SXW6HST1PEsJYkl6rKqPdVT%2FnxbZ9fr6qQ11WaNohGmmgXqo8%2FK3YVpHN5LSuUtOZHMf9iUMV5tLxNPBYBWmSO2Xx3AugEXM72aG8YXmzYEALfoyEP%2B%2BEgLH20bElx%2BhOOzxK3agtxwGpjrA%2Bj0K5hHqR955Ohmup4WAACF9vfKvCvGJp0TK3asW2A%2FVBwOV9jS9tAjK95D9fyXQfUjoWbAHuvBn%2FEsp9cVegPxuA0lc8mKpyQEN1QiLDk%2FYwDk3JZOm4E%2B69lTrmpLDAa2lvYCJC7OjxGMgpijLZLVEdnUcqUHOliqAfyG1pqMLdJFY2kmRhS1Oy20guuAw5AjjV97%2BcqWiXeklsWrpgGJVzv4Ens6H38Pb55komQqpqIVUzPnvSFuASedzV7z6WoafdgL46H%2FSSdaCj%2BBfRznhKV%2FYbywwYFdAMJzwbqcboihd1VTgAiBxM0vQ4ncsJiRnDQsoLJsXt%2B%2BmzhnYlNyP%2BpSfc6FeNtk4XKOxz5Fh15HSUR9S89yYYr1%2FXsHNEhxbmxtdK9SXJq%2FQM96Ij71uVoOMTc%2FpMkMh8ZIFfjxTKAO9dW1v09bKhzIdwIE9G6ahMQXxezcL5VjBvqRBXvRdcGnYDUfST9gC8qm7z3FQugloNhu3mzu8bYQlxoescPh4Z4d2cA%2Fd3b5fLqXKE7p2Kg7DcrqOTm7F2Gg5sSvcMq2oVmEhScN2bW5wXmwgnpOvwKaOiNtmR2ZFsmhYj2zrJgF6ciM3IO225EF2fRpalkWBqeAvmz3vAxkaP%2FkGhzxfTFtgOAywhgNf3MtfPclzH7AJPdAoJO2YtYlnHY1Zm4zDbGoELKy%2Bm4hbDiQxAF87z3PvnBeW%2FWYGO1LjVF%2BBn2gzjSPKJnXHfG6R75Q%2FsWliHeiRXGfPlM1Z0bAgkfvyrchLV5rnGINEfvOPi8bc2VCB3PvKwHgDeupIfPFAJYhkte6%2BT4VqFWutIF6Y82Kn2kAUmbBs73qE50Ekk0BZz8%2B0KhHRuzrVJZvemhjJp%2FKjPgeD1lYlTWUqDiZfBM3SCO7ezdwZYRC90tJ7cxqoUrUyHu9QubeXpodw50bMp2AH4phVx%2FM9ToE0iT3ZCNzz9an3PiOe8acBmpiGD%2BblOnfCPruuM3%2BhzCOr%2BETCvbM85Nvaka6C8AV1zisOTuj31lIQP7cozmNcudxytuv488Ds6GVu1VqzCrGS415KkZdnH9547m2PcufMzeTpZt1%2BnmROXMlNP%2F5CYtEZNg6Q%2Bmw54bZkp1dGudLD%2B%2FpHTOJNnUVJtUFq4G8jOpO5KhUHaszcfgEIAX2ouA%2B2lcUDkuxkI5exa8e60b9vnOSgefDNPfKKfBGaeyuMb4yTXpzw6oAQoGr%2FQ%2F7Aru1yoxPwrYnC%2BrPVgzJDEFeSxtclPGBxfr%2BHkCIy5J8NNy8tgOZtYMRLFKhzYtTfdnWJ7PS4IKQUvX9uFtXCm0vUEo247w9KKXh08HRyrzPUZ8J5GTZ2sX8xTOlJp0jepTeVruKjx4cjgnX419wcFL8Gbts6dIDafaiFJwUpOetNw%2Fv72SChsrIz01YbckIH21yptbxF35Bp4Rs%2F3viY6Rl%2FVadc5DoIzFYT7ZLsF54DhKigrMS%2B17QY3ICk2OY3EyUWjkqVvZmfBBRp7X5cIz9GnEP7eAZtBoAP7%2BGdHRAPRCAKVAGP7N7IjC1cXf9FpnozpuEaEsBmaFhcMqg1z%2BpWnj%2FyPDEe7R4BSEwAAglwisf1Y1brWBu9MKPwGvpeJhnTMNAEAoFPYsXijRfJwRaF5DiyDun%2FBjb3rljHIO6eQeDjjHHh%2BAPjGV0pfyAZIG3ms7Ym4RtxeCOqNj5%2FDuoW9HvCqSEpkHRH8LBw8VeK81K06bkot5sn0hbb0JlB9JdquNy%2F5Ye7LSL2stsUDQ%2FtLHjifyLSf5EIHwXKivKBd3ZZqRl8HE6d0ogFTz9l9pCcEH7Ub3%2BZoy1%2B4FoJIhfjpXFW7eohlEE7jpnLVUrulLf0hiivfv339N1%2FFQlD9pOuZWIQ18AzNBED%2FlOOIzIlMx%2FjY7OeGLIBGaMSj2K5DBRC3HxFey2SEqKsvTLTTtV40MypORo1Av19k7d1AFUjKW71%2Fpw1Cw6OIQX6vV%2BR6scE6EIp4E7%2FV7xJPGyQFTQdxiV1rpzlvfO5VO7T%2F%2BIsKFh%2F%2FVjXYzbMpPOIB6Cg3C%2BVkpsK9UbFAA4SBtnpqlLu%2FCFolzXAd2Qa3foPkuV%2F9P9XSxUoHwFKFWDe1VSupKshJBepg1dL%2B4BtzmuD7VCz%2BbrnUH0JfJcLqkI36XAf4SnUCAmpXh0zxPTmndchCBwgL6rcJ9lLASpYZXOtoSC3Mu2xVmL4VyCrp3dOVijU6%2BLdfqHRpjTIPgkL%2BTUsOSru3jz8uVDmEps1ANCyOGlKw%2Bu5KJ8Mr954hZFIy1OkQd1PZJGwQg9mt3Xl6peKNAtklemkJ3ti47r46fAuTyjJJ3c73u%2F1SBo1MLoklSQ%2F6uzti8kXo1ah3y6Wjj0Aqz%2FQSr1imw%2FuKijVYT0%2B0p0D26Qz0z7oUP5lgsO1tovMKMKnFsjgu4BtKdYyBqpPZWI4EDPTmnEDIn4SJKtE1uulb4G%2BIhLjt%2Fm7ZUk0QFRzQlPolqafPtaTBbKycoHEms10P9Tnfjtiar5KMXL5AuKX8BHLSrKHixc5%2F1%2FA92eun%2F1Oh7pSrYWkb00woY4fcNCZtu99XGXwnyi%2BGxodnO4mM13mvl3VTY0o9024Ze%2BC2zNfyVKWhHOMdsxlMM1lqmWO2cevuqPhuS84KY0GXP%2BR1IbW5qYCDOK%2BNdCZnRcoNJx7PyltSeIw0NPx8KAq1ETjXQnSbCkaleiEoqq2%2Fd%2BhgElqQYwAmPoZbDj8wVZ14NSqMRLOi5jmVh37PprSjrE7DkkHb16Hm2sk3Z%2F3iG9qZNZp2VE%2Bs8YKXD2Q8eh6B7eK2AzMgqTzr4%2BKIcXrg2bU%2FJ8xGm5DpkZ%2B2d%2Fe4nmcy089nygeQtnSE%2Fr%2B8nr1Vqfwjx2%2FMVTKcld22pE2UxPjvEXHuQZPM4LcriItaRYP5NMjjOQILyIURcdpQG80cfcLPBVqN7ZARIyw3oIBRXRLq0KzvMWZkXlKUX6OJkZkII1UKAENjR2Cf7mwLssDAP7fNgMr7hVP2pnEgpzSmTfsOaQKVDmFXRfH6ptb%2FxV%2BvG8oPklUp02EyNDmw6csR7fvx7j%2BUIjIqkqPzA3YlXSKxebjUYVqOXz8y78tY68eKgh4Rez7iHuBXhpOX3LDwDmqZTDSLdZTQvV1WQw5By%2BKbGeM9JmxWC6Rrfy%2FTtUpv%2FzyjFVOeX71vyf66737O08y46SDQvq7Zbn8B0SHjTT%2BWo7DwVLyVdnqWdeLxjQ6DhcyGcTEFcwBi5cvLVDCA3ZkfyA3w%2FyktCaRx0oMZMxkNYPfz8a%2FU0RpTjX2d1joTITDvnLnzkWWiKbJvVqq5d9oMRFbGHVkk8wQAktSypTbEO%2FEfgD58DbsWJKnM4imWhYb%2BXo8fFjbECrhEckj%2FBfvicTzscerOYgWMITySCLMavUHEgsF1IwtGXuw3TGFS%2BLcdyxqYqjIp2yEzAecjHaYRKR99IgCHWFqea5deVLCv%2BVR2guBk3M%2BpNclTEStbL%2B8lM%2F2J2Lan2ls4C9qqq7ZeBPSVqFoEipDW4Ui%2FZV4zgbv308of9LGNIZBzSsdfcu9GzCvxtZ9orXwkJNnl3yTzjnBw1W%2Be70pRZ1b0tOjRC650D8tisucvEu3CSD%2FQ3mYu7cc4NvS0liEWOWfnO9YfJygzHkJ7VRDgA4cwHUuSEAC%2FkKSbhq2dfZcrTyj8FyexsucpPyuVpNmVZYCE0nJLFrCRO%2BO9r6JFylO45S9oDJWfOCmxmskz69R25Mo4%2BEMeC8RUW0WyyOx6oJz4Zwr69AGzPYwxUiGQKe1yxrdPRJuk0ebbazfqzqJadUakZVBWSlDuXmcy3LJ2V0O1DFjhd1WGxVQ5ail36dcX2m1d4oAccLlmzr87ActOfOxQ4KsA%2F7rvRBzrIFjLLUEuj6Un6VZfii4tyMfo7LtvQbPC32phfUV451614jeLDbOM5RDM4mK29j3bYjwhmb%2Bnwjfa303markBIs53dsG8zDOpf%2B%2FxlDjQ5HqgggF0N%2FKO3qzcVHFuO2iVVxjBvV3MApeqInrk%2B5KU1LBSECspk%2FtiGey9Kga0qkyV8%2F5p5fGzn2soGyD7OWWWtxneaCM%2Fn1bcV%2FnHOeJJtSnqgcDs8aBMR%2FI4bqcbvHFSM%2Buw3F9QBY2ejJeVXtwFfLK4ohG%2BcWtmdtUEXj0u7jsAuKjs0lOZniTp%2BvM%2BBuSvYSgL9JWf%2F1Mu8Hbok4afm8SQZfFP7iSCR%2B6EMBF79jx42R7FjqzLFypNsNKXvuq6UR5yob%2FzhrmPlGG1c6Gf%2B9A7oJ6uIPAtPyruZSoGfX%2FQlEH840bbLgHP0sV1iRuCfKyez49ogWms8qyKmCnIYWxb9Rb0tAmhdl9JnbtYBIotCzxgbEAyDL85OzHW4I8NVWqmYryanfazhWvt9PaYNJ95Dbv9JtLiL0mlearh5bOOEE7kJP%2BTrNEveO1G14uZpOY5eclf4vTuldy31Of8DTkF8TTbHXL3atcyCw%2BvVKTF28yenc9doJeg625J1kQbrH8oNv3e12wua0xsKEwIyutWhnXRFb6v15Ve2Z4IxmaG4exfHj1jj0DCsmravqtlhH2mimXmHxn074qcKPo6xS%2BpctGkHsrs6FzP3H7XPRlr%2FOHoXzyVmaayxmXBM1i2Vw%2BIQbgwpCBLUrevavj5%2FOt1OQPoSLX3sY4JMWlfpTjPbx2SuJtrNg30q2VXNdVUz5r351tO1X4zkeZl5IA32%2FrVQnX14dWq0ugc9cE3Olz7r18rd61Q9pjRPGIrmgL91wdVBq%2BLipTPeF22rmP2FfeKCioGnywtHcDA7bTgrGVA%2Bc%2F0UaA7xr3la9fXX9l%2FmwzMuFbutRyUyAx8f%2F6u8WatnCSxC7cJnheX0eRVOM4PXIo%2BzSNt0VL9dGUuuiEBPRMyZ1krdvdP5QQmqidu3wGb7aD0matVZXO4SR6fjls26QKI7k%2B8BjigQMCf6SRDz%2Fqjk2bsYprWW%2BPTCXyzs6eHkkJP26RS98edyxkvJu1yq%2BmVwwFZXHQNPqyNzE%2BnTy8OGBJWAmURTmUDRTke4v1yxUO6RXD4J6aR%2FVpVAQniPw%2BkVKdqE8pJQv0uU3jiVTfombgcYDUG%2BOvhuvqu8S%2FF004Rn7RSBYariVudvPrb3z4MSUvc3%2FRcL1n1NDBqiYQFkd0%2F63gqxPNlqBe80p9dqFxXqTlZky2ZiITTVAVpXOkFH5oGTAddlQnw%2FjwgTtYyVPxKktT7SifzXe0TDa%2FYFOTVUHZIvuvqz4bvVBWcPbZkPP%2Bk47PhWraI2vpCk8q5amfRs0Wv4NBjq8JT1Yws0uJ7BJwrH8n3Mk4oq6QjHaR1FZrbB7Ylx0W9w8IUtyoXGpfnqlx3qv1NVS9hhfehUmD5PN2VsRvWLKQeS8nBiY1BlZkBUsvNnMa49smE1NhEe%2F4Njdz%2Fqmsnz%2BRvyjlRS1WpVOXB%2FCwjobvy%2B%2BHAdahYFj2J9OvUq7XB3YnFZ%2FviPMfROXR%2Ba5YJHCqBrCsrL458MKRTGmf%2F95GK5QdtF%2Fuk3qggk0GOq2fvpDcbF88LHep9V4doeTKR52hS99lAY9PDhf7chmWmJ%2Bk6OGnqj02oOeh5%2BsNQbuCelmYeKyosv32o4PXoSbowfplI4gC9V5Lp9m%2Fof73iOiH6X59dm1nU8E4luZGlsjo0MUp3%2FkiXsXbyfB0n1VsVIS58PI3pB177OHxvUPQff98s8bTYc6YRwJ0qBWL3V7YFC305C4sqIsrXMg8w0GmyLLf4UtDNZ7GY1TbhF7GnFwxHG05Siv950rJ%2BxXbhsV9fexpltCAy77Dq8n9VpD4JzvtatvdbdoIj6iXZnVsA011HFKGnnDEmvR7qSxgcvyZBciWnoadAR0LzWYGJB9foa7Me1WEnxprbJcd8gbGn3eK65Lx3b2UWoLmSO8gWcrGUHNnRy7pzr9Jg9UCleK16Q6qjfNRBFkXu9xEVNHfAf6G7DmZFPmrwCxkZLgNTj%2BF95aTtyXbB4e2gYlkI%2FnkkNfLcFHQTX7WCjioXfKMiBO3cZ4kfn3Q0NLtqa7Mo0RaIV3IYhkPtMlfdXNNxxKh06Lashk5fpYsP2rIHXkBEHXRuKwaQlNeTxq%2FLrVjwOzJWdyX5KtGVinWhF4HmXldz7S3ItMmb6nJ4R643CAzNWf77dneDbJnSIDsufrCOVTY0Cx3W6HzqmxllBLGvoA5h%2FZnqjJE3saCYjy6Rjd6z6iZY1WDtG%2BgFk68WA20QVl778CrX9z7WqbwzGcFXabygdsPsWJ%2FpepJ8JpGj4Gb64MllkR%2Blc23To0niS5B821MxUp8Cf%2BlBsLnx%2FlJQVEGnz%2FtUucFkLgCwYqHjcaj8WpugL%2BvNTw6fNglxkUJxqG8yVeVCB7pUNd71VL2WQAWVpHdzFS47KFX5pqMveG0dA5TMrZq5dTGJTGnj%2FCQLgXAtACCT9Z4b2qyhygGBu7E4b3f0FMBtZ2LDoQ89CTE3IRjtvdLpxrnMSA19CU0OI62wdHFphp6Jd%2FmErDG2GGq7iMEYKCm5hOwRJCrVQocC4trsfQCiimGksvnf6AXAUIbwV5faoCNwdXTl2vnvQr99nUOZUkO%2B8oZmprLdcNXy57zQW%2FfyWDb6Oa9Eg5tURutyCDTXSzo74vRBMpUFxn%2BZ6gjhYWGAePehxn9b9bz5nk6B%2FvPFeVj8UjDTCQajTqDScUk15tIwHK3PjO6PHl5fvJGxBqqTKzlhkO2%2FMouW%2FaFO4C9VtJ7ch6Yvs8SXkjQKVYm0py9dHL31OrvRobo7dh3AdKmg8xCe0AkjrEmtWKLaunm4UX2dudnz%2BzlV1W6dSCt69dXVh0cWuHkfCGLiywF%2BlFs2HLwK1lFAYsXDq6kK1rd0VwPywYO1LAFcynUd%2Fd2jctQ0tLAKSZ4HgJHydqZqDAXS1T3Ty50b9LjcHwi%2Frpy7cANvCJGao9PXFnOdDv4Rzxmtz3x77wELBcir%2BW73%2Bk4bjaXaZwkj7ajegu6OhCAgMH06aBR8u1A6117iHEJcS%2BUK8A3pGRTlULtxOxS4%2F6iAxG0%2F40Y9ABWeYYI6i%2FsCSvTom4LMiTh157UdN7JP9Ku1YFQVwUdv55I3VGXO2UjAirvIWhUUYfnVjylZzdZe4DLstcOFfw16vJYtvr%2Bt%2FdDZIUhjvEk1ccFZRwf4Ppcn1pP1AAAABgYsdRKZCUDT%2BP8nMNJRstMnoocqQ2pA2lRRWgsDq%2Fs8eW%2B0H6B79FN4u8eY7BtQ0Q8EZL9qfMrbBFC5BAAIbSslQSyL4IeUwrDNgN5lja5RjTz9HYCpag%2B%2Bg50JR7l8AY%2BqJy5kSPept3u2MiFxqZOAHWGm0Q8l95CZl7WSiQQyR23Tk8GAlWrlb%2BfKwUTWQKvkI6S%2BgVv%2FSDuNtR%2BwyMqsy4IEWMkPaFFqGtJtOG6JTriS13Pg%2FB9v9RlEK22W1uScBLSbfjKrdUffsItDcelS25aQkWQbkI7X3ZmbMqISAlSaDvSCD3dPV%2FrDq3u5AMQrhzrdqKOzmzP97j8vQ%2F0KwJkUP%2F%2BizWaqM9BRLuyr%2Bfb7l0IVLVkilY1wWWlKy3p92k2hLTkASI4LdaY9HaZ1fWgQIpad2onc0BbGPgG9nI9GWjLdlaMpUV3lpZ%2FzMwkExp%2FzjqnbAnyVC4gsuic8kBLlyRsqfz%2BU%2FcYD%2FvujdwOdhr1VhIlOBr8n53W6OlJselZllGp%2FQLhQ4UDMn2Uwtfh4LG7hi5Hshg83chLlf%2FHp8xquHnQyr%2B1Ml8ygyE15SzaYjDr6DaKvbnSyVqCNAmvzDb%2FvS2FNi7STzlq%2Fgf9KB8mO2JwnFq%2F1k9TGiEjYdPWecSDqeJKUdrRZR3v71NFB0CFUbCLaboY3gtnNYBqGvqt9HQpYuVhNHe9o4tGRHQDPtHMDsA1YpaxcgM1taTvfXOsIY9NOq0czAXkncI0zleZs30gC8SfMVDrvQppSkG8FvB6d9lLNgqMK%2FjYDkNzVqdkFsFZNDTIZD29UrXD%2FOsw4lLOYjQCAARWgtBZgwmnKF8CrYgSgUdN7ohoCKmgWC9YDAKgl4WZE0L2BsjpgqUIB%2Fx9GdgGQJR9wUgAAAABJRU5ErkJggg%3D%3D);
  position: relative;
}

/* line 1184, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-2:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: inherit;
  content: ' ';
}

/* line 1196, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-1 img {
  margin-top: 50px;
}

/* line 1200, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-2 h2 {
  background-color: transparent;
  font-size: 80px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  margin: 80px 0 30px;
  text-align: left;
  padding: 0;
  line-height: 90px;
}

/* line 1212, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-2 h3 {
  font-size: 40px;
  color: #FFFFFF;
  font-weight: 300;
  margin: 0 0 10px;
  line-height: 50px;
}

/* line 1221, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-3 h2,
.jumbotron5 h2 {
  font-size: 60px;
  line-height: 70px;
  padding: 20px;
  margin: 100px 0 30px;
}

/* line 1229, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-3 h3,
.jumbotron5 h3 {
  font-size: 36px;
  margin: 0 0 30px;
}

/* line 1236, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-3 .btn,
.jumbotron5 .btn,
.jumbotron3 .btn {
  font-size: 20px;
  border-radius: 0;
  color: #FFFFFF;
}

/* line 1243, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .jumbotron6 #slide-3 .btn:first-child:hover,
body .jumbotron5 .btn:first-child:hover {
  color: #FFFFFF;
}

/* line 1248, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron6 #slide-3 span,
.jumbotron5 span {
  font-size: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  top: 5px;
  margin: 0 10px;
}

/* JUMBOTRON 7 */
/* line 1260, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron7 {
  padding: 0 0 50px;
  border-bottom: 0;
}

/* line 1265, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron7 img.application-image {
  position: relative;
  top: 40px;
  max-height: 522px;
}

/* line 1271, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron7 h2 {
  font-size: 50px;
  line-height: 65px;
  font-weight: bold;
  margin: 50px 0 30px;
  color: #FFFFFF;
}

/* line 1279, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron7 .application-feature {
  margin: 0 0 20px;
}

/* line 1283, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron7 .application-feature img {
  max-width: 64px;
  margin-left: 30px;
}

/* line 1288, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.jumbotron7 .application-feature h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  margin: 15px 20px 0;
}

/* line 1296, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.btn-download {
  width: 170px;
  height: 60px;
  display: inline-block;
  margin-top: 20px;
}

/*------------------------------
	CONTENT
------------------------------*/
/* line 1318, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.container2 {
  padding: 0 30px;
}

/* line 1322, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.container3 {
  padding: 0;
}

/* line 1326, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content {
  padding: 40px 0 30px;
}

/* line 1330, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content-full {
  text-align: center;
  height: auto !important;
  /* real browsers */
  height: 100%;
  /* IE6: treaded as min-height*/
  min-height: 100%;
  /* real browsers */
}

/* line 1337, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content-full header.navbar {
  padding: 13px 25px;
}

/* line 1341, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content-separator {
  color: #FFFFFF;
}

/* line 1345, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content h2 {
  text-transform: uppercase;
  font-size: 36px;
  margin: 0 0 40px;
}

/* line 1351, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content .secondary-headline {
  font-weight: 600;
  font-size: 16px;
  margin: -15px 0 40px;
  color: #888888;
}

/* line 1358, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.bg-color-2 {
  background-color: #F0F0F0;
}

/* BREADCRUMB */
/* line 1364, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.breadcrumb-wrapper {
  background-color: #E5E5E5;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

/* line 1370, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.breadcrumb-wrapper h2 {
  float: left;
  font-size: 24px;
  font-family: 'Roboto';
  margin: 0;
  color: #555555;
}

/* line 1378, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.breadcrumb-wrapper .breadcrumb {
  float: right;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 3px 0 0;
}

/* line 1386, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.breadcrumb-wrapper .breadcrumb > li {
  font-size: 14px;
  font-weight: 600;
}

/* line 1391, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.breadcrumb-wrapper .breadcrumb > .active {
  color: #777777;
  font-weight: 700;
}

/* line 1396, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.breadcrumb-wrapper .breadcrumb > li + li:before {
  color: #AAAAAA;
  content: "\f101";
  padding: 0 8px;
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

/* PAGINATION */
/* line 1409, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination {
  border-radius: 0;
  margin: 0;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* line 1416, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination > li > a,
.pagination > li > span {
  background-color: #F9F9F9;
  color: #555555;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: bold;
}

/* line 1424, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination > li i {
  font-size: 14px;
}

/* line 1429, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 6px 12px;
  font-size: 14px;
}

/* line 1434, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination-sm > li i {
  font-size: 12px;
}

/* line 1439, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 12px 20px;
  font-size: 18px;
}

/* line 1444, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination-lg > li i {
  font-size: 16px;
}

/* line 1451, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0;
}

/* line 1456, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pagination > li > a:hover,
.pagination > li > span:hover {
  background-color: #EEEEEE;
}

/* line 1465, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .pagination > li.disabled > span,
body .pagination > li.disabled > span:hover,
body .pagination > li.disabled > span:focus,
body .pagination > li.disabled > a,
body .pagination > li.disabled > a:hover,
body .pagination > li.disabled > a:focus {
  color: #BBBBBB;
  background-color: #F9F9F9;
}

/* line 1475, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .pagination > li.active > a,
body .pagination > li.active > span,
body .pagination > li.active > a:hover,
body .pagination > li.active > span:hover,
body .pagination > li.active > a:focus,
body .pagination > li.active > span:focus {
  color: #FFFFFF;
}

/*------------------------------
	CONTENT - SEPARATORS
------------------------------*/
/* line 1483, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content-separator h2 {
  font-size: 26px;
  color: #FFFFFF;
  text-align: center;
}

/* line 1489, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content-separator p {
  margin: 0;
}

/* line 1493, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#separator1 p {
  font-size: 18px;
}

/* line 1497, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#separator1 .btn {
  margin-left: 20px;
  color: #FFFFFF;
}

/* line 1502, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content-separator .input-group .btn {
  background-color: #444444;
}

/* line 1508, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.content-separator .input-group .btn:hover,
.content-separator .input-group .btn:focus,
.content-separator .input-group .btn.active {
  border-color: #333333;
  background-color: #333333;
}

/*------------------------------
	HOME SECTIONS - DEFAULT
------------------------------*/
/* INTRODUCTION */
/* line 1519, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-introduction {
  text-align: center;
}

/* line 1523, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-introduction h2 {
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0px 0 40px;
}

/* line 1531, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-introduction p {
  font-size: 20px;
  padding: 0 120px;
  color: #777777;
  line-height: 30px;
  margin: 0 0 30px;
}

/* FEATURES */
/* line 1541, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-features {
  padding: 40px 0;
}

/* line 1545, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-features .row > div {
  border-right: 1px solid #D5D5D5;
}

/* line 1549, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-features .row > div:last-child {
  border-right: 0;
}

/* line 1553, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-features .feature {
  text-align: center;
  padding: 15px 0;
}

/* line 1558, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-features .feature i {
  font-size: 40px;
  border: 2px solid #16A085;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding-top: 25px;
  transition-duration: 0.4s;
}

/* line 1568, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-features .feature h3 {
  text-transform: uppercase;
  font-size: 20px;
  margin: 20px 0 15px;
}

/* line 1574, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-features .feature p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* line 1580, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body #section-features .feature:hover i {
  color: #FFFFFF;
}

/* ABOUT US */
/* line 1586, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-about-us {
  padding: 0;
}

/* line 1590, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-about-us h2 {
  text-align: left;
  margin: 30px 0 15px;
}

/* line 1595, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-us-slider {
  padding: 50px 0 0;
}

/* line 1599, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-us-slider .owl-wrapper-outer {
  box-shadow: none;
}

/* line 1603, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-us-slider .owl-pagination {
  margin-top: 0;
}

/* line 1607, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-us-slider .carousel-indicators {
  bottom: -25px;
  padding-left: 3px;
}

/* line 1612, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-us-slider .item {
  transition-duration: 1.2s;
}

/* line 1616, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-highlight {
  background-color: #E5E5E5;
  padding: 20px;
  border-left: 5px solid #16A085;
}

/* line 1622, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-highlight i {
  color: #AAAAAA;
  font-size: 30px;
  margin-bottom: 10px;
}

/* line 1628, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-highlight p {
  font-style: italic;
  color: #555555;
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 12px;
}

/* line 1636, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-highlight span {
  text-align: right;
  font-weight: 600;
  font-style: italic;
  display: block;
}

/* BLOG POSTS */
/* line 1645, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-blog-posts {
  padding: 50px 0;
}

/* line 1649, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-blog-posts h2 {
  color: #FFFFFF;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
}

/* line 1654, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.recent-blog-post {
  padding: 18px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.2);
}

/* line 1660, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-blog-posts .row > div:first-child .recent-blog-post {
  margin-right: 20px;
}

/* line 1664, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-blog-posts .row > div:last-child .recent-blog-post {
  margin-left: 20px;
}

/* line 1668, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.recent-blog-post .post-date {
  color: #FFFFFF;
  padding: 5px 7px;
  font-weight: bold;
  font-size: 12px;
  display: inline-block;
}

/* line 1676, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.recent-blog-post h3 {
  margin: 10px 0 12px;
  padding: 0 0 6px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 14px;
  font-weight: bold;
  clear: both;
  line-height: 22px;
  color: #555555;
}

/* line 1687, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.recent-blog-post p {
  font-size: 13px;
  margin: 0 0 8px;
  color: #666666;
}

/* line 1693, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.recent-blog-post a {
  text-align: right;
  display: block;
  text-decoration: underline;
}

/* line 1699, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.recent-blog-post a i {
  margin-left: 5px;
}

/* line 1703, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.recent-blog-post a:hover {
  text-decoration: none;
}

/* line 1707, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-blog-posts .btn {
  margin-top: 50px;
  color: #FFFFFF;
}

/* PORTFOLIO */
/* line 1714, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio {
  position: relative;
  text-align: center;
  padding: 50px 0;
}

/* line 1720, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item {
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
}

/* line 1728, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item .hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease-out 0s;
  -webkit-transform: translateX(-100%);
  -webkit-transition: all 0.6s ease-out;
  padding: 20px 5% 0 35%;
}

/* line 1741, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item img {
  transform: translateX(0px);
  transition: all 0.6s ease-out 0s;
  -webkit-transform: translateX(0px);
  -webkit-transition: all 0.6s ease-out;
}

/* line 1748, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item:hover img {
  transform: translateX(70%);
  -webkit-transform: translateX(70%);
}

/* line 1753, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item:hover .hover-overlay {
  transform: translateX(-30%);
  -webkit-transform: translateX(-30%);
}

/* line 1758, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item-description {
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  border-top-width: 0;
  padding: 0 10px;
}

/* line 1765, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item-description h3 {
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  padding: 15px 0;
}

/* line 1774, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item p {
  color: #FFFFFF;
  line-height: 25px;
  text-align: left;
}

/* line 1780, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item a i {
  color: #FFFFFF;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 18px;
  padding-top: 12px;
  margin-right: 15px;
}

/* line 1792, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item a:hover i {
  background-color: #FFFFFF;
}

/* line 1796, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-portfolio .portfolio-item a:last-child i {
  margin-right: 0;
}

/* PARTNERS */
/* line 1802, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-partners #partners-slider {
  padding: 50px 0;
}

/* line 1806, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-partners #partners-slider .item {
  text-align: center;
}

/* line 1810, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#partners-slider.owl-carousel .owl-wrapper-outer {
  box-shadow: none;
}

/*------------------------------
	HOME SECTIONS - PRODUCT
------------------------------*/
/* line 1818, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.product-content {
  padding: 60px 0 50px;
}

/* line 1822, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.product-content h2 {
  font-size: 50px;
  line-height: 65px;
  font-weight: bold;
  margin: 0 0 20px;
  color: #999999;
  text-transform: none;
}

/* line 1831, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.product-content p {
  font-size: 18px;
  line-height: 32px;
  color: #AAAAAA;
}

/* TESTIMONIALS */
/* line 1839, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-testimonials {
  padding: 70px 0 60px;
}

/* line 1843, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#testimonials-slider .owl-wrapper-outer {
  box-shadow: none;
}

/* line 1847, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#testimonials-slider i {
  font-size: 54px;
  float: left;
  margin: 0 20px 0 0;
}

/* line 1853, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#testimonials-slider p {
  font-size: 22px;
  line-height: 40px;
}

/* line 1858, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#testimonials-slider h3 {
  color: #FFFFFF;
  font-size: 24px;
  text-align: right;
  font-weight: bold;
  margin: 20px 0 0;
}

/* line 1866, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#testimonials-slider h3 small {
  color: #EBEBEB;
  font-size: 16px;
  font-weight: bold;
}

/* line 1872, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#testimonials-slider.owl-theme .owl-controls .owl-page span {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  width: 18px;
  height: 18px;
}

/* line 1879, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#testimonials-slider.owl-theme .owl-controls .owl-page.active span {
  background-color: #FFFFFF;
}

/* STATISTICS */
/* line 1885, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-statistics {
  padding: 70px 0 60px;
}

/* line 1889, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.statistic {
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 20px 30px;
}

/* line 1895, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.statistic .number {
  font-size: 60px;
  font-weight: 300;
}

/* line 1900, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.statistic .title {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: bold;
}

/*------------------------------
	HOME SECTIONS - SEARCH
------------------------------*/
/* IMAGES */
/* line 1912, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-images {
  padding: 80px 0;
}

/* line 1916, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-images .row {
  margin: 0;
}

/* line 1920, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-images .row > div {
  padding: 0;
}

/* line 1924, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-images .overlay-wrapper .overlay {
  margin: 0;
}

/* line 1928, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-images .overlay-wrapper:hover .overlay {
  opacity: 0.75;
}

/*------------------------------
	HOME SECTIONS - PORTFOLIO
------------------------------*/
/* LATEST WORK */
/* line 1938, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-latest-work span.label {
  padding: 4px 8px 5px;
  font-size: 14px;
  line-height: 32px;
}

/* line 1944, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-latest-work #about-us-slider {
  padding: 0;
}

/*------------------------------
	HOME SECTIONS - APPLICATION
------------------------------*/
/* VIDEO */
/* line 1954, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-video {
  padding: 50px 0;
}

/* line 1958, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-video h2 {
  font-size: 32px;
  line-height: 45px;
  font-weight: 600;
  margin: 0 0 20px;
}

/* line 1965, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#section-video p {
  font-size: 18px;
  line-height: 28px;
  color: #888888;
}

/*------------------------------
	FOOTER
------------------------------*/
/* line 1975, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer {
  background-color: #F0F0F0;
  color: #555555;
  padding: 0px 0 15px;
}

/* line 1981, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 600;
}

/* line 1987, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer h3 i {
  margin-right: 15px;
  font-size: 16px;
}

/* line 1992, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer ul li {
  line-height: 23px;
}

/* line 1996, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer p {
  margin: 0;
  font-size: 13px;
}

/* line 2001, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer p.contact-text {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 14px;
}

/* line 2007, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer ul.contact-address li {
  border-bottom: 1px dashed #CACACA;
  line-height: 32px;
}

/* line 2012, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer ul.contact-address li:last-child {
  border-bottom: 0;
}

/* line 2016, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer .brands {
  margin: 18px 0 12px;
  text-align: center;
}

/* line 2021, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer .brands li {
  margin-bottom: 0;
  margin-right: 7px;
}

/* line 2026, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer .brands li a {
  background-color: #777777;
  color: #FFFFFF;
}

/* line 2031, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer .footer-bottom {
  border-top: 0px solid #DADADA;
  padding: 15px 0 0;
  margin: 10px 0 0;
}

/* line 2037, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer .footer-bottom .footer-copyright {
  float: left;
}

/* line 2041, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer .navbar-nav > li > a {
  color: #555555;
  font-size: 13px;
  padding: 0 10px;
}

/* line 2047, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
footer .navbar-nav > li > a:hover {
  background-color: transparent;
}

/* line 2051, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#latest-work-footer {
  margin: 0;
}

/* line 2055, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#latest-work-footer > div {
  padding: 2px;
}

/* line 2059, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#latest-work-footer .overlay-wrapper:hover .overlay {
  opacity: 0.75;
}

/*------------------------------
	COMMING SOON
------------------------------*/
/* line 2067, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.commingsoon .title {
  font-size: 150px;
  font-weight: bold;
  color: #555555;
  margin: 100px 0 20px;
}

/* line 2074, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.commingsoon h1 {
  font-size: 54px;
  margin: 0 0 100px;
}

/* line 2079, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.commingsoon .digits .cntSeparator {
  width: 20px;
}

/* line 2083, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.commingsoon .countdown-labels span {
  margin-right: 20px;
  width: 134px;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
}

/* line 2091, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.commingsoon .countdown-labels span:last-child {
  margin-right: 0px;
}

/* line 2095, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-commingsoon {
  height: auto;
  padding: 50px 0;
}

/* line 2100, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-commingsoon p {
  font-size: 26px;
  margin: 0 0 30px;
  color: #FFFFFF;
}

/* line 2106, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-commingsoon .input-group .form-control {
  height: 54px;
  font-size: 18px;
}

/* line 2111, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-commingsoon .input-group .btn {
  font-size: 18px;
  padding: 13px 13px 13px;
  background-color: #444444;
}

/* line 2119, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.navbar-commingsoon .input-group .btn:hover,
.navbar-commingsoon .input-group .btn:focus,
.navbar-commingsoon .input-group .btn.active {
  border-color: #333333;
  background-color: #333333;
}

/*------------------------------
	ERROR
------------------------------*/
/* line 2132, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.error .error-number {
  font-size: 200px;
  margin: 100px 0 0;
}

/* line 2137, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.error .error-text h1 {
  font-size: 80px;
  margin: 30px 0 50px;
}

/* line 2142, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.error .error-text p {
  font-size: 30px;
  line-height: 45px;
  padding: 0 50px;
}

/*------------------------------
	SIGN IN / SING UP
------------------------------*/
/* line 2152, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.forms-only h1 {
  font-size: 80px;
  margin: 80px 0 50px;
}

/* line 2157, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.forms-only {
  padding: 0 180px;
}

/* line 2161, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.forms-only form {
  text-align: left;
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
}

/* line 2168, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.forms-only form button.btn {
  margin-top: 5px;
}

/* line 2172, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.forms-only form h2 {
  font-size: 40px;
  margin: 0 0 20px;
}

/* line 2177, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.forms-only form h3 {
  font-size: 24px;
  margin: 0 0 20px;
  line-height: 32px;
}

/* line 2183, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.forms-only form .pull-right a {
  margin-top: 12px;
  display: block;
}

/* line 2188, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#reset-password {
  display: none;
  border-top: 1px solid #DDDDDD;
  margin-bottom: 20px;
}

/*------------------------------
	FEATURES
------------------------------*/
/* FEATURES SIDEBAR */
/* line 2200, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features .features-sidebar {
  top: 110px;
  width: 250px;
}

/* line 2205, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features .features-sidebar h3 {
  margin: 0 0 10px;
}

/* FEATURES CONTENT */
/* line 2211, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features .features-content h3.features-title {
  border-bottom: 2px solid #E5E5E5;
  padding: 0 0 10px;
  margin: 0 0 20px;
}

/* line 2217, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features .features-content h3.features-title i {
  margin-right: 15px;
}

/* line 2221, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features .features-content .features-item {
  margin-bottom: 50px;
}

/* line 2225, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features .features-content h2 {
  font-size: 30px;
  margin: 20px 0 10px;
  text-align: left;
  text-transform: none;
}

/* line 2234, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features #features-buttons .btn,
#features #features-buttons .brands,
#features #features-pagination .pagination {
  margin-bottom: 10px;
}

/* line 2238, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features #features-buttons .brands {
  margin-top: 10px;
}

/* line 2242, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features #features-tooltips-popovers > div {
  margin-bottom: 20px;
}

/* line 2246, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#features #features-collapse .panel-group {
  margin-bottom: 40px;
}

/*------------------------------
	FAQ
------------------------------*/
/* line 2255, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#faq h2,
#faq h3 {
  margin: 0 0 20px;
}

/*------------------------------
	PRICING
------------------------------*/
/* line 2264, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#pricing .row,
#pricingtable .row {
  margin: 0;
}

/* line 2269, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#pricing .row > div,
#pricingtable .row > div {
  padding: 0;
}

/* line 2273, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan {
  background-color: #F5F5F5;
  text-align: center;
  margin: 30px 0 0;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* line 2280, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan.popular {
  background-color: #E5E5E5;
  position: relative;
  top: -35px;
}

/* line 2287, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan h3,
.pricing-plan p {
  padding: 15px 0;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
}

/* line 2297, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .pricing-plan.popular h3,
body .pricing-plan.popular p {
  background-color: #555555;
}

/* line 2301, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan p {
  font-size: 14px;
  color: #EEEEEE;
  padding-top: 0;
}

/* line 2307, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan .pricing-plan-price {
  padding: 13px 0;
}

/* line 2311, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .pricing-plan.popular .pricing-plan-price {
  background-color: #666666;
}

/* line 2315, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan .pricing-plan-price span {
  color: #FFFFFF;
}

/* line 2319, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan .pricing-plan-price span.pricing-plan-small {
  font-size: 28px;
}

/* line 2323, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan .pricing-plan-price span.pricing-plan-number {
  font-size: 50px;
}

/* line 2327, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan .pricing-plan-price span.pricing-plan-text {
  font-size: 16px;
  display: block;
  font-weight: 300;
  position: relative;
  top: -10px;
  color: rgba(215, 215, 215, 0.7);
}

/* line 2336, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan ul {
  padding: 10px 30px;
  text-align: left;
}

/* line 2341, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan ul li {
  border-bottom: 1px solid #E5E5E5;
  font-size: 16px;
  color: #555555;
  line-height: 50px;
}

/* line 2348, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan.popular ul li {
  border-color: #D5D5D5;
}

/* line 2352, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan ul li:last-child {
  border-bottom: 0;
}

/* line 2356, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan ul li i {
  color: #999999;
  width: 35px;
}

/* line 2361, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan .btn {
  margin-bottom: 30px;
}

/* pricing table */
/* line 2367, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#pricingtable .pricing-plan ul {
  padding: 10px 30px;
  text-align: center;
}

/* line 2372, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.pricing-plan-titles {
  margin-top: 203px;
}

/* line 2376, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#pricingtable .pricing-plan-titles ul {
  text-align: left;
}

/*------------------------------
	SERVICES
------------------------------*/
/* line 2384, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services .service h3 {
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 400;
  color: #555555;
  transition: 0.3s ease-in-out 0s;
}

/* line 2393, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services .service p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* SERVICES 1 */
/* line 2401, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services.services1 .service {
  padding: 10px 0 20px;
}

/* line 2405, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services.services1 .service i {
  font-size: 40px;
  width: 60px;
  display: block;
  float: left;
}

/* line 2412, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services.services1 .service .service-body {
  overflow: hidden;
}

/* SERVICES 2 */
/* line 2419, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services.services2 .service,
#services.services3 .service {
  text-align: center;
  padding: 15px 0;
}

/* line 2425, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services.services2 .service i,
#services.services3 .service i {
  font-size: 40px;
  border: 2px solid #16A085;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding-top: 25px;
  transition: 0.3s ease-in-out 0s;
}

/* line 2436, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body #services.services2 .service:hover i,
body #services.services3 .service:hover i {
  color: #FFFFFF;
}

/* line 2441, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services.services2 .service h3,
#services.services3 .service h3 {
  margin: 20px 0 15px;
  font-size: 24px;
}

/* SERVICES 3 */
/* line 2448, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#services.services3 .service {
  text-align: center;
  padding: 20px;
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 30px;
}

/*------------------------------
	ABOUT
------------------------------*/
/* line 2460, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-content {
  padding: 50px 0;
}

/* line 2464, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-content h3 {
  font-size: 34px;
  color: #444;
  margin: 0 0 20px;
}

/* line 2470, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-content p {
  font-size: 18px;
  color: #666666;
  line-height: 30px;
}

/* line 2476, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#about-slider {
  margin-top: 61px;
}

/* ABOUT - TEAM */
/* line 2483, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.profile {
  text-align: center;
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  margin: 0 20px;
}

/* line 2490, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.profile img {
  margin-bottom: 20px;
}

/* line 2494, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.profile h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #666666;
  font-weight: 600;
}

/* line 2501, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.profile h3 small {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 0;
}

/* line 2508, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.profile p {
  color: #999999;
  font-size: 14px;
  margin: 20px;
  line-height: 24px;
  text-align: left;
}

/* line 2516, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.profile .address {
  margin: 20px 0;
}

/* line 2520, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.profile .address li {
  line-height: 26px;
}

/* line 2524, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.profile .brands {
  padding: 0 0 15px;
}

/*------------------------------
	CONTACT
------------------------------*/
/* line 2532, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact h2 {
  text-align: left;
  margin-bottom: 20px;
}

/* line 2537, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact p {
  font-size: 18px;
  color: #555555;
  line-height: 26px;
}

/* line 2543, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .contact-address li {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #E5E5E5;
}

/* line 2551, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .contact-address li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 2556, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .brands {
  margin: 30px 0 0;
}

/* line 2560, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .brands li {
  margin-right: 10px;
}

/* line 2564, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .panel-group .brands {
  margin: 0;
}

/* line 2568, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#map-canvas {
  height: 400px;
  margin: 0;
  padding: 0;
}

/* line 2574, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#google-map {
  position: relative;
}

/* line 2578, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.map-overlay-wrapper {
  position: relative;
}

/* line 2582, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.map-overlay {
  display: inline-block;
  position: absolute;
  bottom: 30px;
  width: 35%;
  color: #FFFFFF;
}

/* line 2590, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.map-overlay i {
  font-size: 64px;
  padding: 20px 20px 0 20px;
}

/* line 2595, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.map-overlay h3 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
}

/* line 2601, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.map-overlay ul {
  margin-bottom: 20px;
}

/* line 2605, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.map-overlay ul li {
  font-size: 16px;
  line-height: 26px;
}

/* line 2610, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.map-overlay:first-child {
  left: 10%;
}

/* line 2614, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.map-overlay:last-child {
  right: 10%;
}

/* line 2618, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .panel-group .profile {
  box-shadow: none;
  margin: 0;
  background-color: transparent;
  text-align: left;
}

/* line 2625, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .panel-group .profile h3 {
  margin: 0 0 20px;
}

/* line 2629, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .panel-group .profile .brands {
  padding: 0;
}

/* line 2633, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#contact .panel-group .profile img {
  margin-bottom: 0;
}

/*------------------------------
	BLOG
------------------------------*/
/* line 2641, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#blog {
  padding-top: 60px;
}

/* line 2646, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#blog.blog-col-2 .row > div,
#blog.blog-col-3 .row > div {
  margin-bottom: 60px;
}

@-moz-document url-prefix() {
  /* line 2652, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #blog.blog-col-2 .row > div,
  #blog.blog-col-3 .row > div {
    margin-bottom: 30px;
  }
}

/* line 2657, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-header .vertical-nav li a:hover {
  background-color: transparent;
}

/* BLOG - SIDEBAR */
/* line 2663, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.left-sidebar .blog-sidebar {
  padding-right: 30px;
}

/* line 2667, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.right-sidebar .blog-sidebar {
  padding-left: 30px;
}

/* line 2671, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.box {
  margin-bottom: 40px;
}

/* line 2675, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.box h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px;
}

/* line 2682, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.box ul li {
  margin: 0 0 14px 20px;
}

/* line 2686, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.box ul li a {
  font-size: 14px;
  color: #555555;
  display: block;
}

/* line 2692, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.box ul li a span.badge {
  float: right;
  border-radius: 15px;
  padding: 4px 8px;
}

/* line 2698, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.box ul li a i {
  margin-right: 12px;
}

/* line 2702, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.box.box-tags a span {
  font-weight: 600;
  color: #555555;
  padding: 0 3px 3px 0;
  white-space: nowrap;
}

/* line 2709, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-10 {
  font-size: 10px;
}

/* line 2710, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-12 {
  font-size: 12px;
}

/* line 2711, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-14 {
  font-size: 14px;
}

/* line 2712, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-16 {
  font-size: 16px;
}

/* line 2713, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-18 {
  font-size: 18px;
}

/* line 2714, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.text-20 {
  font-size: 20px;
}

/* BLOG - CONTENT */
/* line 2719, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.left-sidebar .blog-content {
  border-left: 1px solid #D5D5D5;
  padding-left: 30px;
}

/* line 2724, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.right-sidebar .blog-content {
  border-right: 1px solid #D5D5D5;
  padding-right: 30px;
}

/* line 2729, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0 0 50px;
}

/* line 2736, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-col-2 .blog-post,
.blog-col-3 .blog-post {
  margin: 0;
}

/* line 2740, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-body {
  padding: 0 50px 30px;
}

/* line 2745, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-col-2 .blog-post-body,
.blog-col-3 .blog-post-body {
  padding: 0 20px 20px;
}

/* line 2749, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-detail {
  background-color: #F5F5F5;
  padding: 10px 0;
  border-bottom: 1px solid #E5E5E5;
}

/* line 2755, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-detail span {
  padding: 10px 18px;
  border-right: 1px solid #E5E5E5;
  color: #777;
  font-weight: bold;
}

/* line 2762, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-detail span:last-child {
  border-right: 0;
  padding-right: 50px;
}

/* line 2767, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-detail span:first-child {
  padding-left: 50px;
}

/* line 2772, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-col-2 .blog-post-detail span:last-child,
.blog-col-3 .blog-post-detail span:last-child {
  padding-right: 18px;
}

/* line 2777, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-col-2 .blog-post-detail span:first-child,
.blog-col-3 .blog-post-detail span:first-child {
  padding-left: 18px;
}

/* line 2781, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-detail span.text-light {
  font-weight: 600;
}

/* line 2785, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-detail span i {
  margin-right: 12px;
}

/* line 2789, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post h3 {
  font-size: 35px;
  font-family: 'Roboto';
  line-height: 45px;
  margin: 18px 0 25px;
  color: #555555;
}

/* line 2797, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post p {
  font-size: 16px;
  line-height: 26px;
}

/* line 2802, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-buttons {
  border-top: 1px solid #E5E5E5;
  padding-top: 15px;
}

/* line 2807, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-buttons .btn {
  margin-right: 12px;
}

/* line 2811, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-buttons .btn:last-child {
  margin-right: 0;
}

/* line 2815, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-buttons .pull-right {
  padding-top: 3px;
}

/* line 2819, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post-buttons .pull-right .twitter-share-button {
  position: relative;
  top: 5px;
}

/* BLOG - TIMELINE */
/* line 2826, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline {
  position: relative;
}

/* line 2830, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background-color: #D0D0D0;
}

/* line 2840, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline .text-center .btn {
  position: relative;
  margin-top: 40px;
}

/* line 2845, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline-mark {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  padding: 6px 0;
  display: inline-block;
  clear: both;
  float: left;
  position: relative;
  left: 50%;
  width: 80px;
  text-align: center;
  margin: 40px 0 40px -40px;
}

/* line 2861, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline-mark:first-child {
  margin-top: 0;
}

/* line 2865, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline .blog-post {
  width: 43%;
  margin: 120px 0 0;
}

/* line 2870, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline .blog-post:first-child {
  margin-top: 0;
}

/* line 2874, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline .blog-post .blog-post-info {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  text-align: center;
  margin-left: -38px;
  border: 3px solid #E0E0E0;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition-duration: 0.5s;
}

/* line 2887, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline .blog-post .blog-post-info .number {
  font-size: 28px;
  color: #999;
  padding-top: 6px;
  font-weight: 600;
}

/* line 2894, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline .blog-post .blog-post-info .month {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  top: -6px;
}

/* line 2903, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
body .blog-timeline .blog-post:hover .blog-post-info .number,
body .blog-timeline .blog-post:hover .blog-post-info .month {
  color: #FFFFFF;
}

/* line 2907, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-timeline .blog-post .blog-post-body {
  padding: 0 20px 20px;
}

/* BLOG POST TYPOGRAPHY */
/* line 2913, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post .blog-post-body img {
  margin: 0 0 20px;
}

/* line 2917, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post h4 {
  font-size: 22px;
  margin: 0 0 13px;
  color: #555555;
  font-weight: 700;
}

/* line 2924, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post h5 {
  font-size: 18px;
  margin: 0 0 11px;
  color: #555555;
  font-weight: 600;
}

/* line 2932, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post ul,
.blog-post ol {
  margin: 0 0 30px;
}

/* line 2937, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post ul li,
.blog-post ol li {
  font-size: 16px;
  margin: 0 0 12px;
  color: #555555;
}

/* line 2943, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post p.text-small {
  font-size: 13px;
  line-height: 20px;
}

/* line 2948, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post .files {
  margin-left: 25px;
}

/* line 2952, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post .files li {
  margin-bottom: 10px;
}

/* line 2956, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post .files li a {
  font-size: 14px;
}

/* line 2960, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post .files li a i {
  margin-right: 17px;
  color: #333333;
}

/* line 2965, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post .files li a span {
  color: #AAAAAA;
  margin-left: 10px;
}

/*------------------------------
	ABOUT AUTHOR
------------------------------*/
/* line 2974, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0 0 50px;
  padding: 40px 40px 0;
}

/* line 2981, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author .media-object {
  max-width: 160px;
  margin-bottom: 20px;
}

/* line 2986, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author .pull-left {
  margin-right: 40px;
}

/* line 2990, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author h4 {
  font-size: 30px;
  font-family: 'Roboto';
  margin: 0 0 15px;
  color: #555555;
}

/* line 2997, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author p {
  font-size: 16px;
  line-height: 25px;
  color: #555555;
}

/* line 3003, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author .media-body ul {
  margin: 0;
  border-top: 1px solid #E5E5E5;
}

/* line 3008, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author .media-body ul li {
  padding: 10px 15px;
  border-right: 1px solid #E5E5E5;
}

/* line 3013, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author .media-body ul li:first-child {
  padding-left: 0;
}

/* line 3017, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author .media-body ul li:last-child {
  padding-right: 0;
  border-right: 0;
}

/* line 3022, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.about-author .media-body ul li a i {
  margin-right: 10px;
  color: #999999;
}

/*------------------------------
	COMMENTS
------------------------------*/
/* line 3031, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comments {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 20px 30px;
}

/* line 3038, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comments h2 {
  text-align: left;
}

/* line 3042, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comment {
  margin: 25px 0 0;
  clear: both;
}

/* line 3047, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comments > .comment {
  border-bottom: 1px solid #E5E5E5;
  padding: 0 0 20px;
}

/* line 3052, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comments > .comment:last-child {
  border-bottom: 0;
  padding: 0;
}

/* line 3057, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comment .media-object {
  max-width: 80px;
  margin-right: 20px;
}

/* line 3062, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comment h4 {
  font-size: 22px;
  margin: 0 0 10px;
  color: #555555;
}

/* line 3068, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comment h4 small {
  font-size: 14px;
  color: #999999;
  margin-left: 20px;
}

/* line 3074, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comment a {
  color: #999999;
}

/* line 3078, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comment a i {
  margin-right: 7px;
  color: #999999;
}

/* line 3083, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.comments-form h2 {
  text-align: left;
  margin: 30px 0 20px;
}

/*------------------------------
	PORTFOLIO
------------------------------*/
/* line 3092, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio {
  padding-top: 60px;
}

/* line 3096, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio .row > div {
  margin-bottom: 30px;
}

/* line 3101, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio.portfolio-nospaces .row.portfolio-wrapper,
#portfolio.portfolio-nospaces .row.portfolio-wrapper2 {
  margin: 0;
}

/* line 3106, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio.portfolio-nospaces .row.portfolio-wrapper > div,
#portfolio.portfolio-nospaces .row.portfolio-wrapper2 > div {
  padding: 0;
  margin-bottom: 0;
}

/* line 3111, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio .overlay {
  margin: 0;
}

/* line 3115, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio .overlay-wrapper:hover .overlay {
  opacity: 0.75;
}

/* line 3119, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio .portfolio-item article {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
}

/* line 3124, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio.portfolio-nospaces .portfolio-item article {
  background-color: transparent;
  box-shadow: none;
}

/* line 3129, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio .portfolio-item article .portfolio-item-description {
  padding: 20px;
}

/* line 3133, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio .portfolio-item article .portfolio-item-description h3 {
  margin: 0 0 10px;
  color: #555555;
}

/* line 3138, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#portfolio .portfolio-item article .portfolio-item-description p {
  margin: 0;
  color: #555555;
}

/* line 3143, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.portfolio-col-2 .overlay a {
  font-size: 60px;
  margin-left: -25px;
  margin-top: -38px;
}

/* line 3149, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.portfolio-col-3 .overlay a {
  font-size: 45px;
  margin-left: -15px;
  margin-top: -27px;
}

/* line 3155, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.portfolio-col-4 .overlay a {
  font-size: 30px;
}

/*------------------------------
	ESHOP
------------------------------*/
/* line 3163, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#eshop .eshop-header ul li {
  line-height: 40px;
}

/* line 3167, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#eshop .eshop-main {
  margin-top: 30px;
  margin-bottom: 20px;
}

/* line 3172, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#eshop .eshop-sidebar h3 {
  margin: 0 0 20px;
}

/* line 3181, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-product {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 30px;
}

/* line 3187, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-product h3 {
  margin: 0 0 7px;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
}

/* line 3194, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-product .product-price {
  margin: -8px 15px 0 0;
}

/* line 3198, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-product .product-price .old-price {
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 700;
}

/* line 3204, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-product .product-price .new-price {
  font-weight: bold;
  font-size: 24px;
  color: #C0392B;
  margin-left: 5px;
}

/* ESHOP - ALERT */
/* line 3213, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#eshop-cart-alert {
  position: fixed;
  bottom: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding: 40px 60px 10px;
  font-size: 24px;
  display: none;
  z-index: 1030;
}

/* line 3225, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#eshop-cart-alert .close {
  font-size: 60px;
  top: -15px;
}

/* line 3230, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#eshop-cart-alert.active {
  display: block;
}

/* ESHOP - GRID  */
/* line 3236, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-grid .eshop-product img {
  padding: 20px;
}

/* line 3240, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-grid .eshop-product .eshop-product-body {
  border-top: 1px solid #EBEBEB;
  background-color: #FFFFFF;
  padding: 10px 20px 15px;
}

/* line 3246, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-grid .eshop-product .product-tags {
  padding: 0 10px 10px;
}

/* ESHOP - LIST */
/* line 3252, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-list .eshop-product img {
  padding: 30px 0 30px 30px;
}

/* line 3256, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-list .eshop-product .eshop-product-body {
  background-color: #FFFFFF;
  padding: 20px;
}

/* line 3261, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-list .eshop-product h3 {
  margin: 12px 0;
  font-size: 26px;
}

/* line 3266, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-list .eshop-product p {
  color: #555555;
  margin: 0 0 15px;
  line-height: 24px;
}

/* line 3272, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-list .eshop-product .product-price {
  background-color: #F9F9F9;
  border: 2px dashed #E0E0E0;
  padding: 5px 12px;
}

/* ESHOP - DETAIL */
/* line 3280, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product {
  margin: 0 0 30px;
  padding: 30px;
  position: relative;
}

/* line 3286, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#eshop-slider.owl-carousel .owl-wrapper-outer {
  box-shadow: none;
  background-color: #EBEBEB;
  border: 3px solid #DDDDDD;
}

/* line 3292, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#eshop-slider .owl-item img {
  padding: 0 10px;
  cursor: pointer;
}

/* line 3297, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-product .product-sale-label {
  position: absolute;
  top: -35px;
  right: -30px;
  border: 3px solid #119178;
  color: #FFFFFF;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  z-index: 990;
}

/* line 3312, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-product .product-sale-label .text {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* line 3319, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-product .product-sale-label .number {
  position: relative;
  top: -10px;
}

/* line 3329, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product h3 {
  margin: 20px 0;
  font-size: 32px;
}

/* line 3334, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product .product-price {
  margin: 20px 0;
  padding: 5px 10px;
  background-color: #FFFFFF;
  text-align: left;
  border: 2px dashed #E0E0E0;
}

/* line 3342, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product .product-price .old-price {
  font-size: 18px;
}

/* line 3346, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product .product-price .new-price {
  font-size: 35px;
  margin-left: 15px;
}

/* line 3351, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product h4 {
  font-size: 20px;
  font-weight: 600;
}

/* line 3356, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product form .btn-group {
  display: block;
}

/* line 3360, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product form .form-group {
  margin: 10px 0;
}

/* line 3364, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
#quantity.form-control {
  height: 44px;
}

/* line 3368, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product form .bootstrap-touchspin .input-group-btn-vertical > .btn {
  padding: 10px 12px;
}

/* line 3372, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product form .bootstrap-touchspin .input-group-btn-vertical i {
  font-size: 12px;
  left: 7px;
  top: 5px;
  color: #777;
}

/* line 3379, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product form .bootstrap-touchspin .input-group-btn-vertical .btn:hover i {
  color: #555;
}

/* line 3383, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product form button[type=submit] {
  margin-top: 25px;
  float: right;
}

/* line 3388, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product .blog-post-buttons .pull-left {
  font-weight: bold;
}

/* line 3392, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .eshop-product .blog-post-buttons .pull-left a i {
  margin-right: 5px;
}

/* line 3396, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .tab-content ul {
  margin-bottom: 20px;
}

/* line 3400, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.eshop-detail .comments {
  background-color: #F9F9F9;
  box-shadow: none;
  padding: 0;
}

/* ESHOP - SHOPPING CART */
/* line 3408, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-header {
  text-align: center;
  margin: 10px 0 40px;
}

/* line 3413, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-header i {
  font-size: 50px;
  color: #DDDDDD;
}

/* line 3418, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-header p {
  font-size: 16px;
  font-weight: 700;
  color: #AAAAAA;
  margin: 10px 0 0;
}

/* line 3425, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-header .active i {
  color: #999999;
}

/* line 3429, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-header .active p {
  color: #777777;
}

/* line 3433, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart.tab-content {
  background-color: transparent;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
}

/* line 3440, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 25px 20px 40px;
  position: relative;
  margin: 0 0 15px;
}

/* line 3448, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item a.delete {
  position: absolute;
  display: block;
  font-size: 20px;
  color: #CCCCCC;
  z-index: 1000;
  left: 15px;
  top: 50%;
  margin-top: -14px;
}

/* line 3459, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item a.delete:hover {
  color: #AAAAAA;
}

/* line 3463, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item img {
  margin-top: 10px;
}

/* line 3467, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item h3 {
  color: #777777;
  margin: 20px 0 10px;
  font-weight: 600;
}

/* line 3473, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item p {
  color: #999999;
  margin: 0 0 8px;
}

/* line 3478, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item .form-control {
  margin: 18px 0 0;
}

/* line 3483, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item p.small-price,
.shopping-cart-item p.quantity {
  margin: 30px 0 0;
}

/* line 3488, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-item p.total-price,
.shopping-cart-footer p.total-price {
  margin: 20px 0;
  font-weight: 600;
  font-size: 30px;
  text-align: right;
}

/* line 3495, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-footer {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
  margin-top: 50px;
}

/* line 3502, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-footer .btn {
  margin: 5px 0 0;
  display: inline-block;
}

/* line 3507, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-footer .input-group-btn .btn {
  margin: 0;
}

/* line 3511, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-footer p.total-price-title {
  color: #555555;
  font-weight: bold;
  font-size: 16px;
  margin: 15px 0 0;
}

/* line 3518, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart-footer p.total-price {
  color: #C0392B;
  margin: 0px 0 0;
  font-size: 36px;
  font-weight: 700;
}

/* line 3525, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart .form-address {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
}

/* line 3531, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart .form-address fieldset > .row {
  margin-bottom: 50px;
}

/* line 3535, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart .form-address h3 {
  margin: 0;
}

/* line 3539, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart .form-address #billing-address {
  display: none;
}

/* line 3543, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart .form-address .billing-address-checkbox {
  padding: 2px 0 0 20px;
}

/* line 3547, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart .form-address .billing-address-checkbox label {
  font-size: 16px;
  font-weight: 600;
  color: #555555;
}

/* line 3553, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart .form-address p.conditions {
  font-size: 14px;
  font-weight: 600;
  color: #555555;
  border-top: 1px solid #DDDDDD;
  padding: 15px 0 0;
}

/* line 3561, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.shopping-cart .form-payment {
  background-color: #F9F9F9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
}

@media (min-width: 1601px) {
  /* line 3568, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 .item {
    height: 520px;
  }
}
@media (max-width: 1366px) {
  /* 643 */
  /* line 3574, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .title {
    font-size: 120px;
    margin: 0 0 20px;
  }

  /* line 3579, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon h1 {
    font-size: 44px;
    margin: 0 0 65px;
  }

  /* line 3584, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon {
    padding: 30px 0;
  }
}
@media (max-width: 1280px) {
  /* 570 */
  /* line 3590, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .title {
    font-size: 110px;
  }

  /* line 3594, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon h1 {
    font-size: 40px;
  }

  /* line 3598, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon {
    padding: 15px 0;
  }

  /* line 3602, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon p {
    margin: 0 0 16px;
    font-size: 20px;
  }

  /* line 3607, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon .input-group .form-control {
    height: 44px;
    font-size: 14px;
  }

  /* line 3612, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon .input-group .btn {
    font-size: 14px;
    padding: 10px 13px 12px;
    background-color: #444444;
  }
}
@media (max-width: 1024px) {
  /* 445 */
  /* line 3620, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .title {
    font-size: 80px;
    margin: 0;
  }

  /* line 3625, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon h1 {
    font-size: 30px;
    margin: 0 0 30px;
  }

  /* line 3630, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon {
    padding: 15px 0;
  }

  /* line 3634, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon p {
    margin: 0 0 16px;
    font-size: 20px;
  }

  /* line 3639, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon .input-group .form-control {
    height: 44px;
    font-size: 14px;
  }

  /* line 3644, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon .input-group .btn {
    font-size: 14px;
    padding: 10px 13px 12px;
    background-color: #444444;
  }

  /* line 3650, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .eshop-product .product-sale-label {
    right: 0;
  }
}
/*------------------------------
	MEDIUM DEVICES
------------------------------*/
@media (min-width: 992px) and (max-width: 1199px) {
  /* NAVBAR */
  /* line 3663, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-nav > li > a {
    padding-left: 9px;
    padding-right: 9px;
  }

  /* line 3668, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-nav > li > .dropdown-menu {
    min-width: 240px;
  }

  /* line 3672, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .dropdown-menu > li > a {
    font-size: 13px;
  }

  /* JUMBOTRON */
  /* line 3678, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-2 h2 {
    margin: 30px 0 30px;
  }

  /* line 3682, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-1 h2 {
    font-size: 28px;
    line-height: 40px;
    margin: 40px 30px 40px;
  }

  /* line 3688, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-1 h3 {
    font-size: 22px;
    line-height: 40px;
    margin: 0 30px 15px;
  }

  /* line 3694, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron3 #slide-2 h2 {
    font-size: 50px;
    line-height: 60px;
    margin: 50px 0 40px;
  }

  /* line 3700, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-1 img {
    margin-top: 25px;
  }

  /* BLOG */
  /* line 3706, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-sidebar {
    padding-right: 30px;
  }

  /* line 3710, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-content {
    border-left: 0;
    padding-left: 0;
  }

  /* line 3715, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span {
    padding: 10px 12px;
  }

  /* line 3719, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span:last-child {
    padding-right: 12px;
  }

  /* line 3723, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span:first-child {
    padding-left: 12px;
  }

  /* line 3727, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span i {
    margin-right: 6px;
  }

  /* line 3731, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .comment .media-object {
    margin-right: 10px;
    max-width: 64px;
  }

  /* line 3736, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .pull-left {
    display: none;
  }

  /* line 3740, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .media-body ul {
    margin-bottom: 10px;
  }

  /* line 3744, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .media-body ul li {
    border-right: 0;
    display: block;
    padding: 10px 0 0;
    font-size: 14px;
  }

  /* FEATURES */
  /* line 3753, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #features .features-sidebar {
    width: 280px;
  }

  /* line 3757, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #features .features-sidebar ul li a {
    padding: 6px 0;
    font-size: 13px;
  }

  /* line 3762, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .forms-only {
    padding: 0 80px;
  }

  /* INTRODUCTION */
  /* line 3768, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-introduction h2 {
    font-size: 60px;
  }

  /* line 3772, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-introduction p {
    padding: 0 50px;
  }

  /* line 3776, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item .hover-overlay {
    padding-top: 5px;
  }

  /* line 3780, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item p {
    line-height: 21px;
    margin-bottom: 8px;
  }

  /* line 3785, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item a i {
    font-size: 14px;
    height: 35px;
    padding-top: 9px;
    width: 35px;
  }
}
/*------------------------------
	SMALL DEVICES

	AND

	EXTRA SMALL DEVICES
------------------------------*/
@media (max-width: 991px) {
  /* TYPOGRAPHY */
  /* line 3806, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .dl-horizontal dt {
    margin-bottom: 0;
  }

  /* line 3810, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .dl-horizontal dd {
    margin-left: 0;
  }

  /* OVERLAY */
  /* line 3816, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .overlay-wrapper .overlay a {
    font-size: 60px;
    margin-left: -25px;
    margin-top: -38px;
  }

  /* ISOTOPE */
  /* line 3824, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .isotope-filter {
    padding: 15px;
  }

  /* line 3828, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .isotope-filter ul li {
    line-height: 50px;
  }

  /* line 3832, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .isotope-filter ul li .btn {
    padding: 8px 12px 7px;
    font-size: 12px;
  }

  /* NAVBAR */
  /* line 3839, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default {
    background-color: #F0F0F0;
    height: 50px;
  }

  /* line 3844, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .container {
    width: auto;
  }

  /* line 3848, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-header {
    float: none;
    margin: 0 -15px;
  }

  /* line 3853, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-brand {
    font-size: 25px;
    padding: 0 15px;
    transition: none;
  }

  /* line 3859, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-brand img {
    max-height: 50px;
  }

  /* line 3863, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar > .container .navbar-brand {
    margin-left: 0;
  }

  /* line 3867, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-toggle {
    border: 0;
    padding: 0;
    border-radius: 0;
    margin: 4px 15px 0;
    font-size: 28px;
    color: #555555;
    display: block;
  }

  /* line 3878, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: transparent;
  }

  /* line 3882, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-collapse {
    border: 0;
    box-shadow: none;
    border-bottom: 3px solid #16A085;
    margin: 0 -15px;
    max-height: 300px;
  }

  /* line 3890, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-collapse .navbar-nav {
    margin: 0 -15px;
    background-color: #FFFFFF;
    padding: 5px 15px;
    float: none;
  }

  /* line 3897, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-nav.nav > li {
    display: block;
    position: relative;
    float: none;
  }

  /* line 3910, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  body .navbar.navbar-default .navbar-nav > li > a,
  body .navbar.navbar-default .navbar-nav > li.active > a,
  body .navbar.navbar-default .navbar-nav > li.active > a,
  body .navbar.navbar-default .navbar-nav > li.active > a:hover,
  body .navbar.navbar-default .navbar-nav > li.active > a:focus,
  body .navbar.navbar-default .navbar-nav > li.open > a,
  body .navbar.navbar-default .navbar-nav > li.open > a:hover,
  body .navbar.navbar-default .navbar-nav > li.open > a:focus {
    background-color: #FFFFFF;
    color: #555555;
    padding: 5px 0;
    border-bottom: 2px solid #E5E5E5;
    font-size: 14px;
    font-weight: 600;
  }

  /* line 3919, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-nav > li > a i {
    display: none;
  }

  /* line 3923, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-nav > li > .dropdown-menu {
    display: block;
    position: relative;
    width: 100%;
    float: none;
    box-shadow: none;
    border: 0;
    margin-bottom: 10px;
  }

  /* line 3933, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-nav > li:last-child > .dropdown-menu {
    margin-bottom: 0;
  }

  /* line 3939, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-default .navbar-nav .dropdown-menu > li > a,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a,
  .navbar-default .navbar-nav .dropdown-menu > li > a:hover {
    background-color: #FFFFFF;
    padding: 8px 10px;
    transition: none;
  }

  /* FULL WIDTH NAVBAR */
  /* line 3947, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .content-full header.navbar {
    height: 70px;
    background-color: #FFFFFF;
  }

  /* JUMBOTRON 2 */
  /* line 3954, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron2 {
    padding: 30px 0;
  }

  /* line 3958, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron2 h2 {
    font-size: 60px;
  }

  /* line 3962, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron2 h2 small {
    font-size: 30px;
    margin: 20px 0 0;
  }

  /* JUMBOTRON 6 */
  /* line 3970, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 .item,
  .jumbotron3 .item {
    background-size: 140%;
  }

  /* line 3974, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-1 {
    background-position: right top;
    padding: 50px 0;
  }

  /* line 3979, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-2 {
    background-position: -200px -50px;
  }

  /* line 3983, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 {
    background-position: left top;
  }

  /* line 3987, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-2 h2 {
    margin: 50px 0 40px;
  }

  /* line 3991, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-1 h2 {
    margin: 20px 30px 40px;
  }

  /* line 3995, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron3 #slide-2 h2 {
    font-size: 50px;
    line-height: 60px;
    margin: 50px 0 40px;
  }

  /* JUMBOTRON 7 */
  /* line 4003, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron7 {
    text-align: center;
  }

  /* line 4007, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron7 .application-feature img {
    margin: 0 auto;
  }

  /* line 4011, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron7 .application-feature h3 {
    margin: 0;
  }

  /* JUMBOTRON 4 */
  /* line 4017, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 {
    padding: 100px 0;
  }

  /* line 4021, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 h2 {
    font-size: 50px;
  }

  /* line 4025, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 .input-group .form-control {
    height: 60px;
    font-size: 20px;
  }

  /* line 4030, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 .input-group .btn {
    font-size: 20px;
    padding: 15px 13px 15px;
  }

  /* SEPARATOR */
  /* line 4037, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #separator1 p {
    line-height: 40px;
  }

  /* BREADCRUMB */
  /* line 4043, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .breadcrumb-wrapper .breadcrumb {
    display: none;
  }

  /* FOOTER */
  /* line 4049, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  footer {
    text-align: center;
  }

  /* line 4053, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  footer .footer-bottom .footer-copyright {
    float: none;
  }

  /* PRICING */
  /* line 4059, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .pricing-plan {
    margin: 0 0 30px;
  }

  /* line 4063, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .pricing-plan.popular {
    top: 0;
  }

  /* ABOUT */
  /* line 4069, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #about-content h3 {
    font-size: 30px;
  }

  /* line 4073, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #about-content p {
    font-size: 16px;
    line-height: 26px;
  }

  /* line 4078, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #about-slider {
    margin: 40px 0 20px;
  }

  /* line 4082, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .profile {
    margin-bottom: 40px;
  }

  /* CONTACT */
  /* line 4088, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #contact form {
    margin-bottom: 50px;
  }

  /* BLOG */
  /* line 4094, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-sidebar {
    padding-right: 15px;
  }

  /* line 4098, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-content {
    border-left: 0;
    padding-left: 15px;
  }

  /* line 4103, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span:last-child {
    padding-right: 18px;
  }

  /* line 4107, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span:first-child {
    padding-left: 18px;
  }

  /* line 4111, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-body {
    padding: 0 18px 15px;
  }

  /* line 4115, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #blog .blog-item {
    right: 0;
  }

  /* ABOUT AUTHOR */
  /* line 4121, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .pull-left {
    margin-right: 20px;
  }

  /* line 4125, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .media-object {
    margin-bottom: 20px;
    max-width: 100px;
  }

  /* line 4130, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .brands {
    display: none;
  }

  /* line 4134, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .media-body ul li {
    padding: 7px 10px;
    font-size: 12px;
  }

  /* PORTFOLIO */
  /* line 4141, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #portfolio .portfolio-item {
    right: 0;
  }

  /* line 4145, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #portfolio-slider .carousel-control {
    display: none;
  }

  /* line 4149, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #portfolio-slider {
    margin-bottom: 70px;
  }

  /* FAQ */
  /* line 4156, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #faq img,
  #faq .flex-video {
    margin-bottom: 20px;
  }

  /* COMMING SOON */
  /* line 4162, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .navbar-commingsoon {
    position: static;
    margin-top: 30px;
    padding: 30px 0;
  }

  /* ERROR */
  /* line 4170, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .error .error-number {
    margin: 0;
  }

  /* SIGN IN / SING UP */
  /* line 4176, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .forms-only h1 {
    font-size: 80px;
    margin: 20px 0 30px;
  }

  /* line 4181, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .forms-only {
    padding: 0;
  }

  /* ESHOP */
  /* line 4187, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .select-perpage.form-control {
    margin-bottom: 10px;
  }

  /* line 4191, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #eshop-slider {
    margin-bottom: 30px;
  }

  /* line 4195, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .eshop-detail .eshop-product form button[type=submit] {
    margin: 0;
  }

  /* line 4199, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .shopping-cart-header p {
    margin: 10px 0 20px;
  }

  /* line 4203, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .shopping-cart-header > div:last-child p {
    margin: 10px 0 0;
  }

  /* INTRODUCTION */
  /* line 4209, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-introduction h2 {
    font-size: 50px;
    line-height: 60px;
  }

  /* line 4214, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-introduction p {
    padding: 0 0;
  }

  /* line 4218, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-features .row > div {
    border-right: 0;
  }

  /* line 4222, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #about-us-slider {
    padding: 30px 0;
  }

  /* line 4226, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-blog-posts .row > div:first-child .recent-blog-post {
    margin-right: 0;
  }

  /* line 4230, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-blog-posts .row > div:last-child .recent-blog-post {
    margin-left: 0;
  }

  /* STATISTICS */
  /* line 4236, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-statistics .row > div .statistic {
    margin-bottom: 20px;
  }

  /* line 4240, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-statistics .row > div:last-child .statistic {
    margin-bottom: 0;
  }

  /* line 4244, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-video {
    text-align: center;
  }

  /* line 4248, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-video .flex-video {
    margin-bottom: 20px;
  }

  /* line 4252, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item-description {
    margin-bottom: 30px;
  }

  /* line 4256, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item p {
    font-size: 30px;
    line-height: 40px;
  }
}
/*------------------------------
	SMALL DEVICES
------------------------------*/
@media (min-width: 768px) and (max-width: 991px) {
  /* line 4267, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .profile {
    margin: 0;
  }

  /* line 4271, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .pricing-plan.popular {
    top: -35px;
  }

  /* line 4275, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #portfolio-slider .carousel-control {
    display: block;
  }

  /* line 4279, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #portfolio-slider .carousel-control.left {
    left: -65px;
  }

  /* line 4283, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #portfolio-slider .carousel-control.right {
    right: -65px;
  }

  /* BLOG - TIMELINE */
  /* line 4289, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-timeline .blog-post .blog-post-info {
    width: 70px;
    height: 70px;
    margin-left: -33px;
  }

  /* line 4295, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-timeline .blog-post .blog-post-info .number {
    font-size: 24px;
  }

  /* line 4299, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-timeline .blog-post .blog-post-info .month {
    font-size: 14px;
  }

  /* line 4303, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .shopping-cart .form-address h3 {
    margin: 0 0 10px;
  }
}
@media (max-width: 767px) {
  /* BLOG - TIMELINE */
  /* line 4312, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-timeline:before {
    display: none;
  }

  /* line 4316, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-timeline .text-center .btn {
    margin-top: 0;
  }

  /* line 4320, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-timeline-mark {
    margin-top: 0;
    margin-bottom: 20px;
  }

  /* line 4325, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-timeline .blog-post {
    width: 100%;
    margin: 0 0 50px;
  }

  /* line 4330, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-timeline .blog-post .blog-post-body {
    padding: 0 18px 15px;
  }

  /* line 4334, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-blog-posts .row > div:first-child .recent-blog-post {
    margin-bottom: 30px;
  }

  /* line 4339, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 .item,
  .jumbotron3 .item {
    background-size: auto;
  }

  /* line 4343, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .eshop-product .product-sale-label {
    top: -35px;
    width: 75px;
    height: 75px;
    font-size: 24px;
  }

  /* line 4350, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .eshop-product .product-sale-label .text {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  /* line 4356, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .comment .media-object {
    margin-right: 10px;
    max-width: 64px;
  }

  /* line 4361, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .pull-left {
    display: none;
  }

  /* line 4365, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .media-body ul {
    margin-bottom: 10px;
  }

  /* line 4369, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .about-author .media-body ul li {
    border-right: 0;
    display: block;
    padding: 10px 0 0;
    font-size: 14px;
  }

  /* line 4376, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .digits .cntSeparator {
    display: block !important;
  }

  /* line 4380, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .digits .cntDigit {
    margin-bottom: 40px;
  }

  /* line 4384, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .commingsoon-text {
    position: relative;
  }

  /* line 4388, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .countdown-labels {
    text-align: center;
    position: absolute;
    top: 160px;
    left: 50%;
    margin-left: -67px;
  }

  /* line 4396, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .countdown-labels span {
    display: block;
    height: 32px;
    margin: 0;
    margin-bottom: 100px;
  }

  /* line 4403, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-2 h2 {
    font-size: 60px;
    line-height: 80px;
    margin: 30px 0 30px;
  }

  /* line 4409, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-2 h3 {
    font-size: 30px;
    line-height: 40px;
  }

  /* line 4416, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 h2,
  .jumbotron5 h2,
  .jumbotron3 h2 {
    font-size: 50px;
    line-height: 60px;
    margin: 80px 0 30px;
  }

  /* line 4422, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron3 #slide-2 h2 {
    font-size: 36px;
    line-height: 40px;
    margin: 50px 0 40px;
  }

  /* line 4430, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 h3,
  .jumbotron5 h3,
  .jumbotron3 h3 {
    font-size: 30px;
    margin: 0 0 20px;
  }

  /* line 4435, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron3 #slide-2 h3 {
    font-size: 24px;
    margin: 0 0 20px;
  }

  /* line 4442, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 .btn,
  .jumbotron5 .btn,
  .jumbotron3 .btn {
    font-size: 18px;
  }
}
@media (max-width: 568px) {
  /* line 4452, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .overlay-wrapper .overlay a {
    font-size: 45px;
    margin-left: -15px;
    margin-top: -27px;
  }

  /* line 4458, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .error .error-number {
    font-size: 200px;
  }

  /* line 4462, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .error .error-text h1 {
    font-size: 60px;
  }

  /* line 4466, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .error .error-text p {
    padding: 0 10px;
  }

  /* line 4470, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .eshop-list .eshop-product > .row > div {
    width: 100%;
  }

  /* line 4474, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item p {
    font-size: 20px;
    line-height: 28px;
  }

  /* line 4479, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 h2 {
    font-size: 40px;
  }

  /* line 4483, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 .input-group .form-control {
    height: 50px;
    font-size: 16px;
  }

  /* line 4488, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 .input-group .btn {
    font-size: 16px;
    padding: 12px 13px 11px;
  }
}
@media (max-width: 480px) {
  /* line 4495, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .content-full header.navbar .brands {
    display: none;
  }

  /* line 4499, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #contact h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* line 4504, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #contact p {
    font-size: 14px;
    line-height: 26px;
  }

  /* line 4509, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #contact .contact-address li {
    font-size: 14px;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }

  /* line 4515, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #contact .brands li {
    margin-right: 10px;
  }

  /* line 4519, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #contact .brands li a {
    font-size: 16px;
    padding-top: 6px;
    width: 35px;
    height: 35px;
  }

  /* line 4526, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #map-canvas {
    display: none;
  }

  /* line 4530, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-buttons .btn {
    font-size: 11px;
    padding: 6px 9px 5px;
    margin-right: 5px;
  }

  /* line 4536, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-buttons .pull-right {
    padding-top: 0;
  }

  /* SIGN IN / SING UP */
  /* line 4542, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .forms-only h1 {
    font-size: 60px;
    margin: 20px 0 30px;
  }

  /* line 4547, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .forms-only form {
    padding: 20px;
  }

  /* line 4551, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .forms-only form h2 {
    font-size: 30px;
  }

  /* line 4555, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .forms-only .form-info {
    display: none;
  }

  /* line 4559, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .commingsoon .countdown-labels {
    top: 190px;
  }

  /* line 4563, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-1 h2 {
    margin: 20px 30px 40px;
  }

  /* line 4569, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 h2,
  .jumbotron5 h2,
  .jumbotron3 h2 {
    font-size: 45px;
    line-height: 55px;
    margin: 60px 0 20px;
  }

  /* line 4577, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 h3,
  .jumbotron5 h3,
  .jumbotron3 h3 {
    font-size: 28px;
    margin: 0 0 20px;
  }

  /* line 4584, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 .btn,
  .jumbotron5 .btn,
  .jumbotron3 .btn {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  /* FORM */
  /* line 4593, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  form span.form-info {
    margin-left: 5px;
    font-size: 12px;
    top: 11px;
  }

  /* TABS */
  /* line 4601, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .nav-tabs > li > a {
    padding: 8px 12px;
  }

  /* line 4607, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:hover,
  .nav-tabs > li.active > a:focus {
    padding: 10px 14px;
    margin-top: -4px;
  }

  /* line 4612, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .tab-content {
    padding: 10px;
  }

  /* CONTENT */
  /* line 4618, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .content h2 {
    font-size: 26px;
  }

  /* JUMBOTRON */
  /* line 4624, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron2 h2 {
    font-size: 40px;
  }

  /* line 4628, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron2 h2 small {
    font-size: 24px;
    line-height: 34px;
  }

  /* line 4633, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-2 h2 {
    font-size: 50px;
    line-height: 60px;
  }

  /* line 4638, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-1 h2 {
    font-size: 24px;
    line-height: 36px;
    margin: 0 10px 20px;
  }

  /* line 4644, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-1 h3 {
    font-size: 18px;
    line-height: 30px;
    margin: 0 10px 15px;
  }

  /* line 4652, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 h2,
  .jumbotron5 h2,
  .jumbotron3 h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 40px 0 20px;
  }

  /* line 4658, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron3 #slide-2 h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 30px 0 20px;
  }

  /* line 4666, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 h3,
  .jumbotron5 h3,
  .jumbotron3 h3 {
    font-size: 24px;
    margin: 0 0 20px;
  }

  /* line 4671, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron3 #slide-2 h3 {
    font-size: 18px;
    margin: 0 0 20px;
  }

  /* line 4678, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron6 #slide-3 .btn,
  .jumbotron5 .btn,
  .jumbotron3 .btn {
    font-size: 14px;
  }

  /* line 4682, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 {
    padding: 60px 0;
  }

  /* line 4686, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 h2 {
    font-size: 28px;
  }

  /* line 4690, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 .input-group .form-control {
    height: 40px;
    font-size: 13px;
  }

  /* line 4695, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .jumbotron4 .input-group .btn {
    font-size: 13px;
    padding: 10px 8px 10px;
  }

  /* ABOUT */
  /* line 4702, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .profile {
    margin: 0;
  }

  /* CONTACT */
  /* line 4708, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #contact form .btn {
    padding: 5px 8px;
  }

  /* BLOG */
  /* line 4714, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post h3 {
    font-size: 25px;
    line-height: 35px;
  }

  /* line 4719, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post p {
    font-size: 14px;
    line-height: 24px;
  }

  /* line 4724, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .pagination > li > a, .pagination > li > span {
    font-size: 16px;
    padding: 7px 13px;
  }

  /* line 4729, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span {
    padding: 10px 10px;
  }

  /* line 4733, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span:last-child {
    padding-right: 10px;
  }

  /* line 4737, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span:first-child {
    padding-left: 10px;
  }

  /* line 4741, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-detail span i {
    margin-right: 6px;
  }

  /* line 4745, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .blog-post-buttons .pull-right {
    display: none;
  }

  /* COMMENTS */
  /* line 4751, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .comment .media, .media-body {
    clear: both;
    margin-top: 20px;
  }

  /* line 4756, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .comment h4 {
    margin: 20px 0;
  }

  /* line 4760, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .comment h4 small {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }

  /* FEATURES */
  /* line 4768, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #features .features-content h3.features-title {
    font-size: 18px;
  }

  /* ERROR */
  /* line 4774, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .error .error-number {
    font-size: 160px;
  }

  /* line 4778, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .error .error-text h1 {
    font-size: 40px;
  }

  /* line 4782, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .error .error-text p {
    font-size: 22px;
    line-height: 35px;
  }

  /* ESHOP */
  /* line 4789, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .eshop-detail .blog-post-buttons {
    display: none;
  }

  /* line 4793, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .eshop-detail .eshop-product .product-price .old-price {
    font-size: 16px;
  }

  /* line 4797, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .eshop-detail .eshop-product .product-price .new-price {
    font-size: 35px;
    margin-left: 10px;
  }

  /* line 4802, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .form-address span.form-info {
    top: -8px;
  }

  /* line 4806, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .shopping-cart-footer p.total-price-title {
    font-size: 14px;
  }

  /* line 4810, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .shopping-cart-footer p.total-price {
    font-size: 26px;
  }

  /* INTRODUCTION */
  /* line 4816, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-introduction h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 20px;
  }

  /* line 4822, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-introduction p {
    font-size: 16px;
    margin: 0 0 10px;
  }

  /* line 4827, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .btn-googleplay {
    margin-right: 0;
  }

  /* line 4831, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .product-content {
    text-align: center;
  }
}
@media (max-width: 320px) {
  /* line 4837, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .overlay-wrapper .overlay a {
    font-size: 30px;
    margin-left: -15px;
    margin-top: -18px;
  }

  /* line 4843, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #contact .brands li {
    margin-right: 4px;
  }

  /* line 4847, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #features .features-content h3.features-title {
    font-size: 14px;
  }

  /* line 4851, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item .hover-overlay {
    padding-top: 5px;
  }

  /* line 4855, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item p {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 8px;
  }

  /* line 4861, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  #section-portfolio .portfolio-item a i {
    font-size: 14px;
    height: 35px;
    padding-top: 9px;
    width: 35px;
  }
}
/*------------------------------
	FLEX VIDEO
------------------------------*/
/* line 4873, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.flex-video {
  position: relative;
  padding-top: 25px;
  padding-bottom: 67.5%;
  height: 0;
  overflow: hidden;
}

/* line 4881, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.flex-video.widescreen {
  padding-bottom: 57.25%;
}

/* line 4882, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.flex-video.vimeo {
  padding-top: 0;
}

/* line 4883, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.flex-video.soundcloud {
  padding-bottom: 0;
  height: 166px;
}

/* line 4887, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.flex-video iframe,
.flex-video object,
.flex-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0 none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  /* line 4903, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
  .flex-video {
    padding-top: 0;
  }
}
/* line 4906, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.owl-carousel {
  display: none;
  position: relative;
  height: 250px;
  -ms-touch-action: pan-y;
}

/* line 4914, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.texto-espacio {
  padding-top: 35px;
}

/* line 4919, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.menu-inferior {
  margin-right: 1%;
  margin-top: -5px;
  font-size: 0.8em;
}

/* line 4928, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.menu-inferior-1 {
  margin-right: 1%;
}

/* line 4936, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.sub-menu-secciones {
  background-color: #5F5F5F;
  color: #FFF;
}

/* line 4942, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.borde-menu {
  border-right: 1px solid #fff;
}

/* line 4948, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.sub-menu-secciones li a {
  background-color: #5F5F5F;
  color: #FFF;
}

/* line 4955, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.clearfix {
  overflow: auto;
}

/* line 4960, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.titulo-banner {
  font-size: 25px;
  color: #FFF;
}

/* line 4967, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.titulo-cursos {
  font-size: 14px;
}

/* line 4980, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.titulos-calendario {
  padding-top: 15px;
  padding-left: 15px;
}

/* line 4987, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.sube-entrada {
  margin-top: -35px;
}

/* line 4993, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.barra-logos {
  background-image: url(data:image/jpeg;base64,%2F9j%2F4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP%2FsABFEdWNreQABAAQAAABQAAD%2F4QMpaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu%2B7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI%2FPiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MCA2MS4xMzQ3NzcsIDIwMTAvMDIvMTItMTc6MzI6MDAgICAgICAgICI%2BIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI%2BIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgV2luZG93cyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBRkM2MjNGNDk2QUMxMUU0OEZGRTlFNENEQzE0QjFBRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBRkM2MjNGNTk2QUMxMUU0OEZGRTlFNENEQzE0QjFBRSI%2BIDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFGQzYyM0YyOTZBQzExRTQ4RkZFOUU0Q0RDMTRCMUFFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkFGQzYyM0YzOTZBQzExRTQ4RkZFOUU0Q0RDMTRCMUFFIi8%2BIDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY%2BIDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8%2B%2F%2B4ADkFkb2JlAGTAAAAAAf%2FbAIQAAgICAgICAgICAgMCAgIDBAMCAgMEBQQEBAQEBQYFBQUFBQUGBgcHCAcHBgkJCgoJCQwMDAwMDAwMDAwMDAwMDAEDAwMFBAUJBgYJDQsJCw0PDg4ODg8PDAwMDAwPDwwMDAwMDA8MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM%2F8AAEQgAkwSwAwERAAIRAQMRAf%2FEAI8AAAMBAQEBAQAAAAAAAAAAAAECAwQABQYJAQEBAQEBAAAAAAAAAAAAAAAAAQIDBBAAAQMCAwUFBwIEBgIDAQEBAQARAiEDMUESUXGBIjJhscFSBJGh0UJyEzPhYvCCIwWyQ1NzFDTxkmODJKLCFREBAQACAgAHAQAAAAAAAAAAAAERAhIDMUFRgZETBCH%2F2gAMAwEAAhEDEQA%2FAP3Zt2oW%2Bkc2cjig0WqGf0FAwQGm7uQU0yNuFKEkugaMAHcuUwmYtQoZgnqPeiklF65oOtxIng9CgEpxj1GuwIM1y9M0jyxOWaB7P4z9Xggr3ICz4exB04nWXpVAQAN6AS6LmzQUGOE5QLxJG0INlv1EZECXKfcgPqIylCDB6lBGNoCsqnZkgrluQUljwHcg7egaI5qVQAR2%2BxA3YiZHI7wigg4g5ICaAPSgQTMx8vtQLEkzBNaoKDJByDiDpcVqgUDPFA25Bmvfk4BAYXiKSqNuaDVEidYl8UGKNuR6qBBcREcAyBxgd4QHcg5AWNKZIO%2FgomRGIRXZlApDoDEEakCymI41OxBCVyUqYDYgpHojx7ygKDmchtuCBGOdEDZMgjf%2FABT3x70GOF6dttJePlOCDbbvwuUfTLYfAoI%2BrtTlO20aaccsUE4WoxYkaj24ILDGO8IHl1S3lAN%2FtQNEEibc3KgIhnI8ES3BqYDLJCWUSzR7XRSGL0KCRhJw1XOCC92QhKRkdI2lBgueqNRbDfuOKCVgmVyUiXJhJz7EGpB3u7kHThLTAtStcsUCiIFce3JA4xGVRVB4t6UoepvyhIxkLkmI3oNtj%2B44RvjsMx4hBvu%2F1fS3zaP3NVumneEHj2%2FSyLG5yjyjFBtjGMY6Yx0gZBBoj%2BKP1S8EBy8EAZ8DwQWnCRnJ%2BX%2FwgIEY4e3NXDPKeqkcTtY9yjWS5P7kE5W%2FKge2JC2XGMqHggjc9RCFBznYMOKDBcu3Lh5jTKOSDblH6Y%2F4QgL7a96AiJk4jzHSe5BEROfszQUywZskGP1%2F4bP%2B5LuQZbHrLtlg%2Bu3lGXgg9iz6m1fHLJp5wOPDag871np7s%2FV3TpaJ0tI4MyB7ViFurapeY%2BCDVa%2FIOPcgYZIDTOnageMJGEmDvIV4ICIAYlzkMkS2RShHYmCbSjIViOwIpZR1bxmgSEJfdhRwDigac4wczLd6DDd9TOTi3yROeaDvT1F18zHxQaH2IB7kAuQkDFww0ipQdEAb9qBo9Q49yDwLdydoiVuRjIIPWsf3CEmje5D5xhxQW9bCVz0pNsawZxLxrSqDzrfpc7lT5R4lBsAADAMBkMEGg9Nv6B3lB2zNA0A84NWopxQHRJzq5Q9RmgoGjQUVwzynqYNplw71Gsg1GyOSCUoEYIKgGNu3qDYu6DNc9TGNIc0tuSDD9ydycTKTkSDdlUG89UvqPeg7f7Qg7TKUJtXCo3oJiO2p2D4oHxZB539wpcsf7fiUAseuu22jc%2FqQGBOIG9B7Fi9bvmJtycgh4mhHBB5Vr093%2FmxlKOkRvg1%2BpBqMSC0gxW5u8%2B355fOz3PaFbn0FS7Za6%2BiaXMtOsuxhbMg55Y7TidwQaWh9uEa0JqiWZLpZ5O42rXJz%2BmGEU5E6oY9R2LLqD0rljsQJG%2FDUYh5NE8wpggyEa6wJkTjE4%2FqgmdiDTZ%2FHul4IKoKCHmPAIGnASkSCxzBwQIxHYyBZUjP6CgwoHjA0kTpjtOe5BttSgbTDUwliUHGJFcRtVyzdJSlXkx9U9apLHgO5ZdXAE4B0FIAA4uUBYHD2FXLN1lBMpwHLiFGpMAigZCOOOxAtyQkY1IpnggkQRigMOqO9BUZICxPYNpQMw0tXHFAmkiuPag5BmvdfAIJAGRYB0F7RjGcamUjSmA%2BKCxD1HsRMFVyzes0cDvCW5XXWaio0LbadmaBzpplREsyFRxzVyzwjhiEys1Dao0HaSwzKAfci02feggYuHidQ944IJoLx6I8e8oCAThVA8YgScmr4BADEEls8igSu7sQSvfinviPeg844oHEGrcloBwHzHgg3xlCdq0zihYmueaFmU5RkMajKWSsrnt1ylHVHeFeTE6JLnNUl1S3lZd3CMpOwpmTggvCMYxmCTJxXJADAHAu2S1ycr1SlzTkTqgnCLdqza6a6yA9d6KlK%2FbtkA80nDxHiUGb1Mo3b0wJmMolhGXSdxyQZJCUCRIEHtQU9N1yG2EvBBrQUjbMgDLkj248AgrKEJQhEEgxfSf0QQNuUNxwkMEADOH2hB4nqT%2F8Aovn98u9AkLc7j6RQdUjSI3lB6foJ2bc7sNc7spWzqkKR4DxQaTAlzDmGz5lcs3SXxRbh2LXNwv5pfO%2FK8Q1qP1S8Fm3Lt19c0mINdjnIKNqxtsXmW%2FaMeKC9zQZSILH3FWXDG2k28UjFqK8nP6IeIrwPcpa3OuT%2BlGHao6FlOMAJSkIjInPcM0EZ%2Bptz9OQBOIM9LhnwxQYZWyBqifuQ8wf3jJBMmqD0fL2xj%2FhCBhGUiwD7dgQXtRjAkyOokEFsMEEjZzhzAYRz%2FVBNv%2FCDH6%2F8Nn%2FcL%2BxB5Yclg5ODD4INAhG1W9MxIr9qHVxOSD27hhd0yiTEmMTzbqIlmWeUJRLENShWps47dEvnZ7nsgfcHY%2Fcrd8pp%2BeaXObkwwCw9B4wlKvTHzHwQaYiEbRjU8zuiWZKY5jmAzWuTlemUoHvTkTpkPLEbNIWXWTEwV8kUkfU2hdhAEzJLOMB8UGCbXpGUJnWT%2BOfgUEJAxcEEEYgoNPpum5vj4oL%2B9BUW85nSNmaCl2EJmJBYiIDnBkGcwMSxDeKAx6htrXgg%2BdeiCkLcpjU4hAY3JYcNvBB63o52ftXrYNyVYvMsPYMkFJWyHlHmjtHiFZs57dUqTf8Aha51xv5db42%2FLQem39A7ysW5enXXjMOAJIADnYEVe1bEJxMpOXwGA4oHMYknSWJOBVlw57dc2IxBbAhXkx9EMByy2sO9S3LprpI51G053YW6zLOKRzPBBD1F%2B3dt2ovO2JA1xAalQgxyhKLE1icJAuECRPPE9o70HonqlvPegMYyk7CgxkcEGiEICFyJJlqZzgghK0YvIcwGzEcECMg871%2FXYA%2F06e0oMMRKZ0xBlI4AVKDXY%2B3Yu2jcuGUxID7ds0Fc5eAQe00ZXxKJb%2BoCQd%2BSJhN6aZASiMIn4oprVqMtemTPEjSRggpGMY4c0tp8AgNXJJxQN8g3lB0c0D0ONO5BK9dhbkY9cxlg29BhuXZzI1GmURgEDW%2Bo%2FTLuQK%2BCCgm9JjV%2B75gg1WoR%2B24m8TLZVBUMOmnbmgPyoGzKDsmNRsQIbYImAWBicckGDVGPSNR8xw4BApJMnkTInMoNdj8Z%2BrwCCwJGCANE48p25IKGIBqXoKBAezAbEBHUgVAz7aoOLCJJOaCMrhwjQbc0E0DS%2BXcEABI3bMkDwETIMdJfBBUADtPuQc6DsuKDnQcwPYUGe%2FGMZvIvQNEfFBAzJDYR8oQNa%2FJDeg1hB2ONdiAiIMSXpTFAcMPag5ATluQCo3IGABOyqCU5iJIHMc9iCEpEl5F0BjQS3DvQI%2BYoUDahLqFfMEF4wAjDmcNlvQP2CgQDMb0HIAahiHQSu2wbUyZiIoXIQecZiNLYr%2FqSx4DJBCRckmpNSUHo2vw2tx%2FxFBVyMDjigAhGUg3KXHaEFDACRcuXLDLigNadhwQEfNuQBACR81TtGKBbpt24QlIuC7ACpQYLl%2Bcww5IbBid5QZxiGQdeP9W79SDo3SBpIE4eSXhsQavTW7dyUzCZidBeEu90GuMYxw5pbT4BAzlySXdB2UTvQc5G7MIF%2B3GUomPIXqMQg8X1UbNn1N4k%2FenrJ%2B2KAPkSgyXLk7jai0I9NsUiNwQafQfmn%2FtS7wg9QdmSAlpDnDnKYx%2FVBYWR9uPPTUS7IGDRbSG2nP2oBgNyB5dRQAE7xsKB4CJJLtQ0O5BgueqApZDnO4cOAQYZSlIkykZS2lBQUsf%2FAGeCCcZyiXiTE7Qgq9u5SY%2B3I%2FPHp4hB6Rsxi2qWoaYgAbgEDdmAyAogI6uB7kAQcRGXXl8wxQYvXWIfYtSndEYxmcBUuMB2oPJ%2B9pBjYH2gaGeMzxy4IM5QfRDCH0R7ggZyAxYxOMTggazbjK48ZaWflO7JA8bcYMDzyHs9iB3LuTkyAjplvQCuRbtQGhxp2hBP1Fy3Z0g80jEaYjxQebdv3LgaREY5QGCBbP5rezUgQlA4ukjTMfcjk%2BI3FBt9PahKF2ULlCYuCKhn%2BKDSBGPSK5yOP6IOyNe1ATkewIOdnFCDkcEAjajKY0nTQvE19hQfOn7NgmIa%2FOJbUaQHDEoJXJzmdU5GRwD5bkG%2F%2B39F%2FfDxQbw4qCx2oCRGXUGkcZjxCC5sgC2TNwI4DEoDgGHKG%2FhygI6o7wg44oCDtqMh8EBaAt3JmTABy4wQefc9UaiyNAPzmp4IMRckklzmUFZloWd0u9AkZyiXiWfEHAjtCC1sW7s4D8U9Q7Yn4IPRNuMZy1HUXNMBxQM5p2ZIOykg6uRYjNAshGYJIaWUh4hB539wtW4GxO5d%2BQjREcxrkcgg82V6UomFsfatnGMcT9RxKCdv8lr6496D6OH5h9figQ6Y9ZY%2BQY%2FogpYuy1yEWjHSeVBYkHGh2jDiEAIOOWRQH5BvKDhQPLlG0oFN3KA%2FmPwQLeInMiYcBmIoRxQZpWSKwOsZ7RwQC11HPll3IFjEyLRDnYg0xtCJ5%2BY%2BUYcSg1QkdDMAAWZqIDQ4UOxAcBggJxKAEgY47AgGsh2pQ0QZpW4zy0y2jDiEGeUJQIfDKQwQarH4z9XgEFmzNBtKAagMP%2FYoLGTs9aBAG2exAY4oB2IOcDtOxBxkdJ2E4IJGAOFDsQIQQWIZAZZfSEHCJNTQIKw5SGGOaB3Bx9qANxCDsuKDu3AbUHOMvaUCXGkQJB6fxVBnlaOMeYbM0C2%2FyQ3oNQ2AVQEkDGp2BA0ZFpbNiA0PYUAYjEIOOW5B2FTRBwlUNRvegnJpPqHEIJyiQDmNqBY9M9wQCMTKgDoKiEY48x9yC4kWDsUAZ8PYgGY3oB70HEgdp2BAspnTLBqUZBinZhLp%2Fpy2fL%2BiDJOEoFpBicNhQbrX4rW4%2FwCIoK5OeUdvwQKLjGOilcTUlBokXJ1bcsUAbZUIOHzbggG3szQTM4jDmO3L9UAnMyhGMgJAvQhBknYBrbNcoE9xQZSCJsQxBwKAXq3rn1YILW%2FTlnu8gygKy%2FRBusS0ExhEQBiT28SgqTE40O0YIAxxyOBQccI8UANA8jpBz27ggQ3WI0Bq9Rx%2FRBl9RG3euT%2B7B6kCcaSHx4oPMu%2BkuQBlE%2FdtipkMRvCB%2FQH%2BtLYbcvBB6oBLgB0AM4RoGnL3D4oNNq5OVsAkEajlkgNCaUOz4FAC4xDFA0%2BosgQmMeosfKKn9EHQuy1ExAiBE03BBklbt3HJGiR%2BeOHEIMty3O2Kh4nCYwKDv8j%2FAOzwQC3ancrEARGMzQINkIQt1A1yHznLcEG4zMmMmNB3IFZ3017M0HDHge5ABXAOc0CmcRhzyz2BBO7cMrQjIRlEyYxIcGmxB5lz0cZVsnTL%2FTkaHcfig8%2BcJWyYziYyGIKD33pbP7IdwQOWiHmdOyIxPBA1m6fuxEAIxNCMSaZlBcyB6hXaEAbA4jagI6TvQLkSaAYklAhugUgHPmI7ggW9LXpjcAmNI3jtBQY52G5rZ1jExPUPiglZ%2FPbcYSqCgnpMpaYhycAEGuHp9LG6eb%2FTj4lBuszaM4xAjEM0QKVdAxMSfKfcgBBGI3ICTUfSEALRbWdOyOJ9iBY3TrjpGkHEYoPPu2rd55TGmZ%2FzYhq9owKDzr3prlkai0rb0uRqOOxBr9B03x2w8UHoRBIcBojGRwQAzgHERrI%2BY4cAg1i5KULZk0qVQBgenHynFB0eqNM0HVegd0CylGBLl5D5RX2lABdlouEMAw5W2lBklatzqP6Us%2FL7MkGS5CcCBKLbDkdxQNc%2FHY%2BmXegNuxOfMWjDzHPcM0Gy2I2jEwi5frlj%2BiDZKTmWoPXEYoFalKgYn9EHZS3BB3aMBiTggmZxFI8x8xw9iCV%2BX3Y243IicdNQRm%2BRyQeZc9E7ysSfbal1cDmgxwBjdtghpRnFwcqhB9FH88e2figyBBosdZ%2BkoNKDgSMM8kFJgi3ExgNT4fogyAmRJlJ0DIGn%2BSXDuQLh2FBa1ASkZTgCSCNWGKBSNI0iOgeUZ%2FFByB4dJ7JICgpFy2YQC4ZA0DDagmEB27igmg4Euwq%2BSC4gIW%2BWABfB0ESSTUoOQaNm4dyAIKRqXI4oJSMsGYbEHZBBxw4oCgDPRtXYgaUQCGGWOKBf4dAR1RQcgOBogc9L6Q7oJYmvsQcgEseCBEFIREpRkYu2BQCT4Mw7ECoHhhLggZBwfDHsQNKjMMscUE95dARiECHPeg4EioQPGAMZExDnggQvgzdiAIKDAIOQNGprUIJyJwZg9GQIgB6ZcO9BLuQcAZPHTqBxicEFjHRCAhAUG9kGUkkuS5zQEYjeg1lnO8oBhUUQUFYzeIJaj0dBlkZEtKjfLkgRA0sIcUE5YoGjH7koiUPuRBxOXFA12AhcnKEBF8Zip%2FRBFBS31nYYlBZBwJFBnkge48YQMYB6vm24IMZJkXkXKDsxvCCdwf1J%2FUacUE3YuHHag1ensxe5dNoCUoECbs%2FDxQSuSuPpI0AfIKBBMINdn8f8x8EFMkDRJJAI1RzB%2BKDr5nGZ0jSDjMV%2F8IMqB4Yn6ZdyCYwQEEjDPEYvwQW%2BxD7A%2FojVqfS57n9yCJJdjlgMG4IAcEGrIbh3BAMGI9qCtvmcyiDQsTRBluSmeUjQMojD9UE0HT%2FHHtme5BFARD7w0Sh92IyOXa%2BSDXf1WyBbhpiIgaxUinuQY6uXq6Ctj8sOPcg1IC5BogqX%2B0SIAyd2%2FRBilKUjzGoy2IFQPPqj9AQKgrZgLlyM5wE9OE8P%2FKBJQ%2B2SIR0AnEZ8UCoKWv8AM%2Fl8UFEBBPSA42IGvmUWMIgBg8sSEGPGpLk5oHh1x3oMzIOEjE0Qa7NmNu1dkLMYzkRygs%2BymSDNOUyeajfLgBwQKg3Q%2FHb%2BnxKAoK23lIag4GBKCF0zEiANEHLEZ8UEEDjoubh3oFQcHPK2sHGBDoLTswjC0Y2hqiDQl2zwzQRJJNalB2cd6DScTvKAVBcUKCo6JEwBlk5Z0GOcpSLSo3yoAgW7ha%2BnxQRwCCtu2L07ZnbExAjnJYjig0yM434gR0xlMcwzrtQQ0xlh%2FTkf%2FX9EDWYTjcLg9B3INOnAypsGaDtTUA0g%2B1APljtBLIO0iQqK%2BYYoElCQqBqG0IGlCUrkmGxyUDRhGPaduSB9pJ%2BU9yCQJAbEbCgLA9JY%2BU%2BBQPAS0sx6kDMBjU7EBdx4IJkkTLUqgJ0nsPuQcxc0yKBRE58oPtQMC3TQHPNAfl4oOoeoP25oFMSzguEF2PuD%2BxB1BhXtQcC5QDfUbEAbFvYUAILYZoGbzUOwIO7BQbEAOIPYEApuO1AQDqGx8UBbbQIOdsA3agBw4oOyrVAMnFUHSBJwyFUAYD9x9yBgeYOgAwbLMIAwOFOwoDEFpU2IHZsfYgBJww7EBOW5ACxZ6Hag5iCNm0IF0kvkHxQEADDHagJwkgm%2BRqEBZ6xL9maBwCwpkgNN5QK5JG9BIOMDTZkgLROFDsyQAiTTpWnegTR5qftzQcSwIFBmg40EGxA8UAk0uoV8wQIYSBHzBwxCDSQSZPQOaoOcDAcSg7HU%2BxApAIaXMEEzbLctf2nFACJEQ5S9UBEA%2FNU%2BUeJQNiwwAPTkgjMmN2ZBaqAckv2E5%2FL%2BiBrcZiZcfKa5ILaWrItsGfsQcZEUA0j3oI3PkrgC3tQLqB6xXzjHigGggAjmi%2BIQLO3KVy5RgJF5mgQECMOka5eY%2BAQNEkm4SXJifBAuosx5o%2BU%2BCBft6nNs%2FwAhx4bUF7MZC2Ax6jluQVYDtOYy9qASkTTZgAgMn1EjigmbcSach93sQLGEhIgx%2BWTNXJAIWyQDLljtOPBBWIERy0LVkcUCXByDbq8ECagQBMamwOY4oAYuHgdQzbHiEGliaGgEYueCDqDAamzKBJEkSc%2FKe5BGMiA3VHynBAdMSeQ18h8CgWUZG3HlJJmQzdiAC2I1mXI%2BQHvKAykSNIaMfKMEDzJFzlLFhXggQiEiX5JH5hgd4QG3bnG9Bw9SxFQaINAjQGXKP4yQHU3SGfPNB2MTvogUgSHMH7c%2FaglK3IB48w94QGUJGUdMT0BAwtwFTzHMZIKBzKLncEGYSMXrQ4g1CAtGWB0y8pw4FA9uMgJvE%2FL4oKsAa9Xl%2BKAGRZsBsCCMyRNwWOkdyAExl1csj8w8QgMYSE4UocJCoQRjbkQ55I4OfAIHDQ6BXAzNT%2BiAj8c9plHxQB3A1jWPeOKBDbJDwOobMwg1WxL7doMenxKB2iMOY%2B5B2oylHeEA2jI4jEIJm3E9PKfKcEC6ZCFwGJcAd6Ai0WefLsGaCtIgiPKDjtKCV1x9tiRQ96BTIS6sfMMeO1B2iTxMeaLioQaCCSXoHNSg5wOkdmooJzcwm5xbvQTEspDVHtxG4oBpdzDm2jP9UAnCRFoCJJMfZVABCEernPlGH6oG1GUoPg4YDAIHgSLwALPOvtQTAJwDtjuQWs3IQ%2B4NZk0SeXCmx0BiYz5oS1bRnxQFkDfIN5QdHNBQUqS3ZmgSd6BuSgZEEMK4IG4Mg4YHcUEkAycsI5k4IKxuwMG1SxZ0BypUbQgIwQTl1HegPYA%2B1A8JCJIcktlggVthfvQBA%2Fy8UCoD01JY7BigpKUSWdqDFBx7UBGKAIOZ%2BwbUDGQjHE1LIFoQ4qNoQd7kAOI3BB2Yo6DoyAkA9TiAgIIlUF%2BzNAEHHAb0AQdhU02bUDyLsxOGaBPBB3zBBwwQd%2FBQMJgRlU70Hbi4QBAxy3IBw3IGjQitTkECa4zJY1fAoCgB6TwQTQdQByWCCmuJjGprmUBOSAZjegl8UHbWGGJQPGURGQEjTMZbkEyMwXG1AhwQE4Q3HvQcgMZCEo6pEF6xFfagYzjKcgJVBwPggJGLoCPmQBBzOxJYbSgW7ehCNuJlIanru2oFBFCKg4SFQUBCCFz8k%2B0oFYnAOgpZvW4mcdZJ0k8uFEDxMZDVCWraMxvQFBO58m496CXv2BA8ZC3KJlIggjljjxQUu885NKoppl4IIlwahiMQgMf8z6T4IFyQFqOSIx8x8EGj70PtQBnOpIc%2BPtQc1AxcZSGCAEIKT6igUBywFUDxlG3qJk7Alo4UqghC7C7WBc5xNJIKIEuuYD6vBBDJBxkLfNM6DkB1ezJBpldtzkAJGNARqwqHQEitfYgU4S%2Bk9yDOMAgOlw55Y4aiguLkZWdInPqbV8QggYkVLEH5hggBy7EDz6%2F5R3IFAJoA5yQWsTjC4xmSSC8Y1HEoDGcblYSc%2BU9SAoGHTLfRAtEDANUnT3oFu%2BoticbcpGPKC5wqgPDcckBieYb0GVB200AGMjQBBS3fti3cGuR0kVApXZ7EFAxBMZCUdoQcyCVzr%2FlHcgQAkgAOTsQVszjC5EGRMpU0xw4lAsueRlGRk%2BUsUCIOj%2BOe%2BPigGSBm0gSkdAy2ncEF53rchbiZSDxoZYbKtuQE5e4oOHVHeg4oOAfAM2JKBjdjat3CZSLAO3so6CcZxmNUDqGe0bwgb3IJ3fkOwHvQS2BnQGNyNqcdciJOAYRqeKC5nCc5CMuaJI0yp7EHEVLoFn0T2U70EEBZgJSOgYg58Ag0TnG5bttOQcYnA72QZzEihzw2FBw64bx3oHh%2BYfX4oISnKdHaL9IwQdDC59EkCAsxBIIzCDRG%2FlcD%2FvGPEINQETbjISBi5YoDE%2BUN25oOQed6j81zegNu%2FOFOqHlKDdanC4%2BksdJeJQZ5XYxpFpy2%2FL%2BqCE5SmXkSUF7f4%2F5j3IHiTE0LILxuA0I0nLYgE9MZEkuX6QgQyJLUA2BA0OrgUBqgZx82O1AzNBzIM6BDJumnbmgTacUDS6uA7kBjIijuNhQVgRI0odhQGg7UANcUCXOgb0EgSC4LFBUTB6qHaEDTYMScqAIImRNMBsQdDqjvQEYBA4ltr2oHYGL6hQoJ6tg4lAED%2FAIOqO0bEBiAZBjwKAUD11HswQISTieCAjplwQAEioogfUDjTtyQUIDAvlkgD7KIOGI3oMZxOx0DxuyHVzD3oLgxlGREsMXyQRMwOmp8x%2BCCRJJclygoOmG495QMJEYHhkgpGQkQMDsQTLRJ%2BY7BggQknHgEBh0z4d6DgSMCyDjplQ0O0YexAZRAEDKQZssTVBIzOEeUe%2FigSNCM6hB0uqf1HvQNG4Y0PMMO32oNFsxmJGMsBUHEIC4GT9qBZVqUGL1f%2BVuKDLC5O2eSTP1DI8EG61fhMgS%2FpyemxAvqJ27dyeo65P0DxOSDDcuzuBjyxyhHD9UDWOqY%2FwDjkgqCzEFiM0GiN%2FK4P5h4hBS4I6Lc9Y0l2bE7ggzm5RoDQMz8x4%2FBAgxjvHeg0XOue8oBqLAT5gMNo3FBSEBL7hjMadBpLEII64RHLzy8xw9iCRMpF5EkoHl%2BKH1S8ECxmYl4lnxGRQaY3YzYS5JOz%2FL%2BiDRMCMi5f9oQKSTQUGwIFl0XPol3IPFBIqMRgdiDZb9XKkbo1jKef6oNkzblYExcGjVjnuZBgn6jEWhpGczWXDYgzElyTjmSg2SxH0x%2FwhA8LsoBuqI%2BU%2BBQaoGF3VGMtMtJeMvigzaoRcDnO09P6oEMjIvIuUFYn%2BkNuvwQcDIFwWQHklhySHs%2FRA94QhPnk9Byxxw9yDPKcpAgcsfKPEoDapMce5BIYBBojfIYTGoeYUP6oNcNMrZkJgh8UAcDpG6RxQDtNSUHnes%2FN%2FJHuQStX7lukS8M7ZwQelYvW7sosdEz8h8CgzXLtu2SA1yb4DpG85oMly5O5WZwwAoBuCCtnoujtj4oKRkYkSjIxIQaY3omlwaCMJDDiEBvCMZAykC8Q0Y4lBCVyRDBoROIGPEoOtflt7%2FBA38BA%2BofONWWoY%2FqgcQH2rkvuR0gjGjb0EDcEaQ%2F9zjwCCTkkklzmSgef%2BWcOTxKDoXJQpEuM4nBBqtXIXJRD6Zk9J8CgqQIkvzF8EAJJ7BkMkEPUf8AXucO9B5UZSgdUSYyGEgg3W%2FVuwvBj5x4hBovG2IWpm4NJBZqk7ggwyvylSA%2B3HMjqO8oIQpKJ%2FcKcUGuXVP6j3oKwvSDA88cO0cUF%2BS5bmYzAAYyEqEIM%2BuI6Q5Hzy8AgmSS5JJJzQXf%2Bna%2Bk96AAkUxicYmoKB4iM5QMTpk4eMvAoGAhG%2BAZapawwjvzKDKYEBw04j5h47EBt0%2B52wkyBQCSwD9gQQueos26P8AduD5QeUbz8EA%2FwD%2Bhej6e0dMGM5gxZnAb4oN%2Fp%2FV2b9AdE%2FJLwOaDXtGxB51%2Bt65XAoGjZkWlLkjkTidwQa7OmEmhHEFyakoBOzGdY8kvd%2BiDJO3K2QJBthyQVt%2Fj%2FmQOMCTQDGRwQRnfjH8Y1EfNIU4BBskRM8wZ8wgXQRUVG1A0OrgUB7GfsQOIij%2BwIDOTRFAzmiCbA9Jr5SgVuBCBpY8B3IA4jWRZ8sygEL3ONMQAxxxwQdC%2B%2FWGf5h8EGgMzioOaBJ9PFBIAnAIHEQO0%2B5BWTSA1DKhCCUrZFRzBAsOqO9Aw2IFlOMcanyjxQNbuGUZAgM4YIG07KHYUC9h9iCnwCDgHyYbUDRYGg4oJODjQ7QgBGePagI6ZcEAFfEoJyuRHTzHbkgMr8hocAgxDhBWM4z6TXy5oHGI3oMpDnjRA%2BjOVOzNBaDASAiGZBOVsHpLHYUECDEsQxQUHTDce8oOLAPI6RtPggkLw1wEI01Bycf0QXOmRJIY7R8ECSiQK4bQgMemfBBwBNAHQOIgY83ZkgW5LpBAZsPggjod9BfbE4oEAqN6AypKW3Ue9BOc4WvyGv8Apjq%2FRBK36yYF%2FRGMRGDxzzArtxQUs%2BuhNo3R9uXm%2BU%2FBBtOAOIOBQY%2FV%2FwCUNoPegzwtTmKDlzmaBBohGFsgga5A9UsOAQab9q3dlLUNMvOPEZoPNu%2Bnnac9cPOPHYgX0%2FVP6D4ILxBkWiH3IIXPUWbbgH7tzYDyjec%2BCDRYvyv%2Bnh9yES0pAABqPlsQObT1tl9sTj%2BqCQx7XDjig0zYSlvKAxg4eXKNmZ4IKuLcLhhEBo4mvtQY%2BSf%2FAMctvy%2FogWUTE8wZ8CMDuKBi32odkj4IE%2BUykRGIxmTQIMlz1sIfgjrkP8yYpTZH4oNFz%2B4zj6icbkBK2CANNJCg9qDdau270dVqWpsRmN4QPI8lw%2Fsl3IPHjEyIYPI4AINMfTgF7pr%2FAKY8Sg3w0ysmBhHQJdLIMd30j1tF%2FwBhx4HNBiIMZNIaSMQUGyRw2mMf8IQLOULYErstANQMZHcEE%2FT%2BsJ9RGNu2IwMZPqqcCcUGsxhOv45ZN0nhkgnKEoMJBthyKCsPx%2Fz%2BCAxiZmg4nD2oKxhGNaTl7kEr8wbpE4uzMRSQQSMCQ8eeIqWxG8IOtUmDv7kCAEsAHOwIJ3L1m1SZ1zGFuJw3nJAkfX3o%2BmnKMYBrsQA2RBKDVY9bZutGR%2B1c8pNDuPxQbMCzMg8%2F1lbzfsj3IEhYnMAnkh5j4DNBs9PGFu5DRFy7GcseGxA12xbuEn8c%2FMMOIQedcs3LXUHBwkMPagez0XB2xf3oKgEuco1MsAN5QZbnqrUHFsC7PzHp4DNBvjc%2B9bsyuQDyhEkxoRuQKbbOYHXH3jeEHWvyW9joG2NXYgqLdBrp%2B0YoHnLRalpjFtQBcPjtQZGjKsTollGWHA%2FFAhiYliGKB54W%2Fop7SgSRjCOq5IQj5jnuGJQQt%2BsAv2Y2YcpmAZTqS52ZIGh%2Fcj9yYvxDai04UIrmM0HpRnCcdduQnHzDxQJ6j8Fzh3oPNhCUi0AZHYEGmNiEC8%2BeXkHSN5zQbjGFy1bjOEWAIDUbcgwXPSSFbR1xFdOfsQZY0nHIiQog1y65bTI96BLly1Zpdk0v9IVlx2IO9L6uVyV6H24i3pBAZzjmc0Gg24SrHkl5ThwQSIMS0gxyCCwb7dr6T3oGjEyqzAYyOCC1uMYmJiNRfEjuQRjMS9RHVHm1hpRpnmgziRidUTpKDVZiJxuyNlzoLaaauwIPEvX703tkfZgKG0HHtOJQZQBVBeQ%2F%2FLY7Lk%2B4IJ22r2IPT9L6m%2Fqjb0m%2FF%2BnMbig9O7CMLkpxhWVdRrXsQTqcS52oHt9Y49yCyAUZiNQOIOCBLsRataoWjI6ul6DxQeZOc51lJwMBkNwQKcCg9XMcEDDaMUDwAJJMcsQgYBqAMg5AtzpjvKCSBgSeUjUMtqDr8jA0izgc5qgyOSXJcnNA9vrHHuQIgaM5Q6S21Bui87bygQXff2oB2At2IOQNkNwQcg4REpAkVGYQZJzkCYgaB7%2Fagig0WcDvCC6Duwh0FJABi2WJQLxQcMQgkgILYcUDt%2FTkRBzsQYpTlLGgHy5IEQUn8n0hBNBqsXJykIkawMZbEFTEQJYM%2BeaBEDwzQMgBAIYjUNiCV57cYaIOK8xqyDFKRkXkXKAR64fUEG5AahyEDxjEiR0kP70HNRmbsQKglcxj9PiUEfdXFBW2TcnESjrY9WfFBk9VduW7k4wh9pz%2BTEncckHnHGpcmpKCtscnqP8Aa8QgyoLWfUXbRa2SYn%2FLNQeCD25QFy1auTsGMw7wJwfaglIktsyCBUGk4nOtUAwcgoFFm3%2FUuRtEy0FoxLPwQeFev3ZvbI%2BzEUNoU9uZQZBV0Hsej%2F68Pql3oNKCkf6khGcNdRzChA7Sg0TiITkYxYn5jX2IFPt7UCy%2FHd%2BnxQYUDRkRTGJxgcEFfUPa9NCcPTmUhIkglwO0jFqIPCu3bl06pz1NhHIbggl8rhBo9UP%2FANF09o7gghGUoSEokxkMJAsQg970F%2B76kTjdtaomJH3hR%2BwoH0i28Ix%2B3t2neUAQXt9Mvq8EDFAs4Qucs4athwI3FBi9dcn6eYjataImIEb5rk1Mgg8aRlI6pHVKWJOKDR6QN6iG6X%2BEoPXyQEEigqDjE1QaY2o%2FaB%2B2QdT6XQdlsAwjkEAKDLf%2FACy7W7kEgSCCKEZhBr9OPuT1StuwPOKPTNB49%2B%2FeBlaED6eIcGPzEdp%2BCDEwdBcD%2FwDLcya7FvYUGfwxQbPTervwkLcAb0ThZNfYcQg9u%2FbjqhdNo6jEPqqA3ZtQRJJLkugeHXD6ggugGRGIOIOCCU7Ubdi9O3YM5Ej%2BmD4Y5oPCvX7t6k5NEYWxQDggz5EoPds%2Fhs%2F7ce5BQbcxgUF7IE5gyg5D84p7UDiIgTGMdPacfag5BO9W1L6h4oMfvQPGUi0G%2B4MonwzQH1spenhalbsPy1uS5hHhtQeHcnOZ13JmcsHKB7A%2Fr2Prj3oJzpOefMe9Abd2dmWq3IwlmQg%2Bg9LKfqvT3PvWCHZpRoJVyQDpBhEaB5R4oAg0Q6I8e9AdiAG1buyjrg5B6hQ8UHl%2BsvXbV25bhbNgEk68TLcdm5B5edS5NXQbvQdd76R3oPSQMCeltUfL8EGk24xhbIgaDA1AfagDk5oOBqN6DJD%2FALEf9wd6BeSOA1y2nAbhmgaMpS%2B6TIkmBqgjKMLkRG7H7kciTzDcUGG56OUea1L7sc4%2FMOGfBAkoyl6awBEkm5MAcAg2%2Bn%2Ft8%2Bq%2BdALf0x1cdiD1oQhbjptxEI7BnvQSnKUbk2OJq%2FwQcDGX7T7v0QPbBEwDix7kFcnNBkfggTX5KfuzQIX0ipDSPggjO3C4%2BoNLzjxCDNctTgCeqPmGCD0gCTQYMgNB%2B4%2B5A0X1VL0KB8mxQcA%2BHsQLPpjvKBGA6vYEAMiQwoNgQNInUe0DdggkbcZVjyHZkgSMZRmAQxY9yDoWpTwDDzFBphbjCo5j5igaT6eOKAaspV7UB7cQgYPytsCDiQO0%2B5AHLhz8EEsQ0uYbCglK1nAv%2B04oGshhJwRUIL76dmaDuwUGxA7mm5AKHsQEAghBEA7u1AQQMPaUHfLKpxCBTGMuoV82aCErZjUcw2jxQdKMj9sAEkxDBBWFgCsy58o%2BKDRGjAUAOAQTch9j4FB1DhTsQNH5gaU8UDUHVTvQIZHAUCBZEgxrl4oJStwn%2ByW0YIM%2BiULkHFNQYjA1QbACX2Zk4IDQYVO34IGi51OXoEDGuNUCtsqgjcBJiweniUE2iOrmPlHiUHajIxqwBpEUAQCXVcB5o6i8Thigx3PSxNbRY%2F6cvAoIQjKMfUCUSCLdQd4QGz6O7daUv6dvzSxO4IPTtWLdgDQOY43Dj%2BiDrxP9MgkEPVAgmJMJ0PmHiEHEEVxjlIINUuo7BigkbkRSI1S8xwQSJMvuGRJOg1QZpxhciI3Y6xlJ%2BYbigwXfRyi8rR%2B7EYhuYbxnwQbfRg%2F8eFCSZSb2oNmmMTz1PkHiUAMiWyiDSIwQaiSJSzc1QKwOHL2HBAswRC6CK6MEGMQLPLljtOJ3BAdQi4t8u2fzH4ICSRatnUQRKVXrkgz3bNm85mNE%2FwDUhnvGaDzr3p7toEkaoZXI4fogtds3bvqbsbcDIuH2CgqdiDdY%2Ft9uBErxF2fkHSPig9DCMgKAQkABgKIMcbhiGIEo%2BU5cUFQBLoLnyHHhtQVt9EvqHcgaRjHqx8oxQRlOUg3THyjxQSmSJyrQiLxNQaDJBiueltTraIsz8p6DuOSCXprdy36mMZwMS0m%2F9Tmg9URJi5IjHzHwCBtQFIBjnM4oKW30Y4S8EFHB6sfMEAIIqKgYkIMt6MjekAMhuFECckdlyQ%2F9f1QPblKVwPJ2BAGAwQQYShpuAXIbJZbjkgx3fR4mxIzH%2BmeobjmgkIy%2F4twaSCL0QRwKC9n%2B33JtK8ftQOEfmPDLig9a1at2RptR0A4nM7ygnelKN0EFuUdyACcJYjRLaMPYgpAEXLbjGQYjNBbaTSO04IJm4AeQVHzHwQRkSYTLl9UXL70Ge5btXvyx5mpdjSXHag8%2B76W5b5o%2F1LY%2BeIw3jJB6lgE2rAAc%2FbjTggs0I4852ZcdqBoSkbkCTnQZBBYFg2I2FBzP0%2F8AqfBBO6D9qQauqL%2B9Bm0sHmdIyj8yDjOhjAaI9mJ3lAZGUftEFjob3nFBluems3aj%2Bjc2jpO8ZIMluzdteosicaG5FpCoNRgUAh6a9euTEIlhI6pnpFcyg9Wx6Gza5pD70xmcBuHxQarpJtTck4d6DMLlGnzDI5jcUFGBDw5hmMxwQXhW3Bhi9OKASnCOPNLYDT2oJGcpGLmgNIigQQljcjICcTIvCVRigxXfRxlWxJj%2FAKMv%2FwDJ%2BKDvRRlG5eE4mJjEODTMIPT00BnyjLaUHaqNDkDVOZ3lBeJOi2cwD3oDQ40Pm%2FRAQCDHYTQoMtuMjfBEaC5U5YoIbezEIHh%2FmdsCgSqDsBqJ0RGMyWAQb7N2F6xEwuamkQZENVA4BGKAoM138k96BQHwqUGmzySOqWR5RVAJAly%2BoHE5%2BxAqAHpG8oFQHWINKU9A2Yk8EGiXOeWT9iBUDRxO4oHQc4FSQAMygH3IzhyzzZ2QSIIx9qAIGlWR3DuQAO%2B1BS3ICYjqqflQULmruP4yQKgEunigRAwBxdu1BSRdgJZYIE70HZhAgQd%2FDoHjOJiQJ1fFkHVHFByBjluQcyDhOMZCJlU5fFAhcuQdXYgVAR0nggCDiWqTpG1BdxKMSDiM6IFLjHFAY4jegjmd6DgCcEFYlhLm9mSCZBxxG1AEAl8u7xKBUBExCY1SYkjlxPFA8nJJBfsQKgeOfBAyCZlGA1SlpG34IBK5G5CBhNhIYGjoMxBBYhig4dUT2hB0uqX1HvQBi7AOgt6e7bJnb%2B7qIi7AOAN6CrHHF80AOCCF%2Bv2ux6oIfwEFYAwkJSlo7%2FYgree5M6Zu3yGnsQZ%2F4KDsp%2FSUEaoDgNUpCERjMmiDTG9C9YhouklyCSGdAhBiWIQcMQg1S6jvQBAlv1VkyuWhd1SECeUOA3bmgyyjKs9X3AcZfFAlDxQUP4odkpeCCaA%2FcjZIncufaGUcZEbvig9OfMXjJwwLYIJ1GIQd8s8%2BWXcg88YIGjGUn04DGRoEG2Mms6DdOrU2pvcgzmJDPngcigBQJc6zuHcECAEmgJJyQX9Petwu%2FbN3mIlyAagN5wQNKJLyEtYzOfsQJ2oNFvo%2Fm8EDIJXL9v041XJ6NkcZHgg6%2FIXpDRccGIIgaCodBkwLEMRiCgpa6x2g9yCQwCBmNcgMZEsBvJQbPTXrdy1cjG7rMJDmbuQUIIx4HFAqDN6j8o%2BgdyCOYYOdgQa7ANu5Eynpf5MX37EHTBmZSjIzGzAjggmgU9Et4b3oJIOMvtjXKf2wMJHE7hiUGyUxejAwuOJRBYjS6CLEOCGIQUtfkhvQWyQAsASSABiTQDigSPqrV23djbvF4EDU1K7M8kGSUTGpqD84wKAIHnUW%2FoHeUCVPagrauwtXrcZ3NMpyA%2B2Kmu3Yg3SBJkYlwHph7kCIEu%2FhuN2d6DFvQPCEpMQdIHzHwQbZye3biLp1NVwzsgzEEFjQoBmN6CUuqf1HvQcATQAnagv6e%2FbIu2xe1SAGAcCuRzQdKMhV9QPzIFQaY9ENx70HbO1Ah9Tas3IRnc0ylIDQKmu3Yg4%2F1PURInqEZjlNGrkgza3YXI6gPmFJfqgrbtahcMZgx0HGhG90Hn3PU2rfLAfenmflHxQefcu3LpecjLYMhuCD2v7d%2FwBU%2FwC5LuCD0I0cYg5IGFew7EEbsB9yRlJgcAKkoFejRDD%2BM0DQx4HuQGuWKDnieqh8w8Qg6cdNsSlKIiD1Ogxz9QB%2BIfznHgMkGcklyS52oPUGXBBR9te9A0I4saMX2oI3PURjSHOduSDJKcpkGRfYMkGi1%2BM%2FV4BBUEjCo2ZICwOHKdhw9qDrmmB5pZBgMcEGeVwmg5Rsz9qBrP5Ifxkg2bsUHO%2BOO1AZROnLFAgAGFTtQdxdAdm4IB2HDYgMQCaHeEEJTjCh5pYMMPaghKcpYmmwYILWcDvCDRuQChwofcgM5Rg2o5YDFBlnelJwOUe9Atr8kd6DQgLviOKBm5ZFw21BnldApHmPmPwQRJMi5LlBtt%2FjhuQO%2BRqEDRDkNtqEEjEB3OeAQAngNiAjCSAAkYIDQ9h25IFuNERMpABt5QZZXjhAaRtzQSj%2BSP1DvQbggLvj7QgYBoykZDSM3QZbvqwKWw58xw4IME5SnImUjInag2W%2FxWu2J%2FxFA%2Boijao7CgMYiUhoLOaxPggleuW7U5ictUnLQjjxOSDz7t%2Bdzl6YeQYcdqDR%2Fb%2Fyz%2Bg94QeoKFwgBY0Zu1Al22TG2SQAHq%2B1BEaYDlxzkcf0QK9XQNPrnvQDUDSY1DbmOKBhbeNwwmNOk4lm3oPNueqtQcWx96eZ%2BUfFB59y7cunVckZHIZDcEHqei%2FBH6pINgkRTGOw4IDGIlIaC0iemXgUA9T6qz6eUhI67j%2Fjjjx2IPGv%2BsvX3iTot%2F6ccOOZQN6L8s%2F9qXeEHoRJiXBY9iBnhPqGiXmGB3hA92It2ITnchGOo8z7Ww2oPNuesAcWItl92WJ3DJBglIyJlIkku8ig%2BqyiP2juQNqykHagQNGOoS0nGJFaYhBiFuEayOqQ%2BUGnEoCSTmwGAFAgb5P5vBAoJG44jIoC0JNpOiWw4cCgj6mVuzM%2FdmHYNbjWRp7kHmXfVTmDGA%2B1bOMRid5QD0f54ZUl%2FhKD2QSGILHagLxlSQ0nzDxCCvLata7k4xhq6n7EHl3%2FAO4k8vp4mI%2F1JY8Bkg8yUjIylImUjUklyg9sjp7IQ%2FwhA2ssBKOuI24jcUFbNsSmNEnixcGhFEGG5ftWnj%2Ba4KaY9I3n4IPPu37l088uXKAoBuCD0%2F7X%2BO%2F9Ue5B6YJDkZ4hAaE0Gk5DJBK%2Fb5wZSERpAGZLdiCQIiGgNI25%2B1A0OuO9Au7ggLxPWH%2FcMeO1AZQazOeuOgEcxLbUHmXPVwjSyNchjdkKcB8UGCU5TlqnIylmSg9ux%2BGz9Ee5BbU1CNQyBx4FBS1ESuRMDR3INCgzX%2FW2rDxj%2FVuCjR6RvPwQeRe9Tdv%2FAJJcoNIDpHBBp9F0X%2Bww8UGyJlF2O8YhAw0T%2FwDjn%2F8Az%2BiA%2BoEbMbcr04wGnAVJqcAg8y76uR5bINqJxPzHjlwQR9Of69ntnHvQfSnqPYUBJfqD%2FuzQCdsytXNJFWZ6ZugyiMIl6Tll5f1QEknEugaXTDax70ABIpQx8pQNGMZyjokxesT4FBjv3bVicxM656i1qBrxOSDzb3qLl3lfTbytxw47UF%2FQdd36R3oPUBMagoDyy%2FZIew%2FBBW5OFi3CV6YAagFSdwQeRf8A7hcny2QbUMNXzHjlwQYbdbls4nXGvFB7sP8AsR%2F3R3oALZIBkdMcjmdwQaLWga4CAIlEiWqroPPvf26Mub08hE%2F6UjTgfig8q5Cds6bkTCWYIZB7X9uI%2FwCL%2FwDZLuCD0I59maDjcAw5jtyQNcEZEkhj5ggiYGPaNoQGGJ3HuQHxQLKUY9Rr5BigMTG%2FaInAMJUbcgy3PSyi8oHXHZn%2BqDMc0HqDLggfJzQdqDtekSIi7RJqgxcksOQ7PlPwQLpMS0gxQarX4j9XggoAThVA2mI%2Fcfcga7bjcLnlk3UEGSVqcMQ8cpDBA1n8kP4yQbEHYY%2BwIC%2FKQ1HQK3lr2IB%2FDIDs3BAO3AbUAjMaogB%2B0%2BCBJ2YyrHlOzJBmlGUS0gyC1nA7wgugBIHaR7EEb0gZgSjkKjFBIwLODqjtCA2vyQ3oNCBhHbTYEDDSYyBjQnBBnnYzgX%2FacUECCCxoRkg22%2Fxw3IH9w2oCCHDbcSgBYvkgmQR8UBGEkCoAZRjjzHYEDGMb0I6ogEUBGVUGSdicKjnjtHiEEY%2Fkj9Q70G%2FJB2AeVOzNBOdwC1c5ARQMe3agw6Yz6DpPkJx3FBKQIJBDSGSDdb%2FFa3H%2FABFAwgZPszKCkBGMoltRfE4cAglf9LbuylKP9OZOOR3hB5d2zcsuJxYZSGHtQaf7f%2BWf0HvCD1PegWUoihqdg8UBMhKEdURiWbJBEwoTE6g%2FFBJAZ9c96BS0Q8zoBwJxO4IOs3ozuSti2DblAgmVSf0QZb39uB5vTy0nH7UjTgfig8q5GcJaZxMJDGJDIPV9F%2BCO%2BSDWAS7UAxJoEHC5GMhpGuTipw4BB5nqblq76i8Jw%2B3ITI%2B7GuHmGfBBlnZlDmpK2cLkagoNHoaXrn%2B1LwQbgCSAA5OSCotiP5DXyDHickFpW7V%2BxGE7Y0gnS1CO0IPJveguW3laP3YA4fMN4z4IPPNCduxB9UCGj9I7kBwAMjpGROe5AbdwGTCLgguTiaIJG3A1jyHZkfggkQYliGQN8n83ggUAmgDtiglO9CDiP9WX%2FwDI%2BKCl%2FwBNa9UI3JD7dyUIn7kdwNRmg8i%2F6W96d9Q1QyuRqOOxAPR%2F9iG4%2FwCEoPYqwYOckBOmFJmvkGPE5IM%2Fq74%2F49uMrMZRlcNC4wD0O1B5n2hcD2TqP%2BjLqG7aggQ28YgoPcl8n0R%2FwhA0bZkNRIjHzH%2BKoNNjRC4BGLuC8jjhlsQYr%2F8Ab7dzmskWpE1h8p%2BCDybtu5ZOm5ExOT57ig9T%2B1t9u%2F8AVHuKD0w5NKoFM4xw5zsyQPPTMQMosdI5higzygYhxzR2jJB0OuG9AqASMYD%2BodJ8oxKDrU4eohetztRFvlLHHPE8EGG9%2FbpB52JawK%2FbPUN21B5sgYyaQMSMYmhQe5Y%2FDZ%2BiKCoBbUeWPmKBrd2MbkdEdWLyOOGWxB4ZlZvEkgenma6h0E9oxCCc7U7ZGsMD0yFQdxQbPRfjv74eKDZGJkQIhyckFRCEermPlGA3lBS%2FYtepha%2B5HTIRaM40I3IPGveiu2eYf1bfnjjxGSCHp%2F8AsWfrj3oPpiQ53oASAHkdNKDP2IGhMEXBoGls9%2BaCJtg9BYt0HwKCdQWIY7EDS6be496BRUPQRGMjQIJf8iMJxEB9w6g85YcAgb1PorV6U5Q%2FpXCXJyJ7Qg8e9Yu2CRciwflmKxO4oL%2F2%2Fru%2FSO9B6jEkABydiDjKMOrml5RhxKDH669GX%2FHhOyCNBLikhVqIMErLgytS%2B7EVIwlHePggS3%2BW19ce9B7sf%2ByP9wd6DsakvvQVtdUvpKCiBZ24XY6LkROOQOW4oOt2IemsAQjKUTImvagTUZ4mmQGCAoNJxKDsMEHQhEknSQwOCDFO7IPGINva%2BPFBBBt9P%2BM%2FV4ILIFnZt3QNQ5vMKFAZtbLCOGZ8EEnJNS%2FagJfTP6JIMKCsZkBjzRziUG61CP2hIRkHLsUBfLAbEAQVPgEHfwUAjahrEgGIyGCAGRFANO3ag4DPagbI7wgCA44h9hzQC4dJi0ThicEECScS6Aw647wgsg7EMQ42FABbjCMiBKpwQKS9MBsQKUEb3XwCCYJBcFigvZadwExqKuMOKDQwBLBmzOKAb0DDAoAgEoxn1B%2B3NA7CEYxAJYYlAhc4nBARiN6A58UHOg5hpkQDuCDNKZNByjYgmg1W%2BiPHvKB8EEzZhOcZMxBd4570CylpJADdpxQJ70Ebn4bj7YoMRQOJkjTMaxkDiNxQeiLcYW7R0ywwlveqAFzicMAg4YjegqXc7ygGIINQcQagoEtemt25TuQEgdLaRhwQLKZNOkZjPigmKIKisI8UHIDpEyBKLnzDFBl9TcNq7OMbZBJcXJeAQecZSkdUiTI4koNPpD%2FVNPkkg9HegW5bhdjpuxExk%2BI3FBP7Fv01mAhGcgSTzYV2oISnKdSaZRyHBAofUMg4rxQeV6n%2FALF%2F%2FcPegS3cnAkwkxz2HeEHq%2F2%2B3bvSu3BalAiBDx6K7HzQa30giIMMifm4oFQaIdA3nwQH3HIoIXvS2fUka4nV540lx2oNF0%2FaOmMcAGkcEGYvIuS57UFLXXwPcgoAgL0YgSj5SgS5GNuxrFuc2k%2Bkfxgg8u5encoaQyhGgQSQe1AnRDZoj3BA3FnxQRh6Owbv3YwMZAE6Y4FxsQSlcIeMRo2v1cSgjwcoM%2FrfwWnx%2B5LuQeaCzFBpjP7pjC7A3SaCcaXPbnxQe9ctwtyi0JHlAGrCgQSLkuS6Clrrjx7kFEAlGM4mE4icD8pFEC2fTW%2FT27krcZkTkCYns2IElMyo7R2DBAmCDTiI%2FSEHCmGKBoQjK5E6WIzjgd6Dzr16UJShCJtEEjVLq%2FRBjJJLmpOKDd6L%2FN%2Fl8UG1BK9YteoDXY6jlMUkOKAXIR9PG3CMZSEYgCUsKeKDPKUpl5HU6A231x2V7kHgjsQWt3ZQBAYwPVbkHieCD2PRWrcrF64LdyOqQeLuC3lJyqgq9GHLHYPFAEGkdMPp8Sg6oqCx2oJf8OxcvQuaTGYkC8KAttCClyZjKQjHSXPMceCDPV3xKC1vC5uHegdkHFiGkBIZdm5BP1GmzC3IW5TcEAnAPtQeZO5O4eYuMhkNwQLHqj9Q70HtyqTvKBSAQYmsTjE1BQRt%2Bks2vu3YRmHAGiJpi9EEZXDJ4gaRmB8UE60YIMfr8fT7ft%2BJQYokgggkEYEUZBu9OY%2Bov2o3bRlPUCbluhpXmGCD2tMYXwBAuZ9Ut%2BSCWkS6CxPyHwKBrTicnDERNEFQM8BtKAuA4iN5KBLhkIwIkcSgQGMseU%2BYYcQg4gjdlIYINRxLBAKDGqBgSTjkUEpRjOkw%2Fbn7UGadiUXMeeO0Yjggr6f8cvq8EGhtpbszQF6bAgJq4NRsKCRtjGJ%2FlPggnIUuODSEkGaFqc%2BnDORwQbLdmEKtqltOHAILSJ0iuZQK4ONO1ACCK5bUFTjTYO5AKb%2BxAc8cigk%2B2qBm2V7M0DDA7wg5ttOxAX2UQcTxpggkYA9NDsKBYgicQQxcILM%2B7agNB2nag6rY5oFIB7DtQIQQPEIIXQTcYBywogeFjOZ%2FlCDRHlYCgGxAoJzqgO72ZoOjgeCAttoEHPsog4u4L5IFp9PcgIcEAhtiBsXbiUHUHadqDnLEugSUYzxDHzBBCVuUa4x2hBa30RauPeUD7%2FYg56jJAprjUdqCZh5S%2FZmgzXPxXN8e9BG36edxj0wzkfBBthZharEPLzHFA05SBixOHigXlP7TtyQBiJB8yKoKmpO8uUHUpmfcgEidE65IIO%2FVX92aDjE4xOoZnMb0FI9EaZlAWasj%2FKg4SOAoOxALgEjISGsHEGqDFc9JnZL%2FALJY8Cgn6YGN8iQYxhJwcUHogZnlG0oC4D6eJKAuWjU5oIStQlUch2DA%2FBBnlCUZREgzkF8Xqg8q7auXfU3424GZ1yoN%2BZQehY%2Ft1uIEr5Fyf%2BmOkbzmg9HCExHliIsIigCCIk4aY1duftQAxLPE6gMdo3hBW3%2BMdsj4IKM3VT9uaAPSlB2Y%2B1BO5KQuTq4fpNQgRoyPKdJ8pNPaga2CLjEMWPcUFQCRsG1AXEemp8xQFzpJc9Xggy3LFu456J%2BYYcQgw3LNy0OYUymKhB6sATG2AH5I%2FwCEIDygV5jkBggYEvjkcKZIJyEZDnrslmOKDPOzKLmJ1xGO0cEGD1n4LX%2B5LuQJY9Bcu810%2FZt5P1HcEHr2rNqwGtR0k9Uz1Hig65OQuEO4YODhhsQK0ZYcp8pw4FAbYMbsRIMa4jsQWAJD4DaUBeINKnzH4IFmZfbcSI5vBBF4y6gx848QgBiQHDGPmCDQHaFHJiGQFgMS58oQGJJlFqVwCCc4xmGuDUO3EbigxXPSSi8rR%2B5Hy%2FMPigb0f%2Bft5Q3tQbmzJ0j3lAHDcvL3oDLY7ggUNckGeVmJcwOk%2BU4cCglGMo3IxkDEh6cEHi2fT3b9LcSdssIjeUHsWPQWbTSn%2FWnj%2B0cM0GyZl9uRcjmizU2oI6hIDWK%2BcY8UAMSA45oj5h47EGiPTbADnT4lAzAPqLt8o8UBB5osWqGZBm1EEiXNFzQ%2BCAaRLoLnyHHhtQUtP%2FUfYO8IK6XqTpCDtQHTxKAknTGpzpligx3PTQm5h%2FTns%2BU%2FBBjlbnbnCM46eYMcjXIoPXLkybaXKDniCPmO3JAQS0qnJBKcIz6qS84x47UGaduUA45o%2BYeOxB5%2FrYky9MACSbbMBU1OSClj%2B3SlzeolojlbHUfgg9a1bha0wtRFsOHbxKBYSl94AnUNeBrnkglXIOg12RKIl9yQwoDUhAstWJqMigBqgS70Q3lBOKC1sScF2icXz4INEyDIxBB%2FagRA0ceBQKgIfEZZoHBiY8sg71LIENDVAWogbMoO96AxIdiRhQIBg1KZIOQdLpG8oJoHiJYigzdBWWNK0wQTQMMeB7kEUDsSzIKO0akO%2BKBS6AICctyAIHiWIfgEAL7XCAIOy4oO%2FhkHYVdkDSDsQ2CBfcg4YoFCDq4AIKCgLkPlmgUu9fagCAyy3IF2oGgCDsGwoCamhcIFQEYSQBAcK4DagZwRHSRwogXDFB2YQBB3B0BeMhIEgncgH8OgU4oJTxju8UAQUtiTgnli%2BBz4IHk5JYuAcAgTFADSE9yDOgMRIl44jNBpMhGERrAlXJnQTIahQcgMuqW9Au7FA8JRBlGUhr04M5HFAstWJqMiEANUBIpDigGSAiQgxmRAE4Gr8EDziNUjFiDUgU9u1Agr2OgB6Ln0oMwQNETJ5QXGezig2VFuI1jW5ctmglUFiKoObNBK7%2BSe9BPHDNBrsCUXM5AAAtE1IQB9XMDqAwI%2BCAIG%2BT%2BbwQKg59IJkQI9ufDNBWZ1NoIIIHKKIJIDEMTuPcgAwQcHemWexBR4Tg4lEyjLqbP%2BM0CF3YiuKAH2oJXfyy3DuCBPeg1WBKMucsKtE1%2F8IOLmrvHIj4IFxFEAn%2BP%2BbwQZ0DwjN3B0jORw%2FVBrnIOIxkHYDTg6CeFNiAxfVHegGCAMThigpGcSJtKJm4cs%2FtKBC4PNnmgBDoDLEfSEAPtQPCUYyjGUgHwgan9EAIYHSBpFaBgH7EAQLP8AFL6o%2BKDOMEDwFwl4crfNkg2TwiIkE6ajB0EcCxFUBiOeO8IMxxKDmJYAEvgAg12zphIzmHYMcW3lApc8xOp%2FmxQBAxwgew96AIOBETHWQA9Aa%2B5A03JLF4g1b4IEx3oCOmWdB3oOQAFubpA%2BYoKHRONuUDF2IBAY8EE6uxBBCBo9Ud4qghD8w%2Bsd6CwAAaIbtzKAx%2BbcUAdi4LIC4Nek%2B5ALluemNAzlygEIRjhzHacPYgpxQRuD%2BpL3IGjcOEubtzQWgxLgvQ8EE5TjGj6pDIeKCMpmeJYZAYILW%2Bg%2FV4IKA5YjYgLAhh7Cg6ZESXLdmaCJuE0FB70Bh18CgsgND2IOMSYjegAAHafcgKAnH2IOfbXvQcATggQRbq9iBuwUGxAJVjxQcHGdNiAhj2diAyozlgyCZn5ad6DodUd6B8MEBcHsO1BzFn7cUCGQGFe1AhJNcUFchuCDn21QECtC6BdLY%2BxAd1EByPBAAW%2FVAccKHYg4xNHoGxQCgw9qAjEbwgntKAiT9XtQOA4LFwgSUwMOY%2B5BIkyqS%2BxBWPTH%2BM0DPkaoOZyGyLoEkRF3x2IJmZlTAbEBtfPwQVqgBAJxYoEnblynAAY8UHARGAc%2BYoGGI3oAcTvQc4OPtHig4xlKMtPM4oyCYtgVlU%2BUIH9w2IJXR0cUCiRiNo2FA8Wlga%2BUoDdlG3I65Z0jmUGSV6UgRHkiaFsTvKA2PyH6Cg1AsXBZAXBr0n3IOnEwjEyIiK1KDNL1DOID%2Bc%2BAQZySSHJLkOeKD0ZdR3oOcENKp8yDtEpRmI1eNCgkLQHUX%2FaEFOzADIICemO8oAJM4xGwoC2qkcT8pQJO1IzlqaMTgdqAxAj0U2nNARhL6ZdyDLEmNYkgoLC4CWlynzDD2IL6SIO4Z8XDIMs78RSFT5jhwCDPIykTKReRxdBuyj9Me4IG1OwNe0YoGESS8S4AI92xBnlchD98hiB4lBnnclM1wGERggvY%2FGfr8EFgSKYjYgLAk6f%2FAFKBLlqX3CZERBAY7ggMRGI5Q37jigaPUEAdqiiAuDjQ%2BYYIBK3MwJABcu79iBBbhHHnPuQO5o5QRu9Y%2BkIOFyQpLnHv9qC9tpyjpL7RmEE5zhbcSLyHyDHigzTuymGJ0x8o%2FiqCnp%2F8z%2BXxQaBJs6bCgLA0jQmjHwKAXBobWREMEGaV%2BXTAacnzQTskm7b%2BrFBsqMKIGocaHaPgg6VuUrZAD1Bd9joJRtxGPOdmSChrjlkgMvl3eKAaqMaj38EDCLkaS7GoNCEEftFzrLN8uZQOKBo8oOPbvKAT%2FFPh3oIxMo9Jbs270FYzjIseQ%2B5BWY0xjKREYsalBllfq1sN%2B448AggHMgXcmQclBvOJ3oC4liN0h4oDoJjKTggjFBnlejDp5zgTkPigzyuSmdUi%2Bz9EGq3%2BK3uPegoDlLmCBox5hpqxqM0CRtEXQZHTzOBtqgKBhn9KBc0HIKFvtDDGmKBQgKCM%2BuXBAqC1ltRwwOLoM%2BZb3eDoOQaLfSfq8EDoGGA3oJXuvvZBPNBWHVwKCqDtiB%2FkyxQKg7JATieCAIGhigU5oOGaAHBADwQcUBufLhggmgaHVHegdByDpfjOGKCSDkFchuCDs0DQxQKf4ZByA5HHEIAg7agaWAwwQKcUBGI4IEyKBEFINpnh70ETmg7LggrDpG7xQMgIxG9Bml1Sw4IAgpaxnwQUQLJA0umOHYyCaBhiMcQg6WJ3lAEDwbm3dqBEAQSuYx4oJn%2BNqAx64u2OeHuQJ6lvvSZsnZ%2Fe6CHtQVsfkP0lBqzQcgn6lvtW%2Bl8sX%2Fjegx5FBwxG8IPRlid6BdqCllmlhhXFBNAUDHpjvKBUHDEO2P8AGCCl3rGDoJID5t0u5Bly%2BKDsvggsdP8Axfl6v3YoMeQQcc0HoZR%2BmPcg5A8GeTt0nb4IPMo5bDJnbg6DkGux%2BM%2FV4IKoB82Tdvigrd6htbL%2BGQT2IGj1BAqDkFA32pYY9qCeQQcgjd6x9IQTzQWsN92OGJZ39yDPcb7k2bE4O3vQTCDR6f8AzP5fFBoQA5oI%2BrbXDB2GDvnwQZigpZ%2FJb%2BpBsQA4FBWDfanhiHd0Eh%2FDoCgY%2FL9PigXYga31x9yDp9Um936oEQCf457h3oM%2BWSDtiCt9vtWOnAsz%2FwAe1BlzCAxxjvCDfLE70AQcW%2B1dfThV38EHnx8EHDJBtt%2Fit7j3oHQdD8gwxo6Ch%2FLTzDDf2oP%2F2Q%3D%3D);
  background-repeat: repeat;
}

/* line 4999, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.menu-top-activo {
  font-weight: bold;
}

/* line 5005, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.botones-gral {
  color: #5F5F5F;
}

/* line 5011, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.botones-gral a:hover {
  color: #FFF;
}

/* line 5017, /home/celfi/celfi-webapp/releases/20151001232706/app/assets/stylesheets/celfi/maberik.css.scss */
.blog-post ul .profile_data_item {
  width: 100%;
  float: left;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after,
  .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px; }
  .mfp-arrow-left:before,
  .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after,
  .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px; }
  .mfp-arrow-right:before,
  .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444; }

.mfp-figure {
  line-height: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }


/* clearfix */

.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.html) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}



.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background: #869791;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.html) no-repeat center center
}

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
.program-error {
    text-align: center;
    margin-bottom: 25px;
}

.portfolio-item {
    /*max-height: 377px;*/
}

.portfolio-item-description {
    margin: 25px 0;
}

.justify {
    text-align: justify;
    word-wrap: break-word;
    max-width: 100%;
}

.white-space {
    white-space: pre-line;
}
.portfolio-item-description .white-space {
    white-space: normal;
}

.list-styled, .list-programs {
    margin: 0;
    padding: 0
}

.list-styled p, .list-programs p {
    font-size: 16px;
    color: #555;
    margin: 0px 0px 12px;
}

.list-programs li {
    list-style-position: inside;
    padding-left: 15px;
}

.attached-content h3 {
    color: #16A085;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    padding-left: 20px;
}

.list-attached-content li {
    list-style: none;
    margin: 0 0 14px 0;
}

.list-attached-content li a {
    font-size: 14px;
    color: #555 !important;
}

.list-attached-content li a:hover {
    color: #16A085 !important;
}

.list-attached-content li a:visited {
    color: #16A085 !important;
}

.inscription-textarea {
    width: 945px !important;
}

.inscription-to {
    text-align: center;
    margin-top: 10px;
}

.inscription-percentage input[type='number'] {
    width: 100px;
}
.responsive-calendar .controls {
  text-align: center;
}
.responsive-calendar .controls a {
  cursor: pointer;
}
.responsive-calendar .controls h4 {
  display: inline;
}
.responsive-calendar .day-headers,
.responsive-calendar .days {
  font-size: 0;
}
.responsive-calendar .day {
  display: inline-block;
  position: relative;
  font-size: 14px;
  width: 14.285714285714286%;
  text-align: center;
}
.responsive-calendar .day a {
  color: #000000;
  display: block;
  cursor: pointer;
  padding: 20% 0 20% 0;
}
.responsive-calendar .day a:hover {
  background-color: #eee;
  text-decoration: none;
}
.responsive-calendar .day.header {
  border-bottom: 1px gray solid;
}
.responsive-calendar .day.active a {
  background-color: #1d86c8;
  color: #ffffff;
}
.responsive-calendar .day.active a:hover {
  background-color: #36a0e2;
}
.responsive-calendar .day.active .not-current {
  background-color: #8fcaef;
  color: #ffffff;
}
.responsive-calendar .day.active .not-current:hover {
  background-color: #bcdff5;
}
.responsive-calendar .day.not-current a {
  color: #ddd;
}
.responsive-calendar .day .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 1;
}

.yamm .nav,
.yamm .collapse,
.yamm .dropup,
.yamm .yamm-fw {
  position: static;
}

.yamm .container {
  position: relative;
}

.yamm .dropdown.yamm-fw .dropdown-menu {
  left: 15px;
  right: 15px;
}
/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */




@font-face {
  font-family: 'FontAwesome';
  src: url('/assets/fontawesome-webfont.eot?v=4.2.0');
  src: url('/assets/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('/assets/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('/assets/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('/assets/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
/* Overwrite this file in your application /app/assets/stylesheets/comfortable_mexican_sofa/admin/application.css
*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *



 */

div.footer{
	visibility: hidden;
}
select.form-control {
    width:auto;
    border: 1px solid #cccccc;
    background-color: #ffffff;
}

.navbar-brand {
    background: url('/assets/celfi/logo-celfi.png') no-repeat;
    min-width: 135px;
    margin: 5px 0 5px 0;
    margin-left: 0 !important;
    min-height: 80px;
}

.navbar-nav {
    margin: 15px;
}

.btn-group > a[href$="refresh"] {
    visibility: hidden;
}

.btn-group > a[href$="refresh"] + a {
    visibility: hidden;
}

#s_date_from, #s_date_to {
    width: 205px;
}

/*BANNERS FORM*/
#new_banner_form #upload-btn, #pages_form #upload-btn{
    position:absolute;
    left:24px;
    top:0px;
}
#pages_form #upload-btn{
    left:15px;
}
#new_banner_form #fikes_{
    position:absolute;
}
input.pk-error, textarea.pk-error, select.pk-error {
    border-color:#a94442;
}
input.pk-error:focus, textarea.pk-error:focus, select.pk-error:focus {
    border-color:#843534;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
    box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483
}
label.pk-error {
    color: #a94442 !important;
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    font-weight:400;
}
.container_file{
    min-height:34px;
}
.container_file .pk-error{
    margin-top:10px;
    margin-left:9px;
}

.align-right {
    text-align: right;
}

/* PROGRAM FORM PORTUGUES*/
.container_short_field .row_por, .container_short_field_p .row_por, .container_medium_field .row_por, .container_large_field .row_por, .container_xlarge_field .row_por{
    display:block;
    visibility:hidden;
}
.container_short_field .row_por .form-group{
    position:absolute;
    top:0px;
}
.container_short_field_p .row_por .col-sm-12, .container_medium_field .row_por .col-sm-12, .container_large_field .row_por .col-sm-12, .container_xlarge_field .row_por .col-sm-12{
    position:absolute;
    top:0px;
}
.container_short_field, .container_short_field_p{
    height:44px;
}
.container_short_field .row_por, .container_short_field_p .row_por{
    margin-top:-44px;
    height:44px;
    position:relative;
}
.container_medium_field{
    height:64px;
}
.container_medium_field .row_por{
    margin-top:-64px;
    height:64px;
    position:relative;
}
.container_large_field{
    height:124px;
}
.container_large_field .row_por{
    margin-top:-124px;
    height:124px;
    position:relative;
}
.container_xlarge_field{
    height:320px;
}
.container_xlarge_field .row_por{
    margin-top:-320px;
    height:320px;
    position:relative;
}
.form-inscription{
    position:relative;
}
.popup_data_user_bg{
    position:absolute;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.7);
    top:0px;
    left:0px;
    z-index:9999;
}
.popup_data_user{
    position:relative;
    display:block;
    margin:0px auto;
    padding:20px;
    /*width:400px;*/
    display:none;
}
.label_bold{
    font-weight:bold;
}
.close_button{
    margin-top:30px;
    width:100%;
    text-align:center;
    cursor:pointer;
}
.close_button:hover{
    font-weight:bold;
}
.no_items_selected{
    font-size:18px;
    text-align:center;
}
.override_p_style {
    margin: 0px auto;
    text-align: center;
    position: absolute !important;
    background: #535ba3;
    width: 400px;
    color: #ffffff;
    z-index: 99999;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    border: 1px #000000 solid;
}

/*.override_p_style {
    margin: 50px auto;
    text-align: center;
    background: #535ba3;
    width: 400px;
    color: #ffffff;
    z-index: 99999;
    border: 1px #000000 solid;
}*/

label.pk-error {
    color: red !important;
}

.menu-padding {
    padding-left: 26.8%;
}

.centered {
    text-align: center;
}

.sub-menu-list {
    margin-top: 10px;
}

.sub-menu-list li {
    padding-right: 15px;
}

.submenu-active {
    color: #16A085 !important;
}
.navbar-nav > li > .dropdown-menu.navbar-search-form{
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}
#user-terms-page {
    display: none;
    width:100%;
    max-width: 900px;
}

#user-terms-page h4 {
    margin: 0;
    padding: 30px 50px;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: rgb(22, 160, 133);
    border-color: rgb(22, 160, 133);
    line-height: 1.42857143;
    border-radius: 4px;
    height: 40px;
    padding-top: 10px;
}


.fileUpload .upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.responsive-calendar .day.today {
    border: 2px solid #000000;
}

.mail_background {
    background: url("celfi/bg2.jpg") repeat;
    background-size: 500px 500px;
}

.mail_form {
    background-color: #ffffff;
    background-size: 400px 400px;
}

/*INDEX*/
.box .title_agenda{
    margin-bottom:3px;
}
.portfolio-item-description h3{
    min-height:53px;
}
.page-boxed-right{
    box-shadow:none;
    width:97%;
    padding-right:3%;
    margin:0px;
}
.page-boxed-right h4{
    font-size:1.1em;
    font-weight:700;
}
.page-boxed-right h3{
    font-size:1.17em;
    font-weight:bold;
    margin:18px 0;
}
.page-boxed-right p{
    margin:0 0 20px;
    white-space:normal;
    text-align:left;
    line-height:16px;
    font-size:16px;
    font-weight:400;
    color:black;
}
body.color-green .page-boxed-right .btn-sm, body.color-green .page-boxed-right .btn-sm:hover{
    border-radius:0px;
    background-color:transparent;
    border:1px solid rgba(0, 0, 0, 0.125);
}
.page-boxed-right .btn-sm span{
    line-height:11px;
}
.news_line{
    border-top:1px solid #333333;
}
.collapse.in, .collapsing{
    display:none;
}
.navbar-default .navbar-collapse .navbar-nav-form{
    padding:0px 15px 10px 15px;
}
.footer_total_width{
    width:100%;
    padding:0px;
    margin:0px;
}
.footer_row{
    padding-bottom:10px;
}
.img-responsive{
    height:auto!important;
}
/*LIST CURSOS*/
.container_list_cursos{
    width:100%;
}
.container_list_cursos .cajas-cursos{
    width:100%;
    padding:0px;
}
.container_list_cursos .cajas-cursos .program_image{
    width:30%;
    float:left;
}
.container_list_cursos .cajas-cursos .program_texts{
    width:70%;
    float:right;
}
.program_list_row{
    margin-bottom:15px;
    margin-right:0px;
}
.program_introduction{
    margin-top:5px;
    float:left;
    width:100%;
}
.section_list_programs{
    padding-top:60px!important;
}
body.color-green .menu-inferior a{
    color:white;
}
body.color-green .menu-inferior a:hover {
    color: #16A085;
}
.program_type_name{
    margin-bottom:30px;
}
.program_title{
    float:left;
    width:100%;
}
.blog-post .blog-post-body img{
    margin:0px;
}
.blog-post .blog-post-body img{
    margin:20px 0 0 0px;
    float:left;
}
.row_program_detail{
    margin-right:0px;
}
.container_calendar{
    padding:0px;
}
/*CALENDAR*/
.inscription-percentage{
    width:60%;
}
.portfolio-item{
    height:390px;
}
.container_logos{
    padding:15px 20px;
}
.container_logos .logo_left{
    float:left;
}
.container_logos .logo_right{
    float:right;
}
.container_logos .img-responsive{
    height:100%!important;
}
.container_terms{
    width:100%;
}
.content_terms{
    width:100%;
    padding:0px;
}
.content_terms .row{
    margin:0px;
}
li.sub-menu-secciones{
    padding:0px 10px 0px 10px;
}
body.color-green .btn-primary:hover span{
    color:white;
}

.header-item-language{
    position:relative;
}
.language-options{
    position: absolute;
    top: 25px;
    /*left: 50%;*/
    background-color: white;
    width: 100px;
    /*margin-left: -50px;*/
    right:0px;
    border:solid;
}
.lan_option{
    height:35px;
    line-height:35px;
    border-bottom:2px solid #E5E5E5;
    padding:5px 0;
    color:#555555;
    font-size:14px;
    font-weight:600;
}
.lan_last_option{
    border-bottom:none;
}
body.color-green .lan_option a{
    color:#555555;
    text-align:center;
    width:100%;
    float: left;
    height: 24px;
    line-height: 24px;
    /*margin-right:10%*/
}
body.color-green .lan_option a:hover{
    color:#16A085;
    cursor:pointer;
}
@media (max-width: 1200px) {
    /*.row_title_home{*/
        /*margin-left:0px;*/
    /*}*/
    .blog-content .row{
        margin-left:0px;
    }
    .program_list_content{
        width:80%;
    }
    .container_list_cursos .cajas-cursos .program_image{
        padding-right:0px;
    }
    .portfolio-item{
        height:350px;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .blog-content{
        padding-left:20px;
    }
    .content_terms{
        width:100%;
        padding:0px;
    }
    .program_list_content{
        width:80%;
    }
}
@media (max-width: 991px){
    .navbar-nav > li > .dropdown-menu.navbar-search-form {
        min-width:0px;
    }
    .navbar-default .navbar-toggle{
        margin:4px 15px 5px 15px;
    }
    .navbar-default .navbar-collapse .navbar-nav{
        margin:0px -15px;
    }
    .right-sidebar .blog-content{
        border-right:none;
        padding-right:15px;
    }
    .right-sidebar .blog-sidebar{
        padding-left:15px;
    }
    .page-boxed-right{
        width:100%;
        padding-right:0px;
    }
    .container_logos{
        /*width:100%;*/
        height:110px;
    }
    .portfolio-item{
        height:auto;
        min-height:1px;
        padding:0px;
    }
    .portfolio-wrapper{
        margin-right:0px;
    }
    .program_list_content{
        width:100%;
    }
    .program_list_container{
        padding:0px;
    }
    /*.program_list_container .container{*/
        /**/
    /*}*/
    .program_title{
        float:left;
        width:100%;
    }
    .program_image img{
        padding-top:0px;
    }
    .attached-content h3{
        padding-left:0px;
    }
    /*Calendar*/
    .left_content_calendar, .right_content_calendar{
        float:left;
        width:100%;
    }
    .right_content_calendar h3{
        text-align:center;
    }
    .left_content_calendar{
        margin-bottom:100px;
    }
    .visitando_content{
        margin-bottom:50px;
    }
    .visitando_content .row{
        margin-right:0px;
    }
    .inscription-textarea{
        width:100%!important;
    }
}
@media (min-width: 768px){
    .navbar-collapse.collapse{
        display:none;
    }
    .navbar-default .navbar-collapse .navbar-nav{
        margin:0px;
    }
}
@media (max-width: 767px){
    .bg-color-2#blog{
        padding-top:0px;
    }
    #carousel-example-generic{
        margin:0px -15px;
    }
    .section_list_programs{
        padding-top:30px!important;
    }
    .program_list_container{
        width:100%;
        padding:0px;
    }
    .program_list_container .row{
        margin:0px;
        margin-bottom:20px;
    }
    .program_list_content h3{
        margin-bottom:40px;
    }
    .program_list_content .program_type_name{
        margin-bottom:20px;
    }
    .program_title{
        margin-top:5px;
    }
    .container_list_cursos{
        padding:0px;
    }
    .container_list_cursos .cajas-cursos .program_image{
        width:100%;
    }
    .container_list_cursos .cajas-cursos .program_texts{
        width:100%;
        padding:0px;
    }
    .calendar_image_container{
        margin:0px -15px;
    }
    .calendar_image_container img{
        padding:0px;
        width:100%;
    }
    .container_logos{
        padding:15px 0px;
        height:90px;
    }
    .header_image{
        margin:0px -15px;
    }
    .header_image img{
        width:100%;
    }
    .container_terms{
        padding-left:10px;
        padding-right:10px;
    }
    .container_terms .blog-post-body{
        padding-left:15px;
        padding-right:15px;
    }
    #user-terms-page h4{
        padding:20px 40px;
    }
    .language-options{
        right: 0px;
        left:auto;
        margin-left: 0;
    }
}
@media (max-width: 401px){
    .top-header{
        height:70px;
    }
    .top-header .container{
        padding:0px;
        width:100%;
    }
    .top-header .container .pull-right{
        float:none;
        width:100%;
        padding:0px;
        margin:0px;
    }
    .top-header .container .pull-right .header-item{
        margin:0px 5% 0 5%;
        width:40%;
        float:left;
        text-align:center;
    }
    .menu-padding{
        padding-left:0px;
    }
    .container_logos{
        /*width:100%;*/
        height:80px;
    }
    .pagination-sm > li > a, .pagination-sm > li > span{
        font-size:12px;
    }
    .override_p_style {
        margin: 0px auto;
        text-align: center;
        position: absolute !important;
        background: #535ba3;
        width: 300px;
        color: #ffffff;
        z-index: 99999;
        top: 50%;
        left: 50%;
        margin-left: -150px;
        border: 1px #000000 solid;
    }
    .container_terms{
        padding-left:5px;
        padding-right:5px;
    }
    .container_terms .blog-post-body{
        padding-left:10px;
        padding-right:10px;
    }
    #user-terms-page h4{
        padding:15px 20px;
    }
    .language-options{
        left:50%;
        margin-left: -50px;
    }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *



 */

div.footer{
	visibility: hidden;
}
select.form-control {
    width:auto;
    border: 1px solid #cccccc;
    background-color: #ffffff;
}
