@charset "UTF-8";


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.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;
}



/*--------------------
/* Custom
--------------------*/

/*
==============================================
stretchRight
==============================================
*/

.stretchRight{
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight; 
  animation-duration: 1.5s; 
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;  
  -webkit-animation-timing-function: ease-out;  
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;    
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }       
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }             
}

@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }       
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }   
}

/*
==============================================
pullDown
==============================================
*/

.pullDown{
  animation-name: pullDown;
  -webkit-animation-name: pullDown; 
  animation-duration: 1.1s; 
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;  
  -webkit-animation-timing-function: ease-out;  
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;     
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }       
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }             
}

@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }       
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }   
}


/*
==============================================
slideDown
==============================================
*/


.slideDown{
  animation-name: slideDown;
  -webkit-animation-name: slideDown;  
  animation-duration: 1s; 
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;  
  -webkit-animation-timing-function: ease;  
  visibility: visible !important;           
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50%{
    transform: translateY(8%);
  }
  65%{
    transform: translateY(-4%);
  }
  80%{
    transform: translateY(4%);
  }
  95%{
    transform: translateY(-2%);
  }     
  100% {
    transform: translateY(0%);
  }   
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50%{
    -webkit-transform: translateY(8%);
  }
  65%{
    -webkit-transform: translateY(-4%);
  }
  80%{
    -webkit-transform: translateY(4%);
  }
  95%{
    -webkit-transform: translateY(-2%);
  }     
  100% {
    -webkit-transform: translateY(0%);
  } 
}


/*
==============================================
fadeInBig
==============================================
*/

.fadeInBigBig{
  animation-name: fadeInBig;
  -webkit-animation-name: fadeInBig;  
  animation-duration: 1.5s; 
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out; 
  -webkit-animation-timing-function: ease-in-out;   
  visibility: visible !important; 
}

@keyframes fadeInBig {
  0% {
    transform: scale(0);
    opacity: 0.0;   
  }
  60% {
    transform: scale(1.1);  
  }
  80% {
    transform: scale(0.9);
    opacity: 1; 
  } 
  100% {
    transform: scale(1);
    opacity: 1; 
  }   
}

@-webkit-keyframes fadeInBig {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;   
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1; 
  } 
  100% {
    -webkit-transform: scale(1);
    opacity: 1; 
  }   
}


@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
.navbar {
    padding: 0;
}

.navbar-brand {
    height: auto;
    padding: 20px 0px;
}

.navbar-nav li {
    cursor: pointer;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.8);
}

.dropdown-menu > li > a {
    font-size: 10px;
    text-transform: uppercase;
}

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

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 33px;
    }
}

locale .show,
account .show {
    display: inline-block !important;
}

.dropdown-toggle::after {
    display: none;
}

.media {
    display: block;
}

.breadcrumb {
    margin: 0;
    padding: 20px 0;
}

.breadcrumb>li+li:before {
    padding: 0 10px;
    line-height: inherit;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 1rem;
    color: #6c757d;
    content: "\f101\00a0";
}

.main-column {
    padding: 20px;
    padding-top: 0px;
}

.form-group b {
    text-transform: uppercase;
    color: #220013;
    font-size: 10px;
    margin-bottom: 10px;
    line-height: 24px;
}

.invalid-feedback {
    display: block;
}

.error {
    color: #f33b3b;
    font-size: 10px;
    font-weight: 600;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.product-info h1 {
    margin-bottom: 23px;
}

#cart .content {
    margin-top: 41px;
}

#cart .mini-cart-info td.total {
    text-align: right;
    white-space: nowrap;
}

.image img {
    max-width: 70px;
    max-height: 70px;
}

.buttons .left {
    float: left;
    padding: 13px;
}

.form-control {
    padding: .375rem .75rem;
}

.scroll-div {
    max-height: 96vh;
    overflow: auto;
    scrollbar-width: thin;
}

/**
 * Web Application Prefix Apply For Making Owner Styles
 */
/**
 *   Blocks Layout Selectors
 */
/**
 * Product Item Selectors
 */
/***********************************************************************/
/*
 * LAYOUT VARIABLES
 */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */
/* line 9, ../development/scss/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, ../development/scss/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 43, ../development/scss/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/* line 55, ../development/scss/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 65, ../development/scss/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 76, ../development/scss/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 87, ../development/scss/bootstrap/_normalize.scss */
a {
  background: transparent;
}

/* line 96, ../development/scss/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 107, ../development/scss/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 116, ../development/scss/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 124, ../development/scss/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 133, ../development/scss/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 142, ../development/scss/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 151, ../development/scss/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 160, ../development/scss/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 167, ../development/scss/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 171, ../development/scss/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 182, ../development/scss/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 190, ../development/scss/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 201, ../development/scss/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 209, ../development/scss/bootstrap/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* line 219, ../development/scss/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 230, ../development/scss/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 254, ../development/scss/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 264, ../development/scss/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 276, ../development/scss/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 291, ../development/scss/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 301, ../development/scss/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 310, ../development/scss/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 320, ../development/scss/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 333, ../development/scss/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 345, ../development/scss/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 355, ../development/scss/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 369, ../development/scss/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 377, ../development/scss/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 388, ../development/scss/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 397, ../development/scss/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 406, ../development/scss/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 417, ../development/scss/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 423, ../development/scss/bootstrap/_normalize.scss */
td,
th {
  padding: 5px;
}

@media print {
  /* line 8, ../development/scss/bootstrap/_print.scss */
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* line 16, ../development/scss/bootstrap/_print.scss */
  a,
  a:visited {
    text-decoration: underline;
  }

  /* line 20, ../development/scss/bootstrap/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 24, ../development/scss/bootstrap/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 30, ../development/scss/bootstrap/_print.scss */
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 35, ../development/scss/bootstrap/_print.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 40, ../development/scss/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 45, ../development/scss/bootstrap/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 49, ../development/scss/bootstrap/_print.scss */
  img {
    max-width: 100% !important;
  }

  /* line 55, ../development/scss/bootstrap/_print.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 61, ../development/scss/bootstrap/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 67, ../development/scss/bootstrap/_print.scss */
  select {
    background: #fff !important;
  }

  /* line 72, ../development/scss/bootstrap/_print.scss */
  .navbar {
    display: none;
  }

  /* line 77, ../development/scss/bootstrap/_print.scss */
  .table td,
  .table th {
    background-color: #fff !important;
  }

  /* line 83, ../development/scss/bootstrap/_print.scss */
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  /* line 87, ../development/scss/bootstrap/_print.scss */
  .label {
    border: 1px solid #000;
  }

  /* line 91, ../development/scss/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }

  /* line 96, ../development/scss/bootstrap/_print.scss */
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
/* line 11, ../development/scss/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 15, ../development/scss/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, ../development/scss/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 27, ../development/scss/bootstrap/_scaffolding.scss */
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.42857;
  color: #959595;
  background-color: white;
}

/* line 39, ../development/scss/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, ../development/scss/bootstrap/_scaffolding.scss */
a {
  color: #959595;
  text-decoration: none;
}
/* line 53, ../development/scss/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #7b0046;
  text-decoration: underline;
}
/* line 58, ../development/scss/bootstrap/_scaffolding.scss */
a:focus {
  outline: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, ../development/scss/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, ../development/scss/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, ../development/scss/bootstrap/_scaffolding.scss */
.img-responsive {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 86, ../development/scss/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 0px;
}

/* line 93, ../development/scss/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: white;
  border: 1px solid #dddddd;
  border-radius: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 106, ../development/scss/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, ../development/scss/bootstrap/_scaffolding.scss */
hr {
  margin-top: 17px;
  margin-bottom: 17px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

/* line 125, ../development/scss/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 142, ../development/scss/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 10, ../development/scss/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.1;
  color: #220013;
}
/* line 17, ../development/scss/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #42323b;
}

/* line 26, ../development/scss/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 17px;
  margin-bottom: 8.5px;
}
/* line 31, ../development/scss/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 37, ../development/scss/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 8.5px;
  margin-bottom: 8.5px;
}
/* line 42, ../development/scss/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, ../development/scss/bootstrap/_type.scss */
h1, .h1 {
  font-size: 31px;
}

/* line 48, ../development/scss/bootstrap/_type.scss */
h2, .h2 {
  font-size: 25px;
}

/* line 49, ../development/scss/bootstrap/_type.scss */
h3, .h3 {
  font-size: 21px;
}

/* line 50, ../development/scss/bootstrap/_type.scss */
h4, .h4 {
  font-size: 15px;
}

/* line 51, ../development/scss/bootstrap/_type.scss */
h5, .h5 {
  font-size: 12px;
}

/* line 52, ../development/scss/bootstrap/_type.scss */
h6, .h6 {
  font-size: 11px;
}

/* line 58, ../development/scss/bootstrap/_type.scss */
p {
  margin: 0 0 8.5px;
}

/* line 62, ../development/scss/bootstrap/_type.scss */
.lead {
  margin-bottom: 17px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  /* line 62, ../development/scss/bootstrap/_type.scss */
  .lead {
    font-size: 18px;
  }
}

/* line 79, ../development/scss/bootstrap/_type.scss */
small,
.small {
  font-size: 83%;
}

/* line 84, ../development/scss/bootstrap/_type.scss */
cite {
  font-style: normal;
}

/* line 89, ../development/scss/bootstrap/_type.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 95, ../development/scss/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 96, ../development/scss/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 97, ../development/scss/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 98, ../development/scss/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 99, ../development/scss/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 102, ../development/scss/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 103, ../development/scss/bootstrap/_type.scss */
.text-uppercase {
  text-transform: uppercase;
}

/* line 104, ../development/scss/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 107, ../development/scss/bootstrap/_type.scss */
.text-muted {
  color: #42323b;
}

/* line 626, ../development/scss/mixins/_bootstrap.scss */
.text-primary {
  color: #428bca;
}

/* line 629, ../development/scss/mixins/_bootstrap.scss */
a.text-primary:hover {
  color: #3071a9;
}

/* line 626, ../development/scss/mixins/_bootstrap.scss */
.text-success {
  color: #3c763d;
}

/* line 629, ../development/scss/mixins/_bootstrap.scss */
a.text-success:hover {
  color: #2b542c;
}

/* line 626, ../development/scss/mixins/_bootstrap.scss */
.text-info {
  color: #31708f;
}

/* line 629, ../development/scss/mixins/_bootstrap.scss */
a.text-info:hover {
  color: #245269;
}

/* line 626, ../development/scss/mixins/_bootstrap.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 629, ../development/scss/mixins/_bootstrap.scss */
a.text-warning:hover {
  color: #66512c;
}

/* line 626, ../development/scss/mixins/_bootstrap.scss */
.text-danger {
  color: #a94442;
}

/* line 629, ../development/scss/mixins/_bootstrap.scss */
a.text-danger:hover {
  color: #843534;
}

/* line 124, ../development/scss/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 614, ../development/scss/mixins/_bootstrap.scss */
.bg-primary {
  background-color: #428bca;
}

/* line 617, ../development/scss/mixins/_bootstrap.scss */
a.bg-primary:hover {
  background-color: #3071a9;
}

/* line 614, ../development/scss/mixins/_bootstrap.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 617, ../development/scss/mixins/_bootstrap.scss */
a.bg-success:hover {
  background-color: #c1e2b3;
}

/* line 614, ../development/scss/mixins/_bootstrap.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 617, ../development/scss/mixins/_bootstrap.scss */
a.bg-info:hover {
  background-color: #afd9ee;
}

/* line 614, ../development/scss/mixins/_bootstrap.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 617, ../development/scss/mixins/_bootstrap.scss */
a.bg-warning:hover {
  background-color: #f7ecb5;
}

/* line 614, ../development/scss/mixins/_bootstrap.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 617, ../development/scss/mixins/_bootstrap.scss */
a.bg-danger:hover {
  background-color: #e4b9b9;
}

/* line 143, ../development/scss/bootstrap/_type.scss */
.page-header {
  padding-bottom: 7.5px;
  margin: 34px 0 17px;
  border-bottom: 1px solid #eeeeee;
}

/* line 155, ../development/scss/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 8.5px;
}
/* line 159, ../development/scss/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, ../development/scss/bootstrap/_type.scss */
.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
  line-height: 24px;
}

/* line 174, ../development/scss/bootstrap/_type.scss */
.list-inline {
  margin-left: -5px;
}
/* line 178, ../development/scss/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 186, ../development/scss/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 17px;
}

/* line 191, ../development/scss/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.42857;
}

/* line 194, ../development/scss/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 197, ../development/scss/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 21, ../development/scss/mixins/_bootstrap.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 212, ../development/scss/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 219, ../development/scss/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 231, ../development/scss/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #42323b;
}

/* line 235, ../development/scss/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 241, ../development/scss/bootstrap/_type.scss */
blockquote {
  padding: 8.5px 17px;
  margin: 0 0 17px;
  font-size: 15px;
  border-left: 5px solid #eeeeee;
}
/* line 250, ../development/scss/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 259, ../development/scss/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857;
  color: #42323b;
}
/* line 265, ../development/scss/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 275, ../development/scss/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
/* line 286, ../development/scss/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
/* line 287, ../development/scss/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 295, ../development/scss/bootstrap/_type.scss */
blockquote:before,
blockquote:after {
  content: "";
}

/* line 300, ../development/scss/bootstrap/_type.scss */
address {
  margin-bottom: 17px;
  font-style: normal;
  line-height: 1.42857;
}

/* line 10, ../development/scss/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, ../development/scss/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 0px;
}

/* line 24, ../development/scss/bootstrap/_code.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: white;
  background-color: #333333;
  border-radius: 0px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
/* line 32, ../development/scss/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  box-shadow: none;
}

/* line 40, ../development/scss/bootstrap/_code.scss */
pre {
  display: block;
  padding: 8px;
  margin: 0 0 8.5px;
  font-size: 11px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #220606;
  background-color: whitesmoke;
  border: 1px solid #cccccc;
  border-radius: 0px;
}
/* line 54, ../development/scss/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 65, ../development/scss/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, ../development/scss/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, ../development/scss/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 10, ../development/scss/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 10, ../development/scss/bootstrap/_grid.scss */
  .container {
    width: 1200px;
  }
}

/* line 30, ../development/scss/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, ../development/scss/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.row:after {
  clear: both;
}

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

/* line 838, ../development/scss/mixins/_bootstrap.scss */
.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;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-3 {
  width: 25%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-6 {
  width: 50%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-9 {
  width: 75%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 846, ../development/scss/mixins/_bootstrap.scss */
.col-xs-12 {
  width: 100%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-0 {
  right: 0%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 856, ../development/scss/mixins/_bootstrap.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-0 {
  left: 0%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 851, ../development/scss/mixins/_bootstrap.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 861, ../development/scss/mixins/_bootstrap.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 838, ../development/scss/mixins/_bootstrap.scss */
  .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;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-6 {
    width: 80%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-0 {
    right: 0%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-0 {
    left: 0%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 838, ../development/scss/mixins/_bootstrap.scss */
  .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;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-0 {
    right: 0%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-0 {
    left: 0%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 838, ../development/scss/mixins/_bootstrap.scss */
  .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;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 846, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-0 {
    right: 0%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 856, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-0 {
    left: 0%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 851, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 861, ../development/scss/mixins/_bootstrap.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 6, ../development/scss/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 9, ../development/scss/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 16, ../development/scss/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 17px;
}
/* line 26, ../development/scss/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 10px;
  line-height: 1.42857;
  vertical-align: top;
  border-top: 1px solid #ebebeb;
}
/* line 35, ../development/scss/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ebebeb;
}
/* line 45, ../development/scss/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 51, ../development/scss/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #ebebeb;
}
/* line 56, ../development/scss/bootstrap/_tables.scss */
.table .table {
  background-color: white;
}

/* line 70, ../development/scss/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 10px;
}

/* line 82, ../development/scss/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ebebeb;
}
/* line 89, ../development/scss/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ebebeb;
}
/* line 96, ../development/scss/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 110, ../development/scss/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

/* line 124, ../development/scss/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: whitesmoke;
}

/* line 135, ../development/scss/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

/* line 143, ../development/scss/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/* line 449, ../development/scss/mixins/_bootstrap.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: whitesmoke;
}

/* line 460, ../development/scss/mixins/_bootstrap.scss */
.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.active:hover > th {
  background-color: #e8e8e8;
}

/* line 449, ../development/scss/mixins/_bootstrap.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 460, ../development/scss/mixins/_bootstrap.scss */
.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.success:hover > th {
  background-color: #d0e9c6;
}

/* line 449, ../development/scss/mixins/_bootstrap.scss */
.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 460, ../development/scss/mixins/_bootstrap.scss */
.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.info:hover > th {
  background-color: #c4e3f3;
}

/* line 449, ../development/scss/mixins/_bootstrap.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 460, ../development/scss/mixins/_bootstrap.scss */
.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.warning:hover > th {
  background-color: #faf2cc;
}

/* line 449, ../development/scss/mixins/_bootstrap.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 460, ../development/scss/mixins/_bootstrap.scss */
.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.danger:hover > th {
  background-color: #ebcccc;
}

@media screen and (max-width: 767px) {
  /* line 171, ../development/scss/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 12.75px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ebebeb;
    -webkit-overflow-scrolling: touch;
  }
  /* line 182, ../development/scss/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, ../development/scss/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 199, ../development/scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, ../development/scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, ../development/scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, ../development/scss/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 10, ../development/scss/bootstrap/_forms.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

/* line 20, ../development/scss/bootstrap/_forms.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 17px;
  font-size: 18px;
  line-height: inherit;
  color: #220606;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 32, ../development/scss/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 47, ../development/scss/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 53, ../development/scss/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 60, ../development/scss/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 65, ../development/scss/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 72, ../development/scss/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 79, ../development/scss/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 84, ../development/scss/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 9px;
  font-size: 12px;
  line-height: 1.42857;
  color: #959595;
}

/* line 115, ../development/scss/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.42857;
  color: #959595;
  background-color: white;
  background-image: none;
  border: 1px solid #ebebeb;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
/* line 936, ../development/scss/mixins/_bootstrap.scss */
.form-control:focus {
  border-color: #ebebeb;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(235, 235, 235, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(235, 235, 235, 0.6);
}
/* line 57, ../development/scss/mixins/_bootstrap.scss */
.form-control::-moz-placeholder {
  color: #42323b;
  opacity: 1;
}
/* line 59, ../development/scss/mixins/_bootstrap.scss */
.form-control:-ms-input-placeholder {
  color: #42323b;
}
/* line 60, ../development/scss/mixins/_bootstrap.scss */
.form-control::-webkit-input-placeholder {
  color: #42323b;
}
/* line 143, ../development/scss/bootstrap/_forms.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

/* line 153, ../development/scss/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 165, ../development/scss/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-appearance: none;
}

/* line 181, ../development/scss/bootstrap/_forms.scss */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 36px;
  line-height: 1.42857 \0;
}
/* line 186, ../development/scss/bootstrap/_forms.scss */
input[type="date"].input-sm, .form-horizontal .form-group-sm input[type="date"].form-control, .input-group-sm > input[type="date"].form-control,
.input-group-sm > input[type="date"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="date"].btn,
input[type="time"].input-sm,
.form-horizontal .form-group-sm input[type="time"].form-control,
.input-group-sm > input[type="time"].form-control,
.input-group-sm > input[type="time"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="time"].btn,
input[type="datetime-local"].input-sm,
.form-horizontal .form-group-sm input[type="datetime-local"].form-control,
.input-group-sm > input[type="datetime-local"].form-control,
.input-group-sm > input[type="datetime-local"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
input[type="month"].input-sm,
.form-horizontal .form-group-sm input[type="month"].form-control,
.input-group-sm > input[type="month"].form-control,
.input-group-sm > input[type="month"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="month"].btn {
  line-height: 30px;
}
/* line 189, ../development/scss/bootstrap/_forms.scss */
input[type="date"].input-lg, .form-horizontal .form-group-lg input[type="date"].form-control, .input-group-lg > input[type="date"].form-control,
.input-group-lg > input[type="date"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="date"].btn,
input[type="time"].input-lg,
.form-horizontal .form-group-lg input[type="time"].form-control,
.input-group-lg > input[type="time"].form-control,
.input-group-lg > input[type="time"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="time"].btn,
input[type="datetime-local"].input-lg,
.form-horizontal .form-group-lg input[type="datetime-local"].form-control,
.input-group-lg > input[type="datetime-local"].form-control,
.input-group-lg > input[type="datetime-local"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
input[type="month"].input-lg,
.form-horizontal .form-group-lg input[type="month"].form-control,
.input-group-lg > input[type="month"].form-control,
.input-group-lg > input[type="month"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="month"].btn {
  line-height: 40px;
}

/* line 200, ../development/scss/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 210, ../development/scss/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  min-height: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 217, ../development/scss/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 227, ../development/scss/bootstrap/_forms.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
  margin-top: 4px \9;
}

/* line 234, ../development/scss/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 240, ../development/scss/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

/* line 249, ../development/scss/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 262, ../development/scss/bootstrap/_forms.scss */
input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled, fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 270, ../development/scss/bootstrap/_forms.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed;
}

/* line 279, ../development/scss/bootstrap/_forms.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled]
.checkbox label {
  cursor: not-allowed;
}

/* line 291, ../development/scss/bootstrap/_forms.scss */
.form-control-static {
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 0;
}
/* line 299, ../development/scss/bootstrap/_forms.scss */
.form-control-static.input-lg, .form-horizontal .form-group-lg .form-control-static.form-control, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .form-horizontal .form-group-sm .form-control-static.form-control, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

/* line 951, ../development/scss/mixins/_bootstrap.scss */
.input-sm, .form-horizontal .form-group-sm .form-control, .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: 10px;
  line-height: 1.5;
  border-radius: 0px;
}

/* line 959, ../development/scss/mixins/_bootstrap.scss */
select.input-sm, .form-horizontal .form-group-sm select.form-control, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

/* line 965, ../development/scss/mixins/_bootstrap.scss */
textarea.input-sm, .form-horizontal .form-group-sm textarea.form-control, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.form-horizontal .form-group-sm select[multiple].form-control,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

/* line 951, ../development/scss/mixins/_bootstrap.scss */
.input-lg, .form-horizontal .form-group-lg .form-control, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 40px;
  padding: 10px 16px;
  font-size: 15px;
  line-height: 1.33;
  border-radius: 0px;
}

/* line 959, ../development/scss/mixins/_bootstrap.scss */
select.input-lg, .form-horizontal .form-group-lg select.form-control, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 40px;
  line-height: 40px;
}

/* line 965, ../development/scss/mixins/_bootstrap.scss */
textarea.input-lg, .form-horizontal .form-group-lg textarea.form-control, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.form-horizontal .form-group-lg select[multiple].form-control,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

/* line 320, ../development/scss/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}
/* line 325, ../development/scss/bootstrap/_forms.scss */
.has-feedback .form-control {
  padding-right: 45px;
}

/* line 330, ../development/scss/bootstrap/_forms.scss */
.form-control-feedback {
  position: absolute;
  top: 22px;
  right: 0;
  z-index: 2;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}

/* line 341, ../development/scss/bootstrap/_forms.scss */
.input-lg + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

/* line 346, ../development/scss/bootstrap/_forms.scss */
.input-sm + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 896, ../development/scss/mixins/_bootstrap.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}
/* line 900, ../development/scss/mixins/_bootstrap.scss */
.has-success .form-control {
  border-color: #3c763d;
}
/* line 903, ../development/scss/mixins/_bootstrap.scss */
.has-success .form-control:focus {
  border-color: #2b542c;
}
/* line 910, ../development/scss/mixins/_bootstrap.scss */
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
/* line 916, ../development/scss/mixins/_bootstrap.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 896, ../development/scss/mixins/_bootstrap.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
/* line 900, ../development/scss/mixins/_bootstrap.scss */
.has-warning .form-control {
  border-color: #8a6d3b;
}
/* line 903, ../development/scss/mixins/_bootstrap.scss */
.has-warning .form-control:focus {
  border-color: #66512c;
}
/* line 910, ../development/scss/mixins/_bootstrap.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
/* line 916, ../development/scss/mixins/_bootstrap.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 896, ../development/scss/mixins/_bootstrap.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}
/* line 900, ../development/scss/mixins/_bootstrap.scss */
.has-error .form-control {
  border-color: #a94442;
}
/* line 903, ../development/scss/mixins/_bootstrap.scss */
.has-error .form-control:focus {
  border-color: #843534;
}
/* line 910, ../development/scss/mixins/_bootstrap.scss */
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
/* line 916, ../development/scss/mixins/_bootstrap.scss */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 365, ../development/scss/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 375, ../development/scss/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #d5d5d5;
}

@media (min-width: 768px) {
  /* line 400, ../development/scss/bootstrap/_forms.scss */
  .form-inline .form-group, .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 407, ../development/scss/bootstrap/_forms.scss */
  .form-inline .form-control, .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 413, ../development/scss/bootstrap/_forms.scss */
  .form-inline .input-group, .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 419, ../development/scss/bootstrap/_forms.scss */
  .form-inline .input-group .input-group-addon, .navbar-form .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .navbar-form .input-group .input-group-btn,
  .form-inline .input-group .form-control,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 425, ../development/scss/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control, .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 429, ../development/scss/bootstrap/_forms.scss */
  .form-inline .control-label, .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 438, ../development/scss/bootstrap/_forms.scss */
  .form-inline .radio, .navbar-form .radio,
  .form-inline .checkbox,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 444, ../development/scss/bootstrap/_forms.scss */
  .form-inline .radio label, .navbar-form .radio label,
  .form-inline .checkbox label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 449, ../development/scss/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"], .navbar-form .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 458, ../development/scss/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback, .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 478, ../development/scss/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 9px;
}
/* line 486, ../development/scss/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 26px;
}
/* line 491, ../development/scss/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 498, ../development/scss/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 9px;
  }
}
/* line 509, ../development/scss/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px;
}
@media (min-width: 768px) {
  /* line 520, ../development/scss/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px;
  }
}
@media (min-width: 768px) {
  /* line 530, ../development/scss/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}

/* line 9, ../development/scss/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 300;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.42857;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 25, ../development/scss/bootstrap/_buttons.scss */
.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 31, ../development/scss/bootstrap/_buttons.scss */
.btn:hover, .btn:focus {
  color: #333333;
  text-decoration: none;
}
/* line 37, ../development/scss/bootstrap/_buttons.scss */
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 45, ../development/scss/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 57, ../development/scss/bootstrap/_buttons.scss */
.btn-default {
  color: #333333;
  background-color: white;
  border-color: #ebebeb;
}
/* line 508, ../development/scss/mixins/_bootstrap.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
  color: #333333;
  background-color: #ebebeb;
  border-color: #d7d7d7;
}
/* line 513, ../development/scss/mixins/_bootstrap.scss */
.open .btn-default.dropdown-toggle {
  color: #333333;
  background-color: #ebebeb;
  border-color: #d7d7d7;
}
/* line 519, ../development/scss/mixins/_bootstrap.scss */
.btn-default:active, .btn-default.active {
  background-image: none;
}
/* line 522, ../development/scss/mixins/_bootstrap.scss */
.open .btn-default.dropdown-toggle {
  background-image: none;
}
/* line 532, ../development/scss/mixins/_bootstrap.scss */
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: white;
  border-color: #ebebeb;
}
/* line 538, ../development/scss/mixins/_bootstrap.scss */
.btn-default .badge {
  color: white;
  background-color: #333333;
}

/* line 60, ../development/scss/bootstrap/_buttons.scss */
.btn-primary {
  color: white;
  background-color: #428bca;
  border-color: #357ebd;
}
/* line 508, ../development/scss/mixins/_bootstrap.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  color: white;
  background-color: #3276b1;
  border-color: #2c699e;
}
/* line 513, ../development/scss/mixins/_bootstrap.scss */
.open .btn-primary.dropdown-toggle {
  color: white;
  background-color: #3276b1;
  border-color: #2c699e;
}
/* line 519, ../development/scss/mixins/_bootstrap.scss */
.btn-primary:active, .btn-primary.active {
  background-image: none;
}
/* line 522, ../development/scss/mixins/_bootstrap.scss */
.open .btn-primary.dropdown-toggle {
  background-image: none;
}
/* line 532, ../development/scss/mixins/_bootstrap.scss */
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
/* line 538, ../development/scss/mixins/_bootstrap.scss */
.btn-primary .badge {
  color: #428bca;
  background-color: white;
}

/* line 64, ../development/scss/bootstrap/_buttons.scss */
.btn-success {
  color: white;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 508, ../development/scss/mixins/_bootstrap.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
  color: white;
  background-color: #47a447;
  border-color: #409240;
}
/* line 513, ../development/scss/mixins/_bootstrap.scss */
.open .btn-success.dropdown-toggle {
  color: white;
  background-color: #47a447;
  border-color: #409240;
}
/* line 519, ../development/scss/mixins/_bootstrap.scss */
.btn-success:active, .btn-success.active {
  background-image: none;
}
/* line 522, ../development/scss/mixins/_bootstrap.scss */
.open .btn-success.dropdown-toggle {
  background-image: none;
}
/* line 532, ../development/scss/mixins/_bootstrap.scss */
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 538, ../development/scss/mixins/_bootstrap.scss */
.btn-success .badge {
  color: #5cb85c;
  background-color: white;
}

/* line 68, ../development/scss/bootstrap/_buttons.scss */
.btn-info {
  color: white;
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 508, ../development/scss/mixins/_bootstrap.scss */
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
  color: white;
  background-color: #39b3d7;
  border-color: #29a8cd;
}
/* line 513, ../development/scss/mixins/_bootstrap.scss */
.open .btn-info.dropdown-toggle {
  color: white;
  background-color: #39b3d7;
  border-color: #29a8cd;
}
/* line 519, ../development/scss/mixins/_bootstrap.scss */
.btn-info:active, .btn-info.active {
  background-image: none;
}
/* line 522, ../development/scss/mixins/_bootstrap.scss */
.open .btn-info.dropdown-toggle {
  background-image: none;
}
/* line 532, ../development/scss/mixins/_bootstrap.scss */
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 538, ../development/scss/mixins/_bootstrap.scss */
.btn-info .badge {
  color: #5bc0de;
  background-color: white;
}

/* line 72, ../development/scss/bootstrap/_buttons.scss */
.btn-warning {
  color: white;
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 508, ../development/scss/mixins/_bootstrap.scss */
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
  color: white;
  background-color: #ed9c28;
  border-color: #e89014;
}
/* line 513, ../development/scss/mixins/_bootstrap.scss */
.open .btn-warning.dropdown-toggle {
  color: white;
  background-color: #ed9c28;
  border-color: #e89014;
}
/* line 519, ../development/scss/mixins/_bootstrap.scss */
.btn-warning:active, .btn-warning.active {
  background-image: none;
}
/* line 522, ../development/scss/mixins/_bootstrap.scss */
.open .btn-warning.dropdown-toggle {
  background-image: none;
}
/* line 532, ../development/scss/mixins/_bootstrap.scss */
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 538, ../development/scss/mixins/_bootstrap.scss */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: white;
}

/* line 76, ../development/scss/bootstrap/_buttons.scss */
.btn-danger {
  color: white;
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 508, ../development/scss/mixins/_bootstrap.scss */
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
  color: white;
  background-color: #d2322d;
  border-color: #bd2d29;
}
/* line 513, ../development/scss/mixins/_bootstrap.scss */
.open .btn-danger.dropdown-toggle {
  color: white;
  background-color: #d2322d;
  border-color: #bd2d29;
}
/* line 519, ../development/scss/mixins/_bootstrap.scss */
.btn-danger:active, .btn-danger.active {
  background-image: none;
}
/* line 522, ../development/scss/mixins/_bootstrap.scss */
.open .btn-danger.dropdown-toggle {
  background-image: none;
}
/* line 532, ../development/scss/mixins/_bootstrap.scss */
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 538, ../development/scss/mixins/_bootstrap.scss */
.btn-danger .badge {
  color: #d9534f;
  background-color: white;
}

/* line 85, ../development/scss/bootstrap/_buttons.scss */
.btn-link {
  color: #959595;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
/* line 94, ../development/scss/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 101, ../development/scss/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
/* line 105, ../development/scss/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #7b0046;
  text-decoration: underline;
  background-color: transparent;
}
/* line 113, ../development/scss/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #42323b;
  text-decoration: none;
}

/* line 124, ../development/scss/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 1.33;
  border-radius: 0px;
}

/* line 128, ../development/scss/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 10px;
  line-height: 1.5;
  border-radius: 0px;
}

/* line 132, ../development/scss/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 10px;
  line-height: 1.5;
  border-radius: 0px;
}

/* line 140, ../development/scss/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 146, ../development/scss/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 154, ../development/scss/bootstrap/_buttons.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* line 10, ../development/scss/bootstrap/_component-animations.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/* line 13, ../development/scss/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 18, ../development/scss/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}
/* line 21, ../development/scss/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 26, ../development/scss/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 28, ../development/scss/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 30, ../development/scss/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

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

/* line 25, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 38, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\2a";
}

/* line 39, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\2b";
}

/* line 40, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-euro:before {
  content: "\20ac";
}

/* line 41, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 42, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 43, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 44, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 45, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 46, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 47, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 48, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 49, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 50, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 51, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 52, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 53, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 54, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 55, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 56, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 57, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 58, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 59, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 60, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 61, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 62, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 63, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 64, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 65, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 66, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 67, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 68, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 69, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 70, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 71, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 72, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 73, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 74, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 75, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 76, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 77, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 78, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 79, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 80, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 81, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 82, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 83, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 84, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 85, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 86, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 87, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 88, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 89, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 90, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 91, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 92, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 93, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 94, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 95, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 96, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 97, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 98, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 99, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 100, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 101, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 102, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 103, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 104, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 105, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 106, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 107, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 108, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 109, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 110, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 111, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 112, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 113, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 114, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 115, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 116, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 117, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 118, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 119, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 120, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 121, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 122, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 123, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 124, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 125, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 126, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 127, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 128, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 129, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 130, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 131, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 132, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 133, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 134, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 135, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 136, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 137, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 138, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 139, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 140, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 141, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 142, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 143, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 144, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 145, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 146, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 147, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 148, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 149, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 150, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 151, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 152, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 153, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 154, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 155, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 156, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 157, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 158, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 159, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 160, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 161, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 162, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 163, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 164, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 165, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 166, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 167, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 168, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 169, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 170, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 171, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 172, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 173, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 174, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 175, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 176, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 177, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 178, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 179, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 180, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 181, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 182, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 183, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 184, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 185, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 186, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 187, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 188, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 189, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 190, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 191, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 192, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 193, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 194, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 195, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 196, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 197, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 198, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 199, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 200, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 201, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 202, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 203, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 204, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 205, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 206, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 207, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 208, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 209, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 210, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 211, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 212, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 213, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 214, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 215, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 216, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 217, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 218, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 219, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 220, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 221, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 222, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 223, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 224, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 225, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 226, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 227, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 228, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 229, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 230, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 231, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 232, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 233, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 234, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 235, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 236, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 237, ../development/scss/bootstrap/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 7, ../development/scss/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 3px solid;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
}

/* line 19, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown {
  position: relative;
}

/* line 24, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 29, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 12px;
  background-color: white;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
/* line 51, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 57, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 7.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 62, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857;
  color: #220606;
  white-space: nowrap;
}

/* line 76, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #0c0202;
  background-color: whitesmoke;
}

/* line 87, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #7b0046;
  text-decoration: none;
  outline: 0;
  background-color: #ebebeb;
}

/* line 102, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #42323b;
}

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

/* line 121, ../development/scss/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}
/* line 126, ../development/scss/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 135, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  left: auto;
  right: 0;
}

/* line 145, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  left: 0;
  right: auto;
}

/* line 151, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 10px;
  line-height: 1.42857;
  color: #42323b;
  white-space: nowrap;
}

/* line 161, ../development/scss/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 171, ../development/scss/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 184, ../development/scss/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 3px solid;
  content: "";
}
/* line 190, ../development/scss/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 768px) {
  /* line 204, ../development/scss/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 209, ../development/scss/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
/* line 7, ../development/scss/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 11, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
/* line 18, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
/* line 21, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: 0;
}

/* line 33, ../development/scss/bootstrap/_button-groups.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 39, ../development/scss/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.btn-toolbar:after {
  clear: both;
}
/* line 44, ../development/scss/bootstrap/_button-groups.scss */
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
/* line 49, ../development/scss/bootstrap/_button-groups.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 54, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 59, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}
/* line 61, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 67, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 72, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 75, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 80, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 84, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 90, ../development/scss/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 108, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 112, ../development/scss/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

/* line 119, ../development/scss/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 123, ../development/scss/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 130, ../development/scss/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 134, ../development/scss/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 139, ../development/scss/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 150, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}
/* line 160, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
/* line 168, ../development/scss/bootstrap/_button-groups.scss */
.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;
}

/* line 175, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 178, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 182, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 187, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 192, ../development/scss/bootstrap/_button-groups.scss */
.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;
}

/* line 196, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 205, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
/* line 211, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
/* line 216, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
/* line 220, ../development/scss/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 236, ../development/scss/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 7, ../development/scss/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 13, ../development/scss/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
/* line 19, ../development/scss/bootstrap/_input-groups.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 56, ../development/scss/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
/* line 59, ../development/scss/bootstrap/_input-groups.scss */
.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;
}

/* line 65, ../development/scss/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 73, ../development/scss/bootstrap/_input-groups.scss */
.input-group-addon {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  color: #959595;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ebebeb;
  border-radius: 0px;
}
/* line 85, ../development/scss/bootstrap/_input-groups.scss */
.input-group-addon.input-sm, .form-horizontal .form-group-sm .input-group-addon.form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 0px;
}
/* line 90, ../development/scss/bootstrap/_input-groups.scss */
.input-group-addon.input-lg, .form-horizontal .form-group-lg .input-group-addon.form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 15px;
  border-radius: 0px;
}
/* line 98, ../development/scss/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 110, ../development/scss/bootstrap/_input-groups.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 113, ../development/scss/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 122, ../development/scss/bootstrap/_input-groups.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 125, ../development/scss/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 131, ../development/scss/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
/* line 140, ../development/scss/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}
/* line 142, ../development/scss/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
/* line 148, ../development/scss/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
/* line 156, ../development/scss/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
/* line 162, ../development/scss/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}

/* line 9, ../development/scss/bootstrap/_navs.scss */
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.nav:before, .nav:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.nav:after {
  clear: both;
}
/* line 15, ../development/scss/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}
/* line 19, ../development/scss/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 32px;
}
/* line 24, ../development/scss/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: transparent;
}
/* line 31, ../development/scss/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #42323b;
}
/* line 35, ../development/scss/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #42323b;
  text-decoration: none;
  background-color: none;
  cursor: not-allowed;
}
/* line 47, ../development/scss/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: transparent;
  border-color: #959595;
}
/* line 58, ../development/scss/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 7.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 65, ../development/scss/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 75, ../development/scss/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ebebeb;
}
/* line 77, ../development/scss/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
/* line 83, ../development/scss/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857;
  border: 1px solid transparent;
  border-radius: 0px 0px 0 0;
}
/* line 88, ../development/scss/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ebebeb;
}
/* line 97, ../development/scss/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #7b0046;
  background-color: white;
  border: 1px solid #ebebeb;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 117, ../development/scss/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}
/* line 121, ../development/scss/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 0px;
}
/* line 124, ../development/scss/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}
/* line 132, ../development/scss/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #098EB2;
  background-color: transparent;
}

/* line 143, ../development/scss/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}
/* line 145, ../development/scss/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 159, ../development/scss/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
/* line 162, ../development/scss/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
/* line 164, ../development/scss/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
/* line 170, ../development/scss/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  /* line 176, ../development/scss/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 179, ../development/scss/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 189, ../development/scss/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
/* line 192, ../development/scss/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 0px;
}
/* line 200, ../development/scss/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  /* line 205, ../development/scss/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 0px 0px 0 0;
  }
  /* line 211, ../development/scss/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: white;
  }
}

/* line 223, ../development/scss/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}
/* line 226, ../development/scss/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 236, ../development/scss/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 11, ../development/scss/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 90px;
  margin-bottom: 0px;
  border: 1px solid transparent;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 11, ../development/scss/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 0px;
  }
}

/* line 21, ../development/scss/mixins/_bootstrap.scss */
.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 31, ../development/scss/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, ../development/scss/bootstrap/_navbar.scss */
.navbar-collapse {
  overflow-x: visible;
  padding-right: 32px;
  padding-left: 32px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.navbar-collapse:after {
  clear: both;
}
/* line 59, ../development/scss/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  /* line 50, ../development/scss/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, ../development/scss/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    /* display: block !important; */
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, ../development/scss/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 83, ../development/scss/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 92, ../development/scss/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-width: 480px) and (orientation: landscape) {
  /* line 92, ../development/scss/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

/* line 109, ../development/scss/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -32px;
  margin-left: -32px;
}
@media (min-width: 768px) {
  /* line 109, ../development/scss/bootstrap/_navbar.scss */
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 128, ../development/scss/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  /* line 128, ../development/scss/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 139, ../development/scss/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
  /* line 139, ../development/scss/bootstrap/_navbar.scss */
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 151, ../development/scss/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 155, ../development/scss/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 164, ../development/scss/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  padding: 32px 32px;
  font-size: 15px;
  line-height: 17px;
  height: 90px;
}
/* line 172, ../development/scss/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  /* line 178, ../development/scss/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -32px;
  }
}

/* line 190, ../development/scss/bootstrap/_navbar.scss */
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 32px;
  padding: 9px 10px;
  margin-top: 28px;
  margin-bottom: 28px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0px;
}
/* line 203, ../development/scss/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}
/* line 208, ../development/scss/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
/* line 214, ../development/scss/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  /* line 190, ../development/scss/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 229, ../development/scss/bootstrap/_navbar.scss */
/* .navbar-nav {
  margin: 16px -32px;
} */
/* line 232, ../development/scss/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 17px;
}
@media (max-width: 767px) {
  /* line 240, ../development/scss/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, ../development/scss/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 252, ../development/scss/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 17px;
  }
  /* line 255, ../development/scss/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  /* line 229, ../development/scss/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 267, ../development/scss/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 269, ../development/scss/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  /* line 275, ../development/scss/bootstrap/_navbar.scss */
  .navbar-nav.navbar-right:last-child {
    margin-right: -32px;
  }
}

@media (min-width: 768px) {
  /* line 289, ../development/scss/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }

  /* line 292, ../development/scss/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
  }
}
/* line 303, ../development/scss/bootstrap/_navbar.scss */
.navbar-form {
  margin-left: -32px;
  margin-right: -32px;
  padding: 10px 32px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 27px;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  /* line 315, ../development/scss/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  /* line 303, ../development/scss/bootstrap/_navbar.scss */
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  /* line 335, ../development/scss/bootstrap/_navbar.scss */
  .navbar-form.navbar-right:last-child {
    margin-right: -32px;
  }
}

/* line 345, ../development/scss/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 350, ../development/scss/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 359, ../development/scss/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 27px;
  margin-bottom: 27px;
}
/* line 362, ../development/scss/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 30px;
  margin-bottom: 30px;
}
/* line 365, ../development/scss/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 34px;
  margin-bottom: 34px;
}

/* line 375, ../development/scss/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 36.5px;
  margin-bottom: 36.5px;
}
@media (min-width: 768px) {
  /* line 375, ../development/scss/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-left: 32px;
    margin-right: 32px;
  }
  /* line 384, ../development/scss/bootstrap/_navbar.scss */
  .navbar-text.navbar-right:last-child {
    margin-right: 0;
  }
}

/* line 394, ../development/scss/bootstrap/_navbar.scss */
.navbar-default {
  background-color: transparent;
  border-color: transparent;
}
/* line 398, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #220606;
}
/* line 401, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: black;
  background-color: transparent;
}
/* line 407, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777777;
}
/* line 412, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #220606;
}
/* line 416, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #7b0046;
  background-color: transparent;
}
/* line 424, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #7b0046;
  background-color: transparent;
}
/* line 432, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
/* line 439, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #dddddd;
}
/* line 442, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}
/* line 445, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888888;
}
/* line 451, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: transparent;
}
/* line 461, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: transparent;
  color: #7b0046;
}
@media (max-width: 767px) {
  /* line 470, ../development/scss/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #220606;
  }
  /* line 473, ../development/scss/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #7b0046;
    background-color: transparent;
  }
  /* line 481, ../development/scss/bootstrap/_navbar.scss */
  .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: #7b0046;
    background-color: transparent;
  }
  /* line 489, ../development/scss/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}
/* line 503, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #220606;
}
/* line 505, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #7b0046;
}
/* line 510, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #220606;
}
/* line 513, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #7b0046;
}
/* line 519, ../development/scss/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc;
}

/* line 528, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: white;
  border-color: none;
}
/* line 532, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: black;
}
/* line 535, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: white;
  background-color: white;
}
/* line 541, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #42323b;
}
/* line 546, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: black;
}
/* line 550, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #7b0046;
  background-color: white;
}
/* line 558, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #7b0046;
  background-color: white;
}
/* line 566, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: white;
}
/* line 574, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333333;
}
/* line 577, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333333;
}
/* line 581, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: white;
}
/* line 587, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #ededed;
}
/* line 596, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: white;
  color: #7b0046;
}
@media (max-width: 767px) {
  /* line 605, ../development/scss/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: none;
  }
  /* line 608, ../development/scss/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: none;
  }
  /* line 611, ../development/scss/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: black;
  }
  /* line 614, ../development/scss/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #7b0046;
    background-color: white;
  }
  /* line 622, ../development/scss/bootstrap/_navbar.scss */
  .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: #7b0046;
    background-color: white;
  }
  /* line 630, ../development/scss/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: white;
  }
}
/* line 639, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: black;
}
/* line 641, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #7b0046;
}
/* line 646, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: black;
}
/* line 649, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #7b0046;
}
/* line 655, ../development/scss/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444;
}

/* line 6, ../development/scss/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 17px;
  list-style: none;
  background-color: transparent;
  border-radius: 0px;
}
/* line 13, ../development/scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}
/* line 16, ../development/scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  content: "\f101\00a0";
  padding: 0 5px;
  color: #cccccc;
}
/* line 23, ../development/scss/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #7b0046;
}

/* line 4, ../development/scss/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 17px 0;
  border-radius: 0px;
}
/* line 10, ../development/scss/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}
/* line 13, ../development/scss/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 8px 12px;
  line-height: 1.42857;
  text-decoration: none;
  color: #959595;
  background-color: white;
  border: 1px solid transparent;
  margin-left: -1px;
}
/* line 26, ../development/scss/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
/* line 33, ../development/scss/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
/* line 42, ../development/scss/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  color: #7b0046;
  background-color: transparent;
  border-color: transparent;
}
/* line 53, ../development/scss/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 2;
  color: #7b0046;
  background-color: transparent;
  border-color: transparent;
  cursor: default;
}
/* line 68, ../development/scss/bootstrap/_pagination.scss */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #eeeeee;
  background-color: white;
  border-color: transparent;
  cursor: not-allowed;
}

/* line 558, ../development/scss/mixins/_bootstrap.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 15px;
}
/* line 564, ../development/scss/mixins/_bootstrap.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
/* line 570, ../development/scss/mixins/_bootstrap.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

/* line 558, ../development/scss/mixins/_bootstrap.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 10px;
}
/* line 564, ../development/scss/mixins/_bootstrap.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
/* line 570, ../development/scss/mixins/_bootstrap.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

/* line 6, ../development/scss/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 17px 0;
  list-style: none;
  text-align: center;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.pager:before, .pager:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.pager:after {
  clear: both;
}
/* line 12, ../development/scss/bootstrap/_pager.scss */
.pager li {
  display: inline;
}
/* line 15, ../development/scss/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 15px;
}
/* line 24, ../development/scss/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: transparent;
}
/* line 32, ../development/scss/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}
/* line 39, ../development/scss/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}
/* line 48, ../development/scss/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #eeeeee;
  background-color: white;
  cursor: not-allowed;
}

/* line 5, ../development/scss/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: white;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
/* line 20, ../development/scss/bootstrap/_labels.scss */
.label:empty {
  display: none;
}
/* line 25, ../development/scss/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 34, ../development/scss/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, ../development/scss/bootstrap/_labels.scss */
.label-default {
  background-color: #42323b;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #251c21;
}

/* line 48, ../development/scss/bootstrap/_labels.scss */
.label-primary {
  background-color: #428bca;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #3071a9;
}

/* line 52, ../development/scss/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 56, ../development/scss/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 60, ../development/scss/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 64, ../development/scss/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 6, ../development/scss/bootstrap/_badges.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: bold;
  color: white;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #7b0046;
  border-radius: 10px;
}
/* line 21, ../development/scss/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}
/* line 26, ../development/scss/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}
/* line 30, ../development/scss/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
/* line 39, ../development/scss/bootstrap/_badges.scss */
a.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: white;
  background-color: #7b0046;
}
/* line 43, ../development/scss/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 51, ../development/scss/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, ../development/scss/bootstrap/_jumbotron.scss */
.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
/* line 13, ../development/scss/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: #220013;
}
/* line 16, ../development/scss/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 200;
}
/* line 22, ../development/scss/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
/* line 26, ../development/scss/bootstrap/_jumbotron.scss */
.container .jumbotron {
  border-radius: 0px;
}
/* line 30, ../development/scss/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 6, ../development/scss/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 38, ../development/scss/bootstrap/_jumbotron.scss */
  .container .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* line 44, ../development/scss/bootstrap/_jumbotron.scss */
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 54px;
  }
}

/* line 7, ../development/scss/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 17px;
  line-height: 1.42857;
  background-color: white;
  border: 1px solid #dddddd;
  border-radius: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 18, ../development/scss/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
/* line 27, ../development/scss/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #959595;
}

/* line 36, ../development/scss/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #959595;
}

/* line 8, ../development/scss/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 17px;
  border: 1px solid transparent;
  border-radius: 0px;
}
/* line 15, ../development/scss/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 21, ../development/scss/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}
/* line 27, ../development/scss/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
/* line 30, ../development/scss/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 40, ../development/scss/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
/* line 44, ../development/scss/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 56, ../development/scss/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
/* line 430, ../development/scss/mixins/_bootstrap.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 433, ../development/scss/mixins/_bootstrap.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 59, ../development/scss/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
/* line 430, ../development/scss/mixins/_bootstrap.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 433, ../development/scss/mixins/_bootstrap.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 62, ../development/scss/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* line 430, ../development/scss/mixins/_bootstrap.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}
/* line 433, ../development/scss/mixins/_bootstrap.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 65, ../development/scss/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
/* line 430, ../development/scss/mixins/_bootstrap.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}
/* line 433, ../development/scss/mixins/_bootstrap.scss */
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  /* line 11, ../development/scss/bootstrap/_progress-bars.scss */
  from {
    background-position: 40px 0;
  }

  /* line 12, ../development/scss/bootstrap/_progress-bars.scss */
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  /* line 17, ../development/scss/bootstrap/_progress-bars.scss */
  from {
    background-position: 40px 0;
  }

  /* line 18, ../development/scss/bootstrap/_progress-bars.scss */
  to {
    background-position: 0 0;
  }
}

/* line 27, ../development/scss/bootstrap/_progress-bars.scss */
.progress {
  overflow: hidden;
  height: 17px;
  margin-bottom: 17px;
  background-color: whitesmoke;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 37, ../development/scss/bootstrap/_progress-bars.scss */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 10px;
  line-height: 17px;
  color: white;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

/* line 56, ../development/scss/bootstrap/_progress-bars.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 66, ../development/scss/bootstrap/_progress-bars.scss */
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 73, ../development/scss/bootstrap/_progress-bars.scss */
.progress-bar[aria-valuenow="1"], .progress-bar[aria-valuenow="2"] {
  min-width: 30px;
}
/* line 77, ../development/scss/bootstrap/_progress-bars.scss */
.progress-bar[aria-valuenow="0"] {
  color: #42323b;
  min-width: 30px;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
}

/* line 91, ../development/scss/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}
/* line 647, ../development/scss/mixins/_bootstrap.scss */
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 95, ../development/scss/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}
/* line 647, ../development/scss/mixins/_bootstrap.scss */
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 99, ../development/scss/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}
/* line 647, ../development/scss/mixins/_bootstrap.scss */
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 103, ../development/scss/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}
/* line 647, ../development/scss/mixins/_bootstrap.scss */
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 11, ../development/scss/bootstrap/_media.scss */
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 18, ../development/scss/bootstrap/_media.scss */
.media,
.media .media {
  margin-top: 15px;
}

/* line 21, ../development/scss/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 26, ../development/scss/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 31, ../development/scss/bootstrap/_media.scss */
.media-heading {
  margin: 0 0 5px;
}

/* line 40, ../development/scss/bootstrap/_media.scss */
.media > .pull-left {
  margin-right: 10px;
}
/* line 43, ../development/scss/bootstrap/_media.scss */
.media > .pull-right {
  margin-left: 10px;
}

/* line 53, ../development/scss/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, ../development/scss/bootstrap/_list-group.scss */
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 21, ../development/scss/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: white;
  border: 1px solid #dddddd;
}
/* line 31, ../development/scss/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
/* line 34, ../development/scss/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
/* line 40, ../development/scss/bootstrap/_list-group.scss */
.list-group-item > .badge {
  float: right;
}
/* line 43, ../development/scss/bootstrap/_list-group.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 54, ../development/scss/bootstrap/_list-group.scss */
a.list-group-item {
  color: #555555;
}
/* line 57, ../development/scss/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading {
  color: #333333;
}
/* line 63, ../development/scss/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus {
  text-decoration: none;
  color: #555555;
  background-color: whitesmoke;
}

/* line 74, ../development/scss/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #42323b;
}
/* line 79, ../development/scss/bootstrap/_list-group.scss */
.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;
}
/* line 82, ../development/scss/bootstrap/_list-group.scss */
.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: #42323b;
}
/* line 90, ../development/scss/bootstrap/_list-group.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #7b0046;
  background-color: #ebebeb;
  border-color: #ebebeb;
}
/* line 99, ../development/scss/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
/* line 102, ../development/scss/bootstrap/_list-group.scss */
.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: white;
}

/* line 469, ../development/scss/mixins/_bootstrap.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 476, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-success {
  color: #3c763d;
}
/* line 479, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
/* line 482, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
/* line 488, ../development/scss/mixins/_bootstrap.scss */
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;
}

/* line 469, ../development/scss/mixins/_bootstrap.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 476, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-info {
  color: #31708f;
}
/* line 479, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
/* line 482, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
/* line 488, ../development/scss/mixins/_bootstrap.scss */
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;
}

/* line 469, ../development/scss/mixins/_bootstrap.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 476, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-warning {
  color: #8a6d3b;
}
/* line 479, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
/* line 482, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
/* line 488, ../development/scss/mixins/_bootstrap.scss */
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;
}

/* line 469, ../development/scss/mixins/_bootstrap.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 476, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-danger {
  color: #a94442;
}
/* line 479, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
/* line 482, ../development/scss/mixins/_bootstrap.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
/* line 488, ../development/scss/mixins/_bootstrap.scss */
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;
}

/* line 124, ../development/scss/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 128, ../development/scss/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, ../development/scss/bootstrap/_panels.scss */
.panel {
  margin-bottom: 17px;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 0px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, ../development/scss/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.panel-body:after {
  clear: both;
}

/* line 22, ../development/scss/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: -1px;
  border-top-left-radius: -1px;
}
/* line 27, ../development/scss/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, ../development/scss/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: inherit;
}
/* line 39, ../development/scss/bootstrap/_panels.scss */
.panel-title > a {
  color: inherit;
}

/* line 45, ../development/scss/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: whitesmoke;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}

/* line 59, ../development/scss/bootstrap/_panels.scss */
.panel > .list-group {
  margin-bottom: 0;
}
/* line 62, ../development/scss/bootstrap/_panels.scss */
.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
/* line 69, ../development/scss/bootstrap/_panels.scss */
.panel > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: -1px;
  border-top-left-radius: -1px;
}
/* line 76, ../development/scss/bootstrap/_panels.scss */
.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}

/* line 85, ../development/scss/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 89, ../development/scss/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 101, ../development/scss/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
/* line 106, ../development/scss/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: -1px;
  border-top-left-radius: -1px;
}
/* line 113, ../development/scss/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .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 th:first-child,
.panel > .table-responsive:first-child > .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 th:first-child {
  border-top-left-radius: -1px;
}
/* line 117, ../development/scss/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .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 th:last-child,
.panel > .table-responsive:first-child > .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 th:last-child {
  border-top-right-radius: -1px;
}
/* line 125, ../development/scss/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
/* line 132, ../development/scss/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .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 th:first-child,
.panel > .table-responsive:last-child > .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 th:first-child {
  border-bottom-left-radius: -1px;
}
/* line 136, ../development/scss/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .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 th:last-child,
.panel > .table-responsive:last-child > .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 th:last-child {
  border-bottom-right-radius: -1px;
}
/* line 143, ../development/scss/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #ebebeb;
}
/* line 147, ../development/scss/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
/* line 151, ../development/scss/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
/* line 158, ../development/scss/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
/* line 162, ../development/scss/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
/* line 171, ../development/scss/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
/* line 180, ../development/scss/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
/* line 186, ../development/scss/bootstrap/_panels.scss */
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

/* line 198, ../development/scss/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 17px;
}
/* line 202, ../development/scss/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0px;
}
/* line 205, ../development/scss/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}
/* line 210, ../development/scss/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}
/* line 212, ../development/scss/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #dddddd;
}
/* line 216, ../development/scss/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}
/* line 218, ../development/scss/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}

/* line 226, ../development/scss/bootstrap/_panels.scss */
.panel-default {
  border-color: #dddddd;
}
/* line 407, ../development/scss/mixins/_bootstrap.scss */
.panel-default > .panel-heading {
  color: #220606;
  background-color: whitesmoke;
  border-color: #dddddd;
}
/* line 412, ../development/scss/mixins/_bootstrap.scss */
.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #dddddd;
}
/* line 417, ../development/scss/mixins/_bootstrap.scss */
.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #dddddd;
}

/* line 229, ../development/scss/bootstrap/_panels.scss */
.panel-primary {
  border-color: #428bca;
}
/* line 407, ../development/scss/mixins/_bootstrap.scss */
.panel-primary > .panel-heading {
  color: white;
  background-color: #428bca;
  border-color: #428bca;
}
/* line 412, ../development/scss/mixins/_bootstrap.scss */
.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
}
/* line 417, ../development/scss/mixins/_bootstrap.scss */
.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
}

/* line 232, ../development/scss/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}
/* line 407, ../development/scss/mixins/_bootstrap.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 412, ../development/scss/mixins/_bootstrap.scss */
.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
}
/* line 417, ../development/scss/mixins/_bootstrap.scss */
.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 235, ../development/scss/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}
/* line 407, ../development/scss/mixins/_bootstrap.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 412, ../development/scss/mixins/_bootstrap.scss */
.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
}
/* line 417, ../development/scss/mixins/_bootstrap.scss */
.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 238, ../development/scss/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}
/* line 407, ../development/scss/mixins/_bootstrap.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
/* line 412, ../development/scss/mixins/_bootstrap.scss */
.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #faebcc;
}
/* line 417, ../development/scss/mixins/_bootstrap.scss */
.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #faebcc;
}

/* line 241, ../development/scss/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}
/* line 407, ../development/scss/mixins/_bootstrap.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/* line 412, ../development/scss/mixins/_bootstrap.scss */
.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ebccd1;
}
/* line 417, ../development/scss/mixins/_bootstrap.scss */
.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 7, ../development/scss/bootstrap/_wells.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: whitesmoke;
  border: 1px solid #e3e3e3;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
/* line 15, ../development/scss/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, ../development/scss/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 0px;
}

/* line 26, ../development/scss/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 0px;
}

/* line 6, ../development/scss/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: black;
  text-shadow: 0 1px 0 white;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
/* line 16, ../development/scss/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 29, ../development/scss/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 11, ../development/scss/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, ../development/scss/bootstrap/_modals.scss */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
/* line 32, ../development/scss/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
/* line 36, ../development/scss/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 38, ../development/scss/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, ../development/scss/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, ../development/scss/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: white;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

/* line 64, ../development/scss/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: black;
}
/* line 73, ../development/scss/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 74, ../development/scss/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 79, ../development/scss/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px;
}

/* line 85, ../development/scss/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, ../development/scss/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.42857;
}

/* line 97, ../development/scss/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, ../development/scss/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.modal-footer:after {
  clear: both;
}
/* line 110, ../development/scss/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 115, ../development/scss/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 119, ../development/scss/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, ../development/scss/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, ../development/scss/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  /* line 140, ../development/scss/bootstrap/_modals.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  /* line 145, ../development/scss/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 149, ../development/scss/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}
/* line 7, ../development/scss/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 10px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 16, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 17, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
/* line 18, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
/* line 19, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
/* line 20, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 24, ../development/scss/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: white;
  text-align: center;
  text-decoration: none;
  background-color: black;
  border-radius: 0px;
}

/* line 35, ../development/scss/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 43, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 50, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 56, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: black;
}
/* line 62, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: black;
}
/* line 69, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: black;
}
/* line 76, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}
/* line 83, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}
/* line 89, ../development/scss/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: black;
}

/* line 6, ../development/scss/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
/* line 26, ../development/scss/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}
/* line 27, ../development/scss/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}
/* line 28, ../development/scss/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}
/* line 29, ../development/scss/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 32, ../development/scss/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: -1px -1px 0 0;
}

/* line 43, ../development/scss/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 53, ../development/scss/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 62, ../development/scss/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 65, ../development/scss/bootstrap/_popovers.scss */
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 71, ../development/scss/bootstrap/_popovers.scss */
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
/* line 78, ../development/scss/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: white;
}
/* line 86, ../development/scss/bootstrap/_popovers.scss */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
/* line 93, ../development/scss/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: white;
}
/* line 101, ../development/scss/bootstrap/_popovers.scss */
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
/* line 108, ../development/scss/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: white;
}
/* line 117, ../development/scss/bootstrap/_popovers.scss */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
/* line 124, ../development/scss/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: white;
  bottom: -10px;
}

/* line 7, ../development/scss/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* line 16, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
/* line 23, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
/* line 31, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
/* line 35, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}
/* line 40, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 46, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}
/* line 49, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}
/* line 53, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
/* line 57, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}
/* line 60, ../development/scss/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 69, ../development/scss/bootstrap/_carousel.scss */
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
/* line 84, ../development/scss/bootstrap/_carousel.scss */
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
/* line 87, ../development/scss/bootstrap/_carousel.scss */
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
/* line 95, ../development/scss/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: white;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 106, ../development/scss/bootstrap/_carousel.scss */
.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;
}
/* line 113, ../development/scss/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
/* line 118, ../development/scss/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
/* line 123, ../development/scss/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
}
/* line 132, ../development/scss/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: '\2039';
}
/* line 137, ../development/scss/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: '\203a';
}

/* line 148, ../development/scss/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
/* line 159, ../development/scss/bootstrap/_carousel.scss */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid white;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
/* line 180, ../development/scss/bootstrap/_carousel.scss */
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: white;
}

/* line 191, ../development/scss/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
/* line 202, ../development/scss/bootstrap/_carousel.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 216, ../development/scss/bootstrap/_carousel.scss */
  .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;
  }
  /* line 223, ../development/scss/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  /* line 227, ../development/scss/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }

  /* line 233, ../development/scss/bootstrap/_carousel.scss */
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  /* line 240, ../development/scss/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.clearfix:after {
  clear: both;
}

/* line 12, ../development/scss/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, ../development/scss/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, ../development/scss/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, ../development/scss/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, ../development/scss/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, ../development/scss/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, ../development/scss/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, ../development/scss/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* line 54, ../development/scss/bootstrap/_utilities.scss */
.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

/* line 668, ../development/scss/mixins/_bootstrap.scss */
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

/* line 42, ../development/scss/bootstrap/_responsive-utilities.scss */
.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) {
  /* line 657, ../development/scss/mixins/_bootstrap.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 660, ../development/scss/mixins/_bootstrap.scss */
  table.visible-xs {
    display: table;
  }

  /* line 661, ../development/scss/mixins/_bootstrap.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 663, ../development/scss/mixins/_bootstrap.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 49, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 54, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 59, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 657, ../development/scss/mixins/_bootstrap.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 660, ../development/scss/mixins/_bootstrap.scss */
  table.visible-sm {
    display: table;
  }

  /* line 661, ../development/scss/mixins/_bootstrap.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 663, ../development/scss/mixins/_bootstrap.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 68, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 657, ../development/scss/mixins/_bootstrap.scss */
  .visible-md {
    display: block !important;
  }

  /* line 660, ../development/scss/mixins/_bootstrap.scss */
  table.visible-md {
    display: table;
  }

  /* line 661, ../development/scss/mixins/_bootstrap.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 663, ../development/scss/mixins/_bootstrap.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 87, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 657, ../development/scss/mixins/_bootstrap.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 660, ../development/scss/mixins/_bootstrap.scss */
  table.visible-lg {
    display: table;
  }

  /* line 661, ../development/scss/mixins/_bootstrap.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 663, ../development/scss/mixins/_bootstrap.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  /* line 106, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 111, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 668, ../development/scss/mixins/_bootstrap.scss */
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 668, ../development/scss/mixins/_bootstrap.scss */
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 668, ../development/scss/mixins/_bootstrap.scss */
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 668, ../development/scss/mixins/_bootstrap.scss */
  .hidden-lg {
    display: none !important;
  }
}
/* line 668, ../development/scss/mixins/_bootstrap.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 657, ../development/scss/mixins/_bootstrap.scss */
  .visible-print {
    display: block !important;
  }

  /* line 660, ../development/scss/mixins/_bootstrap.scss */
  table.visible-print {
    display: table;
  }

  /* line 661, ../development/scss/mixins/_bootstrap.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 663, ../development/scss/mixins/_bootstrap.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
/* line 150, ../development/scss/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}
@media print {
  /* line 150, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 157, ../development/scss/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}
@media print {
  /* line 157, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 164, ../development/scss/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 164, ../development/scss/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 668, ../development/scss/mixins/_bootstrap.scss */
  .hidden-print {
    display: none !important;
  }
}

/*!
 *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.1.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.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:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;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:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes 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);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-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);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.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:#fff}.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-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{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-square:before,.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-CRM: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-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"}
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.1.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: local("Source Sans Pro"), local("SourceSansPro-Regular"), url(https://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff) format("woff");
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local("Source Sans Pro Light"), local("SourceSansPro-Light"), url(https://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGNbE_oMaV8t2eFeISPpzbdE.woff) format("woff");
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 200;
  src: local("Source Sans Pro ExtraLight"), local("SourceSansPro-ExtraLight"), url(https://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGMa9awK0IKUjIWABZIchFI8.woff) format("woff");
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: local("Source Sans Pro Semibold"), local("SourceSansPro-Semibold"), url(https://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGJ6-ys_j0H4QL65VLqzI3wI.woff) format("woff");
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: local("Source Sans Pro Bold"), local("SourceSansPro-Bold"), url(https://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGFkQc6VGVFSmCnC_l7QZG60.woff) format("woff");
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 900;
  src: local("Source Sans Pro Black"), local("SourceSansPro-Black"), url(https://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGHiec-hVyr2k4iOzEQsW1iE.woff) format("woff");
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://themes.googleusercontent.com/static/fonts/opensans/v8/DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff) format("woff");
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"), url(https://themes.googleusercontent.com/static/fonts/opensans/v8/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format("woff");
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://themes.googleusercontent.com/static/fonts/opensans/v8/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff) format("woff");
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url(https://themes.googleusercontent.com/static/fonts/opensans/v8/EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff) format("woff");
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url(https://themes.googleusercontent.com/static/fonts/opensans/v8/PRmiXeptR36kaC0GEAetxh_xHqYgAV9Bl_ZQbYUxnQU.woff) format("woff");
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(https://fonts.gstatic.com/s/opensans/v9/xjAJXh38I15wypJXxuGMBobN6UDyHWBl620a-IRfuBk.woff) format("woff");
}

@font-face {
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  src: local("Great Vibes"), local("GreatVibes-Regular"), url(https://fonts.gstatic.com/s/greatvibes/v3/6q1c0ofG6NKsEhAc2eh-3YbN6UDyHWBl620a-IRfuBk.woff) format("woff");
}

@font-face {
  font-family: 'BebasNeue';
  src: url("../fonts/BebasNeue/BebasNeue-webfont.eot");
  src: url("../fonts/BebasNeue/BebasNeue-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeue/BebasNeue-webfont.woff") format("woff"), url("../fonts/BebasNeue/BebasNeue-webfont.ttf") format("truetype"), url("../fonts/BebasNeue/BebasNeue-webfont.svg#BebasNeue") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Droid Arabic Kufi';
  font-style: normal;
  font-weight: 400;
  src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Regular.eot);
  src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Regular.eot?#iefix) format("embedded-opentype"), url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Regular.woff2) format("woff2"), url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Regular.woff) format("woff"), url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Regular.ttf) format("truetype");
}

@font-face {
  font-family: 'Droid Arabic Kufi';
  font-style: normal;
  font-weight: 700;
  src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Bold.eot);
  src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Bold.eot?#iefix) format("embedded-opentype"), url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Bold.woff2) format("woff2"), url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Bold.woff) format("woff"), url(//themes.googleusercontent.com/static/fonts/earlyaccess/droidarabickufi/v3/DroidKufi-Bold.ttf) format("truetype");
}

.product-label span:before {
	content: none;
}
.product-label.product-label-special span, .product-label.sale-box span {
	background-image: url("../image/bg_sale.png");
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position-x: 0%;
	background-position-y: 6px;
	background-color: transparent;
	width: 45px;
	height: 46px;
}

.tab-nav {
	width: 100%;
}
/**
 * Web Application Prefix Apply For Making Owner Styles
 */
/**
 *   Blocks Layout Selectors 
 */
/**
 * Product Item Selectors
 */
/***********************************************************************/
/*
 * LAYOUT VARIABLES
 */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/*inline-block
============================================*/
/****/
/* RIGHT TO LEFT */
/* line 12, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances .icon-name {
  width: 70px;
  height: 70px;
  background: #e1e1e1;
  font-size: 30px;
  color: white;
  margin-right: 30px;
  vertical-align: top;
  line-height: 70px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .box-module-pavreassurances .icon-name {
  margin-left: 30px;
  margin-right: inherit;
}
/* line 21, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances .description {
  vertical-align: top;
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .box-module-pavreassurances .description {
  text-align: right;
}
/* line 24, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances .description p {
  color: #9c9c9c;
  font-weight: 300;
  font-style: italic;
  line-height: 20px;
}
/* line 30, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances .description h4 {
  color: #098EB2;
  font-size: 12px;
  line-height: 1.42857;
  padding-bottom: 15px;
}
/* line 37, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances h4, .box-module-pavreassurances p {
  margin: 0;
}
/* line 40, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances .reassurances-left {
  position: relative;
  padding: 20px 0;
  text-align: center;
}
/* line 45, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances .reassurances-left:hover .icon-name {
  color: #098EB2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
/* line 49, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances .reassurances-left:hover h4 {
  color: black;
}
/* line 54, ../development/scss/pavreassurance.scss */
.box-module-pavreassurances .arrow {
  cursor: pointer;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .box-module-pavreassurances .arrow {
  right: 0;
  left: auto;
}

/* line 63, ../development/scss/pavreassurance.scss */
.title_detail h4 {
  font-size: 30px;
  font-weight: 900;
  line-height: 50px;
  color: #7b0046;
}

/* line 69, ../development/scss/pavreassurance.scss */
.title_detail .icon-name {
  color: #7b0046;
  font-size: 170px;
  margin: 0 20px;
}

/* line 74, ../development/scss/pavreassurance.scss */
.title_detail p {
  color: #7b0046;
  font-size: 15px;
  margin: 25px 0 0;
}

/* line 79, ../development/scss/pavreassurance.scss */
.info {
  overflow: hidden;
}

/**
 * Web Application Prefix Apply For Making Owner Styles
 */
/**
 *   Blocks Layout Selectors 
 */
/**
 * Product Item Selectors
 */
/***********************************************************************/
/*
 * LAYOUT VARIABLES
 */
/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/*inline-block
============================================*/
/****/
/* RIGHT TO LEFT */
/* line 11, ../development/scss/pavtestimonial.scss */
.pavtestimonial {
  color: white;
}
/* line 13, ../development/scss/pavtestimonial.scss */
.pavtestimonial .inner {
  position: relative;
}
/* line 16, ../development/scss/pavtestimonial.scss */
.pavtestimonial .testimonial-content {
  height: 150px;
  overflow: hidden;
}
/* line 20, ../development/scss/pavtestimonial.scss */
.pavtestimonial .item {
  padding: 20px 0px 0;
}
/* line 23, ../development/scss/pavtestimonial.scss */
.pavtestimonial .description {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 24px;
  padding: 0;
  color: white;
  margin-right: 20px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .pavtestimonial .description {
  margin-left: 20px;
  margin-right: inherit;
}
/* line 32, ../development/scss/pavtestimonial.scss */
.pavtestimonial .t-avatar {
  float: left;
  margin-right: 20px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .pavtestimonial .t-avatar {
  float: right;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .pavtestimonial .t-avatar {
  margin-left: 20px;
  margin-right: inherit;
}
/* line 36, ../development/scss/pavtestimonial.scss */
.pavtestimonial .testimonial-meta {
  overflow: hidden;
}
/* line 39, ../development/scss/pavtestimonial.scss */
.pavtestimonial .profile {
  padding-top: 15px;
}
/* line 42, ../development/scss/pavtestimonial.scss */
.pavtestimonial .colorbox-t {
  display: none;
}
/* line 45, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-indicators {
  width: auto;
  right: 10px;
  padding: 0;
  top: 35px;
  left: 97%;
  margin-left: 0;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .pavtestimonial .carousel-indicators {
  left: 10px;
  right: auto;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .pavtestimonial .carousel-indicators {
  right: 97%;
  left: auto;
}
/* line 52, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-indicators .bullet {
  position: relative;
  background: none;
  border: 1px solid #00c1fc;
  display: block;
  margin: 10px;
  padding: 5px;
  z-index: 20;
}
/* line 60, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-indicators .bullet.active {
  background: white;
}
/* line 63, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-indicators .bullet:before {
  position: absolute;
  content: "";
  background: #867c64;
  width: 1px;
  height: 11px;
  top: 10px;
  right: 5px;
}
/* line 72, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-indicators .bullet:last-child:before {
  content: none;
}
/* line 79, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .item {
  -webkit-transition: 0.6s ease-in-out top;
  transition: 0.6s ease-in-out top;
}
/* line 85, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .item > img,
.pavtestimonial .carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
/* line 93, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .active,
.pavtestimonial .carousel-inner > .next,
.pavtestimonial .carousel-inner > .prev {
  display: block;
}
/* line 97, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .active {
  top: 0;
}
/* line 102, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .next,
.pavtestimonial .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 108, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .next {
  top: -100%;
}
/* line 111, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .prev {
  top: 100%;
}
/* line 115, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .next.left,
.pavtestimonial .carousel-inner > .prev.right {
  top: 0;
}
/* line 119, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .active.left {
  left: -100%;
}
/* line 122, ../development/scss/pavtestimonial.scss */
.pavtestimonial .carousel-inner > .active.right {
  left: 100%;
}

/******************************************************
 * @package Pav Opencart Theme Framework for Opencart 1.5.x
 * @version 3.0
 * @author http://www.pavothemes.com
 * @copyright	Copyright (C) May 2014 PavoThemes.com <@emai:pavothemes@gmail.com>.All rights reserved.
 * @license		GNU General Public License version 2
*******************************************************/
/**
 * Web Application Prefix Apply For Making Owner Styles
 */
/**
 *   Blocks Layout Selectors
 */
/**
 * Product Item Selectors
 */
/***********************************************************************/
/*
 * LAYOUT VARIABLES
 */
/**
* Transition-timing-function property@mixin
*/
/*background RGBA
============================================*/
/*inline-block
============================================*/
/****/
/* RIGHT TO LEFT */
/**
 * BASE CSS STYLES
 */
/* line 4, ../development/scss/app/_base.scss */
html {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}

/* line 10, ../development/scss/app/_base.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  text-transform: uppercase;
}

/* line 15, ../development/scss/app/_base.scss */
a:hover, a:focus {
  color: #098EB2;
  text-decoration: none;
}

/* line 21, ../development/scss/app/_base.scss */
label {
  text-transform: uppercase;
  color: #220013;
  font-size: 10px;
  margin-bottom: 10px;
  line-height: 16px;
}

/* line 28, ../development/scss/app/_base.scss */
.panel-heading {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

/* line 33, ../development/scss/app/_base.scss */
.lead {
  color: #220013;
}

/* line 36, ../development/scss/app/_base.scss */
.form-control {
  box-shadow: none;
}
/* line 38, ../development/scss/app/_base.scss */
.form-control:focus {
  box-shadow: none;
}

/* line 43, ../development/scss/app/_base.scss */
.btn {
  text-transform: uppercase;
}

/* line 46, ../development/scss/app/_base.scss */
.input-group-btn > .btn {
  line-height: 18px;
}

/* line 49, ../development/scss/app/_base.scss */
input {
  line-height: 24px;
  border: 1px solid #ebebeb;
}

/* added */
input[disabled] {
  cursor: no-drop;
  background-color: #f6f6f6;
}

/* line 53, ../development/scss/app/_base.scss */
.breadcrumb {
  margin: 0;
  padding: 30px 0;
}
/* line 56, ../development/scss/app/_base.scss */
.breadcrumb > li + li:before {
  font-family: "FontAwesome";
  padding: 0 10px;
  line-height: 24px;
}
/* line 61, ../development/scss/app/_base.scss */
.breadcrumb > li:last-child span {
  color: #098EB2;
}

/* line 65, ../development/scss/app/_base.scss */
address {
  font-style: italic;
}

/* line 68, ../development/scss/app/_base.scss */
abbr + *, abbr + * + * {
  color: white;
}

/* line 71, ../development/scss/app/_base.scss */
select {
  height: 36px;
  padding: 8px;
  border: 1px solid #ebebeb;
}

/* line 77, ../development/scss/app/_base.scss */
.tabs-group {
  border-top: 1px solid #ebebeb;
}
/* line 79, ../development/scss/app/_base.scss */
.tabs-group > ul {
  padding-top: 15px;
}
/* line 82, ../development/scss/app/_base.scss */
.tabs-group > .tab-content {
  padding-top: 20px;
}

/* line 87, ../development/scss/app/_base.scss */
.tabs-left > ul {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .tabs-left > ul {
  float: right;
}
/* line 90, ../development/scss/app/_base.scss */
.tabs-left > ul.nav-stacked > li > a {
  padding: 10px 32px 10px 0px;
}
/* line 349, ../development/scss/mixins/_app.scss */
.rtl .tabs-left > ul.nav-stacked > li > a {
  padding: 10px 0px 10px 32px;
}
/* line 93, ../development/scss/app/_base.scss */
.tabs-left > ul.nav-stacked > li.active:after {
  right: 0;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .tabs-left > ul.nav-stacked > li.active:after {
  left: 0;
  right: auto;
}
/* line 98, ../development/scss/app/_base.scss */
.tabs-left > .tab-content {
  border-left: 1px solid #ebebeb;
  padding-left: 30px;
  overflow: hidden;
  min-height: 100px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .tabs-left > .tab-content {
  border-right: 1px solid #ebebeb;
  border-left: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .tabs-left > .tab-content {
  padding-right: 30px;
  padding-left: inherit;
}
/* line 103, ../development/scss/app/_base.scss */
.tabs-left > .tab-content:hover {
  overflow: hidden;
}

/* line 109, ../development/scss/app/_base.scss */
.tabs-right > ul {
  float: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .tabs-right > ul {
  float: left;
}
/* line 112, ../development/scss/app/_base.scss */
.tabs-right > ul.nav-stacked > li > a {
  padding: 10px 0px 10px 32px;
}
/* line 349, ../development/scss/mixins/_app.scss */
.rtl .tabs-right > ul.nav-stacked > li > a {
  padding: 10px 32px 10px 0px;
}
/* line 115, ../development/scss/app/_base.scss */
.tabs-right > ul.nav-stacked > li.active:after {
  left: 0;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .tabs-right > ul.nav-stacked > li.active:after {
  right: 0;
  left: auto;
}
/* line 120, ../development/scss/app/_base.scss */
.tabs-right > .tab-content {
  border-right: 1px solid #ebebeb;
  padding-right: 30px;
  overflow: hidden;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .tabs-right > .tab-content {
  border-left: 1px solid #ebebeb;
  border-right: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .tabs-right > .tab-content {
  padding-left: 30px;
  padding-right: inherit;
}
/* line 124, ../development/scss/app/_base.scss */
.tabs-right > .tab-content:hover {
  overflow: hidden;
}

/* line 134, ../development/scss/app/_base.scss */
.nav > li > a {
  text-transform: uppercase;
}
/* line 139, ../development/scss/app/_base.scss */
.nav.nav-tabs {
  margin-bottom: 30px;
}
/* line 141, ../development/scss/app/_base.scss */
.nav.nav-tabs > li {
  transition: all 0.2s linear 0s;
}
/* line 143, ../development/scss/app/_base.scss */
.nav.nav-tabs > li.active > a:after {
  content: "";
  position: absolute;
  height: 3px;
  top: 0px;
  left: 0;
  width: 100%;
  background: #098EB2;
}
/* line 155, ../development/scss/app/_base.scss */
.nav.nav-stacked > li.active > a:after {
  content: none;
}
/* line 158, ../development/scss/app/_base.scss */
.nav.nav-stacked > li.active:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0px;
  background: #098EB2;
}

/* line 168, ../development/scss/app/_base.scss */
/* .navbar-nav > li > a {
  padding: 33px;
} */

/* line 171, ../development/scss/app/_base.scss */
/* .navbar-brand {
  text-transform: uppercase;
} */

a.navbar-brand {
    max-width: 80%;
}

/* line 174, ../development/scss/app/_base.scss */
/* .navbar-inverse {
  background-color: transparent;
} */

/* line 177, ../development/scss/app/_base.scss */
.carousel-control {
  background: white;
  color: #098EB2;
  font-size: 18px;
  width: 18px;
  height: 18px;
  line-height: 32px;
  opacity: 0.5;
  position: absolute;
  text-align: center;
  top: 28px;
  width: 32px;
  z-index: 10;
  top: 50%;
}
/* line 190, ../development/scss/app/_base.scss */
.carousel-control.left {
  left: -25px;
  background: none;
}
/* line 194, ../development/scss/app/_base.scss */
.carousel-control.right {
  right: -25px;
  background: none;
}
/* line 198, ../development/scss/app/_base.scss */
.carousel-control:hover, .carousel-control:focus {
  color: #098EB2;
}

/* line 206, ../development/scss/app/_base.scss */
ul.bullet li {
  padding: 15px 0-15px 0;
  position: relative;
}
/* line 209, ../development/scss/app/_base.scss */
ul.bullet li a {
  padding-left: 15px 0;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl ul.bullet li a {
  padding-right: 15px 0;
  padding-left: inherit;
}
/* line 211, ../development/scss/app/_base.scss */
ul.bullet li a:before {
  display: block;
  content: "\f064";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 6px;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl ul.bullet li a:before {
  right: 0;
  left: auto;
}
/* line 220, ../development/scss/app/_base.scss */
ul.bullet li a:hover:before {
  color: #098EB2;
}

/* line 230, ../development/scss/app/_base.scss */
.pagination > li > a {
  font-size: 14px;
  padding: 6px 15px;
}
/* line 236, ../development/scss/app/_base.scss */
.pagination .active > a {
  font-weight: 700;
}
/* line 243, ../development/scss/app/_base.scss */
.pagination .results {
  line-height: 40px;
  font-weight: 300;
  font-style: italic;
  font-size: 10px;
}
/* line 249, ../development/scss/app/_base.scss */
.pagination a, .pagination b {
  font-size: 14px;
  padding: 6px 15px;
}
/* line 253, ../development/scss/app/_base.scss */
.pagination b {
  color: #098EB2;
}

/* line 558, ../development/scss/mixins/_bootstrap.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 18px;
  font-size: 18px;
}
/* line 564, ../development/scss/mixins/_bootstrap.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
/* line 570, ../development/scss/mixins/_bootstrap.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 558, ../development/scss/mixins/_bootstrap.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
/* line 564, ../development/scss/mixins/_bootstrap.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
/* line 570, ../development/scss/mixins/_bootstrap.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 269, ../development/scss/app/_base.scss */
.caret {
  margin-left: 5px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .caret {
  margin-right: 5px;
  margin-left: inherit;
}

.bg-light {
    background-color: #ffffff!important;
}

/* line 272, ../development/scss/app/_base.scss */
/* .navbar-collapse {
  padding: 0;
} */

/* line 275, ../development/scss/app/_base.scss */
/* .navbar-toggle {
  padding: 7px 10px;
} */
/* line 277, ../development/scss/app/_base.scss */
/* .navbar-toggle .fa {
  font-size: 16px;
  color: black;
} */

/* tab style */
/* line 284, ../development/scss/app/_base.scss */
.htabs a {
  text-transform: uppercase;
  font-weight: 700;
}

/* line 291, ../development/scss/app/_base.scss */
.dropdown-menu {
  border-top: 3px solid #098EB2;
  text-align: left;
  left: 0;
  z-index: 10000;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .dropdown-menu {
  text-align: right;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .dropdown-menu {
  right: 0;
  left: auto;
}

/* links style */
/* line 299, ../development/scss/app/_base.scss */
ul.links {
  margin: 0;
  padding: 0;
}
/* line 302, ../development/scss/app/_base.scss */
ul.links li {
  display: block;
  line-height: 30px;
}
/* line 305, ../development/scss/app/_base.scss */
ul.links li a {
  margin: 0 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
/* line 308, ../development/scss/app/_base.scss */
ul.links li a:hover {
  color: #098EB2;
}
/* line 312, ../development/scss/app/_base.scss */
ul.links li .fa, ul.links li .icon {
  margin-right: 10px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl ul.links li .fa, .rtl ul.links li .icon {
  margin-left: 10px;
  margin-right: inherit;
}
/* line 318, ../development/scss/app/_base.scss */
ul.list li {
  list-style: none;
  padding: 6px 0;
}
/* line 324, ../development/scss/app/_base.scss */
ul.inline li {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl ul.inline li {
  float: right;
}

/* line 330, ../development/scss/app/_base.scss */
.hasvariant ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 334, ../development/scss/app/_base.scss */
.hasvariant ul > li {
  list-style: none;
  font-weight: 300;
  font-style: italic;
}

/* line 342, ../development/scss/app/_base.scss */
.tree-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
/* line 348, ../development/scss/app/_base.scss */
.tree-menu > ul > li {
  width: 100%;
  height: auto;
  position: relative;
}
/* line 351, ../development/scss/app/_base.scss */
.tree-menu > ul > li .caret, .tree-menu > ul > li .head i {
  position: absolute;
  right: 0px;
  top: 0;
  font-size: 6px;
  cursor: pointer;
  width: 20px;
  height: 100%;
  text-align: center;
  color: #42323b;
  line-height: 40px;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .tree-menu > ul > li .caret, .rtl .tree-menu > ul > li .head i {
  left: 0px;
  right: auto;
}
/* line 362, ../development/scss/app/_base.scss */
.tree-menu > ul > li:last-child a {
  border: none;
}
/* line 365, ../development/scss/app/_base.scss */
.tree-menu > ul > li > span {
  text-transform: uppercase;
  color: #222222;
  font-size: 10px;
  line-height: 40px;
}
/* line 374, ../development/scss/app/_base.scss */
.tree-menu > ul > li > a {
  display: block;
  color: #222222;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 10px;
}
/* line 380, ../development/scss/app/_base.scss */
.tree-menu > ul > li > a:hover, .tree-menu > ul > li > a:focus {
  color: #098EB2;
}
/* line 386, ../development/scss/app/_base.scss */
.tree-menu > ul > li a.active {
  color: #098EB2;
}
/* line 388, ../development/scss/app/_base.scss */
.tree-menu > ul > li a.active + ul {
  display: block;
  padding: 0 0 10px 10px;
}
/* line 349, ../development/scss/mixins/_app.scss */
.rtl .tree-menu > ul > li a.active + ul {
  padding: 0 10px 10px 0;
}
/* line 393, ../development/scss/app/_base.scss */
.tree-menu > ul > li ul li {
  padding-left: 20px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .tree-menu > ul > li ul li {
  padding-right: 20px;
  padding-left: inherit;
}

/*
 * Spinner
 */
.btn-spinner {
    width: 17px;
    margin-left: 10px;
    float: right;
    right: 0px;
    position: static;
}

/* line 395, ../development/scss/app/_base.scss */
.tree-menu > ul > li ul li > a {
  text-transform: uppercase;
  display: block;
  padding: 8px 0;
  color: black;
  font-size: 10px;
}
/* line 401, ../development/scss/app/_base.scss */
.tree-menu > ul > li ul li > a.active {
  font-weight: bold;
  color: #098EB2;
}

/* line 411, ../development/scss/app/_base.scss */
table > thead {
  font-weight: bold;
  color: black;
  text-transform: uppercase;
}

/* line 417, ../development/scss/app/_base.scss */
dl {
  color: black;
  text-transform: uppercase;
}

/* line 421, ../development/scss/app/_base.scss */
.dl-horizontal > * {
  line-height: 40px;
}

/* line 426, ../development/scss/app/_base.scss */
.radio .highlight input {
  margin-left: 0;
  margin-top: 0;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .radio .highlight input {
  margin-right: 0;
  margin-left: inherit;
}

/* line 432, ../development/scss/app/_base.scss */
.video-responsive {
  height: 0;
  padding-top: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
/* line 438, ../development/scss/app/_base.scss */
.video-responsive embed, .video-responsive iframe, .video-responsive object, .video-responsive video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border: none;
}

/* line 449, ../development/scss/app/_base.scss */
.audio-responsive iframe {
  width: 100%;
  height: 126px;
}

/* line 455, ../development/scss/app/_base.scss */
.media > .pull-left {
  margin-right: 10px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .media > .pull-left {
  margin-left: 10px;
  margin-right: inherit;
}
/* line 458, ../development/scss/app/_base.scss */
.media > .pull-right {
  margin-left: 10px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .media > .pull-right {
  margin-right: 10px;
  margin-left: inherit;
}

/* line 4, ../development/scss/opencart/_typo.scss */
#colorbox {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 11, ../development/scss/opencart/_typo.scss */
.no-padding {
  padding: 0!important;
}

/* line 12, ../development/scss/opencart/_typo.scss */
.padding {
  padding-top: 50px;
}

/* line 13, ../development/scss/opencart/_typo.scss */
.padding-inline {
  padding: 15px 0;
}

/* line 14, ../development/scss/opencart/_typo.scss */
.required {
  color: #FF0000;
  font-weight: normal;
  font-size: 11px;
}

/* line 20, ../development/scss/opencart/_typo.scss */
.success, .warning, .attention, .information {
  padding: 10px 10px 10px 33px;
  margin: 17px 0;
  color: #555555;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 349, ../development/scss/mixins/_app.scss */
.rtl .success, .rtl .warning, .rtl .attention, .rtl .information {
  padding: 10px 33px 10px 10px;
}

/* line 26, ../development/scss/opencart/_typo.scss */
.success .close, .warning .close, .attention .close, .information .close {
  float: right;
  padding-top: 4px;
  padding-right: 4px;
  cursor: pointer;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .success .close, .rtl .warning .close, .rtl .attention .close, .rtl .information .close {
  float: left;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .success .close, .rtl .warning .close, .rtl .attention .close, .rtl .information .close {
  padding-left: 4px;
  padding-right: inherit;
}

/* line 32, ../development/scss/opencart/_typo.scss */
.attention {
  background: #fff5cc url("../image/attention.png") no-repeat;
  background-position: left 10px center;
  border: 1px solid #F2DD8C;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 465, ../development/scss/mixins/_app.scss */
.rtl .attention {
  background-position: right 10px center;
}

/* line 38, ../development/scss/opencart/_typo.scss */
.warning {
  background: #ffd1d1 url("../img/warning.png") no-repeat;
  background-position: left 10px center;
  border: 1px solid #F8ACAC;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 465, ../development/scss/mixins/_app.scss */
.rtl .warning {
  background-position: right 10px center;
}

/* line 44, ../development/scss/opencart/_typo.scss */
.success {
  background: #eaf7d9 url("../image/success.png") no-repeat;
  background-position: left 10px center;
  border: 1px solid #BBDF8D;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 465, ../development/scss/mixins/_app.scss */
.rtl .success {
  background-position: right 10px center;
}

/* line 50, ../development/scss/opencart/_typo.scss */
.valid {
  position: absolute;
  width: 100%;
}

/* line 54, ../development/scss/opencart/_typo.scss */
.help {
  color: #999;
  font-size: 10px;
  font-weight: normal;
  display: block;
}

/* line 60, ../development/scss/opencart/_typo.scss */
.error {
  color: #FF0000;
}

/* line 64, ../development/scss/opencart/_typo.scss */
.welcome {
  color: #636E75;
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: normal;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
}

/* line 72, ../development/scss/opencart/_typo.scss */
.border-box {
  border: 1px solid #ebebeb;
}

/* line 1, ../development/scss/app/_form.scss */
.btn-outline-inverse {
  color: white !important;
  background-color: #098EB2;
  border-color: #098EB2;
}
/* line 220, ../development/scss/mixins/_app.scss */
.btn-outline-inverse:hover, .btn-outline-inverse:focus, .btn-outline-inverse:active, .btn-outline-inverse.active {
  color: white !important;
  background-color: black;
  border-color: black;
}
/* line 225, ../development/scss/mixins/_app.scss */
.open .btn-outline-inverse.dropdown-toggle {
  color: white !important;
  background-color: black;
  border-color: black;
}
/* line 231, ../development/scss/mixins/_app.scss */
.btn-outline-inverse:active, .btn-outline-inverse.active {
  background-image: none;
}
/* line 234, ../development/scss/mixins/_app.scss */
.open .btn-outline-inverse.dropdown-toggle {
  background-image: none;
}
/* line 244, ../development/scss/mixins/_app.scss */
.btn-outline-inverse.disabled, .btn-outline-inverse.disabled:hover, .btn-outline-inverse.disabled:focus, .btn-outline-inverse.disabled:active, .btn-outline-inverse.disabled.active, .btn-outline-inverse[disabled], .btn-outline-inverse[disabled]:hover, .btn-outline-inverse[disabled]:focus, .btn-outline-inverse[disabled]:active, .btn-outline-inverse[disabled].active, fieldset[disabled] .btn-outline-inverse, fieldset[disabled] .btn-outline-inverse:hover, fieldset[disabled] .btn-outline-inverse:focus, fieldset[disabled] .btn-outline-inverse:active, fieldset[disabled] .btn-outline-inverse.active {
  background-color: #098EB2;
  border-color: #098EB2;
}
/* line 250, ../development/scss/mixins/_app.scss */
.btn-outline-inverse .badge {
  color: #098EB2;
  background-color: white;
}

/* line 5, ../development/scss/app/_form.scss */
.btn-outline {
  color: #098EB2 !important;
  background-color: white;
  border-color: #ebebeb;
}
/* line 220, ../development/scss/mixins/_app.scss */
.btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active {
  color: white !important;
  background-color: #098EB2;
  border-color: #098EB2;
}
/* line 225, ../development/scss/mixins/_app.scss */
.open .btn-outline.dropdown-toggle {
  color: white !important;
  background-color: #098EB2;
  border-color: #098EB2;
}
/* line 231, ../development/scss/mixins/_app.scss */
.btn-outline:active, .btn-outline.active {
  background-image: none;
}
/* line 234, ../development/scss/mixins/_app.scss */
.open .btn-outline.dropdown-toggle {
  background-image: none;
}
/* line 244, ../development/scss/mixins/_app.scss */
.btn-outline.disabled, .btn-outline.disabled:hover, .btn-outline.disabled:focus, .btn-outline.disabled:active, .btn-outline.disabled.active, .btn-outline[disabled], .btn-outline[disabled]:hover, .btn-outline[disabled]:focus, .btn-outline[disabled]:active, .btn-outline[disabled].active, fieldset[disabled] .btn-outline, fieldset[disabled] .btn-outline:hover, fieldset[disabled] .btn-outline:focus, fieldset[disabled] .btn-outline:active, fieldset[disabled] .btn-outline.active {
  background-color: white;
  border-color: #ebebeb;
}
/* line 250, ../development/scss/mixins/_app.scss */
.btn-outline .badge {
  color: white;
  background-color: #098EB2;
}

/* line 9, ../development/scss/app/_form.scss */
.btn-inverse {
  color: white !important;
  background-color: black;
  border-color: black;
}
/* line 220, ../development/scss/mixins/_app.scss */
.btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active {
  color: white !important;
  background-color: #098EB2;
  border-color: #098EB2;
}
/* line 225, ../development/scss/mixins/_app.scss */
.open .btn-inverse.dropdown-toggle {
  color: white !important;
  background-color: #098EB2;
  border-color: #098EB2;
}
/* line 231, ../development/scss/mixins/_app.scss */
.btn-inverse:active, .btn-inverse.active {
  background-image: none;
}
/* line 234, ../development/scss/mixins/_app.scss */
.open .btn-inverse.dropdown-toggle {
  background-image: none;
}
/* line 244, ../development/scss/mixins/_app.scss */
.btn-inverse.disabled, .btn-inverse.disabled:hover, .btn-inverse.disabled:focus, .btn-inverse.disabled:active, .btn-inverse.disabled.active, .btn-inverse[disabled], .btn-inverse[disabled]:hover, .btn-inverse[disabled]:focus, .btn-inverse[disabled]:active, .btn-inverse[disabled].active, fieldset[disabled] .btn-inverse, fieldset[disabled] .btn-inverse:hover, fieldset[disabled] .btn-inverse:focus, fieldset[disabled] .btn-inverse:active, fieldset[disabled] .btn-inverse.active {
  background-color: black;
  border-color: black;
}
/* line 250, ../development/scss/mixins/_app.scss */
.btn-inverse .badge {
  color: black;
  background-color: white;
}

/* line 13, ../development/scss/app/_form.scss */
.btn-variant {
  padding: 8px 20px;
  font-size: 12px;
  line-height: 1.42857;
  border-radius: 0px;
}

/******************************************************
 * $package Pav Opencart Theme Framework for Opencart 1.5.x
 * $version 1.1
 * $author http://www.ptsothemes.com
 * $copyright   Copyright (C) Augus 2013 PavoThemes.com <$emai:ptsothemes$gmail.com>.All rights reserved.
 * $license     GNU General Public License version 2
 *******************************************************/
/* line 9, ../development/scss/app/_layout.scss */
body #page {
  overflow: hidden;
}
/* line 12, ../development/scss/app/_layout.scss */
body.layout-boxed-md {
  background: url("../image/pattern/pattern19.png");
}
/* line 14, ../development/scss/app/_layout.scss */
body.layout-boxed-md #page {
  max-width: 990px;
  -webkit-box-shadow: 0 0 5px white;
  box-shadow: 0 0 5px white;
  margin: 0 auto;
  background: white;
}
/* line 22, ../development/scss/app/_layout.scss */
body.layout-boxed-lg {
  background: url("../image/pattern/pattern18.png");
}
/* line 24, ../development/scss/app/_layout.scss */
body.layout-boxed-lg #page {
  max-width: 1220px;
  -webkit-box-shadow: 0 0 5px white;
  box-shadow: 0 0 5px white;
  margin: 0 auto;
  background: white;
}

/*
* HEADER
*/
/* Topbar */
/* line 38, ../development/scss/app/_layout.scss */
#topbar {
  padding: 15px 0 15px;
  min-height: 55px;
  font-size: 13px;
  background: #ffffff;
  color: #333333;
}
/* line 281, ../development/scss/mixins/_app.scss */
#topbar a {
  color: none;
}
/* line 283, ../development/scss/mixins/_app.scss */
#topbar a:hover {
  color: none;
}
/* line 43, ../development/scss/app/_layout.scss */
#topbar ul li {
  font-size: 11px;
}

/* Header-menu */
/* line 49, ../development/scss/app/_layout.scss */
#header-main {
  background-color: white;
  color: #959595;
}
/* line 52, ../development/scss/app/_layout.scss */
#header-main > * {
  position: relative;
}
/* line 55, ../development/scss/app/_layout.scss */
#header-main .inner {
  padding: 20px 0;
  vertical-align: middle;
  display: table-cell;
}
/* line 59, ../development/scss/app/_layout.scss */
#header-main .inner > * {
  vertical-align: middle;
  margin: 0;
}

/* line 65, ../development/scss/app/_layout.scss */
.header-content {
  display: table;
  width: 100%;
  position: relative;
}

/* line 70, ../development/scss/app/_layout.scss */
.header-wrap {
  min-height: 90px;
  margin: 0;
}

/*
* MASSHEAD
*/
/* line 78, ../development/scss/app/_layout.scss */
#pav-masshead {
  background-color: none;
}
/* line 80, ../development/scss/app/_layout.scss */
#pav-masshead .inner {
  background: none;
  color: #098EB2;
}
/* line 281, ../development/scss/mixins/_app.scss */
#pav-masshead .inner a {
  color: #098EB2;
}
/* line 283, ../development/scss/mixins/_app.scss */
#pav-masshead .inner a:hover {
  color: #950055;
}

/*
* NAVIGATION
*/
/*
* SLIDESHOW
*/
/*
* SHOWCASE
*/
/*
* PROMOTION
*/
/* line 106, ../development/scss/app/_layout.scss */
#pavo-promotion {
  background: url("../image/bg_promotion.jpg");
  margin: 5px 0 20px;
}

/*
* MAIN CONTENT
*/
/* line 120, ../development/scss/app/_layout.scss */
.content-bottom {
  padding-top: 30px;
}

/*
/* MASS TOP
*/
/* FOOTER */
/* line 136, ../development/scss/app/_layout.scss */
.footer-top .inner {
  background: none;
  color: none;
}
/* line 281, ../development/scss/mixins/_app.scss */
.footer-top .inner a {
  color: none;
}
/* line 283, ../development/scss/mixins/_app.scss */
.footer-top .inner a:hover {
  color: none;
}

/* line 140, ../development/scss/app/_layout.scss */
.footer-center {
    background: #ffffff;
}
/* line 142, ../development/scss/app/_layout.scss */
.footer-center .inner {
  padding: 35px 0;
  background: #ffffff;
  color: #333333;
}
/* line 281, ../development/scss/mixins/_app.scss */
.footer-center .inner a {
  color: #0980B2;
}
/* line 283, ../development/scss/mixins/_app.scss */
.footer-center .inner a:hover {
  color: #098EB2;
}
/* line 146, ../development/scss/app/_layout.scss */
.footer-center ul {
  padding: 0;
  margin: 0;
}

/* POWER BY */
/* line 157, ../development/scss/app/_layout.scss */
#powered {
  background: black;
}
/* line 159, ../development/scss/app/_layout.scss */
#powered .inner {
  padding: 30px 0 60px;
  background: black;
  overflow: hidden;
}
/* line 164, ../development/scss/app/_layout.scss */
#powered .copyright {
  text-align: left;
  line-height: 20px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #powered .copyright {
  text-align: right;
}
/* line 168, ../development/scss/app/_layout.scss */
#powered a {
  color: #098EB2;
}

/* SIDEBAR */
/* line 174, ../development/scss/app/_layout.scss */
#oc-column-right {
  padding-left: 60px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl #oc-column-right {
  padding-right: 60px;
  padding-left: inherit;
}
/* line 176, ../development/scss/app/_layout.scss */
#oc-column-right > * {
  padding-left: 30px;
  border-left: 1px solid #e8e8e8;
  -moz-box-shadow: -10px 0 10px -13px #e8e8e8;
  -webkit-box-shadow: -10px 0 10px -13px #e8e8e8;
  box-shadow: -10px 0 10px -13px #e8e8e8;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl #oc-column-right > * {
  padding-right: 30px;
  padding-left: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl #oc-column-right > * {
  border-right: 1px solid #e8e8e8;
  border-left: inherit;
}
/* line 505, ../development/scss/mixins/_app.scss */
.rtl #oc-column-right > * {
  -moz-box-shadow: 10px 0 10px -13px #e8e8e8;
  -webkit-box-shadow: 10px 0 10px -13px #e8e8e8;
  box-shadow: 10px 0 10px -13px #e8e8e8;
}

/* line 182, ../development/scss/app/_layout.scss */
#oc-column-left {
  padding-right: 60px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl #oc-column-left {
  padding-left: 60px;
  padding-right: inherit;
}
/* line 184, ../development/scss/app/_layout.scss */
#oc-column-left > * {
  padding-right: 30px;
  border-right: 1px solid #e8e8e8;
  -moz-box-shadow: 10px 0 10px -13px #e8e8e8;
  -webkit-box-shadow: 10px 0 10px -13px #e8e8e8;
  box-shadow: 10px 0 10px -13px #e8e8e8;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl #oc-column-left > * {
  padding-left: 30px;
  padding-right: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl #oc-column-left > * {
  border-left: 1px solid #e8e8e8;
  border-right: inherit;
}
/* line 505, ../development/scss/mixins/_app.scss */
.rtl #oc-column-left > * {
  -moz-box-shadow: -10px 0 10px -13px #e8e8e8;
  -webkit-box-shadow: -10px 0 10px -13px #e8e8e8;
  box-shadow: -10px 0 10px -13px #e8e8e8;
}

/* BLOCK */
/* line 3, ../development/scss/app/_block.scss */
.box {
  padding: 15px 0;
  position: relative;
  background: none;
}

/* line 9, ../development/scss/app/_block.scss */
.box-heading {
  text-align: center;
  font-size: 20px;
  color: #42323b;
  text-transform: uppercase;
  margin: 5px 0px;
  position: relative;
}
/* line 16, ../development/scss/app/_block.scss */
.box-heading:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ebebeb;
  position: absolute;
  left: 0px;
  top: 50%;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .box-heading:before {
  right: 0px;
  left: auto;
}
/* line 25, ../development/scss/app/_block.scss */
.box-heading > * {
  background: white;
  position: relative;
  padding: 0px 20px;
  font-weight: 300;
  line-height: 30px;
}

/* line 34, ../development/scss/app/_block.scss */
.box-content {
  padding: 15px 0;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.box-content:before, .box-content:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.box-content:after {
  clear: both;
}

/*
 * BLOCK STYLE layout
 */
/* BLOCK style in main content */
/* line 47, ../development/scss/app/_block.scss */
#pavo-showcase .box-heading {
  display: none;
}

/* line 53, ../development/scss/app/_block.scss */
#pavo-promotion .box {
  background: none;
  margin: 0;
}
/* line 57, ../development/scss/app/_block.scss */
#pavo-promotion .box-heading {
  display: none;
}
/* line 60, ../development/scss/app/_block.scss */
#pavo-promotion .box-content {
  padding-bottom: 15px 0;
}

/* BLOCK style in footer */
/* line 70, ../development/scss/app/_block.scss */
.footer-top .box {
  margin: 30px 0 50px 0;
}

/* line 76, ../development/scss/app/_block.scss */
.footer-center .box {
  background: none;
}
/* line 78, ../development/scss/app/_block.scss */
.footer-center .box .box-heading {
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .footer-center .box .box-heading {
  text-align: right;
}
/* line 81, ../development/scss/app/_block.scss */
.footer-center .box .box-heading:before {
  background: #098EB2;
  top: 100%;
}
/* line 85, ../development/scss/app/_block.scss */
.footer-center .box .box-heading > span {
  background: none;
  color: #098EB2;
  font-size: 12px;
  font-weight: bold;
  padding: 0;
  line-height: 40px;
}
/* line 94, ../development/scss/app/_block.scss */
.footer-center .box .box-content {
  line-height: 24px;
}
/* line 96, ../development/scss/app/_block.scss */
.footer-center .box .box-content h5 {
  margin: 0;
  padding: 0;
}
/* line 99, ../development/scss/app/_block.scss */
.footer-center .box .box-content h5 > a {
  color: #098EB2;
}
/* line 103, ../development/scss/app/_block.scss */
.footer-center .box .box-content .fa {
  font-size: 18px;
  color: #098EB2;
}

/*BLOCK style in MASSBOTTOM*/
/* BLOCK style in SIDEBAR */
/* line 119, ../development/scss/app/_block.scss */
.sidebar .box {
  margin: 0px;
  padding: 20px 0px;
  border-bottom: 1px solid #e8e8e8;
}
/* line 124, ../development/scss/app/_block.scss */
.sidebar .box-heading {
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  line-height: 40px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .sidebar .box-heading {
  text-align: right;
}
/* line 129, ../development/scss/app/_block.scss */
.sidebar .box-heading > * {
  padding: 0px;
}
/* line 132, ../development/scss/app/_block.scss */
.sidebar .box-heading:before {
  background: none;
}
/* line 136, ../development/scss/app/_block.scss */
.sidebar .box-content {
  padding: 0px;
}

/* line 142, ../development/scss/app/_block.scss */
.box-default {
  border-color: #dddddd;
}
/* line 262, ../development/scss/mixins/_app.scss */
.box-default .box-heading {
  color: #222222;
  background-color: whitesmoke;
  border-color: #dddddd;
}
/* line 266, ../development/scss/mixins/_app.scss */
.box-default .box-heading + .box-collapse .box-content {
  border-top-color: #dddddd;
}
/* line 271, ../development/scss/mixins/_app.scss */
.box-default > .box-footer + .box-collapse .box-body {
  border-bottom-color: #dddddd;
}

/* line 145, ../development/scss/app/_block.scss */
.box-primary {
  border-color: #428bca;
}
/* line 262, ../development/scss/mixins/_app.scss */
.box-primary .box-heading {
  color: white;
  background-color: #428bca;
  border-color: #428bca;
}
/* line 266, ../development/scss/mixins/_app.scss */
.box-primary .box-heading + .box-collapse .box-content {
  border-top-color: #428bca;
}
/* line 271, ../development/scss/mixins/_app.scss */
.box-primary > .box-footer + .box-collapse .box-body {
  border-bottom-color: #428bca;
}

/* line 148, ../development/scss/app/_block.scss */
.box-success {
  border-color: #d6e9c6;
}
/* line 262, ../development/scss/mixins/_app.scss */
.box-success .box-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 266, ../development/scss/mixins/_app.scss */
.box-success .box-heading + .box-collapse .box-content {
  border-top-color: #d6e9c6;
}
/* line 271, ../development/scss/mixins/_app.scss */
.box-success > .box-footer + .box-collapse .box-body {
  border-bottom-color: #d6e9c6;
}

/* line 151, ../development/scss/app/_block.scss */
.box-info {
  border-color: #bce8f1;
}
/* line 262, ../development/scss/mixins/_app.scss */
.box-info .box-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 266, ../development/scss/mixins/_app.scss */
.box-info .box-heading + .box-collapse .box-content {
  border-top-color: #bce8f1;
}
/* line 271, ../development/scss/mixins/_app.scss */
.box-info > .box-footer + .box-collapse .box-body {
  border-bottom-color: #bce8f1;
}

/* line 154, ../development/scss/app/_block.scss */
.box-warning {
  border-color: #faebcc;
}
/* line 262, ../development/scss/mixins/_app.scss */
.box-warning .box-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
/* line 266, ../development/scss/mixins/_app.scss */
.box-warning .box-heading + .box-collapse .box-content {
  border-top-color: #faebcc;
}
/* line 271, ../development/scss/mixins/_app.scss */
.box-warning > .box-footer + .box-collapse .box-body {
  border-bottom-color: #faebcc;
}

/* line 157, ../development/scss/app/_block.scss */
.box-danger {
  border-color: #ebccd1;
}
/* line 262, ../development/scss/mixins/_app.scss */
.box-danger .box-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/* line 266, ../development/scss/mixins/_app.scss */
.box-danger .box-heading + .box-collapse .box-content {
  border-top-color: #ebccd1;
}
/* line 271, ../development/scss/mixins/_app.scss */
.box-danger > .box-footer + .box-collapse .box-body {
  border-bottom-color: #ebccd1;
}

/* line 161, ../development/scss/app/_block.scss */
.box-highlighted {
  border-top: none;
}

/* line 181, ../development/scss/app/_block.scss */
.box-highlights .heading-image {
  display: none;
}

/* block inline style */
/* line 188, ../development/scss/app/_block.scss */
.box-inline > * {
  display: inline-block;
}
/* line 190, ../development/scss/app/_block.scss */
.box-inline > * .active a {
  padding: 0;
  font-weight: bold;
  color: black !important;
}

/* line 3, ../development/scss/app/_product.scss */
.products-block {
  position: relative;
  background-color: none;
  margin-top: 15px;
}

/* line 9, ../development/scss/app/_product.scss */
.products-row {
  position: relative;
}

/* line 16, ../development/scss/app/_product.scss */
.product-block {
  /*name product*/
}
/* line 18, ../development/scss/app/_product.scss */
.product-block .name {
  float: left;
  display: block;
  line-height: 20px;
  width: 75%;
  font-size: 12px;
  margin: 0;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-block .name {
  float: right;
}
/* line 25, ../development/scss/app/_product.scss */
.product-block .name a {
  color: #222222;
}
/* line 30, ../development/scss/app/_product.scss */
.product-block .rating, .product-block .norating {
  width: 25%;
  display: block;
  float: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-block .rating, .rtl .product-block .norating {
  float: left;
}
/* line 36, ../development/scss/app/_product.scss */
.product-block .description {
  display: none;
  font-weight: 300;
  font-style: italic;
  padding: 20px 0;
}

/* line 44, ../development/scss/app/_product.scss */
.product-meta {
  padding: 15px 25px;
  text-align: left;
  border: 1px solid #ebebeb;
  position: relative;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-meta {
  text-align: right;
}

/* line 51, ../development/scss/app/_product.scss */
.action {
  position: relative;
}
/* line 53, ../development/scss/app/_product.scss */
.action > * {
  margin-right: 5px;
}

/* line 59, ../development/scss/app/_product.scss */
.product-label {
  color: white;
  font-weight: 700;
  text-align: center;
  z-index: 3;
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
  left: 20px;
  top: 20px;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .product-label {
  right: 20px;
  left: auto;
}
/* line 69, ../development/scss/app/_product.scss */
.product-label span {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: block;
  line-height: 40px;
  background-color: #0096a8;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.product-label span[href]:hover, .product-label span[href]:focus {
  background-color: #006875;
}
/* line 77, ../development/scss/app/_product.scss */
.product-label.product-label-new, .product-label.new-box {
  background-color: #d9534f;
  top: 2px;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.product-label.product-label-new[href]:hover, .product-label.product-label-new[href]:focus, .product-label.new-box[href]:hover, .product-label.new-box[href]:focus {
  background-color: #c9302c;
}
/* line 81, ../development/scss/app/_product.scss */
.product-label.sale-percent-box {
  background-color: #0096a8;
  right: 0;
  left: inherit;
  bottom: 0;
}
/* line 604, ../development/scss/mixins/_bootstrap.scss */
.product-label.sale-percent-box[href]:hover, .product-label.sale-percent-box[href]:focus {
  background-color: #006875;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .product-label.sale-percent-box {
  left: 0;
  right: auto;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .product-label.sale-percent-box {
  right: inherit;
  left: auto;
}

/* line 90, ../development/scss/app/_product.scss */
.price {
  line-height: 30px;
  padding: 5px 0 0px;
  color: #098EB2;
}

/* line 95, ../development/scss/app/_product.scss */
.price-new, .special-price, .price-tax {
  font-size: 18px;
  color: #098EB2;
}

/* line 99, ../development/scss/app/_product.scss */
.price-old {
  font-style: italic;
  text-decoration: line-through;
  padding: 0 5px;
  color: #959595;
}

/* line 105, ../development/scss/app/_product.scss */
.price-gruop {
 color: #098EB2;
 font-size: 25px;
 font-weight: bolder;
}

/* sidebar */
/* line 3, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .products-block {
  padding-top: 7.5px;
}
/* line 5, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .products-block .name {
  width: 100%;
}
/* line 12, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .product-col {
  width: 100%;
}
/* line 15, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .product-block {
  text-align: left;
  margin-bottom: 20px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .sidebar .product-block {
  text-align: right;
}
/* line 18, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .product-block .action, .sidebar .product-block .pav-colorbox, .sidebar .product-block .colorbox, .sidebar .product-block .image-gallery {
  display: none;
}
/* line 22, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .product-block:hover .right {
  top: 0;
  visibility: hidden;
}
/* line 28, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .image {
  float: left;
  width: 40%;
  margin-right: 5%;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .sidebar .image {
  float: right;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .sidebar .image {
  margin-left: 5%;
  margin-right: inherit;
}
/* line 32, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .image .hover-image {
  display: none;
}
/* line 36, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .product-meta {
  width: 55%;
  float: left;
  border: none;
  padding: 0;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .sidebar .product-meta {
  float: right;
}
/* line 42, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .price {
  line-height: 20px;
}
/* line 46, ../development/scss/opencart/_opencart-modules.scss */
.sidebar .rating, .sidebar .norating, .sidebar .product-label {
  display: none;
}

/* Language */
/* line 52, ../development/scss/opencart/_opencart-modules.scss */
.box-language span {
  vertical-align: middle;
}
/* line 54, ../development/scss/opencart/_opencart-modules.scss */
.box-language span:hover {
  color: #098EB2;
}

/* line 60, ../development/scss/opencart/_opencart-modules.scss */
.box-currency label {
  display: block;
}
/* line 63, ../development/scss/opencart/_opencart-modules.scss */
.box-currency a {
  line-height: 40px;
  border: 1px solid #dbdbdb;
  padding: 4px 8px;
  cursor: pointer;
  color: #098EB2;
}
/* line 69, ../development/scss/opencart/_opencart-modules.scss */
.box-currency a:hover {
  border-color: #098EB2;
}
/* line 73, ../development/scss/opencart/_opencart-modules.scss */
.box-currency a b {
  color: #098EB2;
}

/* line 77, ../development/scss/opencart/_opencart-modules.scss */
.quick-setting label {
  margin: 0;
}

/* mini basket */
/* line 81, ../development/scss/opencart/_opencart-modules.scss */
.icon-cart {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: relative;
  color: white;
  background: url("/img/shop-cart.png") no-repeat;
}

/* line 89, ../development/scss/opencart/_opencart-modules.scss */
#cart {
  position: relative;
}
/* line 91, ../development/scss/opencart/_opencart-modules.scss */
#cart h4 {
  font-size: 11px;
  padding: 0;
  margin: 0;
  display: inline-block;
  color: #959595;
  font-weight: 400;
}
/* line 99, ../development/scss/opencart/_opencart-modules.scss */
#cart .content {
  clear: both;
  display: block;
  position: absolute;
  top: 100%;
  right: 0px;
  padding: 15px;
  min-height: 100px;
  background: white;
  border: 1px solid #ebebeb;
  z-index: 99999;
  min-width: 400px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: none;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl #cart .content {
  left: 0px;
  right: auto;
}
/* line 116, ../development/scss/opencart/_opencart-modules.scss */
#cart.active .content {
  display: block;
}
/* line 120, ../development/scss/opencart/_opencart-modules.scss */
#cart .cart-inner {
  padding: 2px;
}
/* line 124, ../development/scss/opencart/_opencart-modules.scss */
#cart .heading a {
  cursor: pointer;
  font-weight: bold;
  color: #098EB2;
}
/* line 130, ../development/scss/opencart/_opencart-modules.scss */
#cart .checkout {
  text-align: right;
  clear: both;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #cart .checkout {
  text-align: left;
}
/* line 134, ../development/scss/opencart/_opencart-modules.scss */
#cart .empty {
  padding-top: 20px;
  text-align: center;
  font-weight: 300;
  font-style: italic;
}
/* line 141, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-total {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #cart .mini-cart-total {
  text-align: left;
}
/* line 143, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-total td {
  color: #000;
  padding: 4px;
}
/* line 147, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-total table {
  border-collapse: collapse;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-bottom: 5px;
}
/* line 154, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info .quantity {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #cart .mini-cart-info .quantity {
  text-align: left;
}
/* line 157, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info .name {
  font-weight: bold;
}
/* line 158, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info .name small {
  color: #666;
}
/* line 163, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info td {
  color: #000;
  vertical-align: top;
  padding: 6px;
  border-bottom: 1px solid #ebebeb;
}
/* line 169, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 5px;
}
/* line 174, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info .image {
  width: 1px;
}
/* line 176, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info .image img {
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #cart .mini-cart-info .image img {
  text-align: right;
}
/* line 180, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info .remove {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #cart .mini-cart-info .remove {
  text-align: left;
}
/* line 182, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info .remove img {
  cursor: pointer;
}
/* line 186, ../development/scss/opencart/_opencart-modules.scss */
#cart .mini-cart-info td.total {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #cart .mini-cart-info td.total {
  text-align: left;
}

/*search*/
/* line 195, ../development/scss/opencart/_opencart-modules.scss */
.box-search .btn-search {
  cursor: pointer;
  color: #222222;
  font-size: 15px;
}
/* line 199, ../development/scss/opencart/_opencart-modules.scss */
.box-search .btn-search:hover {
  color: #098EB2;
}
/* line 204, ../development/scss/opencart/_opencart-modules.scss */
.box-search .nav-search {
  left: auto;
  right: 0;
  width: 300px;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .box-search .nav-search {
  left: 0;
  right: auto;
}
/* line 209, ../development/scss/opencart/_opencart-modules.scss */
.box-search .search-control {
  height: 50px;
}
/* line 212, ../development/scss/opencart/_opencart-modules.scss */
.box-search .button-search {
  margin-top: 15px;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
}
/* line 218, ../development/scss/opencart/_opencart-modules.scss */
.box-search .input-group-search {
  position: relative;
  background: white;
  padding: 15px;
  text-align: center;
}

/* social internal module */
/* line 226, ../development/scss/opencart/_opencart-modules.scss */
.social {
  float: right;
  border-left: 1px solid #ebebeb;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .social {
  float: left;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .social {
  border-right: 1px solid #ebebeb;
  border-left: inherit;
}
/* line 229, ../development/scss/opencart/_opencart-modules.scss */
.social ul {
  padding: 0 15px;
  margin: 0px;
  list-style: none;
}
/* line 234, ../development/scss/opencart/_opencart-modules.scss */
.social li {
  float: left;
  padding: 15px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .social li {
  float: right;
}
/* line 238, ../development/scss/opencart/_opencart-modules.scss */
.social li:hover .fa-facebook {
  color: #346da6;
}
/* line 241, ../development/scss/opencart/_opencart-modules.scss */
.social li:hover .fa-twitter {
  color: #4c91d7;
}
/* line 244, ../development/scss/opencart/_opencart-modules.scss */
.social li:hover .fa-rss {
  color: #f05423;
}
/* line 247, ../development/scss/opencart/_opencart-modules.scss */
.social li:hover .fa-google-plus {
  color: #c9242d;
}
/* line 250, ../development/scss/opencart/_opencart-modules.scss */
.social li:hover .fa-pinterest {
  color: #fb9e3a;
}
/* line 255, ../development/scss/opencart/_opencart-modules.scss */
.social span {
  float: left;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #222222;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .social span {
  float: right;
}
/* line 262, ../development/scss/opencart/_opencart-modules.scss */
.social a {
  cursor: pointer;
  text-align: center;
  line-height: 36px;
  color: #222222;
  font-size: 16px;
}
/* line 268, ../development/scss/opencart/_opencart-modules.scss */
.social a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 276, ../development/scss/opencart/_opencart-modules.scss */
.refine-search .box-heading {
  font-size: 12px;
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .refine-search .box-heading {
  text-align: right;
}
/* line 279, ../development/scss/opencart/_opencart-modules.scss */
.refine-search .box-heading > span {
  padding: 0;
}
/* line 282, ../development/scss/opencart/_opencart-modules.scss */
.refine-search .box-heading:before {
  background: transparent;
}
/* line 286, ../development/scss/opencart/_opencart-modules.scss */
.refine-search .box-content {
  border-bottom: 1px solid #ebebeb;
}
/* line 289, ../development/scss/opencart/_opencart-modules.scss */
.refine-search ul, .refine-search ol {
  padding: 0;
  list-style: none;
  display: inline-block;
}
/* line 294, ../development/scss/opencart/_opencart-modules.scss */
.refine-search ul li, .refine-search ol li {
  padding: 5px 0;
  padding-left: 10px;
  margin-right: 30px;
  line-height: normal;
  position: relative;
  font-weight: 300;
  float: left;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .refine-search ul li, .rtl .refine-search ol li {
  padding-right: 10px;
  padding-left: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .refine-search ul li, .rtl .refine-search ol li {
  margin-left: 30px;
  margin-right: inherit;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .refine-search ul li, .rtl .refine-search ol li {
  float: right;
}
/* line 302, ../development/scss/opencart/_opencart-modules.scss */
.refine-search ul li:before, .refine-search ol li:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 50%;
  left: 0px;
  background-color: #959595;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .refine-search ul li:before, .rtl .refine-search ol li:before {
  right: 0px;
  left: auto;
}

/* line 314, ../development/scss/opencart/_opencart-modules.scss */
.product-filter {
  padding: 10px 5px;
  text-transform: uppercase;
  background-color: none;
  color: black;
  margin-bottom: 10px 5px;
}
/* line 320, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .filter-right > div {
  padding-left: 5px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-filter .filter-right > div {
  padding-right: 5px;
  padding-left: inherit;
}
/* line 323, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display {
  float: left;
  line-height: 30px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-filter .display {
  float: right;
}
/* line 326, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display span {
  margin-right: 5px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-filter .display span {
  margin-left: 5px;
  margin-right: inherit;
}
/* line 329, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display a {
  background: url("../image/icon-grid-list.png") no-repeat 0 0 white scroll;
  width: 32px;
  height: 30px;
  display: block;
  border: 1px solid #ebebeb;
  margin-right: 5px;
  float: left;
  cursor: pointer;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-filter .display a {
  margin-left: 5px;
  margin-right: inherit;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-filter .display a {
  float: right;
}
/* line 337, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display a > span {
  margin: 0 3px;
}
/* line 341, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display a > em {
  display: none;
}
/* line 344, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display a.grid {
  background-position: 9px 8px;
}
/* line 346, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display a.grid.active, .product-filter .display a.grid:hover {
  background-position: 9px -30px;
}
/* line 350, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display a.list {
  background-position: -31px 9px;
}
/* line 352, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display a.list.active, .product-filter .display a.list:hover {
  background-position: -31px -31px;
}
/* line 357, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display a.active .fa, .product-filter .display a:hover .fa {
  color: white;
}
/* line 362, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .display i {
  font-size: 11px;
  color: #9c9b9b;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
/* line 368, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .form-control {
  display: inline-block;
  width: auto;
}
/* line 372, ../development/scss/opencart/_opencart-modules.scss */
.product-filter .product-compare {
  float: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-filter .product-compare {
  float: left;
}

/* back top top */
/* line 377, ../development/scss/opencart/_opencart-modules.scss */
.scrollup {
  background: #098EB2;
  bottom: 82px;
  display: none;
  position: fixed;
  right: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 13px;
  color: #fff!important;
  text-transform: uppercase;
  padding: 2px;
  z-index: 9999;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .scrollup {
  left: 10px;
  right: auto;
}
/* line 391, ../development/scss/opencart/_opencart-modules.scss */
.scrollup .fa {
  display: block;
}

/* line 393, ../development/scss/opencart/_opencart-modules.scss */
.zoomContainer {
  z-index: 9999;
  overflow: hidden;
}

/* line 2, ../development/scss/opencart/_opencart-pages.scss */
.wrapper {
  padding-top: 30px;
}

/* line 5, ../development/scss/opencart/_opencart-pages.scss */
.page-meta {
  font-size: 15px;
}

/* line 11, ../development/scss/opencart/_opencart-pages.scss */
.category-info {
  padding: 0;
}
/* line 13, ../development/scss/opencart/_opencart-pages.scss */
.category-info .image {
  padding: 0;
  margin-bottom: 19px;
}

/* product list mode  */
/* line 20, ../development/scss/opencart/_opencart-pages.scss */
.product-list .col-fullwidth {
  width: 100%;
  float: none;
  margin: 0;
}
/* line 25, ../development/scss/opencart/_opencart-pages.scss */
.product-list .products-block {
  padding-top: 0px;
}
/* line 28, ../development/scss/opencart/_opencart-pages.scss */
.product-list .product-col {
  padding-bottom: 0px;
}
/* line 31, ../development/scss/opencart/_opencart-pages.scss */
.product-list .product-block {
  clear: both;
  border-bottom: 1px solid #ebebeb;
  padding: 30px;
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-list .product-block {
  text-align: right;
}
/* line 36, ../development/scss/opencart/_opencart-pages.scss */
.product-list .product-block .right {
  padding: 30px 0 0 0;
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  box-shadow: none;
  position: inherit;
}
/* line 349, ../development/scss/mixins/_app.scss */
.rtl .product-list .product-block .right {
  padding: 30px 0 0 0;
}
/* line 43, ../development/scss/opencart/_opencart-pages.scss */
.product-list .product-block .name, .product-list .product-block .norating, .product-list .product-block .rating {
  float: none;
}
/* line 46, ../development/scss/opencart/_opencart-pages.scss */
.product-list .product-block .wishlist span, .product-list .product-block .compare span {
  display: inline-block;
}
/* line 51, ../development/scss/opencart/_opencart-pages.scss */
.product-list .name {
  min-height: 20px;
}
/* line 54, ../development/scss/opencart/_opencart-pages.scss */
.product-list .image {
  float: left;
  margin-right: 3%;
  text-align: center;
  width: 22%;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-list .image {
  float: right;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-list .image {
  margin-left: 3%;
  margin-right: inherit;
}
/* line 60, ../development/scss/opencart/_opencart-pages.scss */
.product-list .product-meta {
  padding: 0;
  min-height: inherit;
  border: none;
  overflow: hidden;
  width: 75%;
  position: inherit;
}
/* line 69, ../development/scss/opencart/_opencart-pages.scss */
.product-list .price > * {
  display: block;
}

/* product grid mode */
/* line 75, ../development/scss/opencart/_opencart-pages.scss */
.product-grid {
  position: relative;
  background-color: white;
}
/* line 78, ../development/scss/opencart/_opencart-pages.scss */
.product-grid.last {
  border: 0;
}
/* line 81, ../development/scss/opencart/_opencart-pages.scss */
.product-grid .description, .product-grid .price-tax {
  display: none;
}

/* line 88, ../development/scss/opencart/_opencart-pages.scss */
.product-info {
  background-color: white;
  margin-bottom: 30px;
}
/* line 91, ../development/scss/opencart/_opencart-pages.scss */
.product-info .image-container {
  padding-right: 0px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-info .image-container {
  padding-left: 0px;
  padding-right: inherit;
}
/* line 94, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-view {
  padding-left: 30px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-info .product-view {
  padding-right: 30px;
  padding-left: inherit;
}
/* line 97, ../development/scss/opencart/_opencart-pages.scss */
.product-info .carousel-control {
  margin: -15px 0;
  top: 50%;
}
/* line 102, ../development/scss/opencart/_opencart-pages.scss */
.product-info .cart .minimum {
  padding-top: 5px;
  font-size: 11px;
}
/* line 106, ../development/scss/opencart/_opencart-pages.scss */
.product-info .cart .links {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
}
/* line 112, ../development/scss/opencart/_opencart-pages.scss */
.product-info h1 {
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 0px;
  display: inline-block;
}
/* line 119, ../development/scss/opencart/_opencart-pages.scss */
.product-info .review {
  font-weight: 300;
  font-style: italic;
}
/* line 122, ../development/scss/opencart/_opencart-pages.scss */
.product-info .review .share {
  line-height: normal;
}
/* line 124, ../development/scss/opencart/_opencart-pages.scss */
.product-info .review .share a {
  text-decoration: none;
}
/* line 128, ../development/scss/opencart/_opencart-pages.scss */
.product-info .review > div {
  padding: 0;
  border: 0;
}
/* line 131, ../development/scss/opencart/_opencart-pages.scss */
.product-info .review > div > span {
  color: #0096a8;
}
/* line 137, ../development/scss/opencart/_opencart-pages.scss */
.product-info .share {
  padding: 20px 0;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.product-info .share:before, .product-info .share:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.product-info .share:after {
  clear: both;
}
/* line 140, ../development/scss/opencart/_opencart-pages.scss */
.product-info .share a {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-info .share a {
  float: right;
}
/* line 145, ../development/scss/opencart/_opencart-pages.scss */
.product-info .description {
  margin-bottom: 8px;
  padding: 0;
  font-size: 12px;
  font-weight: 300;
}
/* line 150, ../development/scss/opencart/_opencart-pages.scss */
.product-info .description a {
  text-decoration: none;
}
/* line 153, ../development/scss/opencart/_opencart-pages.scss */
.product-info .description .fa {
  color: white;
  background-color: black;
  padding: 3px;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  float: left;
  font-size: 7px;
  margin: 3px 5px 0 0;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-info .description .fa {
  float: right;
}
/* line 349, ../development/scss/mixins/_app.scss */
.rtl .product-info .description .fa {
  margin: 3px 0 0 5px;
}
/* line 165, ../development/scss/opencart/_opencart-pages.scss */
.product-info .price {
  padding: 10px 0;
  color: #959595;
  font-size: 11px;
}
/* line 169, ../development/scss/opencart/_opencart-pages.scss */
.product-info .price .text-price {
  display: none;
}
/* line 172, ../development/scss/opencart/_opencart-pages.scss */
.product-info .price .reward {
  font-weight: normal;
}
/* line 175, ../development/scss/opencart/_opencart-pages.scss */
.product-info .price .discount {
  font-weight: 300;
  font-style: italic;
  line-height: 24px;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.product-info .price-gruop:before, .product-info .price-gruop:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.product-info .price-gruop:after {
  clear: both;
}
/* line 184, ../development/scss/opencart/_opencart-pages.scss */
.product-info .price-tax {
  font-weight: normal;
}
/* line 188, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra {
  padding: 10px 0;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.product-info .product-extra:before, .product-info .product-extra:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.product-info .product-extra:after {
  clear: both;
}
/* line 191, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .quantity-adder {
  margin: 0 0 20px 0;
  text-transform: uppercase;
  overflow: hidden;
}
/* line 349, ../development/scss/mixins/_app.scss */
.rtl .product-info .product-extra .quantity-adder {
  margin: 0 0 20px 0;
}
/* line 196, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .quantity-number {
  margin-right: -1px;
}
/* line 199, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .add-action {
  display: block;
  width: 27px;
  height: 16px;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  position: relative;
  cursor: pointer;
  font-size: 12px;
  height: 18px;
  text-align: center;
  color: black;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-info .product-extra .add-action {
  border-left: 1px solid #ebebeb;
  border-right: inherit;
}
/* line 211, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .add-action:hover {
  color: #7c7c7c;
}
/* line 215, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .add-up {
  line-height: 24px;
  border-bottom: 0;
}
/* line 219, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .add-down {
  line-height: 10px;
}
/* line 222, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .add-to-icon {
  font-size: 17px;
  padding: 6px;
  background: #7c7c7c;
}
/* line 228, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .quantity-number span {
  color: black;
}
/* line 231, ../development/scss/opencart/_opencart-pages.scss */
.product-info .product-extra .quantity-number input {
  min-width: 72px;
  width: auto !important;
  text-align: center;
  display: inline-block;
  *display: inline;
  zoom: 1;
}
/* line 239, ../development/scss/opencart/_opencart-pages.scss */
.product-info .image {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  text-align: center;
  overflow: hidden;
  border: 1px solid #ebebeb;
}
/* line 246, ../development/scss/opencart/_opencart-pages.scss */
.product-info .image img {
  display: inline-block;
  *display: inline;
  zoom: 1;
}
/* line 251, ../development/scss/opencart/_opencart-pages.scss */
.product-info .carousel-inner {
  margin: 0;
  clear: both;
}
/* line 254, ../development/scss/opencart/_opencart-pages.scss */
.product-info .carousel-inner .item {
  text-align: center;
}
/* line 257, ../development/scss/opencart/_opencart-pages.scss */
.product-info .carousel-inner a {
  display: inline-block;
  border: 1px solid #ebebeb;
  margin-right: 7px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-info .carousel-inner a {
  margin-left: 7px;
  margin-right: inherit;
}
/* line 261, ../development/scss/opencart/_opencart-pages.scss */
.product-info .carousel-inner a:last-child {
  margin: 0;
}
/* line 264, ../development/scss/opencart/_opencart-pages.scss */
.product-info .carousel-inner a img {
  -webkit-transition: border-color 500ms ease;
  transition: border-color 500ms ease;
}
/* line 270, ../development/scss/opencart/_opencart-pages.scss */
.product-info .option-image {
  margin-top: 3px;
  margin-bottom: 10px;
}
/* line 273, ../development/scss/opencart/_opencart-pages.scss */
.product-info .option-image label {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 278, ../development/scss/opencart/_opencart-pages.scss */
.product-info .option-image img {
  margin-left: 0px;
  margin-right: 5px;
  border: 1px solid #CCCCCC;
  cursor: pointer;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-info .option-image img {
  margin-right: 0px;
  margin-left: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-info .option-image img {
  margin-left: 5px;
  margin-right: inherit;
}
/* line 286, ../development/scss/opencart/_opencart-pages.scss */
.product-info b, .product-info strong {
  color: black;
  font-size: 10px;
  font-style: normal;
  margin-right: 5px;
  margin-left: 0px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-info b, .rtl .product-info strong {
  margin-left: 5px;
  margin-right: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-info b, .rtl .product-info strong {
  margin-right: 0px;
  margin-left: inherit;
}
/* line 294, ../development/scss/opencart/_opencart-pages.scss */
.product-info .options h2 {
  font-size: 14px;
}

/* manufacturer */
/* line 300, ../development/scss/opencart/_opencart-pages.scss */
.manufacturer-heading {
  font-size: 15px;
  font-weight: bold;
  padding: 5px 8px;
  margin-bottom: 6px;
  color: black;
  background-color: #ebebeb;
}

/* line 308, ../development/scss/opencart/_opencart-pages.scss */
.manufacturer-list {
  border: 0;
  padding: 8px;
}
/* line 311, ../development/scss/opencart/_opencart-pages.scss */
.manufacturer-list ul {
  float: left;
  width: 25%;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .manufacturer-list ul {
  float: right;
}

/* line 320, ../development/scss/opencart/_opencart-pages.scss */
.manufacturer-content {
  padding: 8px;
  overflow: auto;
}

/* line 324, ../development/scss/opencart/_opencart-pages.scss */
.review-list {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #EEEEEE;
}
/* line 328, ../development/scss/opencart/_opencart-pages.scss */
.review-list .rating {
  float: right;
  margin-bottom: 20px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .review-list .rating {
  float: left;
}
/* line 332, ../development/scss/opencart/_opencart-pages.scss */
.review-list .author {
  float: left;
  margin-bottom: 20px;
  font-size: 10px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .review-list .author {
  float: right;
}
/* line 337, ../development/scss/opencart/_opencart-pages.scss */
.review-list .text {
  clear: both;
}
/* line 340, ../development/scss/opencart/_opencart-pages.scss */
.review-list b {
  color: black;
  text-transform: uppercase;
}

/* line 351, ../development/scss/opencart/_opencart-pages.scss */
.cart-info .qty-text {
  min-width: 50px;
  color: black;
}
/* line 355, ../development/scss/opencart/_opencart-pages.scss */
.cart-info .total {
  font-size: 15px;
  color: #098EB2;
}

/* line 361, ../development/scss/opencart/_opencart-pages.scss */
.wrapper-cart-total {
  border-top: 1px solid #ebebeb;
  padding-top: 15px;
}
/* line 364, ../development/scss/opencart/_opencart-pages.scss */
.wrapper-cart-total .cart-total {
  float: right;
  color: black;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .wrapper-cart-total .cart-total {
  float: left;
}
/* line 368, ../development/scss/opencart/_opencart-pages.scss */
.wrapper-cart-total .last {
  font-size: 30px;
  color: #098EB2;
}

/* line 374, ../development/scss/opencart/_opencart-pages.scss */
.cart-module {
  padding: 15px 0;
}

/* line 379, ../development/scss/opencart/_opencart-pages.scss */
#shipping td, #shipping th {
  padding: 5px 0;
}

/* line 385, ../development/scss/opencart/_opencart-pages.scss */
.wishlist-info table tr td, .cart-info table tr td {
  text-align: center;
  vertical-align: middle;
}
/* line 388, ../development/scss/opencart/_opencart-pages.scss */
.wishlist-info table tr td img, .wishlist-info table tr td input, .cart-info table tr td img, .cart-info table tr td input {
  display: inline-block;
  vertical-align: middle;
}

/* attribute */
/* line 397, ../development/scss/opencart/_opencart-pages.scss */
.attribute thead td, .attribute thead tr td:first-child {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  background: #ebebeb;
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .attribute thead td, .rtl .attribute thead tr td:first-child {
  text-align: right;
}

/* line 404, ../development/scss/opencart/_opencart-pages.scss */
.attribute {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  margin-bottom: 20px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .attribute {
  border-right: 1px solid #ebebeb;
  border-left: inherit;
}
/* line 410, ../development/scss/opencart/_opencart-pages.scss */
.attribute td {
  padding: 7px;
  color: #4D4D4D;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid #ebebeb;
  border-left: 0;
  border-bottom: 1px solid #ebebeb;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .attribute td {
  border-left: 1px solid #ebebeb;
  border-right: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .attribute td {
  border-right: 0;
  border-left: inherit;
}
/* line 420, ../development/scss/opencart/_opencart-pages.scss */
.attribute tr td:first-child {
  color: #000000;
  font-weight: bold;
  text-align: right;
  width: 20%;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .attribute tr td:first-child {
  text-align: left;
}

/* line 433, ../development/scss/opencart/_opencart-pages.scss */
.compare-info .price-old {
  text-decoration: line-through;
}
/* line 436, ../development/scss/opencart/_opencart-pages.scss */
.compare-info .price-new {
  font-weight: bold;
}
/* line 440, ../development/scss/opencart/_opencart-pages.scss */
.compare-info .name a {
  font-weight: bold;
}
/* line 444, ../development/scss/opencart/_opencart-pages.scss */
.compare-info td {
  text-align: center;
  vertical-align: top;
}
/* line 449, ../development/scss/opencart/_opencart-pages.scss */
.compare-info tr td:first-child {
  font-weight: bold;
  text-align: left;
  width: 16%;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .compare-info tr td:first-child {
  text-align: right;
}

/* line 456, ../development/scss/opencart/_opencart-pages.scss */
.compare-info thead td, .compare-info thead tr td:first-child {
  color: black;
  font-weight: bold;
  font-size: 17px;
  background: #e2e2e2;
  text-align: left;
  border: 0;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .compare-info thead td, .rtl .compare-info thead tr td:first-child {
  text-align: right;
}

/* line 468, ../development/scss/opencart/_opencart-pages.scss */
.order-list {
  margin-bottom: 10px;
}
/* line 470, ../development/scss/opencart/_opencart-pages.scss */
.order-list .order-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 24px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .order-list .order-status {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .order-list .order-status {
  text-align: left;
}
/* line 476, ../development/scss/opencart/_opencart-pages.scss */
.order-list .order-content {
  padding: 10px 0px;
}
/* line 479, ../development/scss/opencart/_opencart-pages.scss */
.order-list .order-info {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .order-list .order-info {
  text-align: left;
}
/* line 482, ../development/scss/opencart/_opencart-pages.scss */
.order-list .order-id {
  width: 49%;
  float: left;
  margin-bottom: 24px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .order-list .order-id {
  float: right;
}
/* line 487, ../development/scss/opencart/_opencart-pages.scss */
.order-list .list-content {
  margin-bottom: 12px;
}

/* line 491, ../development/scss/opencart/_opencart-pages.scss */
.order-detail {
  background: #ebebeb;
  font-weight: bold;
}

/* line 498, ../development/scss/opencart/_opencart-pages.scss */
.return-list {
  margin-bottom: 10px;
}
/* line 500, ../development/scss/opencart/_opencart-pages.scss */
.return-list .return-content {
  padding: 10px 0px;
}
/* line 503, ../development/scss/opencart/_opencart-pages.scss */
.return-list .return-id {
  width: 49%;
  float: left;
  margin-bottom: 24px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .return-list .return-id {
  float: right;
}
/* line 508, ../development/scss/opencart/_opencart-pages.scss */
.return-list .return-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 24px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .return-list .return-status {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .return-list .return-status {
  text-align: left;
}
/* line 514, ../development/scss/opencart/_opencart-pages.scss */
.return-list .return-info {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .return-list .return-info {
  text-align: left;
}
/* line 517, ../development/scss/opencart/_opencart-pages.scss */
.return-list .list-content {
  margin-bottom: 12px;
}

/* line 543, ../development/scss/opencart/_opencart-pages.scss */
.return-opened textarea {
  vertical-align: top;
}

/* line 546, ../development/scss/opencart/_opencart-pages.scss */
.return-captcha {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .return-captcha {
  float: right;
}

/* line 551, ../development/scss/opencart/_opencart-pages.scss */
.download-list {
  margin-bottom: 10px;
}
/* line 553, ../development/scss/opencart/_opencart-pages.scss */
.download-list .download-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 24px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .download-list .download-status {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .download-list .download-status {
  text-align: left;
}
/* line 559, ../development/scss/opencart/_opencart-pages.scss */
.download-list .download-id {
  width: 49%;
  float: left;
  margin-bottom: 24px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .download-list .download-id {
  float: right;
}
/* line 564, ../development/scss/opencart/_opencart-pages.scss */
.download-list .download-content {
  padding: 10px 0px;
}
/* line 567, ../development/scss/opencart/_opencart-pages.scss */
.download-list .download-info {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .download-list .download-info {
  text-align: left;
}
/* line 570, ../development/scss/opencart/_opencart-pages.scss */
.download-list .list-content {
  margin-bottom: 24px;
}

/* line 581, ../development/scss/opencart/_opencart-pages.scss */
.checkout-heading {
  background: #fbfbfb;
  border: 1px solid #ebebeb;
  padding: 8px;
  font-size: 16px;
  color: #555555;
  margin-bottom: 15px;
}
/* line 588, ../development/scss/opencart/_opencart-pages.scss */
.checkout-heading a {
  float: right;
  margin-top: 1px;
  font-weight: normal;
  text-decoration: none;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .checkout-heading a {
  float: left;
}

/* line 595, ../development/scss/opencart/_opencart-pages.scss */
.checkout-content {
  padding: 0 0 15px 0;
  display: none;
}
/* line 349, ../development/scss/mixins/_app.scss */
.rtl .checkout-content {
  padding: 0 0 15px 0;
}

/* line 600, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product tbody .name, .checkout-product tbody .model {
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .checkout-product tbody .name, .rtl .checkout-product tbody .model {
  text-align: right;
}

/* line 603, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product thead .name, .checkout-product thead .model {
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .checkout-product thead .name, .rtl .checkout-product thead .model {
  text-align: right;
}

/* line 608, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product thead td {
  color: #4D4D4D;
  font-weight: bold;
  background-color: #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
/* line 616, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product tfoot td {
  text-align: right;
  border-bottom: 1px solid #ebebeb;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .checkout-product tfoot td {
  text-align: left;
}
/* line 622, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product tbody td {
  vertical-align: top;
  border-bottom: 1px solid #ebebeb;
}
/* line 627, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product td {
  padding: 7px;
}
/* line 630, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  margin-bottom: 20px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .checkout-product table {
  border-right: 1px solid #ebebeb;
  border-left: inherit;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .checkout-product table {
  border-left: 1px solid #ebebeb;
  border-right: inherit;
}

/* line 639, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product tbody .quantity, .checkout-product tbody .price, .checkout-product tbody .total {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .checkout-product tbody .quantity, .rtl .checkout-product tbody .price, .rtl .checkout-product tbody .total {
  text-align: left;
}

/* line 642, ../development/scss/opencart/_opencart-pages.scss */
.checkout-product thead .quantity, .checkout-product thead .price, .checkout-product thead .total {
  text-align: right;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .checkout-product thead .quantity, .rtl .checkout-product thead .price, .rtl .checkout-product thead .total {
  text-align: left;
}

/* line 645, ../development/scss/opencart/_opencart-pages.scss */
.buttons {
  display: block;
  clear: both;
  padding-top: 30px;
}
/* line 649, ../development/scss/opencart/_opencart-pages.scss */
.buttons .right {
  float: left;
  padding: 13px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .buttons .right {
  float: left;
}
/* line 652, ../development/scss/opencart/_opencart-pages.scss */
.buttons .left {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .buttons .left {
  float: right;
}

/* line 659, ../development/scss/opencart/_opencart-pages.scss */
.sitemap-info {
  margin-bottom: 36px;
}
/* line 662, ../development/scss/opencart/_opencart-pages.scss */
.sitemap-info ul > li {
  line-height: 1.92857;
  font-weight: bold;
  list-style: disc inside none;
}
/* line 666, ../development/scss/opencart/_opencart-pages.scss */
.sitemap-info ul > li > ul {
  margin-left: 32px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .sitemap-info ul > li > ul {
  margin-right: 32px;
  margin-left: inherit;
}
/* line 668, ../development/scss/opencart/_opencart-pages.scss */
.sitemap-info ul > li > ul li {
  font-weight: normal;
  list-style: circle inside none;
}
/* line 671, ../development/scss/opencart/_opencart-pages.scss */
.sitemap-info ul > li > ul li li {
  list-style: square inside none;
}

/* line 682, ../development/scss/opencart/_opencart-pages.scss */
.page-not-found {
  text-align: center;
}
/* line 684, ../development/scss/opencart/_opencart-pages.scss */
.page-not-found h2 {
  font-size: 230.0%;
  color: #7c7c7c;
  margin: 120px 0 12px 0;
}
/* line 689, ../development/scss/opencart/_opencart-pages.scss */
.page-not-found span {
  margin-right: 12px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .page-not-found span {
  margin-left: 12px;
  margin-right: inherit;
}

/* line 696, ../development/scss/opencart/_opencart-pages.scss */
.contact-location {
  margin-bottom: 12px;
}
/* line 698, ../development/scss/opencart/_opencart-pages.scss */
.contact-location img {
  max-width: none;
}

/* line 702, ../development/scss/opencart/_opencart-pages.scss */
.contact-content {
  background-color: white;
  padding: 20px;
  border: 0;
}
/* line 707, ../development/scss/opencart/_opencart-pages.scss */
.contact-content .contact-customhtml {
  border: 0;
  padding: 0;
  margin-top: 20px;
}
/* line 711, ../development/scss/opencart/_opencart-pages.scss */
.contact-content .contact-customhtml .content {
  min-height: 338px;
}
/* line 715, ../development/scss/opencart/_opencart-pages.scss */
.contact-content .fa {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 5px;
  color: white;
  background-color: #0096a8;
  margin-bottom: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  font-size: 16px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .contact-content .fa {
  margin-left: 5px;
  margin-right: inherit;
}
/* line 726, ../development/scss/opencart/_opencart-pages.scss */
.contact-content .fa:hover {
  background-color: #098EB2;
}

/* line 732, ../development/scss/opencart/_opencart-pages.scss */
.rtl .zoomWindow {
  right: 100%!important;
}

/* line 4, ../development/scss/app/_menu.scss */
.pav-megamenu {
  /* menu level 1 */
  /* level 2 */
  /* level > 3 */
}
/* line 5, ../development/scss/app/_menu.scss */
.pav-megamenu .caret {
  display: none;
}
/* line 9, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar {
  position: static;
}
/* line 12, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-header {
  float: none;
}
/* line 15, ../development/scss/app/_menu.scss */
.pav-megamenu .megamenu {
  display: table;
  width: 100%;
  text-align: center;
}
/* line 19, ../development/scss/app/_menu.scss */
.pav-megamenu .megamenu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 24, ../development/scss/app/_menu.scss */
.pav-megamenu .megamenu > li {
  display: table-cell;
  float: none;
}
/* line 27, ../development/scss/app/_menu.scss */
.pav-megamenu .megamenu > li > a {
  padding: 37px 0;
}
/* line 29, ../development/scss/app/_menu.scss */
.pav-megamenu .megamenu > li > a:hover {
  color: #098EB2;
}
/* line 35, ../development/scss/app/_menu.scss */
.pav-megamenu .pav-colorbox {
  display: none !important;
}
/* line 38, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 48, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-nav > li.aligned-fullwidth {
  position: static;
}
/* line 50, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-nav > li.aligned-fullwidth > .dropdown-menu {
  width: 100%!important;
  top: 96%;
}
/* line 56, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-nav > li.aligned-right .dropdown-menu {
  right: 0;
  left: auto;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .navbar-nav > li.aligned-right .dropdown-menu {
  left: 0;
  right: auto;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .navbar-nav > li.aligned-right .dropdown-menu {
  right: auto;
  left: auto;
}
/* line 62, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-nav > li.aligned-left .dropdown-menu {
  right: auto;
  left: 0;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .navbar-nav > li.aligned-left .dropdown-menu {
  left: auto;
  right: auto;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .navbar-nav > li.aligned-left .dropdown-menu {
  right: 0;
  left: auto;
}
/* line 69, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-nav > li.aligned-center .dropdown-menu {
  left: 50%;
  transform: translate(-50%);
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .navbar-nav > li.aligned-center .dropdown-menu {
  right: 50%;
  left: auto;
}
/* line 75, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-nav > li > a .caret {
  position: relative;
}
/* line 79, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-nav > li:hover > a .caret:before, .pav-megamenu .navbar-nav > li:active > a .caret:before {
  color: #098EB2;
}
/* line 82, ../development/scss/app/_menu.scss */
.pav-megamenu .navbar-nav > li:hover > a:before {
  position: absolute;
  bottom: -10px;
  left: 50%;
  content: "";
  font-family: "FontAwesome";
  font-size: 16px;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .navbar-nav > li:hover > a:before {
  right: 50%;
  left: auto;
}
/* line 93, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-menu {
  top: 100%;
  left: -9999px;
  height: auto;
  font-weight: 400;
  color: #959595;
  min-width: 185px;
  padding: 30px;
  background-color: white;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.24);
  -webkit-transition: opacity 0.3s linear 0s;
  transition: opacity 0.3s linear 0s;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .dropdown-menu {
  right: -9999px;
  left: auto;
}
/* line 105, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-menu li {
  line-height: 27px;
}
/* line 107, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-menu li a {
  color: black;
  padding: 0;
  line-height: 20px;
  text-transform: uppercase;
  font-size: 10px;
}
/* line 113, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-menu li a:hover {
  background-color: transparent;
  color: #098EB2;
}
/* line 116, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-menu li a:hover .fa {
  color: #098EB2;
}
/* line 122, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-menu .menu-title {
  text-transform: uppercase;
  font-size: 10px;
}
/* line 129, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown:hover > .dropdown-menu {
  display: block;
  left: 0px;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .dropdown:hover > .dropdown-menu {
  right: 0px;
  left: auto;
}
/* line 133, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown:hover > a {
  color: #098EB2;
}
/* line 135, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown:hover > a .fa {
  color: #098EB2;
}
/* line 142, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-submenu {
  position: relative;
}
/* line 144, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-submenu .dropdown-menu {
  top: 0;
  right: -100%;
  position: absolute;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .dropdown-submenu .dropdown-menu {
  left: -100%;
  right: auto;
}
/* line 150, ../development/scss/app/_menu.scss */
.pav-megamenu .dropdown-submenu:hover > .dropdown-menu {
  left: 100% !important;
  display: block;
  top: 0;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .pav-megamenu .dropdown-submenu:hover > .dropdown-menu {
  right: 100% !important;
  left: auto;
}
/* line 158, ../development/scss/app/_menu.scss */
.pav-megamenu .mega-group > .dropdown-toggle {
  border: 0;
  display: block;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Open Sanso";
  color: white;
}
/* line 165, ../development/scss/app/_menu.scss */
.pav-megamenu .mega-group > .dropdown-toggle .fa {
  color: white;
}
/* line 170, ../development/scss/app/_menu.scss */
.pav-megamenu .widget-title {
  color: black;
}
/* line 174, ../development/scss/app/_menu.scss */
.pav-megamenu .megamenu .cols1 {
  min-width: 200px;
}
/* line 177, ../development/scss/app/_menu.scss */
.pav-megamenu .megamenu .cols2 {
  min-width: 500px;
}
/* line 180, ../development/scss/app/_menu.scss */
.pav-megamenu .megamenu .cols3 {
  min-width: 740px;
}

/*
 *
 * Vertical menu
 */
/* line 189, ../development/scss/app/_menu.scss */
.pav-verticalmenu {
  margin-bottom: 0!important;
  background: #959595 !important;
  height: 48px;
  line-height: 26px;
}
/* line 194, ../development/scss/app/_menu.scss */
.pav-verticalmenu .dropdown-menu {
  top: 44px;
}

/* line 198, ../development/scss/app/_menu.scss */
.icon-velmenu {
  position: absolute;
  top: -3px;
  border: 1px solid #dbdbdb;
  padding: 3px 8px;
}

/* line 204, ../development/scss/app/_menu.scss */
div.verticalmenu {
  z-index: 100;
}
/* line 206, ../development/scss/app/_menu.scss */
div.verticalmenu .hide-title .widget-title {
  display: none;
}
/* line 209, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-collapse, div.verticalmenu .navbar-vertical {
  margin: 0;
  padding: 0;
  border: none;
}
/* line 214, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav {
  position: static;
  float: none;
  width: 100%;
}
/* line 217, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li {
  width: 100%;
  height: auto;
  position: static;
}
/* line 220, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li > a {
  display: block;
  color: #098EB2;
  padding: 14px 10px 15px 20px;
  border-bottom: 1px solid #ebebeb;
}
/* line 225, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li > a .menu-icon {
  display: block;
  height: 20px;
}
/* line 228, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li > a .menu-icon span {
  display: block;
  margin-left: 35px;
  line-height: normal;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl div.verticalmenu .navbar-nav > li > a .menu-icon span {
  margin-right: 35px;
  margin-left: inherit;
}
/* line 233, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li > a .menu-icon .menu-desc {
  display: none;
}
/* line 237, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li > a:hover, div.verticalmenu .navbar-nav > li > a:focus {
  color: #959595;
}
/* line 241, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li.last a, div.verticalmenu .navbar-nav > li:last-child a {
  border: 0;
}
/* line 246, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li:hover {
  color: #959595;
}
/* line 248, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li:hover > a {
  color: #098EB2 !important;
}
/* line 250, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li:hover > a .menu-icon {
  background-position: left bottom !important;
}
/* line 254, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li:hover > .dropdown-menu {
  right: 100%;
  top: 0px;
  opacity: 1;
  filter: alpha(opacity=100);
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl div.verticalmenu .navbar-nav > li:hover > .dropdown-menu {
  left: 100%;
  right: auto;
}
/* line 260, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li .parent {
  position: relative;
}
/* line 262, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li .parent > .dropdown-toggle {
  text-transform: none;
  font-weight: normal;
  color: #098EB2;
}
/* line 266, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li .parent > .dropdown-toggle:hover {
  color: #959595;
}
/* line 270, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li .parent > .dropdown-menu {
  min-height: 100px;
  height: 100px;
  height: auto !important;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.13);
}
/* line 277, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li .parent:hover > .dropdown-menu {
  right: 100%;
  top: -25px;
  opacity: 1;
  filter: alpha(opacity=100);
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl div.verticalmenu .navbar-nav > li .parent:hover > .dropdown-menu {
  left: 100%;
  right: auto;
}
/* line 284, ../development/scss/app/_menu.scss */
div.verticalmenu .navbar-nav > li.parent:hover > a:after {
  position: absolute;
  content: "";
  left: -5px;
  top: 0;
  width: 0;
  height: 100%;
  border: 7px solid white;
  z-index: 9999;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl div.verticalmenu .navbar-nav > li.parent:hover > a:after {
  right: -5px;
  left: auto;
}
/* line 297, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu {
  right: -9999px;
  top: -9999px;
  left: auto;
  border: 0;
  display: block;
  height: 100%;
  height: auto !important;
  min-width: 230px;
  padding: 20px 28px;
  background: white;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.45);
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl div.verticalmenu .dropdown-menu {
  left: -9999px;
  right: auto;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl div.verticalmenu .dropdown-menu {
  right: auto;
  left: auto;
}
/* line 312, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu ul li {
  border: 0;
  padding: 4px 0;
  line-height: normal;
  list-style: none;
}
/* line 317, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu ul li a {
  color: #098EB2;
  font-weight: 400;
  padding: 0;
}
/* line 324, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu p {
  line-height: 18px;
  color: #098EB2;
}
/* line 328, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu .pav-menu-video {
  width: 100%;
}
/* line 330, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu .pav-menu-video iframe {
  margin-bottom: 10px;
}
/* line 335, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu .dropdown-toggle:hover {
  color: black;
}
/* line 339, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu .dropdown-toggle {
  font-weight: bold;
  text-transform: uppercase;
  line-height: normal;
  color: black;
}
/* line 345, ../development/scss/app/_menu.scss */
div.verticalmenu .dropdown-menu .action {
  display: none;
}

/*** widgets using inside megamenu ***/
/* line 355, ../development/scss/app/_menu.scss */
.pav-widget .widget-title, .pav-widget .title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: black;
  margin-top: 0px;
}
/* line 362, ../development/scss/app/_menu.scss */
.pav-widget .widget-title {
  display: none;
}
/* line 365, ../development/scss/app/_menu.scss */
.pav-widget .products-row {
  margin: 0;
}
/* line 367, ../development/scss/app/_menu.scss */
.pav-widget .products-row .product-col {
  width: 100%;
  border-right: none;
  border-bottom: 1px solid #ebebeb;
  padding: 0;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .pav-widget .products-row .product-col {
  border-left: none;
  border-right: inherit;
}
/* line 21, ../development/scss/mixins/_bootstrap.scss */
.pav-widget .product-block:before, .pav-widget .product-block:after {
  content: " ";
  display: table;
}
/* line 25, ../development/scss/mixins/_bootstrap.scss */
.pav-widget .product-block:after {
  clear: both;
}
/* line 376, ../development/scss/app/_menu.scss */
.pav-widget .product-block .image {
  float: left;
  overflow: inherit;
  width: 40%;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .pav-widget .product-block .image {
  float: right;
}
/* line 381, ../development/scss/app/_menu.scss */
.pav-widget .product-block .action, .pav-widget .product-block .pav-colorbox, .pav-widget .product-block .colorbox, .pav-widget .product-block .image-gallery {
  display: none;
}
/* line 386, ../development/scss/app/_menu.scss */
.pav-widget .product-meta {
  width: 59.5%;
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .pav-widget .product-meta {
  float: right;
}

/* line 392, ../development/scss/app/_menu.scss */
.pavo-widget .widget-title, .pavo-widget .title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: black;
  position: relative;
  padding-bottom: 20px;
  margin-top: 0px;
}
/* line 401, ../development/scss/app/_menu.scss */
.pavo-widget .widget-title {
  display: none;
}
/* line 404, ../development/scss/app/_menu.scss */
.pavo-widget .title:before {
  position: absolute;
  height: 1px;
  width: 100%;
  background: #ccc;
  left: 0;
  content: "";
  bottom: 0;
}
/* line 414, ../development/scss/app/_menu.scss */
.pavo-widget a:hover {
  color: #098EB2;
}
/* line 418, ../development/scss/app/_menu.scss */
.pavo-widget ul {
  padding: 0;
  list-style: none;
}
/* line 421, ../development/scss/app/_menu.scss */
.pavo-widget ul li {
  text-transform: uppercase;
  font-size: 10px;
}
/* line 426, ../development/scss/app/_menu.scss */
.pavo-widget p {
  font-style: italic;
}
/* line 429, ../development/scss/app/_menu.scss */
.pavo-widget .blog-body {
  border: none;
}
/* line 431, ../development/scss/app/_menu.scss */
.pavo-widget .blog-body a {
  color: black;
}
/* line 434, ../development/scss/app/_menu.scss */
.pavo-widget .blog-body .description {
  font-style: italic;
  font-weight: 300;
}
/* line 439, ../development/scss/app/_menu.scss */
.pavo-widget .create-info {
  padding: 15px 0;
}

/* line 1, ../development/scss/opencart/_offcanvas.scss */
#mainmenutop .navbar-toggle {
  float: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #mainmenutop .navbar-toggle {
  float: right;
}

/* line 6, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .menu-offcanvas-inner {
  background-color: #098EB2;
}
/* line 10, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .dropdown .dropdown-menu {
  border: medium none;
  box-shadow: none;
  display: block;
  float: none;
  position: relative;
  top: 0;
  width: 100% !important;
  min-width: 100%;
  line-height: 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 21, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .dropdown .dropdown-menu .dropdown-menu-inner {
  padding: 0 20px;
}
/* line 23, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .dropdown .dropdown-menu .dropdown-menu-inner ul > li {
  list-style: none;
}
/* line 25, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .dropdown .dropdown-menu .dropdown-menu-inner ul > li a {
  text-transform: uppercase;
  color: black;
}
/* line 30, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .dropdown .dropdown-menu .dropdown-menu-inner .menu-title {
  font-size: 10px;
}
/* line 33, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .dropdown .dropdown-menu .dropdown-menu-inner .title, #menu-offcanvas .dropdown .dropdown-menu .dropdown-menu-inner h4 {
  padding: 20px 0 10px;
}
/* line 39, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .product-block .image {
  text-align: left;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl #menu-offcanvas .product-block .image {
  text-align: right;
}

/* line 49, ../development/scss/opencart/_offcanvas.scss */
html,
body,
.offcanvas-container,
.offcanvas-pusher,
.offcanvas-content {
  min-height: 100%;
}

/* line 53, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-content {
  overflow-y: scroll;
  background: #f3efe0;
}

/* line 67, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-pusher {
  right: 0px;
  z-index: 99;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .offcanvas-pusher {
  left: 0px;
  right: auto;
}

/* line 76, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-pusher::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  z-index: 9999;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .offcanvas-pusher::after {
  left: 0;
  right: auto;
}

/* line 90, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu-open .offcanvas-pusher::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

/* line 98, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu {
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 999999;
  visibility: hidden;
  width: 300px;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .offcanvas-menu {
  right: 0px;
  left: auto;
}
/* line 108, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu .dropdown {
  position: absolute;
}

/* line 112, ../development/scss/opencart/_offcanvas.scss */
.rtl .offcanvas-menu {
  display: none;
}

/* line 116, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: '';
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .offcanvas-menu::after {
  left: 0;
  right: auto;
}

/* line 129, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu-open .offcanvas-menu::after {
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */
/* line 139, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu ul {
  margin: 0;
  padding: 0;
  lioffcanvas-style: none;
  list-style: none;
}

/* line 146, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu h2 {
  margin: 0;
  padding: 1em;
  color: rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  font-size: 2em;
}

/* line 155, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu ul.megamenu > li > a {
  display: block;
  padding: 1em 1em 1em 1.2em;
  outline: none;
  -webkit-box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 167, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu ul.megamenu ul li a {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}

/* line 173, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu ul.verticalmenu > li > a {
  display: block;
  padding: 1em 1em 1em 1.2em;
  outline: none;
  -webkit-box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
  color: #f3efe0;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 186, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu ul.verticalmenu .menu-desc {
  display: none;
}

/* line 189, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-menu ul.verticalmenu .menu-icon {
  background: none!important;
}

/* Individual effects */
/* Effect 1: Slide in on top */
/* line 195, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-1.offcanvas-menu {
  visibility: visible;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

/* line 200, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-1.offcanvas-menu-open .offcanvas-effect-1.offcanvas-menu {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 203, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-1.offcanvas-menu-open .offcanvas-effect-1.offcanvas-menu .dropdown {
  position: relative;
}

/* line 206, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-1.offcanvas-menu::after {
  display: none;
}

/* Effect 2: Reveal */
/* line 211, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-2.offcanvas-menu-open .offcanvas-pusher {
  -webkit-transform: translate3d(300px, 0, 0);
  transform: translate3d(300px, 0, 0);
}

/* line 214, ../development/scss/opencart/_offcanvas.scss */
.rtl .offcanvas-effect-2.offcanvas-menu-open .offcanvas-pusher {
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
}

/* line 218, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-2.offcanvas-menu {
  z-index: 1;
}

/* line 222, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-2.offcanvas-menu-open .offcanvas-effect-2.offcanvas-menu {
  visibility: visible;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 226, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-2.offcanvas-menu-open .offcanvas-effect-2.offcanvas-menu .dropdown {
  position: relative;
}

/* Effect 3: Push*/
/* line 230, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-3.offcanvas-menu-open .offcanvas-pusher {
  -webkit-transform: translate3d(300px, 0, 0);
  transform: translate3d(300px, 0, 0);
}

/* line 233, ../development/scss/opencart/_offcanvas.scss */
.rtl .offcanvas-effect-3.offcanvas-menu-open .offcanvas-pusher {
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
}

/* line 237, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-3.offcanvas-menu {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  z-index: 1;
}

/* line 242, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-3.offcanvas-menu-open .offcanvas-effect-3.offcanvas-menu {
  visibility: visible;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 247, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-3.offcanvas-menu-open .offcanvas-effect-3.offcanvas-menu .dropdown {
  position: relative;
}

/* Effect 5: Reverse slide out */
/* line 252, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-5.offcanvas-menu-open .offcanvas-pusher {
  -webkit-transform: translate3d(300px, 0, 0);
  transform: translate3d(300px, 0, 0);
}

/* line 255, ../development/scss/opencart/_offcanvas.scss */
.rtl .offcanvas-effect-5.offcanvas-menu-open .offcanvas-pusher {
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
}

/* line 259, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-5.offcanvas-menu {
  z-index: 1;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
}

/* line 264, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-5.offcanvas-menu-open .offcanvas-effect-5.offcanvas-menu {
  visibility: visible;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  display: block;
}
/* line 268, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-effect-5.offcanvas-menu-open .offcanvas-effect-5.offcanvas-menu .dropdown {
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  /* line 275, ../development/scss/opencart/_offcanvas.scss */
  #mainmenutop .navbar-nav {
    display: none;
  }

  /*** OFFCANVAS SIDEBAR ***/
  /* line 279, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars {
    position: relative;
  }
  /* line 281, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars .offcanvas-sidebar {
    display: none;
    width: 100%;
  }
  /* line 285, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars.column-left-active #oc-column-left {
    display: block;
  }
  /* line 288, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars.column-right-active #oc-column-right {
    display: block;
  }
  /* line 291, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars.column-left-active .main-column {
    display: none;
  }
  /* line 294, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars.column-right-active .main-column {
    display: none;
  }
}
@media (max-width: 991px) {
  /*** OFFCANVAS SIDEBAR ***/
  /* line 302, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars {
    position: relative;
  }
  /* line 304, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars .offcanvas-sidebar {
    display: none;
    width: 100%;
  }
  /* line 308, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars.column-left-active #oc-column-left {
    display: block;
  }
  /* line 311, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars.column-right-active #oc-column-right {
    display: block;
  }
  /* line 314, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars.column-left-active .main-column {
    display: none;
  }
  /* line 317, ../development/scss/opencart/_offcanvas.scss */
  .offcanvas-siderbars.column-right-active .main-column {
    display: none;
  }
}
/* line 322, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-sidebars-buttons {
  margin-top: 5px;
  position: relative;
}
/* line 325, ../development/scss/opencart/_offcanvas.scss */
.offcanvas-sidebars-buttons .siders-buttons {
  position: absolute;
  right: 0;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .offcanvas-sidebars-buttons .siders-buttons {
  left: 0;
  right: auto;
}

/* line 330, ../development/scss/opencart/_offcanvas.scss */
#menu-offcanvas .pavo-widget .widget-inner iframe {
  width: 250px!important;
}

/* line 334, ../development/scss/opencart/_offcanvas.scss */
.button-close-menu {
  background: none repeat scroll 0 0 #bbb;
  color: black;
  cursor: pointer;
  padding: 6px 9px;
  position: absolute;
  right: 3px;
  top: 3px;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .button-close-menu {
  left: 3px;
  right: auto;
}
/* line 342, ../development/scss/opencart/_offcanvas.scss */
.button-close-menu > * {
  font-size: 14px;
  text-shadow: 0 1px 0 #ffffff;
}

/* line 347, ../development/scss/opencart/_offcanvas.scss */
.menu-offcanvas-content li a {
  box-shadow: 0 -1px rgba(0, 0, 0, 0.2) inset;
  color: black;
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  outline: medium none;
  padding: 1em 1em 1em 1.2em;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

/* line 360, ../development/scss/opencart/_offcanvas.scss */
.menu-offcanvas-content > li > a {
  color: #f0f0f0;
  font-size: 12px;
}

/* line 1, ../development/scss/opencart/_style.scss */
.logo-store {
  display: block;
}
/* line 3, ../development/scss/opencart/_style.scss */
.logo-store img {
  width: 226px;
  height: 55px;
}

/* line 8, ../development/scss/opencart/_style.scss */
#logo-theme a {
  background: url("/img/logo.png") no-repeat;
  display: block;
  width: 362px;
  height: 66px;
}
/* line 12, ../development/scss/opencart/_style.scss */
#logo-theme a span {
  display: none;
}

/* line 17, ../development/scss/opencart/_style.scss */
.boxed {
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

/* line 22, ../development/scss/opencart/_style.scss */
.shapes.round {
  background-color: #8b8b8b;
  border: 1px solid #929292;
  border-radius: 100%;
  height: 20px;
  right: 10px;
  top: 25%;
  width: 20px;
}
/* line 431, ../development/scss/mixins/_app.scss */
.rtl .shapes.round {
  left: 10px;
  right: auto;
}

/* line 31, ../development/scss/opencart/_style.scss */
.shapes.bottom {
  left: 5px;
  top: 1px;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .shapes.bottom {
  right: 5px;
  left: auto;
}

/* line 35, ../development/scss/opencart/_style.scss */
.shapes {
  background-color: rgba(0, 0, 0, 0);
  height: 0;
  position: absolute;
  top: 50%;
  width: 0;
}

/* line 42, ../development/scss/opencart/_style.scss */
.line {
  border-top: 2px solid #ebebeb;
}

/* line 45, ../development/scss/opencart/_style.scss */
.quick-top-link {
  padding: 0 15px;
}
/* line 47, ../development/scss/opencart/_style.scss */
.quick-top-link > * {
  cursor: pointer;
  padding: 0 10px;
}

/* line 53, ../development/scss/opencart/_style.scss */
.link-active a {
  color: #098EB2 !important;
}

/* line 59, ../development/scss/opencart/_style.scss */
.link-effect li > a {
  padding-left: 0px;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .link-effect li > a {
  padding-right: 0px;
  padding-left: inherit;
}
/* line 63, ../development/scss/opencart/_style.scss */
.link-effect li :hover {
  padding-left: 10px;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .link-effect li :hover {
  padding-right: 10px;
  padding-left: inherit;
}

/* line 70, ../development/scss/opencart/_style.scss */
.carousel-inner:hover {
  overflow: visible;
}

/* line 74, ../development/scss/opencart/_style.scss */
.noborder {
  border: none;
}

/* line 77, ../development/scss/opencart/_style.scss */
.list-style {
  font-style: italic;
  list-style: none;
}

/* line 81, ../development/scss/opencart/_style.scss */
.links-variant {
  padding-left: 15px;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .links-variant {
  padding-right: 15px;
  padding-left: inherit;
}
/* line 83, ../development/scss/opencart/_style.scss */
.links-variant ul {
  padding-left: 15px;
  list-style: none;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .links-variant ul {
  padding-right: 15px;
  padding-left: inherit;
}
/* line 86, ../development/scss/opencart/_style.scss */
.links-variant ul > li {
  line-height: 30px;
}

/* line 91, ../development/scss/opencart/_style.scss */
.hasline {
  border-bottom: solid 1px #ebebeb;
  margin: 10px 0;
}

/* line 3, ../development/scss/app/_animation.scss */
.product-block {
  /* Button add-cart,wishlist and compare */
  /* zoom and quick-view */
}
/* line 5, ../development/scss/app/_animation.scss */
.product-block .right {
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  position: absolute;
  top: 50%;
  z-index: 999;
  background: white;
  width: 100%;
  text-align: left;
  left: 0;
  box-shadow: 0 1px 1px #c1c1c1;
  padding-bottom: 20px;
  padding-left: 25px;
}
/* line 325, ../development/scss/mixins/_app.scss */
.rtl .product-block .right {
  text-align: right;
}
/* line 424, ../development/scss/mixins/_app.scss */
.rtl .product-block .right {
  right: 0;
  left: auto;
}
/* line 336, ../development/scss/mixins/_app.scss */
.rtl .product-block .right {
  padding-right: 25px;
  padding-left: inherit;
}
/* line 21, ../development/scss/app/_animation.scss */
.product-block:hover .right {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  visibility: visible;
  top: 100%;
}
/* line 30, ../development/scss/app/_animation.scss */
.product-block .pav-colorbox, .product-block .product-zoom {
  width: 36px;
  height: 36px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  margin: -18px 30px 0px;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
/* line 41, ../development/scss/app/_animation.scss */
.product-block:hover .pav-colorbox, .product-block:hover .product-zoom {
  margin: -18px 4px 0px;
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
/* line 47, ../development/scss/app/_animation.scss */
.product-block .image {
  position: relative;
  text-align: center;
  /*swap image*/
}
/* line 52, ../development/scss/app/_animation.scss */
.product-block .image:hover .hover-image {
  opacity: 1;
  visibility: visible;
}
/* line 57, ../development/scss/app/_animation.scss */
.product-block .image .hover-image {
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

/* line 72, ../development/scss/app/_animation.scss */
.product-zoom {
  right: 50%;
}

/* line 76, ../development/scss/app/_animation.scss */
.pav-colorbox {
  left: 50%;
}

/*Button Cart,Wishlist&Compare*/
/* line 80, ../development/scss/app/_animation.scss */
.action {
  line-height: 40px;
}
/* line 82, ../development/scss/app/_animation.scss */
.action > * {
  display: inline-block;
}

/* line 88, ../development/scss/app/_animation.scss */
.product-block .wishlist span, .product-block .compare span {
  display: none;
}

/* line 95, ../development/scss/app/_animation.scss */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* line 101, ../development/scss/app/_animation.scss */
.banner-wrapper {
  cursor: pointer;
  position: relative;
}

/* line 105, ../development/scss/app/_animation.scss */
.banner-meta {
  position: absolute;
  text-align: center;
  height: 100%;
  width: 100%;
  z-index: 10;
}

/* line 112, ../development/scss/app/_animation.scss */
.banner-meta:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */
}

/* line 120, ../development/scss/app/_animation.scss */
.col-banner {
  padding-top: 30px;
}

/* line 124, ../development/scss/app/_animation.scss */
.banner-inner {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: white;
  max-width: 80%;
}
/* line 130, ../development/scss/app/_animation.scss */
.banner-inner > span, .banner-inner .title {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 48px;
  position: relative;
  font-weight: 300;
  display: block;
  color: white;
}
/* line 138, ../development/scss/app/_animation.scss */
.banner-inner > span:before, .banner-inner .title:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 50px;
  left: 50%;
  bottom: -5px;
  margin-left: -25px;
  background: white;
}
/* line 149, ../development/scss/app/_animation.scss */
.banner-inner > p {
  line-height: 48px;
  font-style: italic;
}

/*effect img*/
/* line 155, ../development/scss/app/_animation.scss */
.effect {
  overflow: hidden;
  background: black;
}
/* line 158, ../development/scss/app/_animation.scss */
.effect img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  width: 100%;
}
/* line 164, ../development/scss/app/_animation.scss */
.effect:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

/*Effect Menu*/
/* line 174, ../development/scss/app/_animation.scss */
#topbar {
  margin-top: 0px;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

/* line 179, ../development/scss/app/_animation.scss */
#header-top {
  margin-top: 0;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 8px 10px -13px #e8e8e8;
  z-index: 9999;
  transition: all 0.8s ease 0s;
}

/* line 186, ../development/scss/app/_animation.scss */
.navbar-fixed-top {
  border-bottom: 1px solid #ebebeb;
}

/* line 190, ../development/scss/app/_animation.scss */
.hide-bar #topbar {
  margin-top: -56px;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

/* line 195, ../development/scss/app/_animation.scss */
.header-inner {
  position: relative;
}

/* line 200, ../development/scss/app/_animation.scss */
body[class*="-home"] #header-top {
  box-shadow: none;
  border: none;
}
/* line 204, ../development/scss/app/_animation.scss */
body[class*="-home"] .menu-bottom {
  position: relative;
}
/* line 206, ../development/scss/app/_animation.scss */
body[class*="-home"] .menu-bottom #header-main {
  position: absolute;
  top: -95px;
  background: none;
  z-index: 9999;
  width: 100%;
}
/* line 213, ../development/scss/app/_animation.scss */
body[class*="-home"] .menu-bottom .header-content {
  background: white;
  padding: 0 20px;
}
/* line 219, ../development/scss/app/_animation.scss */
body[class*="-home"] .menu-bottom.navbar-fixed-top {
  padding-top: 90px;
  background: white;
}

/*$media (min-width: 992px) and (max-width: 1199px)*/
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 5, ../development/scss/opencart/_responsive.scss */
  .tparrows {
    display: none;
  }

  /* line 10, ../development/scss/opencart/_responsive.scss */
  .product-block .action > * {
    margin-right: 0px;
  }
  /* line 14, ../development/scss/opencart/_responsive.scss */
  .product-block .btn-variant {
    padding: 8px 10px;
  }

  /* line 18, ../development/scss/opencart/_responsive.scss */
  .product-list .product-block .right {
    padding: 10px 0  !important;
  }

  /* line 23, ../development/scss/opencart/_responsive.scss */
  .pav-newsletter .email {
    min-width: 200px !important;
  }

  /* line 28, ../development/scss/opencart/_responsive.scss */
  #productdeals .product-block .deal {
    max-width: 220px !important;
  }
}
/*$media (min-width: 768px) and (max-width: 991px) {*/
@media (min-width: 768px) and (max-width: 991px) {
  /* line 36, ../development/scss/opencart/_responsive.scss */
  .quick-top-link {
    padding: 0;
  }
  /* line 38, ../development/scss/opencart/_responsive.scss */
  .quick-top-link i.fa {
    font-size: 16px;
    padding-top: 5px;
  }

  /* line 44, ../development/scss/opencart/_responsive.scss */
  .navbar-toggle {
    display: block !important;
  }

  .navbar-light .navbar-toggler-icon {
    background-image: url("/img/nav-toggle.png");
  }

  /* line 48, ../development/scss/opencart/_responsive.scss */
  .navbar-collapse.collapse {
    display: none;
  }

  /* line 52, ../development/scss/opencart/_responsive.scss */
  #mainmenutop .navbar-nav {
    display: block;
  }

  /* line 55, ../development/scss/opencart/_responsive.scss */
  .navbar-fixed-top {
    position: absolute;
  }

  /* line 58, ../development/scss/opencart/_responsive.scss */
  .hide-bar #topbar {
    margin-top: 0;
  }

  /* line 63, ../development/scss/opencart/_responsive.scss */
  #menu-offcanvas .dropdown .dropdown-menu {
    display: none;
  }
  /* line 66, ../development/scss/opencart/_responsive.scss */
  #menu-offcanvas .dropdown.open .dropdown-menu {
    display: block;
  }

  /* line 70, ../development/scss/opencart/_responsive.scss */
  #header-main {
    background: white !important;
  }

  /*config layout button toggle,logo,search*/
  /* line 74, ../development/scss/opencart/_responsive.scss */
  #header-main .inner {
    text-align: center;
    display: block;
  }

  /* line 79, ../development/scss/opencart/_responsive.scss */
  .mainnav {
    position: absolute;
    left: 0;
    top: 0;
  }
  /* line 424, ../development/scss/mixins/_app.scss */
  .rtl .mainnav {
    right: 0;
    left: auto;
  }

  /* line 84, ../development/scss/opencart/_responsive.scss */
  .box-search {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 55px;
  }
  /* line 431, ../development/scss/mixins/_app.scss */
  .rtl .box-search {
    left: 0;
    right: auto;
  }

  /* line 90, ../development/scss/opencart/_responsive.scss */
  .logo-store {
    display: inline-block;
  }

  /* line 95, ../development/scss/opencart/_responsive.scss */
  .tparrows {
    display: none;
  }

  /* line 101, ../development/scss/opencart/_responsive.scss */
  .productdeals .product-block .deal {
    right: 30px !important;
  }
  /* line 431, ../development/scss/mixins/_app.scss */
  .rtl .productdeals .product-block .deal {
    left: 30px !important;
    right: auto;
  }
  /* line 104, ../development/scss/opencart/_responsive.scss */
  .productdeals .product-block .right {
    opacity: 1 !important;
    top: 80% !important;
    visibility: visible !important;
  }

  /* line 114, ../development/scss/opencart/_responsive.scss */
  .pav-newsletter .explain {
    display: none;
  }
  /* line 117, ../development/scss/opencart/_responsive.scss */
  .pav-newsletter .input-newsletter {
    padding-left: 30px;
  }
  /* line 336, ../development/scss/mixins/_app.scss */
  .rtl .pav-newsletter .input-newsletter {
    padding-right: 30px;
    padding-left: inherit;
  }
  /* line 120, ../development/scss/opencart/_responsive.scss */
  .pav-newsletter .email {
    min-width: 250px !important;
  }

  /* line 126, ../development/scss/opencart/_responsive.scss */
  .product-block .right {
    box-shadow: none;
    padding-bottom: 0px;
    padding-left: 0;
    opacity: 1;
    position: relative;
    visibility: visible;
    top: 0;
  }
  /* line 336, ../development/scss/mixins/_app.scss */
  .rtl .product-block .right {
    padding-right: 0;
    padding-left: inherit;
  }
  /* line 136, ../development/scss/opencart/_responsive.scss */
  .product-block:hover .right {
    top: 0;
  }
  /* line 140, ../development/scss/opencart/_responsive.scss */
  .product-block .btn-variant {
    padding: 8px 10px;
  }

  /* line 145, ../development/scss/opencart/_responsive.scss */
  .product-list .product-block .right {
    top: 0;
  }

  /* line 150, ../development/scss/opencart/_responsive.scss */
  .pav-colorbox, .product-zoom, .colorbox {
    display: none;
  }

  /* line 154, ../development/scss/opencart/_responsive.scss */
  a.pavreassurances {
    display: none;
  }

  /* line 157, ../development/scss/opencart/_responsive.scss */
  .col-sm-6:nth-child(2n+1) {
    clear: left;
  }
  /* line 325, ../development/scss/mixins/_app.scss */
  .rtl .col-sm-6:nth-child(2n+1) {
    clear: right;
  }

  /* line 160, ../development/scss/opencart/_responsive.scss */
  .zoomContainer {
    display: none !important;
  }
}
/*$media (max-width: 767px) {*/
@media (max-width: 767px) {
  /* line 169, ../development/scss/opencart/_responsive.scss */
  .quick-top-link {
    padding: 0;
  }
  /* line 171, ../development/scss/opencart/_responsive.scss */
  .quick-top-link i.fa {
    font-size: 16px;
    padding-top: 5px;
    color: #959595;
  }

  /* line 178, ../development/scss/opencart/_responsive.scss */
  .navbar-toggle {
    display: block !important;
  }

  .navbar-light .navbar-toggler-icon {
    background-image: url("/img/nav-toggle.png");
  }

  /* line 182, ../development/scss/opencart/_responsive.scss */
  .navbar-collapse.collapse {
    display: none;
  }

  /* line 186, ../development/scss/opencart/_responsive.scss */
  #mainmenutop .navbar-nav {
    display: block;
  }

  /* line 189, ../development/scss/opencart/_responsive.scss */
  .navbar-fixed-top {
    position: absolute;
  }

  /* line 192, ../development/scss/opencart/_responsive.scss */
  .hide-bar #topbar {
    margin-top: 0;
  }

  /* line 197, ../development/scss/opencart/_responsive.scss */
  #menu-offcanvas .dropdown .dropdown-menu {
    display: none;
  }
  /* line 200, ../development/scss/opencart/_responsive.scss */
  #menu-offcanvas .dropdown.open .dropdown-menu {
    display: block;
  }

  /* line 204, ../development/scss/opencart/_responsive.scss */
  #header-main {
    background: white !important;
    position: relative !important;
    top: 0 !important;
  }

  /*config layout button toggle,logo,search*/
  /* line 210, ../development/scss/opencart/_responsive.scss */
  #header-main .inner {
    text-align: center;
    display: block;
  }

  /* line 215, ../development/scss/opencart/_responsive.scss */
  .mainnav {
    position: absolute;
    left: 0;
    top: 0;
  }
  /* line 424, ../development/scss/mixins/_app.scss */
  .rtl .mainnav {
    right: 0;
    left: auto;
  }

  /* line 220, ../development/scss/opencart/_responsive.scss */
  .box-search {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 55px;
  }
  /* line 431, ../development/scss/mixins/_app.scss */
  .rtl .box-search {
    left: 0;
    right: auto;
  }

  /* line 226, ../development/scss/opencart/_responsive.scss */
  .logo-store {
    display: inline-block;
  }

  /* line 231, ../development/scss/opencart/_responsive.scss */
  .tparrows {
    display: none;
  }

  /* line 237, ../development/scss/opencart/_responsive.scss */
  #productdeals .product-block .deal {
    right: 30px;
  }
  /* line 431, ../development/scss/mixins/_app.scss */
  .rtl #productdeals .product-block .deal {
    left: 30px;
    right: auto;
  }
  /* line 240, ../development/scss/opencart/_responsive.scss */
  #productdeals .product-block .right {
    opacity: 1 !important;
    top: 80% !important;
    visibility: visible !important;
  }

  /* line 249, ../development/scss/opencart/_responsive.scss */
  .product-block .img {
    display: inline-block;
  }
  /* line 252, ../development/scss/opencart/_responsive.scss */
  .product-block .right {
    box-shadow: none;
    padding-bottom: 0px;
    padding-left: 0;
    opacity: 1;
    position: relative;
    visibility: visible;
    top: 0;
  }
  /* line 336, ../development/scss/mixins/_app.scss */
  .rtl .product-block .right {
    padding-right: 0;
    padding-left: inherit;
  }
  /* line 262, ../development/scss/opencart/_responsive.scss */
  .product-block:hover .right {
    top: 0;
  }
  /* line 266, ../development/scss/opencart/_responsive.scss */
  .product-block .btn-variant {
    padding: 8px 10px;
  }

  /* line 271, ../development/scss/opencart/_responsive.scss */
  .product-list .product-block .right {
    top: 0;
  }

  /* line 276, ../development/scss/opencart/_responsive.scss */
  .pav-colorbox, .product-zoom, .colorbox {
    display: none;
  }

  /* line 279, ../development/scss/opencart/_responsive.scss */
  .scrollup {
    display: none !important;
  }

  /* line 283, ../development/scss/opencart/_responsive.scss */
  a.pavreassurances {
    display: none;
  }

  /* line 286, ../development/scss/opencart/_responsive.scss */
  .col-sm-6:nth-child(2n+1) {
    clear: left;
  }
  /* line 325, ../development/scss/mixins/_app.scss */
  .rtl .col-sm-6:nth-child(2n+1) {
    clear: right;
  }

  /* line 289, ../development/scss/opencart/_responsive.scss */
  .zoomContainer {
    display: none !important;
  }

  /* line 292, ../development/scss/opencart/_responsive.scss */
  .product-list {
    display: none;
  }

  /* line 296, ../development/scss/opencart/_responsive.scss */
  .cart-info .model {
    display: none;
  }
}
/*$media (max-width: 480px) {*/
@media (max-width: 480px) {
  /* line 305, ../development/scss/opencart/_responsive.scss */
  #topbar .shopping-cart {
    display: none;
  }
  /* line 308, ../development/scss/opencart/_responsive.scss */
  #topbar .quick-top-link {
    float: right !important;
  }
  /* line 311, ../development/scss/opencart/_responsive.scss */
  #topbar .dropdown-menu {
    right: 0 !important;
    left: inherit;
  }

  /* line 317, ../development/scss/opencart/_responsive.scss */
  .rtl #topbar .quick-top-link {
    float: left !important;
  }

  /* line 320, ../development/scss/opencart/_responsive.scss */
  .rtl #topbar .dropdown-menu {
    left: 0 !important;
    right: inherit !important;
  }

  /* line 324, ../development/scss/opencart/_responsive.scss */
  .mainnav {
    top: -70px;
  }

  /* line 327, ../development/scss/opencart/_responsive.scss */
  .pavtestimonial {
    display: none;
  }

  /* line 330, ../development/scss/opencart/_responsive.scss */
  .product-list {
    display: none;
  }

  /* line 334, ../development/scss/opencart/_responsive.scss */
  .product-filter .display {
    clear: both;
    display: none;
  }
  /* line 338, ../development/scss/opencart/_responsive.scss */
  .product-filter .filter-right {
    display: inline-block;
  }
  /* line 339, ../development/scss/opencart/_responsive.scss */
  .product-filter .filter-right span {
    display: none;
  }
  /* line 342, ../development/scss/opencart/_responsive.scss */
  .product-filter .product-compare {
    line-height: 50px;
  }

  /* line 347, ../development/scss/opencart/_responsive.scss */
  .cart-info .model, .cart-info .price, .cart-info .image {
    display: none;
  }

  /* line 351, ../development/scss/opencart/_responsive.scss */
  .tabs-left > ul {
    float: none;
  }

  /* line 354, ../development/scss/opencart/_responsive.scss */
  .tabs-right > ul {
    float: none;
  }

  /* line 357, ../development/scss/opencart/_responsive.scss */
  .navbar-toggle .fa {
    background: #959595;
  }
}

/*-----------------------------------------------------------------------------

	-	Revolution Slider 1.5.3 -

		Screen Stylesheet

version:   	2.1
date:      	09/18/11
last update: 06.12.2012
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------

	-	Revolution Slider 2.0 Captions -

		Screen Stylesheet

version:   	1.4.5
date:      	09/18/11
last update: 06.12.2012
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

	.layerslider-wrapper{
		margin: 0 auto;
		position: relative;
	}
	.rev_slider{
		position: relative;
		overflow: hidden;
		height:300px; 
		width:940px; 
	}
	.bannercontainer {
		position: relative;margin: 0px auto;
		overflow:hidden;
	
	}
	.bannercontainer .banner-fullwidth{
		  width: 100% !important;
		  max-height: 500px !important;
	}
	.bannercontainer .fullwidthbanner{
	  	max-height: 500px !important;
	    overflow: hidden!important;
	    padding: 0;
	    position: relative;
	}
	.bannercontainer.banner-fullwidth{
		width: 100% !important;
	}
/*************************
	-	CAPTIONS	-
**************************/

.tp-hide-revslider,.tp-caption.tp-hidden-caption	{	visibility:hidden !important; display:none !important;}

.tp-caption { z-index:1;}
.tp-caption.big_white{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 800;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			padding: 3px 4px;
			padding-top: 1px;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			background-color:#000;
			letter-spacing: 0px;
		}

.tp-caption.big_orange{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 700;
			font-size: 36px;
			line-height: 36px;
			font-family: Arial;
			padding: 0px 4px;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			background-color:#fb7354;
			letter-spacing: -1.5px;
		}

.tp-caption.big_black{
			position: absolute;
			color: #000;
			text-shadow: none;
			font-weight: 800;
			font-size: 36px;
			line-height: 36px;
			font-family: 'Open Sans', sans;
			padding: 0px 4px;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			background-color:#fff;
			letter-spacing: -1.5px;
		}

.tp-caption.medium_grey{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 700;
			font-size: 20px;
			line-height: 20px;
			font-family: Arial;
			padding: 2px 4px;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			background-color:#888;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
		}

.tp-caption.small_text{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 700;
			font-size: 14px;
			line-height: 20px;
			font-family: Arial;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
		}

.tp-caption.medium_text{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 300;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
		}

.tp-caption.large_text{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 800;
			font-size: 36px;
			line-height: 36px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
		}
.tp-caption.large_black_text{
			position: absolute;
			color: #000;
			text-shadow: none;
			font-weight: 300;
			font-size: 42px;
			line-height: 42px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}

.tp-caption.very_large_text{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 800;
			font-size: 60px;
			line-height: 60px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
			letter-spacing: 0px;
		}
.tp-caption.very_large_black_text{
			position: absolute;
			color: #000;
			text-shadow: none;
			font-weight: 800;
			font-size: 72px;
			line-height: 72px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}
.tp-caption.bold_red_text{
			position: absolute;
			color: #d31e00;
			text-shadow: none;
			font-weight: 800;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}
.tp-caption.bold_brown_text{
			position: absolute;
			color: #a04606;
			text-shadow: none;
			font-weight: 800;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}
    .tp-caption.bold_green_text{
			position: absolute;
			color: #5b9830;
			text-shadow: none;
			font-weight: 800;
			font-size: 20px;
			line-height: 20px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
		}

.tp-caption.very_big_white{
			position: absolute;
			color: #fff;
			text-shadow: none;
			font-weight: 800;
			font-size: 36px;
			line-height: 36px;
			font-family: 'Open Sans', sans;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			padding: 3px 4px;
			padding-top: 1px;
			background-color:#7e8e96;
					}

.tp-caption.very_big_black{
			position: absolute;
			color: #000;
			text-shadow: none;
			font-weight: 700;
			font-size: 60px;
			line-height: 60px;
			font-family: Arial;
			margin: 0px;
			border-width: 0px;
			border-style: none;
			white-space:nowrap;
			padding: 0px 4px;
			padding-top: 1px;
			background-color:#fff;
					}
.tp-caption.cus_black {
			position: absolute;
			color: #232323;
			font-weight: 700;
			font-size: 54px;
			line-height: 54px;
			font-family: 'Open Sans', sans;
			text-transform: uppercase;
}
.tp-caption.cus_color {
			position: absolute;
			color: #5f9a7b;
			font-weight: 700;
			font-size: 64px;
			line-height: 64px;
			font-family: 'Open Sans', sans;
			text-transform: uppercase;
}


.tp-caption.boxshadow{
		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}

.tp-caption.black{
		color: #000;
		text-shadow: none;
		font-weight: 300;
		font-size: 19px;
		line-height: 19px;
		font-family: 'Open Sans', sans;
	}

.tp-caption.noshadow {
		text-shadow: none;
	}

.tp-caption a {
	color: #ff7302; text-shadow: none;	-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
}

.tp-caption a:hover {
	color: #ffa902;
}


.tp_inner_padding	{	box-sizing:border-box;
						-webkit-box-sizing:border-box;
						-moz-box-sizing:border-box;
						max-height:none !important;	}

/******************************
	-	BUTTONS	-
*******************************/

.tp-button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
						cursor:pointer;
						color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
						background:url(../images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
					}

.button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(../images/gradient/g40.png) repeat-x top;}


.purchase:hover,
.button:hover,
.button.big:hover		{	background-position:bottom, 15px 11px;}



	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
		a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important;}
		a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }
	}





/*	BUTTON COLORS	*/



.button.green, .button:hover.green,
.purchase.green, .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }


.button.blue, .button:hover.blue,
.purchase.blue, .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68;}


.button.red, .button:hover.red,
.purchase.red, .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212;}

.button.orange, .button:hover.orange,
.purchase.orange, .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00;}

.button.darkgrey,.button.grey,
.button:hover.darkgrey,.button:hover.grey,
.purchase.darkgrey, .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222;}

.button.lightgrey, .button:hover.lightgrey,
.purchase.lightgrey, .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555;}



/****************************************************************

	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -

******************************************************************/

.tp-simpleresponsive .slotholder *,
.tp-simpleresponsive img			{ -webkit-transform: translateZ(0);
										  -webkit-backface-visibility: hidden;
										  -webkit-perspective: 1000;
									}


/************************************************
	  - SOME CAPTION MODIFICATION AT START  -
*************************************************/
.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";	-moz-opacity: 0;	-khtml-opacity: 0;	opacity: 0; position:absolute; visibility: hidden;

}

.tp-simpleresponsive img	{	max-width:none;}



/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/******************************
	-	SHADOWS		-
******************************/
.tp-bannershadow  {
		position:absolute;

		margin-left:auto;
		margin-right:auto;
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
	}

.tp-bannershadow.tp-shadow1 {	background:url(../assets/shadow1.png) no-repeat; background-size:100%; width:890px; height:30px; bottom:-30px;}
.tp-bannershadow.tp-shadow2 {	background:url(../assets/shadow2.png) no-repeat; background-size:100%; width:890px; height:60px;bottom:-60px;}
.tp-bannershadow.tp-shadow3 {	background:url(../assets/shadow3.png) no-repeat; background-size:100%; width:890px; height:60px;bottom:-60px;}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%;}
.caption.fullscreenvideo iframe	{ width:100% !important; height:100% !important;}

.tp-caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%;}
.tp-caption.fullscreenvideo iframe	{ width:100% !important; height:100% !important;}

/************************
	-	NAVIGATION	-
*************************/

/** BULLETS **/

.tpclear		{	clear:both;}


.tp-bullets								{	z-index:25; position:absolute;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
											}
.tp-bullets.hidebullets					{
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
												-moz-opacity: 0;
												-khtml-opacity: 0;
												opacity: 0;
											}


.tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(../assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;}

.tp-bullets.simplebullets.navbar-old					{ 	 background:url(../assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;}


.tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url(../assets/bullet.png) no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:-10px; margin-left:3px;}
.tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px;}

.tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(../assets/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:-12px;}
.tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px;}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(../assets/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:-10px;}
.tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px;}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(../assets/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:-10px;}
.tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px;}


/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(../assets/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:10px;}

.tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important;}
.tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important;}



/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(../assets/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px;}
.tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important;}
.tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important;}


.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected				{	background-position:top left; }

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left; }



/*************************************
	-	TP ARROWS 	-
**************************************/
.tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
															-moz-opacity: 1;
															-khtml-opacity: 1;
															opacity: 1;
															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;

														}
.tparrows.hidearrows									{
															-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
															-moz-opacity: 0;
															-khtml-opacity: 0;
															opacity: 0;
														}
.tp-leftarrow											{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/large_left.png) no-Repeat top left;	width:40px;	height:40px;   }
.tp-rightarrow											{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/large_right.png) no-Repeat top left;	width:40px;	height:40px;   }


.tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left; margin-top:-7px;	}
.tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left;	margin-top:-7px;}


.tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:-13px;	}
.tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:-13px;}


.tp-leftarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px;}
.tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px;}


.tp-leftarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrowleft.png) no-Repeat top left;		width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px;}
.tp-rightarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrowright.png) no-Repeat top left;	width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px;}

.tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px; }
.tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px; }

.tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:-9px;}
.tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:-9px;}


.tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:-9px;}
.tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:-9px;}



.tp-leftarrow.default									{	z-index:20;cursor:pointer; position:relative;	background:url(../assets/large_left.png) no-Repeat 0 0;	width:40.5px;	height:40.5px;

														}
.tp-rightarrow.default									{	z-index:20;cursor:pointer; position:relative;	background:url(../assets/large_right.png) no-Repeat 0 0;	width:40.5px;	height:40.5px;

														}




.tp-leftarrow:hover,
.tp-rightarrow:hover 									{	background-position: left -38px; }




/****************************************************************************************************
	-	TP THUMBS 	-
*****************************************************************************************************

 - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)

 - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)

 *****************************************************************************************************/


.tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												margin-top:-50px;
											}


.fullwidthbanner-container .tp-thumbs		{  padding:3px;}

.tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												overflow:hidden; position:relative;}


.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute;}

.tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
												/*filter: alpha(opacity=50);	*/
												-moz-opacity: 0.5;
												-khtml-opacity: 0.5;
												opacity: 0.5;

												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
											}


.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
											}
.tp-thumbs img								{	width:100%; }


/************************************
		-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	width:100%; height:10px; background:url(../assets/timer.png);position:absolute; z-index:200;}
.tp-bannertimer.tp-bottom					{	bottom:0px !important;height:5px;}




/***************************************
	-	RESPONSIVE SETTINGS 	-
****************************************/


	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
			.responsive .tp-bullets.tp-thumbs				{	width:300px !important; height:30px !important;}
			.responsive .tp-bullets.tp-thumbs .tp-mask		{	width:300px !important; height:30px !important;}
			.responsive .tp-bullets.tp-thumbs .bullet		{	width:60px !important;height:30px !important;}

	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
				.responsive .tp-bullets	{	display:none}
				.responsive .tparrows	{	display:none;}
	}





/*********************************************

	-	BASIC SETTINGS FOR THE BANNER	-

***********************************************/

 .tp-simpleresponsive img {
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
}



.tp-simpleresponsive a{	text-decoration:none;}

.tp-simpleresponsive ul {
	list-style:none;
	padding:0;
	margin:0;
}

.tp-simpleresponsive >ul >li{
	list-stye:none;
	position:absolute;
	visibility:hidden;
}
/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {	width:10000px; height:10000px;  background:url(../assets/coloredbg.png) repeat;}

.tp-loader 	{	background:url(../assets/loader.gif) no-repeat 10px 10px; background-color:#fff;  margin:-22px -22px; top:50%; left:50%; z-index:10000; position:absolute;width:44px;height:44px;
				border-radius: 3px;
				-moz-border-radius: 3px;
				-webkit-border-radius: 3px;
			}


.tp-transparentimg {	content:"url(../assets/transparent.png)"}
.tp-3d				{	-webkit-transform-style: preserve-3d;
						 -webkit-transform-origin: 50% 50%;
					}


/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000;}
#colorbox{}
    #cboxTopLeft{width:14px; height:14px; background:url(images/controls.png) no-repeat 0 0;}
    #cboxTopCenter{height:14px; background:url(images/border.png) repeat-x top left;}
    #cboxTopRight{width:14px; height:14px; background:url(images/controls.png) no-repeat -36px 0;}
    #cboxBottomLeft{width:14px; height:43px; background:url(images/controls.png) no-repeat 0 -32px;}
    #cboxBottomCenter{height:43px; background:url(images/border.png) repeat-x bottom left;}
    #cboxBottomRight{width:14px; height:43px; background:url(images/controls.png) no-repeat -36px -32px;}
    #cboxMiddleLeft{width:14px; background:url(images/controls.png) repeat-y -175px 0;}
    #cboxMiddleRight{width:14px; background:url(images/controls.png) repeat-y -211px 0;}
    #cboxContent{background:#fff; overflow:visible;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:5px;}
        #cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
        #cboxTitle{position:absolute; bottom:-25px; left:0; text-align:center; width:100%; font-weight:bold; color:#7C7C7C;}
        #cboxCurrent{position:absolute; bottom:-25px; left:58px; font-weight:bold; color:#7C7C7C;}
        
        #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{position:absolute; bottom:-29px; background:url(images/controls.png) no-repeat 0px 0px; width:23px; height:23px; text-indent:-9999px;}
        #cboxPrevious{left:0px; background-position: -51px -25px;}
        #cboxPrevious:hover{background-position:-51px 0px;}
        #cboxNext{left:27px; background-position:-75px -25px;}
        #cboxNext:hover{background-position:-75px 0px;}
        #cboxClose{right:0; background-position:-100px -25px;}
        #cboxClose:hover{background-position:-100px 0px;}
        
        .cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px; right:27px;}
        .cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0px;}
        .cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px; right:27px;}
        .cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0px;}
/*
 * jQuery UI CSS Framework 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,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:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* 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: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/*
 * jQuery UI CSS Framework 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS,%20Tahoma,%20Verdana,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=03_highlight_soft.png&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=02_glass.png&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=01_flat.png&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/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/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/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/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 { 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/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-widget :active { outline: 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/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/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); 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; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
.ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
.ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); }

/* positioning */
.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-off { background-position: -96px -144px; }
.ui-icon-radio-on { 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 { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }

/* Overlays */
.ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/*
 * jQuery UI Resizable 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Resizable#theming
 */
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; }
.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;}/*
 * jQuery UI Selectable 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Selectable#theming
 */
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
/*
 * jQuery UI Accordion 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion#theming
 */
/* IE/Win - Fix animation bug - #4615 */
.ui-accordion { width: 100%; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }
/*
 * jQuery UI Autocomplete 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete { position: absolute; cursor: default; }	

/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */

/*
 * jQuery UI Menu 1.8.16
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
	list-style:none;
	padding: 2px;
	margin: 0;
	display:block;
	float: left;
}
.ui-menu .ui-menu {
	margin-top: -3px;
}
.ui-menu .ui-menu-item {
	margin:0;
	padding: 0;
	zoom: 1;
	float: left;
	clear: left;
	width: 100%;
}
.ui-menu .ui-menu-item a {
	text-decoration:none;
	display:block;
	padding:.2em .4em;
	line-height:1.5;
	zoom:1;
}
.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}
/*
 * jQuery UI Button 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
.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: 1.4;  }
.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; }
.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 */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
/*
 * jQuery UI Dialog 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; 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: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
/*
 * jQuery UI Slider 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.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; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }

.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; }/*
 * jQuery UI Tabs 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.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: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }
/*
 * jQuery UI Datepicker 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.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-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month, 
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.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 { border-left-width:0; }
.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:0em; }

/* 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 { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}/*
 * jQuery UI Progressbar 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar { height:2em; text-align: left; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }