@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.
*/
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */ }

.animated, .ppr-product-item__link::after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.hinge, .hinge.ppr-product-item__link::after {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px); } }
@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); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px); } }
@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); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0); } }
@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); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center; }
  20% {
    -webkit-transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg); } }
@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); } }
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%); } }
@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%); } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1); } }
@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); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
            transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
            transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -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) rotateY(360deg) scale(0.95);
            transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) scale(1);
            transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; } }
.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flip;
          animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg) translateY(-600px);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0);
    opacity: 1; } }
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg) translateY(-600px);
            transform: perspective(400px) rotateX(90deg) translateY(-600px);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0);
            transform: perspective(400px) rotateX(0deg) translateY(0);
    opacity: 1; } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
@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; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
@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; } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
@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; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY; }

@-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 fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fadeInLeft, .ppr-product-item__link::after {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-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 fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px); } }
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px); } }
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px); } }
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1); } }
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0); } }
@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); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0); } }
@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); } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0); } }
@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); } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0); } }
@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); } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3); } }
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); } }
@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); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px); } }
@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); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); } }
@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); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px); } }
@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); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@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; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@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; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@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; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@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; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@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; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0; } }
@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; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; } }
@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; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; } }
@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; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; } }
@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; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; } }
@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; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0; } }
@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; } }
.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); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg); } }
@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); } }
.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); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg); } }
@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); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
@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; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

.animated.lightSpeedIn, .lightSpeedIn.ppr-product-item__link::after {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s; }

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
@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; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

.animated.lightSpeedOut, .lightSpeedOut.ppr-product-item__link::after {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s; }

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg); }
  10% {
    -webkit-transform: skewX(-8deg); }
  20% {
    -webkit-transform: skewX(7deg); }
  30% {
    -webkit-transform: skewX(-6deg); }
  40% {
    -webkit-transform: skewX(5deg); }
  50% {
    -webkit-transform: skewX(-4deg); }
  60% {
    -webkit-transform: skewX(3deg); }
  70% {
    -webkit-transform: skewX(-2deg); }
  80% {
    -webkit-transform: skewX(1deg); }
  90% {
    -webkit-transform: skewX(0deg); }
  100% {
    -webkit-transform: skewX(0deg); } }
@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
            transform: skewX(9deg); }
  10% {
    -webkit-transform: skewX(-8deg);
            transform: skewX(-8deg); }
  20% {
    -webkit-transform: skewX(7deg);
            transform: skewX(7deg); }
  30% {
    -webkit-transform: skewX(-6deg);
            transform: skewX(-6deg); }
  40% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg); }
  50% {
    -webkit-transform: skewX(-4deg);
            transform: skewX(-4deg); }
  60% {
    -webkit-transform: skewX(3deg);
            transform: skewX(3deg); }
  70% {
    -webkit-transform: skewX(-2deg);
            transform: skewX(-2deg); }
  80% {
    -webkit-transform: skewX(1deg);
            transform: skewX(1deg); }
  90% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg); }
  100% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg); } }
.wiggle {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

.animated.wiggle, .wiggle.ppr-product-item__link::after {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s; }

/*
    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;
  max-width: none; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0; }

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box; }

/* 
    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; }

#cboxTopLeft {
  width: 20px;
  height: 25px;
  background: transparent; }

#cboxTopCenter {
  height: 25px;
  background: transparent; }

#cboxTopRight {
  width: 20px;
  height: 25px;
  background: transparent; }

#cboxBottomLeft {
  width: 20px;
  height: 15px;
  background: transparent; }

#cboxBottomCenter {
  height: 15px;
  background: transparent; }

#cboxBottomRight {
  width: 20px;
  height: 15px;
  background: transparent; }

#cboxMiddleLeft {
  width: 20px;
  background: transparent; }

#cboxMiddleRight {
  width: 20px;
  background: transparent; }

#cboxContent {
  background: transparent;
  /*overflow:hidden;*/ }

.cboxIframe {
  background: #fff; }

#cboxError {
  padding: 50px;
  border: 1px solid #ccc; }

#cboxLoadedContent {
  margin-bottom: 25px; }

#cboxTitle {
  position: absolute;
  bottom: 0px;
  left: 0px;
  text-align: left;
  font-size: 14px;
  width: 100%;
  color: #000; }

#cboxCurrent {
  position: absolute;
  bottom: 0px;
  left: 100px;
  color: #999; }

#cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 42px;
  color: #444; }

#cboxPrevious {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #444; }

#cboxNext {
  position: absolute;
  bottom: 0px;
  left: 63px;
  color: #444; }

#cboxLoadingOverlay {
  background: #fff url(../../img/colorbox/loading.gif) no-repeat 5px 5px; }

#cboxClose {
  position: absolute;
  top: -25px;
  right: -20px;
  display: block;
  width: 24px;
  height: 24px;
  font-size: 14px;
  color: #444;
  border: none;
  text-indent: -9999px;
  background-color: transparent;
  background-image: url("/assets/img/sprite.png");
  background-position: -3px -25px;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5); }

.ie7 #cboxClose {
  bottom: 0px; }

#colorbox.colorbox--form #cboxTopLeft {
  background: #FFF; }
#colorbox.colorbox--form #cboxTopCenter {
  background: #FFF; }
#colorbox.colorbox--form #cboxTopRight {
  background: #FFF; }
#colorbox.colorbox--form #cboxBottomLeft {
  background: #FFF; }
#colorbox.colorbox--form #cboxBottomCenter {
  background: #FFF; }
#colorbox.colorbox--form #cboxBottomRight {
  background: #FFF; }
#colorbox.colorbox--form #cboxMiddleLeft {
  background: #FFF; }
#colorbox.colorbox--form #cboxMiddleRight {
  background: #FFF; }
#colorbox.colorbox--form #cboxContent {
  background: #FFF; }
#colorbox.colorbox--form #cboxClose {
  background-color: #FFF;
  background-position: -34px -25px; }

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); }

.fill-lightgreen,
.Controlling.color_level_1,
.Controlling .color_level_1 {
  background-color: #aecc1d !important; }

.fill-midgreen,
.Controlling.color_level_2,
.Controlling .color_level_2 {
  background-color: #7fb21a !important; }

.fill-darkgreen,
.Controlling.color_level_3,
.Controlling .color_level_3 {
  background-color: #4f8b13 !important; }

.fill-darkergreen,
.Controlling.color_level_4,
.Controlling .color_level_4 {
  background-color: #3b7213 !important; }

.fill-lightorange,
.Management.color_level_1,
.Management .color_level_1 {
  background-color: #f09f00 !important; }

.fill-midorange,
.Management.color_level_2,
.Management .color_level_2 {
  background-color: #e76d16 !important; }

.fill-darkorange,
.Management.color_level_3,
.Management .color_level_3 {
  background-color: #ce4525 !important; }

.fill-darkerorange,
.Management.color_level_4,
.Management .color_level_4 {
  background-color: #a42c27 !important; }

.fill-lightblue,
.Basic.color_level_1,
.Basic .color_level_1 {
  background-color: #3177c7 !important; }

.fill-midblue,
.Basic.color_level_2,
.Basic .color_level_2 {
  background-color: #1868bd !important; }

.fill-darkblue,
.Basic.color_level_3,
.Basic .color_level_3 {
  background-color: #004a99 !important; }

.fill-darkdark {
  background-color: #171719 !important; }

.fill-darky {
  background-color: #282828 !important; }

.text-lightgreen {
  color: #aecc1d !important; }

.text-midgreen {
  color: #7fb21a !important; }

.text-darkgreen {
  color: #4f8b13 !important; }

.text-lightorange {
  color: #f09f00 !important; }

.text-midorange {
  color: #e76d16 !important; }

.text-darkorange {
  color: #ce4525 !important; }

.text-lightblue {
  color: #3177c7 !important; }

.text-midblue {
  color: #1868bd !important; }

.text-white {
  color: #FFF !important; }

.text-lightgray {
  color: #ddd !important; }

/*
sample:
.element {
  @include rem('padding',10px 0 2px 5px);
}
*/
/* ==========================================================================
   Helper classes
   ========================================================================== */
.js .preloading * {
  transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0; }

.hardwareaccelerated {
  -webkit-transform: translateZ(0);
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden; }

.tansOut {
  -webkit-animation: fadeOut .4s ease;
  animation: fadeOut .4s ease; }

.transIn, .casestudies-teaser li figure:hover figcaption {
  -webkit-animation: fadeIn .6s ease;
  animation: fadeIn .6s ease; }

/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/**
 * Add/remove floats
 */
.float--right {
  float: right !important; }

.float--left {
  float: left !important; }

.float--none {
  float: none !important; }

/**
 * Text alignment
 */
.text--left {
  text-align: left  !important; }

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

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

.backDark {
  background-color: #000; }

.frontBright,
.frontBright a {
  color: #FFFFFF; }

.bdrB-smog {
  border-bottom: 1px solid #858585; }

.hide-text {
  text-indent: -100px;
  overflow: hidden; }

.bgrGray {
  background-color: #F2F2F2; }

.pa20 {
  padding: 20px; }

.info-i {
  border: 1px solid #000;
  font-size: 11px;
  display: inline-block;
  padding: 0 4px;
  line-height: 13px;
  text-transform: lowercase;
  margin-left: 8px;
  cursor: pointer; }

body .popover {
  border-radius: 0;
  background-color: #000;
  border: none;
  box-shadow: none;
  max-width: 340px; }
  body .popover .popover-content {
    background: #000;
    color: #fff;
    text-transform: none;
    font-weight: normal;
    border: none;
    padding: 16px; }
    body .popover .popover-content a {
      color: #fff;
      font-weight: bold; }

.info-i-closer {
  float: right;
  font-size: 22px;
  padding-left: 24px;
  padding-bottom: 24px;
  padding-right: 4px; }

.info-i-closer:hover {
  text-decoration: none; }

body .popover.right .arrow:after {
  border-right-color: #000; }

.panoWidget {
  margin-bottom: 50px;
  position: relative;
  height: 560px; }
  .panoWidget img {
    position: absolute;
    top: 0;
    cursor: pointer; }

.pl_xl {
  padding-left: 4.7em !important; }

.pr_xl {
  padding-right: 4.7em !important; }

.txtAliCen {
  text-align: center; }

.touch_only {
  display: none; }

.touch .touch_only {
  display: block; }

/* apply a natural box layout model to all elements */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

/*!
 * Bootstrap v2.3.1
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block; }

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  /* Responsive images (ensure images don't scale beyond their parents) */
  max-width: 100%;
  /* Part 1: Set a maxium relative to the parent */
  width: auto\9;
  /* IE7-8 need help adjusting responsive images */
  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching */
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
.google-maps img {
  max-width: none; }

button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle; }

button,
input {
  *overflow: visible;
  line-height: normal; }

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

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

label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer; }

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

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

textarea {
  overflow: auto;
  vertical-align: top; }

@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
body {
  margin: 0;
  font-family: soleil, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #282828;
  background-color: #fff; }

a {
  color: #1967bf;
  text-decoration: none; }

a:hover,
a:focus {
  color: #10437b;
  text-decoration: underline; }

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

.img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }

.img-circle {
  border-radius: 500px; }

.row {
  margin-left: -50px;
  *zoom: 1; }
  .row:before, .row:after {
    display: table;
    content: "";
    line-height: 0; }
  .row:after {
    clear: both; }

[class*="span"] {
  float: left;
  min-height: 1px;
  margin-left: 50px; }

.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 950px; }

.span1 {
  width: 50px; }

.span2 {
  width: 150px; }

.span3 {
  width: 250px; }

.span4 {
  width: 350px; }

.span5 {
  width: 450px; }

.span6 {
  width: 550px; }

.span7 {
  width: 650px; }

.span8 {
  width: 750px; }

.span9 {
  width: 850px; }

.span10 {
  width: 950px; }

.offset1 {
  margin-left: 150px; }

.offset2 {
  margin-left: 250px; }

.offset3 {
  margin-left: 350px; }

.offset4 {
  margin-left: 450px; }

.offset5 {
  margin-left: 550px; }

.offset6 {
  margin-left: 650px; }

.offset7 {
  margin-left: 750px; }

.offset8 {
  margin-left: 850px; }

.offset9 {
  margin-left: 950px; }

.offset10 {
  margin-left: 1050px; }

.row-fluid {
  width: 100%;
  *zoom: 1; }
  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
    line-height: 0; }
  .row-fluid:after {
    clear: both; }
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
    float: left;
    margin-left: 5.26316%;
    *margin-left: 5.21053%; }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0; }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 5.26316%; }
  .row-fluid .span1 {
    width: 5.26316%;
    *width: 5.21053%; }
  .row-fluid .span2 {
    width: 15.78947%;
    *width: 15.73684%; }
  .row-fluid .span3 {
    width: 26.31579%;
    *width: 26.26316%; }
  .row-fluid .span4 {
    width: 36.84211%;
    *width: 36.78947%; }
  .row-fluid .span5 {
    width: 47.36842%;
    *width: 47.31579%; }
  .row-fluid .span6 {
    width: 57.89474%;
    *width: 57.84211%; }
  .row-fluid .span7 {
    width: 68.42105%;
    *width: 68.36842%; }
  .row-fluid .span8 {
    width: 78.94737%;
    *width: 78.89474%; }
  .row-fluid .span9 {
    width: 89.47368%;
    *width: 89.42105%; }
  .row-fluid .span10 {
    width: 100%;
    *width: 99.94737%; }
  .row-fluid .offset1 {
    margin-left: 15.78947%;
    *margin-left: 15.68421%; }
  .row-fluid .offset1:first-child {
    margin-left: 10.52632%;
    *margin-left: 10.42105%; }
  .row-fluid .offset2 {
    margin-left: 26.31579%;
    *margin-left: 26.21053%; }
  .row-fluid .offset2:first-child {
    margin-left: 21.05263%;
    *margin-left: 20.94737%; }
  .row-fluid .offset3 {
    margin-left: 36.84211%;
    *margin-left: 36.73684%; }
  .row-fluid .offset3:first-child {
    margin-left: 31.57895%;
    *margin-left: 31.47368%; }
  .row-fluid .offset4 {
    margin-left: 47.36842%;
    *margin-left: 47.26316%; }
  .row-fluid .offset4:first-child {
    margin-left: 42.10526%;
    *margin-left: 42.0%; }
  .row-fluid .offset5 {
    margin-left: 57.89474%;
    *margin-left: 57.78947%; }
  .row-fluid .offset5:first-child {
    margin-left: 52.63158%;
    *margin-left: 52.52632%; }
  .row-fluid .offset6 {
    margin-left: 68.42105%;
    *margin-left: 68.31579%; }
  .row-fluid .offset6:first-child {
    margin-left: 63.15789%;
    *margin-left: 63.05263%; }
  .row-fluid .offset7 {
    margin-left: 78.94737%;
    *margin-left: 78.84211%; }
  .row-fluid .offset7:first-child {
    margin-left: 73.68421%;
    *margin-left: 73.57895%; }
  .row-fluid .offset8 {
    margin-left: 89.47368%;
    *margin-left: 89.36842%; }
  .row-fluid .offset8:first-child {
    margin-left: 84.21053%;
    *margin-left: 84.10526%; }
  .row-fluid .offset9 {
    margin-left: 100.0%;
    *margin-left: 99.89474%; }
  .row-fluid .offset9:first-child {
    margin-left: 94.73684%;
    *margin-left: 94.63158%; }
  .row-fluid .offset10 {
    margin-left: 110.52632%;
    *margin-left: 110.42105%; }
  .row-fluid .offset10:first-child {
    margin-left: 105.26316%;
    *margin-left: 105.15789%; }

[class*="span"].hide,
.row-fluid [class*="span"].hide {
  display: none; }

[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
  float: right; }

.container {
  margin-right: auto;
  margin-left: auto;
  *zoom: 1; }
  .container:before, .container:after {
    display: table;
    content: "";
    line-height: 0; }
  .container:after {
    clear: both; }

.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
  *zoom: 1; }
  .container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
    line-height: 0; }
  .container-fluid:after {
    clear: both; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 200;
  line-height: 30px; }

small {
  font-size: 85%; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

cite {
  font-style: normal; }

.muted {
  color: #999; }

a.muted:hover,
a.muted:focus {
  color: gray; }

.text-warning {
  color: #c09853; }

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

.text-error {
  color: #b94a48; }

a.text-error:hover,
a.text-error:focus {
  color: #953b39; }

.text-info {
  color: #3a87ad; }

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

.text-success {
  color: #468847; }

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 10px 0;
  font-family: inherit;
  font-weight: bold;
  line-height: 20px;
  color: inherit;
  text-rendering: optimizelegibility; }
  h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    font-weight: normal;
    line-height: 1;
    color: #999; }

h1,
h2,
h3 {
  line-height: 40px; }

h1 {
  font-size: 38.5px; }

h2 {
  font-size: 31.5px; }

h3 {
  font-size: 24.5px; }

h4 {
  font-size: 17.5px; }

h5 {
  font-size: 14px; }

h6 {
  font-size: 11.9px; }

h1 small {
  font-size: 24.5px; }

h2 small {
  font-size: 17.5px; }

h3 small {
  font-size: 14px; }

h4 small {
  font-size: 14px; }

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

ul, ol {
  padding: 0;
  margin: 0 0 10px 25px; }

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

li {
  line-height: 20px; }

ul.unstyled,
ol.unstyled {
  margin-left: 0;
  list-style: none; }

ul.inline,
ol.inline {
  margin-left: 0;
  list-style: none; }
  ul.inline > li,
  ol.inline > li {
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
    padding-left: 5px;
    padding-right: 5px; }

dl {
  margin-bottom: 20px; }

dt,
dd {
  line-height: 20px; }

dt {
  font-weight: bold; }

dd {
  margin-left: 10px; }

.dl-horizontal {
  *zoom: 1; }
  .dl-horizontal:before, .dl-horizontal:after {
    display: table;
    content: "";
    line-height: 0; }
  .dl-horizontal:after {
    clear: both; }
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; }

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

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

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

blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eee; }
  blockquote p {
    margin-bottom: 0;
    font-size: 17.5px;
    font-weight: 300;
    line-height: 1.25; }
  blockquote small {
    display: block;
    line-height: 20px;
    color: #999; }
    blockquote small:before {
      content: '\2014 \00A0'; }
  blockquote.pull-right {
    float: right;
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0; }
    blockquote.pull-right p,
    blockquote.pull-right small {
      text-align: right; }
    blockquote.pull-right small:before {
      content: ''; }
    blockquote.pull-right small:after {
      content: '\00A0 \2014'; }

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: ""; }

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

code,
pre {
  padding: 0 3px 2px;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 12px;
  color: #333;
  border-radius: 3px; }

code {
  padding: 2px 4px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  white-space: nowrap; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px; }
  pre.prettyprint {
    margin-bottom: 20px; }
  pre code {
    padding: 0;
    color: inherit;
    white-space: pre;
    white-space: pre-wrap;
    background-color: transparent;
    border: 0; }

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

form {
  margin: 0 0 20px; }

fieldset {
  padding: 0;
  margin: 0;
  border: 0; }

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

label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px; }

input,
button,
select,
textarea {
  font-family: soleil, "Helvetica Neue", Helvetica, Arial, sans-serif; }

label {
  display: block;
  margin-bottom: 5px; }

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555;
  border-radius: 0px;
  vertical-align: middle; }

input,
textarea,
.uneditable-input {
  width: 206px; }

textarea {
  height: auto; }

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s; }
  textarea:focus,
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="time"]:focus,
  input[type="week"]:focus,
  input[type="number"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="color"]:focus,
  .uneditable-input:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    outline: thin dotted \9;
    /* IE6-9 */
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); }

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

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto; }

select,
input[type="file"] {
  height: 30px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */
  line-height: 30px; }

select {
  width: 220px;
  border: 1px solid #ccc;
  background-color: #fff; }

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

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

.uneditable-input,
.uneditable-textarea {
  color: #999;
  background-color: #fcfcfc;
  border-color: #ccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  cursor: not-allowed; }

.uneditable-input {
  overflow: hidden;
  white-space: nowrap; }

.uneditable-textarea {
  width: auto;
  height: auto; }

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999; }
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999; }
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999; }

.radio,
.checkbox {
  min-height: 20px;
  padding-left: 20px; }

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  float: left;
  margin-left: -20px; }

.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px; }

.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle; }

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

.input-mini {
  width: 60px; }

.input-small {
  width: 90px; }

.input-medium {
  width: 150px; }

.input-large {
  width: 210px; }

.input-xlarge {
  width: 270px; }

.input-xxlarge {
  width: 530px; }

input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0; }

.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
  display: inline-block; }

input,
textarea,
.uneditable-input {
  margin-left: 0; }

.controls-row [class*="span"] + [class*="span"] {
  margin-left: 50px; }

input.span1,
textarea.span1,
.uneditable-input.span1 {
  width: 36px; }

input.span2,
textarea.span2,
.uneditable-input.span2 {
  width: 136px; }

input.span3,
textarea.span3,
.uneditable-input.span3 {
  width: 236px; }

input.span4,
textarea.span4,
.uneditable-input.span4 {
  width: 336px; }

input.span5,
textarea.span5,
.uneditable-input.span5 {
  width: 436px; }

input.span6,
textarea.span6,
.uneditable-input.span6 {
  width: 536px; }

input.span7,
textarea.span7,
.uneditable-input.span7 {
  width: 636px; }

input.span8,
textarea.span8,
.uneditable-input.span8 {
  width: 736px; }

input.span9,
textarea.span9,
.uneditable-input.span9 {
  width: 836px; }

input.span10,
textarea.span10,
.uneditable-input.span10 {
  width: 936px; }

.controls-row {
  *zoom: 1; }
  .controls-row:before, .controls-row:after {
    display: table;
    content: "";
    line-height: 0; }
  .controls-row:after {
    clear: both; }

.controls-row [class*="span"],
.row-fluid .controls-row [class*="span"] {
  float: left; }

.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
  padding-top: 5px; }

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eee; }

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent; }

.control-group.warning .control-label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
  color: #c09853; }
.control-group.warning .checkbox,
.control-group.warning .radio,
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  color: #c09853; }
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  border-color: #c09853;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .control-group.warning input:focus,
  .control-group.warning select:focus,
  .control-group.warning textarea:focus {
    border-color: #a47e3c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; }
.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853; }

.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
  color: #b94a48; }
.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  color: #b94a48; }
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  border-color: #b94a48;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .control-group.error input:focus,
  .control-group.error select:focus,
  .control-group.error textarea:focus {
    border-color: #953b39;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; }
.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48; }

.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
  color: #468847; }
.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  color: #468847; }
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  border-color: #468847;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .control-group.success input:focus,
  .control-group.success select:focus,
  .control-group.success textarea:focus {
    border-color: #356635;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; }
.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847; }

.control-group.info .control-label,
.control-group.info .help-block,
.control-group.info .help-inline {
  color: #3a87ad; }
.control-group.info .checkbox,
.control-group.info .radio,
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
  color: #3a87ad; }
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
  border-color: #3a87ad;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .control-group.info input:focus,
  .control-group.info select:focus,
  .control-group.info textarea:focus {
    border-color: #2d6987;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; }
.control-group.info .input-prepend .add-on,
.control-group.info .input-append .add-on {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #3a87ad; }

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b; }
  input:focus:invalid:focus,
  textarea:focus:invalid:focus,
  select:focus:invalid:focus {
    border-color: #e9322d;
    box-shadow: 0 0 6px #f8b9b7; }

.form-actions {
  padding: 19px 20px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  *zoom: 1; }
  .form-actions:before, .form-actions:after {
    display: table;
    content: "";
    line-height: 0; }
  .form-actions:after {
    clear: both; }

.help-block,
.help-inline {
  color: #4e4e4e; }

.help-block {
  display: block;
  margin-bottom: 10px; }

.help-inline {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  vertical-align: middle;
  padding-left: 5px; }

.input-append,
.input-prepend {
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: middle;
  font-size: 0;
  white-space: nowrap; }
  .input-append input,
  .input-append select,
  .input-append .uneditable-input,
  .input-append .dropdown-menu,
  .input-append .popover,
  .input-prepend input,
  .input-prepend select,
  .input-prepend .uneditable-input,
  .input-prepend .dropdown-menu,
  .input-prepend .popover {
    font-size: 14px; }
  .input-append input,
  .input-append select,
  .input-append .uneditable-input,
  .input-prepend input,
  .input-prepend select,
  .input-prepend .uneditable-input {
    position: relative;
    margin-bottom: 0;
    *margin-left: 0;
    vertical-align: top;
    border-radius: 0 0px 0px 0; }
    .input-append input:focus,
    .input-append select:focus,
    .input-append .uneditable-input:focus,
    .input-prepend input:focus,
    .input-prepend select:focus,
    .input-prepend .uneditable-input:focus {
      z-index: 2; }
  .input-append .add-on,
  .input-prepend .add-on {
    display: inline-block;
    width: auto;
    height: 20px;
    min-width: 16px;
    padding: 4px 5px;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    background-color: #eee;
    border: 1px solid #ccc; }
  .input-append .add-on,
  .input-append .btn,
  .input-append .btn-group > .dropdown-toggle,
  .input-prepend .add-on,
  .input-prepend .btn,
  .input-prepend .btn-group > .dropdown-toggle {
    vertical-align: top;
    border-radius: 0; }
  .input-append .active, .input-append .product-list .product-item .feature-list .feature-item.no-touch:hover, .product-list .product-item .feature-list .input-append .feature-item.no-touch:hover,
  .input-prepend .active,
  .input-prepend .product-list .product-item .feature-list .feature-item.no-touch:hover,
  .product-list .product-item .feature-list .input-prepend .feature-item.no-touch:hover {
    background-color: #a9dba9;
    border-color: #46a546; }

.input-prepend .add-on,
.input-prepend .btn {
  margin-right: -1px; }
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
  border-radius: 0px 0 0 0px; }

.input-append input,
.input-append select,
.input-append .uneditable-input {
  border-radius: 0px 0 0 0px; }
  .input-append input + .btn-group .btn:last-child,
  .input-append select + .btn-group .btn:last-child,
  .input-append .uneditable-input + .btn-group .btn:last-child {
    border-radius: 0 0px 0px 0; }
.input-append .add-on,
.input-append .btn,
.input-append .btn-group {
  margin-left: -1px; }
.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
  border-radius: 0 0px 0px 0; }

.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
  border-radius: 0; }
  .input-prepend.input-append input + .btn-group .btn,
  .input-prepend.input-append select + .btn-group .btn,
  .input-prepend.input-append .uneditable-input + .btn-group .btn {
    border-radius: 0 0px 0px 0; }
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  border-radius: 0px 0 0 0px; }
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  border-radius: 0 0px 0px 0; }
.input-prepend.input-append .btn-group:first-child {
  margin-left: 0; }

input.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */
  margin-bottom: 0;
  border-radius: 15px; }

/* Allow for input prepend/append in search forms */
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
  border-radius: 0; }

.form-search .input-append .search-query {
  border-radius: 14px 0 0 14px; }

.form-search .input-append .btn {
  border-radius: 0 14px 14px 0; }

.form-search .input-prepend .search-query {
  border-radius: 0 14px 14px 0; }

.form-search .input-prepend .btn {
  border-radius: 14px 0 0 14px; }

.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  margin-bottom: 0;
  vertical-align: middle; }
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
  display: none; }

.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
  display: inline-block; }

.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0; }

.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle; }

.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0; }

.control-group {
  margin-bottom: 10px; }

legend + .control-group {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate; }

.form-horizontal .control-group {
  margin-bottom: 20px;
  *zoom: 1; }
  .form-horizontal .control-group:before, .form-horizontal .control-group:after {
    display: table;
    content: "";
    line-height: 0; }
  .form-horizontal .control-group:after {
    clear: both; }
.form-horizontal .control-label {
  float: left;
  width: 160px;
  padding-top: 5px;
  text-align: right; }
.form-horizontal .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0; }
  .form-horizontal .controls:first-child {
    *padding-left: 180px; }
.form-horizontal .help-block {
  margin-bottom: 0; }
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block,
.form-horizontal .uneditable-input + .help-block,
.form-horizontal .input-prepend + .help-block,
.form-horizontal .input-append + .help-block {
  margin-top: 10px; }
.form-horizontal .form-actions {
  padding-left: 180px; }

table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0; }

.table {
  width: 100%;
  margin-bottom: 20px; }
  .table th,
  .table td {
    padding: 8px;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table th {
    font-weight: bold; }
  .table thead th {
    vertical-align: bottom; }
  .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; }
  .table tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

.table-condensed th,
.table-condensed td {
  padding: 4px 5px; }

.table-bordered {
  border: 1px solid #ddd;
  border-collapse: separate;
  *border-collapse: collapse;
  border-left: 0;
  border-radius: 0px; }
  .table-bordered th,
  .table-bordered td {
    border-left: 1px solid #ddd; }
  .table-bordered caption + thead tr:first-child th,
  .table-bordered caption + tbody tr:first-child th,
  .table-bordered caption + tbody tr:first-child td,
  .table-bordered colgroup + thead tr:first-child th,
  .table-bordered colgroup + tbody tr:first-child th,
  .table-bordered colgroup + tbody tr:first-child td,
  .table-bordered thead:first-child tr:first-child th,
  .table-bordered tbody:first-child tr:first-child th,
  .table-bordered tbody:first-child tr:first-child td {
    border-top: 0; }
  .table-bordered thead:first-child tr:first-child > th:first-child,
  .table-bordered tbody:first-child tr:first-child > td:first-child,
  .table-bordered tbody:first-child tr:first-child > th:first-child {
    border-top-left-radius: 0px; }
  .table-bordered thead:first-child tr:first-child > th:last-child,
  .table-bordered tbody:first-child tr:first-child > td:last-child,
  .table-bordered tbody:first-child tr:first-child > th:last-child {
    border-top-right-radius: 0px; }
  .table-bordered thead:last-child tr:last-child > th:first-child,
  .table-bordered tbody:last-child tr:last-child > td:first-child,
  .table-bordered tbody:last-child tr:last-child > th:first-child,
  .table-bordered tfoot:last-child tr:last-child > td:first-child,
  .table-bordered tfoot:last-child tr:last-child > th:first-child {
    border-bottom-left-radius: 0px; }
  .table-bordered thead:last-child tr:last-child > th:last-child,
  .table-bordered tbody:last-child tr:last-child > td:last-child,
  .table-bordered tbody:last-child tr:last-child > th:last-child,
  .table-bordered tfoot:last-child tr:last-child > td:last-child,
  .table-bordered tfoot:last-child tr:last-child > th:last-child {
    border-bottom-right-radius: 0px; }
  .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
    border-bottom-left-radius: 0; }
  .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
    border-bottom-right-radius: 0; }
  .table-bordered caption + thead tr:first-child th:first-child,
  .table-bordered caption + tbody tr:first-child td:first-child,
  .table-bordered colgroup + thead tr:first-child th:first-child,
  .table-bordered colgroup + tbody tr:first-child td:first-child {
    border-top-left-radius: 0px; }
  .table-bordered caption + thead tr:first-child th:last-child,
  .table-bordered caption + tbody tr:first-child td:last-child,
  .table-bordered colgroup + thead tr:first-child th:last-child,
  .table-bordered colgroup + tbody tr:first-child td:last-child {
    border-top-right-radius: 0px; }

.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9; }

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

table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0; }

.table td.span1,
.table th.span1 {
  float: none;
  width: 34px;
  margin-left: 0; }
.table td.span2,
.table th.span2 {
  float: none;
  width: 134px;
  margin-left: 0; }
.table td.span3,
.table th.span3 {
  float: none;
  width: 234px;
  margin-left: 0; }
.table td.span4,
.table th.span4 {
  float: none;
  width: 334px;
  margin-left: 0; }
.table td.span5,
.table th.span5 {
  float: none;
  width: 434px;
  margin-left: 0; }
.table td.span6,
.table th.span6 {
  float: none;
  width: 534px;
  margin-left: 0; }
.table td.span7,
.table th.span7 {
  float: none;
  width: 634px;
  margin-left: 0; }
.table td.span8,
.table th.span8 {
  float: none;
  width: 734px;
  margin-left: 0; }
.table td.span9,
.table th.span9 {
  float: none;
  width: 834px;
  margin-left: 0; }
.table td.span10,
.table th.span10 {
  float: none;
  width: 934px;
  margin-left: 0; }
.table td.span11,
.table th.span11 {
  float: none;
  width: 1034px;
  margin-left: 0; }
.table td.span12,
.table th.span12 {
  float: none;
  width: 1134px;
  margin-left: 0; }

.table tbody tr.success > td {
  background-color: #dff0d8; }
.table tbody tr.error > td {
  background-color: #f2dede; }
.table tbody tr.warning > td {
  background-color: #fcf8e3; }
.table tbody tr.info > td {
  background-color: #d9edf7; }

.table-hover tbody tr.success:hover > td {
  background-color: #d0e9c6; }
.table-hover tbody tr.error:hover > td {
  background-color: #ebcccc; }
.table-hover tbody tr.warning:hover > td {
  background-color: #faf2cc; }
.table-hover tbody tr.info:hover > td {
  background-color: #c4e3f3; }

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("../img/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
  margin-top: 1px; }

/* White icons with optional class, or on hover/focus/active states of certain elements */
.icon-white, .modal.bootstrap-timepicker-widget .icon-chevron-up, .modal.bootstrap-timepicker-widget .icon-chevron-down,
.nav-pills > .active > a > [class^="icon-"],
.product-list .product-item .feature-list .nav-pills > .feature-item.no-touch:hover > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.product-list .product-item .feature-list .nav-pills > .feature-item.no-touch:hover > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.product-list .product-item .feature-list .nav-list > .feature-item.no-touch:hover > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.product-list .product-item .feature-list .nav-list > .feature-item.no-touch:hover > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .product-list .product-item .feature-list .nav > .feature-item.no-touch:hover > a > [class^="icon-"],
.product-list .product-item .feature-list .navbar-inverse .nav > .feature-item.no-touch:hover > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.navbar-inverse .product-list .product-item .feature-list .nav > .feature-item.no-touch:hover > a > [class*=" icon-"],
.product-list .product-item .feature-list .navbar-inverse .nav > .feature-item.no-touch:hover > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:focus > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > li > a:focus > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.product-list .product-item .feature-list .dropdown-menu > .feature-item.no-touch:hover > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.product-list .product-item .feature-list .dropdown-menu > .feature-item.no-touch:hover > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
  background-image: url("../img/glyphicons-halflings-white.png"); }

.icon-glass {
  background-position: 0      0; }

.icon-music {
  background-position: -24px  0; }

.icon-search {
  background-position: -48px  0; }

.icon-envelope {
  background-position: -72px  0; }

.icon-heart {
  background-position: -96px  0; }

.icon-star {
  background-position: -120px 0; }

.icon-star-empty {
  background-position: -144px 0; }

.icon-user {
  background-position: -168px 0; }

.icon-film {
  background-position: -192px 0; }

.icon-th-large {
  background-position: -216px 0; }

.icon-th {
  background-position: -240px 0; }

.icon-th-list {
  background-position: -264px 0; }

.icon-ok {
  background-position: -288px 0; }

.icon-remove {
  background-position: -312px 0; }

.icon-zoom-in {
  background-position: -336px 0; }

.icon-zoom-out {
  background-position: -360px 0; }

.icon-off {
  background-position: -384px 0; }

.icon-signal {
  background-position: -408px 0; }

.icon-cog {
  background-position: -432px 0; }

.icon-trash {
  background-position: -456px 0; }

.icon-home {
  background-position: 0      -24px; }

.icon-file {
  background-position: -24px  -24px; }

.icon-time {
  background-position: -48px  -24px; }

.icon-road {
  background-position: -72px  -24px; }

.icon-download-alt {
  background-position: -96px  -24px; }

.icon-download {
  background-position: -120px -24px; }

.icon-upload {
  background-position: -144px -24px; }

.icon-inbox {
  background-position: -168px -24px; }

.icon-play-circle {
  background-position: -192px -24px; }

.icon-repeat {
  background-position: -216px -24px; }

.icon-refresh {
  background-position: -240px -24px; }

.icon-list-alt {
  background-position: -264px -24px; }

.icon-lock {
  background-position: -287px -24px; }

.icon-flag {
  background-position: -312px -24px; }

.icon-headphones {
  background-position: -336px -24px; }

.icon-volume-off {
  background-position: -360px -24px; }

.icon-volume-down {
  background-position: -384px -24px; }

.icon-volume-up {
  background-position: -408px -24px; }

.icon-qrcode {
  background-position: -432px -24px; }

.icon-barcode {
  background-position: -456px -24px; }

.icon-tag {
  background-position: 0      -48px; }

.icon-tags {
  background-position: -25px  -48px; }

.icon-book {
  background-position: -48px  -48px; }

.icon-bookmark {
  background-position: -72px  -48px; }

.icon-print {
  background-position: -96px  -48px; }

.icon-camera {
  background-position: -120px -48px; }

.icon-font {
  background-position: -144px -48px; }

.icon-bold {
  background-position: -167px -48px; }

.icon-italic {
  background-position: -192px -48px; }

.icon-text-height {
  background-position: -216px -48px; }

.icon-text-width {
  background-position: -240px -48px; }

.icon-align-left {
  background-position: -264px -48px; }

.icon-align-center {
  background-position: -288px -48px; }

.icon-align-right {
  background-position: -312px -48px; }

.icon-align-justify {
  background-position: -336px -48px; }

.icon-list {
  background-position: -360px -48px; }

.icon-indent-left {
  background-position: -384px -48px; }

.icon-indent-right {
  background-position: -408px -48px; }

.icon-facetime-video {
  background-position: -432px -48px; }

.icon-picture {
  background-position: -456px -48px; }

.icon-pencil {
  background-position: 0      -72px; }

.icon-map-marker {
  background-position: -24px  -72px; }

.icon-adjust {
  background-position: -48px  -72px; }

.icon-tint {
  background-position: -72px  -72px; }

.icon-edit {
  background-position: -96px  -72px; }

.icon-share {
  background-position: -120px -72px; }

.icon-check {
  background-position: -144px -72px; }

.icon-move {
  background-position: -168px -72px; }

.icon-step-backward {
  background-position: -192px -72px; }

.icon-fast-backward {
  background-position: -216px -72px; }

.icon-backward {
  background-position: -240px -72px; }

.icon-play {
  background-position: -264px -72px; }

.icon-pause {
  background-position: -288px -72px; }

.icon-stop {
  background-position: -312px -72px; }

.icon-forward {
  background-position: -336px -72px; }

.icon-fast-forward {
  background-position: -360px -72px; }

.icon-step-forward {
  background-position: -384px -72px; }

.icon-eject {
  background-position: -408px -72px; }

.icon-chevron-left {
  background-position: -432px -72px; }

.icon-chevron-right {
  background-position: -456px -72px; }

.icon-plus-sign {
  background-position: 0      -96px; }

.icon-minus-sign {
  background-position: -24px  -96px; }

.icon-remove-sign {
  background-position: -48px  -96px; }

.icon-ok-sign {
  background-position: -72px  -96px; }

.icon-question-sign {
  background-position: -96px  -96px; }

.icon-info-sign {
  background-position: -120px -96px; }

.icon-screenshot {
  background-position: -144px -96px; }

.icon-remove-circle {
  background-position: -168px -96px; }

.icon-ok-circle {
  background-position: -192px -96px; }

.icon-ban-circle {
  background-position: -216px -96px; }

.icon-arrow-left {
  background-position: -240px -96px; }

.icon-arrow-right {
  background-position: -264px -96px; }

.icon-arrow-up {
  background-position: -289px -96px; }

.icon-arrow-down {
  background-position: -312px -96px; }

.icon-share-alt {
  background-position: -336px -96px; }

.icon-resize-full {
  background-position: -360px -96px; }

.icon-resize-small {
  background-position: -384px -96px; }

.icon-plus {
  background-position: -408px -96px; }

.icon-minus {
  background-position: -433px -96px; }

.icon-asterisk {
  background-position: -456px -96px; }

.icon-exclamation-sign {
  background-position: 0      -120px; }

.icon-gift {
  background-position: -24px  -120px; }

.icon-leaf {
  background-position: -48px  -120px; }

.icon-fire {
  background-position: -72px  -120px; }

.icon-eye-open {
  background-position: -96px  -120px; }

.icon-eye-close {
  background-position: -120px -120px; }

.icon-warning-sign {
  background-position: -144px -120px; }

.icon-plane {
  background-position: -168px -120px; }

.icon-calendar {
  background-position: -192px -120px; }

.icon-random {
  background-position: -216px -120px;
  width: 16px; }

.icon-comment {
  background-position: -240px -120px; }

.icon-magnet {
  background-position: -264px -120px; }

.icon-chevron-up {
  background-position: -288px -120px; }

.icon-chevron-down {
  background-position: -313px -119px; }

.icon-retweet {
  background-position: -336px -120px; }

.icon-shopping-cart {
  background-position: -360px -120px; }

.icon-folder-close {
  background-position: -384px -120px;
  width: 16px; }

.icon-folder-open {
  background-position: -408px -120px;
  width: 16px; }

.icon-resize-vertical {
  background-position: -432px -119px; }

.icon-resize-horizontal {
  background-position: -456px -118px; }

.icon-hdd {
  background-position: 0      -144px; }

.icon-bullhorn {
  background-position: -24px  -144px; }

.icon-bell {
  background-position: -48px  -144px; }

.icon-certificate {
  background-position: -72px  -144px; }

.icon-thumbs-up {
  background-position: -96px  -144px; }

.icon-thumbs-down {
  background-position: -120px -144px; }

.icon-hand-right {
  background-position: -144px -144px; }

.icon-hand-left {
  background-position: -168px -144px; }

.icon-hand-up {
  background-position: -192px -144px; }

.icon-hand-down {
  background-position: -216px -144px; }

.icon-circle-arrow-right {
  background-position: -240px -144px; }

.icon-circle-arrow-left {
  background-position: -264px -144px; }

.icon-circle-arrow-up {
  background-position: -288px -144px; }

.icon-circle-arrow-down {
  background-position: -312px -144px; }

.icon-globe {
  background-position: -336px -144px; }

.icon-wrench {
  background-position: -360px -144px; }

.icon-tasks {
  background-position: -384px -144px; }

.icon-filter {
  background-position: -408px -144px; }

.icon-briefcase {
  background-position: -432px -144px; }

.icon-fullscreen {
  background-position: -456px -144px; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle {
  *margin-bottom: -3px; }

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

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: ""; }

.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px; }

.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;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    *width: 100%;
    height: 1px;
    margin: 9px 1px;
    *margin: -5px 0 5px;
    overflow: hidden;
    background-color: #e5e5e5;
    border-bottom: 1px solid #fff; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 20px;
    color: #333;
    white-space: nowrap; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  text-decoration: none;
  color: #fff;
  background-color: #1862b6;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1967bf), to(#165ba8));
  background-image: -webkit-linear-gradient(top, #1967bf, #165ba8);
  background-image: -o-linear-gradient(top, #1967bf, #165ba8);
  background-image: linear, to bottom, #1967bf, #165ba8;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF1967BF', endColorstr='#FF165BA8', GradientType=0); }

.dropdown-menu > .active > a, .product-list .product-item .feature-list .dropdown-menu > .feature-item.no-touch:hover > a,
.dropdown-menu > .active > a:hover,
.product-list .product-item .feature-list .dropdown-menu > .feature-item.no-touch:hover > a:hover,
.dropdown-menu > .active > a:focus,
.product-list .product-item .feature-list .dropdown-menu > .feature-item.no-touch:hover > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #1862b6;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1967bf), to(#165ba8));
  background-image: -webkit-linear-gradient(top, #1967bf, #165ba8);
  background-image: -o-linear-gradient(top, #1967bf, #165ba8);
  background-image: linear, to bottom, #1967bf, #165ba8;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF1967BF', endColorstr='#FF165BA8', GradientType=0); }

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

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

.open {
  *z-index: 1000; }
  .open > .dropdown-menu {
    display: block; }

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

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000;
  content: ""; }
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px; }

.dropdown-submenu {
  position: relative; }

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0 6px 6px 6px; }

.dropdown-submenu:hover > .dropdown-menu {
  display: block; }

.dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
  border-radius: 5px 5px 5px 0; }

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px; }

.dropdown-submenu:hover > a:after {
  border-left-color: #fff; }

.dropdown-submenu.pull-left {
  float: none; }
  .dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    border-radius: 6px 0 6px 6px; }

.dropdown .dropdown-menu .nav-header {
  padding-left: 20px;
  padding-right: 20px; }

.typeahead {
  z-index: 1051;
  margin-top: 2px;
  border-radius: 0px; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
  .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15); }

.well-large {
  padding: 24px;
  border-radius: 0px; }

.well-small {
  padding: 9px;
  border-radius: 0px; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease; }
  .fade.in {
    opacity: 1; }

.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.5s cubic-bezier(1, 0, 0, 1);
  transition: height 0.5s cubic-bezier(1, 0, 0, 1); }
  .collapse.in {
    height: auto; }

.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000;
  text-shadow: 0 1px 0 white;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
    filter: alpha(opacity=40); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.btn {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: whitesmoke;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
  background-image: -o-linear-gradient(top, #fff, #e6e6e6);
  background-image: linear, to bottom, #fff, #e6e6e6;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ccc;
  *border: 0;
  border-bottom-color: #b3b3b3;
  border-radius: 0px;
  *margin-left: .3em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }
  .btn:hover, .btn:focus, .btn:active, .btn.active, .product-list .product-item .feature-list .btn.feature-item.no-touch:hover, .btn.disabled, .btn[disabled] {
    color: #333;
    background-color: #e6e6e6;
    *background-color: #d9d9d9; }
  .btn:active, .btn.active, .product-list .product-item .feature-list .btn.feature-item.no-touch:hover {
    background-color: #cccccc \9; }
  .btn:first-child {
    *margin-left: 0; }
  .btn:hover, .btn:focus {
    color: #333;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear; }
  .btn:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn.active, .product-list .product-item .feature-list .btn.feature-item.no-touch:hover, .btn:active {
    background-image: none;
    outline: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
  .btn.disabled, .btn[disabled] {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none; }

.btn-large {
  padding: 11px 19px;
  font-size: 17.5px;
  border-radius: 0px; }

.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
  margin-top: 4px; }

.btn-small {
  padding: 2px 10px;
  font-size: 11.9px;
  border-radius: 0px; }

.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0; }

.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
  margin-top: -1px; }

.btn-mini {
  padding: 0px 6px;
  font-size: 10.5px;
  border-radius: 0px; }

.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box; }

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

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

.btn-primary.active, .product-list .product-item .feature-list .btn-primary.feature-item.no-touch:hover,
.btn-warning.active,
.product-list .product-item .feature-list .btn-warning.feature-item.no-touch:hover,
.btn-danger.active,
.product-list .product-item .feature-list .btn-danger.feature-item.no-touch:hover,
.btn-success.active,
.product-list .product-item .feature-list .btn-success.feature-item.no-touch:hover,
.btn-info.active,
.product-list .product-item .feature-list .btn-info.feature-item.no-touch:hover,
.btn-inverse.active,
.product-list .product-item .feature-list .btn-inverse.feature-item.no-touch:hover {
  color: rgba(255, 255, 255, 0.75); }

.btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2a89ff;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2a89ff), to(#2a89ff));
  background-image: -webkit-linear-gradient(top, #2a89ff, #2a89ff);
  background-image: -o-linear-gradient(top, #2a89ff, #2a89ff);
  background-image: linear, to bottom, #2a89ff, #2a89ff;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF2A89FF', endColorstr='#FF2A89FF', GradientType=0);
  border-color: #2a89ff #2a89ff #0062dd;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #2a89ff;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .product-list .product-item .feature-list .btn-primary.feature-item.no-touch:hover, .btn-primary.disabled, .btn-primary[disabled] {
    color: #fff;
    background-color: #2a89ff;
    *background-color: #117bff; }
  .btn-primary:active, .btn-primary.active, .product-list .product-item .feature-list .btn-primary.feature-item.no-touch:hover {
    background-color: #006ef6 \9; }

.btn-warning {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear, to bottom, #fbb450, #f89406;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFBB450', endColorstr='#FFF89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #f89406;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
  .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .product-list .product-item .feature-list .btn-warning.feature-item.no-touch:hover, .btn-warning.disabled, .btn-warning[disabled] {
    color: #fff;
    background-color: #f89406;
    *background-color: #df8505; }
  .btn-warning:active, .btn-warning.active, .product-list .product-item .feature-list .btn-warning.feature-item.no-touch:hover {
    background-color: #c67605 \9; }

.btn-danger {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear, to bottom, #ee5f5b, #bd362f;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEE5F5B', endColorstr='#FFBD362F', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #bd362f;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
  .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .product-list .product-item .feature-list .btn-danger.feature-item.no-touch:hover, .btn-danger.disabled, .btn-danger[disabled] {
    color: #fff;
    background-color: #bd362f;
    *background-color: #a9302a; }
  .btn-danger:active, .btn-danger.active, .product-list .product-item .feature-list .btn-danger.feature-item.no-touch:hover {
    background-color: #942a25 \9; }

.btn-success {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: linear, to bottom, #62c462, #51a351;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF62C462', endColorstr='#FF51A351', GradientType=0);
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #51a351;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
  .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .product-list .product-item .feature-list .btn-success.feature-item.no-touch:hover, .btn-success.disabled, .btn-success[disabled] {
    color: #fff;
    background-color: #51a351;
    *background-color: #499249; }
  .btn-success:active, .btn-success.active, .product-list .product-item .feature-list .btn-success.feature-item.no-touch:hover {
    background-color: #408140 \9; }

.btn-info {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #49afcd;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: linear, to bottom, #5bc0de, #2f96b4;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5BC0DE', endColorstr='#FF2F96B4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #2f96b4;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
  .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .product-list .product-item .feature-list .btn-info.feature-item.no-touch:hover, .btn-info.disabled, .btn-info[disabled] {
    color: #fff;
    background-color: #2f96b4;
    *background-color: #2a85a0; }
  .btn-info:active, .btn-info.active, .product-list .product-item .feature-list .btn-info.feature-item.no-touch:hover {
    background-color: #24748c \9; }

.btn-inverse {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));
  background-image: -webkit-linear-gradient(top, #444, #222);
  background-image: -o-linear-gradient(top, #444, #222);
  background-image: linear, to bottom, #444, #222;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF444444', endColorstr='#FF222222', GradientType=0);
  border-color: #222 #222 black;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #222;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
  .btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active, .product-list .product-item .feature-list .btn-inverse.feature-item.no-touch:hover, .btn-inverse.disabled, .btn-inverse[disabled] {
    color: #fff;
    background-color: #222;
    *background-color: #151515; }
  .btn-inverse:active, .btn-inverse.active, .product-list .product-item .feature-list .btn-inverse.feature-item.no-touch:hover {
    background-color: #090909 \9; }

button.btn,
input[type="submit"].btn {
  *padding-top: 3px;
  *padding-bottom: 3px; }
  button.btn::-moz-focus-inner,
  input[type="submit"].btn::-moz-focus-inner {
    padding: 0;
    border: 0; }
  button.btn.btn-large,
  input[type="submit"].btn.btn-large {
    *padding-top: 7px;
    *padding-bottom: 7px; }
  button.btn.btn-small,
  input[type="submit"].btn.btn-small {
    *padding-top: 3px;
    *padding-bottom: 3px; }
  button.btn.btn-mini,
  input[type="submit"].btn.btn-mini {
    *padding-top: 1px;
    *padding-bottom: 1px; }

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

.btn-link {
  border-color: transparent;
  cursor: pointer;
  color: #1967bf;
  border-radius: 0; }

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

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

.btn-group {
  position: relative;
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  font-size: 0;
  vertical-align: middle;
  white-space: nowrap;
  *margin-left: .3em; }
  .btn-group:first-child {
    *margin-left: 0; }

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

.btn-toolbar {
  font-size: 0;
  margin-top: 10px;
  margin-bottom: 10px; }
  .btn-toolbar > .btn + .btn,
  .btn-toolbar > .btn-group + .btn,
  .btn-toolbar > .btn + .btn-group {
    margin-left: 5px; }

.btn-group > .btn {
  position: relative;
  border-radius: 0; }

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

.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 14px; }

.btn-group > .btn-mini {
  font-size: 10.5px; }

.btn-group > .btn-small {
  font-size: 11.9px; }

.btn-group > .btn-large {
  font-size: 17.5px; }

.btn-group > .btn:first-child {
  margin-left: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }

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

.btn-group > .btn.large:first-child {
  margin-left: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }

.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px; }

.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.product-list .product-item .feature-list .btn-group > .btn.feature-item.no-touch:hover {
  z-index: 2; }

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

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  *padding-top: 5px;
  *padding-bottom: 5px; }

.btn-group > .btn-mini + .dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
  *padding-top: 2px;
  *padding-bottom: 2px; }

.btn-group > .btn-small + .dropdown-toggle {
  *padding-top: 5px;
  *padding-bottom: 4px; }

.btn-group > .btn-large + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
  *padding-top: 7px;
  *padding-bottom: 7px; }

.btn-group.open .dropdown-toggle {
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6; }
.btn-group.open .btn-primary.dropdown-toggle {
  background-color: #2a89ff; }
.btn-group.open .btn-warning.dropdown-toggle {
  background-color: #f89406; }
.btn-group.open .btn-danger.dropdown-toggle {
  background-color: #bd362f; }
.btn-group.open .btn-success.dropdown-toggle {
  background-color: #51a351; }
.btn-group.open .btn-info.dropdown-toggle {
  background-color: #2f96b4; }
.btn-group.open .btn-inverse.dropdown-toggle {
  background-color: #222; }

.btn .caret {
  margin-top: 8px;
  margin-left: 0; }

.btn-large .caret {
  margin-top: 6px; }

.btn-large .caret {
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 5px; }

.btn-mini .caret,
.btn-small .caret {
  margin-top: 8px; }

.dropup .btn-large .caret {
  border-bottom-width: 5px; }

.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: #fff;
  border-bottom-color: #fff; }

.btn-group-vertical {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1; }

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

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

.btn-group-vertical > .btn:first-child {
  border-radius: 0px 0px 0 0; }

.btn-group-vertical > .btn:last-child {
  border-radius: 0 0 0px 0px; }

.btn-group-vertical > .btn-large:first-child {
  border-radius: 0px 0px 0 0; }

.btn-group-vertical > .btn-large:last-child {
  border-radius: 0 0 0px 0px; }

.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  border-radius: 0px; }

.alert,
.alert h4 {
  color: #c09853; }

.alert h4 {
  margin: 0; }

.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847; }

.alert-success h4 {
  color: #468847; }

.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48; }

.alert-danger h4,
.alert-error h4 {
  color: #b94a48; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad; }

.alert-info h4 {
  color: #3a87ad; }

.alert-block {
  padding-top: 14px;
  padding-bottom: 14px; }

.alert-block > p,
.alert-block > ul {
  margin-bottom: 0; }

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

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

.nav > li > a {
  display: block; }

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

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

.nav > .pull-right {
  float: right; }

.nav-header {
  display: block;
  padding: 3px 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  color: #999;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-transform: uppercase; }

.nav li + .nav-header {
  margin-top: 9px; }

.nav-list {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0; }

.nav-list > li > a,
.nav-list .nav-header {
  margin-left: -15px;
  margin-right: -15px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }

.nav-list > li > a {
  padding: 3px 15px; }

.nav-list > .active > a, .product-list .product-item .feature-list .nav-list > .feature-item.no-touch:hover > a,
.nav-list > .active > a:hover,
.product-list .product-item .feature-list .nav-list > .feature-item.no-touch:hover > a:hover,
.nav-list > .active > a:focus,
.product-list .product-item .feature-list .nav-list > .feature-item.no-touch:hover > a:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-color: #1967bf; }

.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
  margin-right: 2px; }

.nav-list .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff; }

.nav-tabs,
.nav-pills {
  *zoom: 1; }
  .nav-tabs:before, .nav-tabs:after,
  .nav-pills:before,
  .nav-pills:after {
    display: table;
    content: "";
    line-height: 0; }
  .nav-tabs:after,
  .nav-pills:after {
    clear: both; }

.nav-tabs > li,
.nav-pills > li {
  float: left; }

.nav-tabs > li > a,
.nav-pills > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px; }

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

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

.nav-tabs > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 20px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }
  .nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
    border-color: #eee #eee #ddd; }

.nav-tabs > .active > a, .product-list .product-item .feature-list .nav-tabs > .feature-item.no-touch:hover > a,
.nav-tabs > .active > a:hover,
.product-list .product-item .feature-list .nav-tabs > .feature-item.no-touch:hover > a:hover,
.nav-tabs > .active > a:focus,
.product-list .product-item .feature-list .nav-tabs > .feature-item.no-touch:hover > a:focus {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default; }

.nav-pills > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  border-radius: 5px; }

.nav-pills > .active > a, .product-list .product-item .feature-list .nav-pills > .feature-item.no-touch:hover > a,
.nav-pills > .active > a:hover,
.product-list .product-item .feature-list .nav-pills > .feature-item.no-touch:hover > a:hover,
.nav-pills > .active > a:focus,
.product-list .product-item .feature-list .nav-pills > .feature-item.no-touch:hover > a:focus {
  color: #fff;
  background-color: #1967bf; }

.nav-stacked > li {
  float: none; }

.nav-stacked > li > a {
  margin-right: 0; }

.nav-tabs.nav-stacked {
  border-bottom: 0; }

.nav-tabs.nav-stacked > li > a {
  border: 1px solid #ddd;
  border-radius: 0; }

.nav-tabs.nav-stacked > li:first-child > a {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px; }

.nav-tabs.nav-stacked > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.nav-tabs.nav-stacked > li > a:hover,
.nav-tabs.nav-stacked > li > a:focus {
  border-color: #ddd;
  z-index: 2; }

.nav-pills.nav-stacked > li > a {
  margin-bottom: 3px; }

.nav-pills.nav-stacked > li:last-child > a {
  margin-bottom: 1px; }

.nav-tabs .dropdown-menu {
  border-radius: 0 0 6px 6px; }

.nav-pills .dropdown-menu {
  border-radius: 6px; }

.nav .dropdown-toggle .caret {
  border-top-color: #1967bf;
  border-bottom-color: #1967bf;
  margin-top: 6px; }

.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
  border-top-color: #10437b;
  border-bottom-color: #10437b; }

/* move down carets for tabs */
.nav-tabs .dropdown-toggle .caret {
  margin-top: 8px; }

.nav .active .dropdown-toggle .caret, .nav .product-list .product-item .feature-list .feature-item.no-touch:hover .dropdown-toggle .caret, .product-list .product-item .feature-list .nav .feature-item.no-touch:hover .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff; }

.nav-tabs .active .dropdown-toggle .caret, .nav-tabs .product-list .product-item .feature-list .feature-item.no-touch:hover .dropdown-toggle .caret, .product-list .product-item .feature-list .nav-tabs .feature-item.no-touch:hover .dropdown-toggle .caret {
  border-top-color: #555;
  border-bottom-color: #555; }

.nav > .dropdown.active > a:hover, .product-list .product-item .feature-list .nav > .dropdown.feature-item.no-touch:hover > a:hover,
.nav > .dropdown.active > a:focus,
.product-list .product-item .feature-list .nav > .dropdown.feature-item.no-touch:hover > a:focus {
  cursor: pointer; }

.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.product-list .product-item .feature-list .nav > li.dropdown.open.feature-item.no-touch:hover > a:hover,
.nav > li.dropdown.open.active > a:focus,
.product-list .product-item .feature-list .nav > li.dropdown.open.feature-item.no-touch:hover > a:focus {
  color: #fff;
  background-color: #999;
  border-color: #999; }

.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav .product-list .product-item .feature-list li.dropdown.open.feature-item.no-touch:hover .caret,
.product-list .product-item .feature-list .nav li.dropdown.open.feature-item.no-touch:hover .caret,
.nav li.dropdown.open a:hover .caret,
.nav li.dropdown.open a:focus .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 1;
  filter: alpha(opacity=100); }

.tabs-stacked .open > a:hover,
.tabs-stacked .open > a:focus {
  border-color: #999; }

.tabbable {
  *zoom: 1; }
  .tabbable:before, .tabbable:after {
    display: table;
    content: "";
    line-height: 0; }
  .tabbable:after {
    clear: both; }

.tab-content {
  overflow: auto; }

.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0; }

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none; }

.tab-content > .active, .product-list .product-item .feature-list .tab-content > .feature-item.no-touch:hover,
.pill-content > .active,
.product-list .product-item .feature-list .pill-content > .feature-item.no-touch:hover {
  display: block; }

.tabs-below > .nav-tabs {
  border-top: 1px solid #ddd; }

.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0; }

.tabs-below > .nav-tabs > li > a {
  border-radius: 0 0 4px 4px; }
  .tabs-below > .nav-tabs > li > a:hover, .tabs-below > .nav-tabs > li > a:focus {
    border-bottom-color: transparent;
    border-top-color: #ddd; }

.tabs-below > .nav-tabs > .active > a, .product-list .product-item .feature-list .tabs-below > .nav-tabs > .feature-item.no-touch:hover > a,
.tabs-below > .nav-tabs > .active > a:hover,
.product-list .product-item .feature-list .tabs-below > .nav-tabs > .feature-item.no-touch:hover > a:hover,
.tabs-below > .nav-tabs > .active > a:focus,
.product-list .product-item .feature-list .tabs-below > .nav-tabs > .feature-item.no-touch:hover > a:focus {
  border-color: transparent #ddd #ddd #ddd; }

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none; }

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px; }

.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd; }

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  border-radius: 4px 0 0 4px; }

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #eee #ddd #eee #eee; }

.tabs-left > .nav-tabs .active > a, .tabs-left > .nav-tabs .product-list .product-item .feature-list .feature-item.no-touch:hover > a, .product-list .product-item .feature-list .tabs-left > .nav-tabs .feature-item.no-touch:hover > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .product-list .product-item .feature-list .feature-item.no-touch:hover > a:hover,
.product-list .product-item .feature-list .tabs-left > .nav-tabs .feature-item.no-touch:hover > a:hover,
.tabs-left > .nav-tabs .active > a:focus,
.tabs-left > .nav-tabs .product-list .product-item .feature-list .feature-item.no-touch:hover > a:focus,
.product-list .product-item .feature-list .tabs-left > .nav-tabs .feature-item.no-touch:hover > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #fff; }

.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd; }

.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  border-radius: 0 4px 4px 0; }

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #eee #eee #eee #ddd; }

.tabs-right > .nav-tabs .active > a, .tabs-right > .nav-tabs .product-list .product-item .feature-list .feature-item.no-touch:hover > a, .product-list .product-item .feature-list .tabs-right > .nav-tabs .feature-item.no-touch:hover > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .product-list .product-item .feature-list .feature-item.no-touch:hover > a:hover,
.product-list .product-item .feature-list .tabs-right > .nav-tabs .feature-item.no-touch:hover > a:hover,
.tabs-right > .nav-tabs .active > a:focus,
.tabs-right > .nav-tabs .product-list .product-item .feature-list .feature-item.no-touch:hover > a:focus,
.product-list .product-item .feature-list .tabs-right > .nav-tabs .feature-item.no-touch:hover > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #fff; }

.nav > .disabled > a {
  color: #999; }

.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  cursor: default; }

.navbar {
  overflow: visible;
  margin-bottom: 20px;
  *position: relative;
  *z-index: 2; }

.navbar-inner {
  *zoom: 1; }
  .navbar-inner:before, .navbar-inner:after {
    display: table;
    content: "";
    line-height: 0; }
  .navbar-inner:after {
    clear: both; }

.navbar .container {
  width: auto; }

.nav-collapse.collapse {
  height: auto;
  overflow: visible; }

.navbar .brand {
  float: left;
  display: block;
  padding: 20px 20px 20px;
  margin-left: -20px;
  font-size: 20px;
  font-weight: 200;
  color: #282828;
  text-shadow: 0 1px 0 #ffffff; }
  .navbar .brand:hover, .navbar .brand:focus {
    text-decoration: none; }

.navbar-text {
  margin-bottom: 0;
  line-height: 60px;
  color: #282828; }

.navbar-link {
  color: #282828; }
  .navbar-link:hover, .navbar-link:focus {
    color: #282828; }

.navbar .divider-vertical {
  height: 60px;
  margin: 0 9px;
  border-left: 1px solid white;
  border-right: 1px solid #ffffff; }

.navbar .btn,
.navbar .btn-group {
  margin-top: 15px; }

.navbar .btn-group .btn,
.navbar .input-prepend .btn,
.navbar .input-append .btn,
.navbar .input-prepend .btn-group,
.navbar .input-append .btn-group {
  margin-top: 0; }

.navbar-form {
  margin-bottom: 0;
  *zoom: 1; }
  .navbar-form:before, .navbar-form:after {
    display: table;
    content: "";
    line-height: 0; }
  .navbar-form:after {
    clear: both; }
  .navbar-form input,
  .navbar-form select,
  .navbar-form .radio,
  .navbar-form .checkbox {
    margin-top: 15px; }
  .navbar-form input,
  .navbar-form select,
  .navbar-form .btn {
    display: inline-block;
    margin-bottom: 0; }
  .navbar-form input[type="image"],
  .navbar-form input[type="checkbox"],
  .navbar-form input[type="radio"] {
    margin-top: 3px; }
  .navbar-form .input-append,
  .navbar-form .input-prepend {
    margin-top: 5px;
    white-space: nowrap; }
    .navbar-form .input-append input,
    .navbar-form .input-prepend input {
      margin-top: 0; }

.navbar-search {
  position: relative;
  float: left;
  margin-top: 15px;
  margin-bottom: 0; }
  .navbar-search .search-query {
    margin-bottom: 0;
    padding: 4px 14px;
    font-family: soleil, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    border-radius: 15px; }

.navbar-static-top {
  position: static;
  margin-bottom: 0; }
  .navbar-static-top .navbar-inner {
    border-radius: 0; }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0; }

.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  border-width: 0 0 1px; }

.navbar-fixed-bottom .navbar-inner {
  border-width: 1px 0 0; }

.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0; }

.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 950px; }

.navbar-fixed-top {
  top: 0; }

.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); }

.navbar-fixed-bottom {
  bottom: 0; }
  .navbar-fixed-bottom .navbar-inner {
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); }

.navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0; }

.navbar .nav.pull-right {
  float: right;
  margin-right: 0; }

.navbar .nav > li {
  float: left; }

.navbar .nav > li > a {
  float: none;
  padding: 20px 15px 20px;
  color: #282828;
  text-decoration: none;
  text-shadow: 0 1px 0 #ffffff; }

.navbar .nav .dropdown-toggle .caret {
  margin-top: 8px; }

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

.navbar .nav > .active > a, .navbar .product-list .product-item .feature-list .nav > .feature-item.no-touch:hover > a, .product-list .product-item .feature-list .navbar .nav > .feature-item.no-touch:hover > a,
.navbar .nav > .active > a:hover,
.navbar .product-list .product-item .feature-list .nav > .feature-item.no-touch:hover > a:hover,
.product-list .product-item .feature-list .navbar .nav > .feature-item.no-touch:hover > a:hover,
.navbar .nav > .active > a:focus,
.navbar .product-list .product-item .feature-list .nav > .feature-item.no-touch:hover > a:focus,
.product-list .product-item .feature-list .navbar .nav > .feature-item.no-touch:hover > a:focus {
  color: #282828;
  text-decoration: none;
  background-color: #f2f2f2;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); }

.navbar .btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-left: 5px;
  margin-right: 5px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #f2f2f2;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #f2f2f2);
  background-image: -o-linear-gradient(top, #f2f2f2, #f2f2f2);
  background-image: linear, to bottom, #f2f2f2, #f2f2f2;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2F2F2', endColorstr='#FFF2F2F2', GradientType=0);
  border-color: #f2f2f2 #f2f2f2 #cccccc;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #f2f2f2;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); }
  .navbar .btn-navbar:hover, .navbar .btn-navbar:focus, .navbar .btn-navbar:active, .navbar .btn-navbar.active, .navbar .product-list .product-item .feature-list .btn-navbar.feature-item.no-touch:hover, .product-list .product-item .feature-list .navbar .btn-navbar.feature-item.no-touch:hover, .navbar .btn-navbar.disabled, .navbar .btn-navbar[disabled] {
    color: #fff;
    background-color: #f2f2f2;
    *background-color: #e6e6e6; }
  .navbar .btn-navbar:active, .navbar .btn-navbar.active, .navbar .product-list .product-item .feature-list .btn-navbar.feature-item.no-touch:hover, .product-list .product-item .feature-list .navbar .btn-navbar.feature-item.no-touch:hover {
    background-color: #d9d9d9 \9; }

.navbar .btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }

.btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px; }

.navbar .nav > li > .dropdown-menu:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 9px; }
.navbar .nav > li > .dropdown-menu:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  top: -6px;
  left: 10px; }

.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  bottom: -7px;
  top: auto; }
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  bottom: -6px;
  top: auto; }

.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret {
  border-top-color: #282828;
  border-bottom-color: #282828; }

.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav .product-list .product-item .feature-list li.dropdown.feature-item.no-touch:hover > .dropdown-toggle,
.product-list .product-item .feature-list .navbar .nav li.dropdown.feature-item.no-touch:hover > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle,
.navbar .nav .product-list .product-item .feature-list li.dropdown.open.feature-item.no-touch:hover > .dropdown-toggle,
.product-list .product-item .feature-list .navbar .nav li.dropdown.open.feature-item.no-touch:hover > .dropdown-toggle {
  background-color: #f2f2f2;
  color: #282828; }

.navbar .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #282828;
  border-bottom-color: #282828; }

.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav .product-list .product-item .feature-list li.dropdown.feature-item.no-touch:hover > .dropdown-toggle .caret,
.product-list .product-item .feature-list .navbar .nav li.dropdown.feature-item.no-touch:hover > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret,
.navbar .nav .product-list .product-item .feature-list li.dropdown.open.feature-item.no-touch:hover > .dropdown-toggle .caret,
.product-list .product-item .feature-list .navbar .nav li.dropdown.open.feature-item.no-touch:hover > .dropdown-toggle .caret {
  border-top-color: #282828;
  border-bottom-color: #282828; }

.navbar .pull-right > li > .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right {
  left: auto;
  right: 0; }
  .navbar .pull-right > li > .dropdown-menu:before,
  .navbar .nav > li > .dropdown-menu.pull-right:before {
    left: auto;
    right: 12px; }
  .navbar .pull-right > li > .dropdown-menu:after,
  .navbar .nav > li > .dropdown-menu.pull-right:after {
    left: auto;
    right: 13px; }
  .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
  .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: -1px;
    border-radius: 6px 0 6px 6px; }

.navbar-inverse .navbar-inner {
  background-color: #1b1b1b;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
  background-image: -webkit-linear-gradient(top, #222222, #111111);
  background-image: -o-linear-gradient(top, #222222, #111111);
  background-image: linear, to bottom, #222222, #111111;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF222222', endColorstr='#FF111111', GradientType=0);
  border-color: #252525; }
.navbar-inverse .brand,
.navbar-inverse .nav > li > a {
  color: #999;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }
  .navbar-inverse .brand:hover, .navbar-inverse .brand:focus,
  .navbar-inverse .nav > li > a:hover,
  .navbar-inverse .nav > li > a:focus {
    color: #fff; }
.navbar-inverse .brand {
  color: #999; }
.navbar-inverse .navbar-text {
  color: #999; }
.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
  background-color: transparent;
  color: #fff; }
.navbar-inverse .nav .active > a, .navbar-inverse .nav .product-list .product-item .feature-list .feature-item.no-touch:hover > a, .product-list .product-item .feature-list .navbar-inverse .nav .feature-item.no-touch:hover > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .product-list .product-item .feature-list .feature-item.no-touch:hover > a:hover,
.product-list .product-item .feature-list .navbar-inverse .nav .feature-item.no-touch:hover > a:hover,
.navbar-inverse .nav .active > a:focus,
.navbar-inverse .nav .product-list .product-item .feature-list .feature-item.no-touch:hover > a:focus,
.product-list .product-item .feature-list .navbar-inverse .nav .feature-item.no-touch:hover > a:focus {
  color: #fff;
  background-color: #111111; }
.navbar-inverse .navbar-link {
  color: #999; }
  .navbar-inverse .navbar-link:hover, .navbar-inverse .navbar-link:focus {
    color: #fff; }
.navbar-inverse .divider-vertical {
  border-left-color: #111111;
  border-right-color: #222222; }
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav .product-list .product-item .feature-list li.dropdown.feature-item.no-touch:hover > .dropdown-toggle,
.product-list .product-item .feature-list .navbar-inverse .nav li.dropdown.feature-item.no-touch:hover > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle,
.navbar-inverse .nav .product-list .product-item .feature-list li.dropdown.open.feature-item.no-touch:hover > .dropdown-toggle,
.product-list .product-item .feature-list .navbar-inverse .nav li.dropdown.open.feature-item.no-touch:hover > .dropdown-toggle {
  background-color: #111111;
  color: #fff; }
.navbar-inverse .nav li.dropdown > a:hover .caret,
.navbar-inverse .nav li.dropdown > a:focus .caret {
  border-top-color: #fff;
  color: #fff; }
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #999;
  border-bottom-color: #999; }
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar-inverse .nav .product-list .product-item .feature-list li.dropdown.feature-item.no-touch:hover > .dropdown-toggle .caret,
.product-list .product-item .feature-list .navbar-inverse .nav li.dropdown.feature-item.no-touch:hover > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret,
.navbar-inverse .nav .product-list .product-item .feature-list li.dropdown.open.feature-item.no-touch:hover > .dropdown-toggle .caret,
.product-list .product-item .feature-list .navbar-inverse .nav li.dropdown.open.feature-item.no-touch:hover > .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff; }
.navbar-inverse .navbar-search .search-query {
  color: #fff;
  background-color: #515151;
  border-color: #111111;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  -webkit-transition: none;
  transition: none; }
  .navbar-inverse .navbar-search .search-query:-moz-placeholder {
    color: #ccc; }
  .navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
    color: #ccc; }
  .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
    color: #ccc; }
  .navbar-inverse .navbar-search .search-query:focus, .navbar-inverse .navbar-search .search-query.focused {
    padding: 5px 15px;
    color: #333;
    text-shadow: 0 1px 0 #fff;
    background-color: #fff;
    border: 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    outline: 0; }
.navbar-inverse .btn-navbar {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e0e0e;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
  background-image: -webkit-linear-gradient(top, #151515, #040404);
  background-image: -o-linear-gradient(top, #151515, #040404);
  background-image: linear, to bottom, #151515, #040404;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF151515', endColorstr='#FF040404', GradientType=0);
  border-color: #040404 #040404 black;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #040404;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
  .navbar-inverse .btn-navbar:hover, .navbar-inverse .btn-navbar:focus, .navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active, .navbar-inverse .product-list .product-item .feature-list .btn-navbar.feature-item.no-touch:hover, .product-list .product-item .feature-list .navbar-inverse .btn-navbar.feature-item.no-touch:hover, .navbar-inverse .btn-navbar.disabled, .navbar-inverse .btn-navbar[disabled] {
    color: #fff;
    background-color: #040404;
    *background-color: black; }
  .navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active, .navbar-inverse .product-list .product-item .feature-list .btn-navbar.feature-item.no-touch:hover, .product-list .product-item .feature-list .navbar-inverse .btn-navbar.feature-item.no-touch:hover {
    background-color: black \9; }

.breadcrumb {
  padding: 8px 15px;
  margin: 0 0 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 0px; }
  .breadcrumb > li {
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
    text-shadow: 0 1px 0 #fff; }
    .breadcrumb > li > .divider {
      padding: 0 5px;
      color: #ccc; }
  .breadcrumb .active, .breadcrumb .product-list .product-item .feature-list .feature-item.no-touch:hover, .product-list .product-item .feature-list .breadcrumb .feature-item.no-touch:hover {
    color: #999; }

.pagination {
  margin: 20px 0; }

.pagination ul {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  border-radius: 0px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }

.pagination ul > li {
  display: inline; }

.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-left-width: 0; }

.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination .product-list .product-item .feature-list ul > .feature-item.no-touch:hover > a,
.product-list .product-item .feature-list .pagination ul > .feature-item.no-touch:hover > a,
.pagination ul > .active > span,
.pagination .product-list .product-item .feature-list ul > .feature-item.no-touch:hover > span,
.product-list .product-item .feature-list .pagination ul > .feature-item.no-touch:hover > span {
  background-color: #f5f5f5; }

.pagination ul > .active > a, .pagination .product-list .product-item .feature-list ul > .feature-item.no-touch:hover > a, .product-list .product-item .feature-list .pagination ul > .feature-item.no-touch:hover > a,
.pagination ul > .active > span,
.pagination .product-list .product-item .feature-list ul > .feature-item.no-touch:hover > span,
.product-list .product-item .feature-list .pagination ul > .feature-item.no-touch:hover > span {
  color: #999;
  cursor: default; }

.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #999;
  background-color: transparent;
  cursor: default; }

.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  border-left-width: 1px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }

.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px; }

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

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

.pagination-large ul > li > a,
.pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 17.5px; }
.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }
.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px; }

.pagination-mini ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > a,
.pagination-small ul > li:first-child > span {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }
.pagination-mini ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > a,
.pagination-small ul > li:last-child > span {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px; }

.pagination-small ul > li > a,
.pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 11.9px; }

.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
  padding: 0px 6px;
  font-size: 10.5px; }

.pager {
  margin: 20px 0;
  list-style: none;
  text-align: center;
  *zoom: 1; }
  .pager:before, .pager:after {
    display: table;
    content: "";
    line-height: 0; }
  .pager:after {
    clear: both; }

.pager li {
  display: inline; }

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px; }

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

.pager .next > a,
.pager .next > span {
  float: right; }

.pager .previous > a,
.pager .previous > span {
  float: left; }

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999;
  background-color: #fff;
  cursor: default; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }

.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80); }

.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  /* IE6-7 */
  border-radius: 6px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  outline: none; }
  .modal.fade {
    -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
    transition: opacity 0.3s linear, top 0.3s ease-out;
    top: -25%; }
  .modal.fade.in {
    top: 10%; }

.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee; }
  .modal-header .close {
    margin-top: 2px; }
  .modal-header h3 {
    margin: 0;
    line-height: 30px; }

.modal-body {
  position: relative;
  overflow-y: auto;
  max-height: 400px;
  padding: 15px; }

.modal-form {
  margin-bottom: 0; }

.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  box-shadow: inset 0 1px 0 #fff;
  *zoom: 1; }
  .modal-footer:before, .modal-footer:after {
    display: table;
    content: "";
    line-height: 0; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0); }
  .tooltip.in {
    opacity: 0.8;
    filter: alpha(opacity=80); }
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 0px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal; }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }
  .popover-title:empty {
    display: none; }

.popover-content {
  padding: 9px 14px; }

.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover .arrow {
  border-width: 11px; }

.popover .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  .popover.top .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right .arrow:after {
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }
.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  .popover.bottom .arrow:after {
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left .arrow:after {
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.thumbnails {
  margin-left: -50px;
  list-style: none;
  *zoom: 1; }
  .thumbnails:before, .thumbnails:after {
    display: table;
    content: "";
    line-height: 0; }
  .thumbnails:after {
    clear: both; }

.row-fluid .thumbnails {
  margin-left: 0; }

.thumbnails > li {
  float: left;
  margin-bottom: 20px;
  margin-left: 50px; }

.thumbnail {
  display: block;
  padding: 4px;
  line-height: 20px;
  border: 1px solid #ddd;
  border-radius: 0px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

a.thumbnail:hover,
a.thumbnail:focus {
  border-color: #1967bf;
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); }

.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }

.thumbnail .caption {
  padding: 9px;
  color: #555; }

.media,
.media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1; }

.media,
.media .media {
  margin-top: 15px; }

.media:first-child {
  margin-top: 0; }

.media-object {
  display: block; }

.media-heading {
  margin: 0 0 5px; }

.media > .pull-left {
  margin-right: 10px; }

.media > .pull-right {
  margin-left: 10px; }

.media-list {
  margin-left: 0;
  list-style: none; }

.label,
.badge {
  display: inline-block;
  padding: 2px 4px;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  color: #fff;
  vertical-align: baseline;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999; }

.label {
  border-radius: 3px; }

.badge {
  padding-left: 9px;
  padding-right: 9px;
  border-radius: 9px; }

.label:empty,
.badge:empty {
  display: none; }

a.label:hover, a.label:focus, a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-important {
  background-color: #b94a48; }

.label-important[href] {
  background-color: #953b39; }

.label-warning {
  background-color: #f89406; }

.label-warning[href] {
  background-color: #c67605; }

.label-success {
  background-color: #468847; }

.label-success[href] {
  background-color: #356635; }

.label-info {
  background-color: #3a87ad; }

.label-info[href] {
  background-color: #2d6987; }

.label-inverse {
  background-color: #333; }

.label-inverse[href] {
  background-color: #1a1a1a; }

.badge-important {
  background-color: #b94a48; }

.badge-important[href] {
  background-color: #953b39; }

.badge-warning {
  background-color: #f89406; }

.badge-warning[href] {
  background-color: #c67605; }

.badge-success {
  background-color: #468847; }

.badge-success[href] {
  background-color: #356635; }

.badge-info {
  background-color: #3a87ad; }

.badge-info[href] {
  background-color: #2d6987; }

.badge-inverse {
  background-color: #333; }

.badge-inverse[href] {
  background-color: #1a1a1a; }

.btn .label,
.btn .badge {
  position: relative;
  top: -1px; }

.btn-mini .label,
.btn-mini .badge {
  top: 0; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: linear, to bottom, #f5f5f5, #f9f9f9;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5F5F5', endColorstr='#FFF9F9F9', GradientType=0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 0px; }

.progress .bar {
  width: 0%;
  height: 100%;
  color: #fff;
  float: left;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e90d2;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear, to bottom, #149bdf, #0480be;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF149BDF', endColorstr='#FF0480BE', GradientType=0);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress .bar + .bar {
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); }

.progress-striped .bar {
  background-color: #149bdf;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  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: -o-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, 45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent;
  background-size: 40px 40px; }

.progress.active .bar, .product-list .product-item .feature-list .progress.feature-item.no-touch:hover .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-danger .bar, .progress .bar-danger {
  background-color: #dd514c;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear, to bottom, #ee5f5b, #c43c35;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEE5F5B', endColorstr='#FFC43C35', GradientType=0); }

.progress-danger.progress-striped .bar, .progress-striped .bar-danger {
  background-color: #ee5f5b;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  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: -o-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, 45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent; }

.progress-success .bar, .progress .bar-success {
  background-color: #5eb95e;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear, to bottom, #62c462, #57a957;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF62C462', endColorstr='#FF57A957', GradientType=0); }

.progress-success.progress-striped .bar, .progress-striped .bar-success {
  background-color: #62c462;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  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: -o-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, 45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent; }

.progress-info .bar, .progress .bar-info {
  background-color: #4bb1cf;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear, to bottom, #5bc0de, #339bb9;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5BC0DE', endColorstr='#FF339BB9', GradientType=0); }

.progress-info.progress-striped .bar, .progress-striped .bar-info {
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  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: -o-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, 45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent; }

.progress-warning .bar, .progress .bar-warning {
  background-color: #faa732;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear, to bottom, #fbb450, #f89406;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFBB450', endColorstr='#FFF89406', GradientType=0); }

.progress-warning.progress-striped .bar, .progress-striped .bar-warning {
  background-color: #fbb450;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  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: -o-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, 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; }

.accordion {
  margin-bottom: 20px; }

.accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  border-radius: 0px; }

.accordion-heading {
  border-bottom: 0; }

.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px; }
  @media print {
    .accordion-heading .accordion-toggle {
      display: none !important; } }

.accordion-toggle {
  cursor: pointer; }

.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5; }

.carousel {
  position: relative;
  margin-bottom: 20px;
  line-height: 1; }

.carousel-inner {
  overflow: hidden;
  width: 100%;
  position: relative; }

.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1) left;
  transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1) left; }
  .carousel-inner > .item > img,
  .carousel-inner > .item > a > img {
    display: block;
    line-height: 1; }
.carousel-inner > .active, .product-list .product-item .feature-list .carousel-inner > .feature-item.no-touch:hover,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block; }
.carousel-inner > .active, .product-list .product-item .feature-list .carousel-inner > .feature-item.no-touch:hover {
  left: 0; }
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%; }
.carousel-inner > .next {
  left: 100%; }
.carousel-inner > .prev {
  left: -100%; }
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0; }
.carousel-inner > .active.left, .product-list .product-item .feature-list .carousel-inner > .left.feature-item.no-touch:hover {
  left: -100%; }
.carousel-inner > .active.right, .product-list .product-item .feature-list .carousel-inner > .right.feature-item.no-touch:hover {
  left: 100%; }

.carousel-control {
  position: absolute;
  top: 40%;
  left: -30px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background-image: url("/assets/img/sprite.png");
  background-position: -230px -3px;
  background-repeat: no-repeat; }
  .carousel-control.right {
    background-position: -264px -3px;
    left: auto;
    right: -30px; }
    @media (max-width: 767px) {
      .carousel-control.right {
        right: -15px; } }
  @media (max-width: 767px) {
    .carousel-control {
      left: -15px; } }
  .carousel-control:hover, .carousel-control:focus {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }

.carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none; }
  .carousel-indicators li {
    display: block;
    float: left;
    width: 10px;
    height: 10px;
    margin-left: 5px;
    text-indent: -999px;
    background-color: #ccc;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 5px; }
  .carousel-indicators .active, .carousel-indicators .product-list .product-item .feature-list .feature-item.no-touch:hover, .product-list .product-item .feature-list .carousel-indicators .feature-item.no-touch:hover {
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: #333;
  background: rgba(0, 0, 0, 0.75); }

.carousel-caption h4,
.carousel-caption p {
  color: #fff;
  line-height: 20px; }

.carousel-caption h4 {
  margin: 0 0 5px; }

.carousel-caption p {
  margin-bottom: 0; }

.hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  color: inherit;
  background-color: #eee;
  border-radius: 6px; }
  .hero-unit h1 {
    margin-bottom: 0;
    font-size: 60px;
    line-height: 1;
    color: inherit;
    letter-spacing: -1px; }
  .hero-unit li {
    line-height: 30px; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

.hide {
  display: none; }

.show {
  display: block; }

.invisible {
  visibility: hidden; }

.affix {
  position: fixed; }

.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    display: table;
    content: "";
    line-height: 0; }
  .clearfix:after {
    clear: both; }

.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  box-sizing: border-box; }

/*!
 * Bootstrap Responsive v2.3.1
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
@-ms-viewport {
  width: device-width; }
.hidden {
  display: none;
  visibility: hidden; }

.visible-phone {
  display: none !important; }

.visible-tablet {
  display: none !important; }

.hidden-desktop {
  display: none !important; }

.visible-desktop {
  display: inherit !important; }

@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important; }

  .visible-desktop {
    display: none !important; }

  .visible-tablet {
    display: inherit !important; }

  .hidden-tablet {
    display: none !important; } }
@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important; }

  .visible-desktop {
    display: none !important; }

  .visible-phone {
    display: inherit !important; }

  .hidden-phone {
    display: none !important; } }
.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: inherit !important; }

  .hidden-print {
    display: none !important; } }
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    display: table;
    content: "";
    line-height: 0; }
  .clearfix:after {
    clear: both; }

.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  box-sizing: border-box; }

@media (min-width: 1200px) {
  .row {
    margin-left: -60px;
    *zoom: 1; }
    .row:before, .row:after {
      display: table;
      content: "";
      line-height: 0; }
    .row:after {
      clear: both; }

  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 60px; }

  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 1140px; }

  .span1 {
    width: 60px; }

  .span2 {
    width: 180px; }

  .span3 {
    width: 300px; }

  .span4 {
    width: 420px; }

  .span5 {
    width: 540px; }

  .span6 {
    width: 660px; }

  .span7 {
    width: 780px; }

  .span8 {
    width: 900px; }

  .span9 {
    width: 1020px; }

  .span10 {
    width: 1140px; }

  .offset1 {
    margin-left: 180px; }

  .offset2 {
    margin-left: 300px; }

  .offset3 {
    margin-left: 420px; }

  .offset4 {
    margin-left: 540px; }

  .offset5 {
    margin-left: 660px; }

  .offset6 {
    margin-left: 780px; }

  .offset7 {
    margin-left: 900px; }

  .offset8 {
    margin-left: 1020px; }

  .offset9 {
    margin-left: 1140px; }

  .offset10 {
    margin-left: 1260px; }

  .row-fluid {
    width: 100%;
    *zoom: 1; }
    .row-fluid:before, .row-fluid:after {
      display: table;
      content: "";
      line-height: 0; }
    .row-fluid:after {
      clear: both; }
    .row-fluid [class*="span"] {
      display: block;
      width: 100%;
      min-height: 30px;
      box-sizing: border-box;
      float: left;
      margin-left: 5.26316%;
      *margin-left: 5.21053%; }
    .row-fluid [class*="span"]:first-child {
      margin-left: 0; }
    .row-fluid .controls-row [class*="span"] + [class*="span"] {
      margin-left: 5.26316%; }
    .row-fluid .span1 {
      width: 5.26316%;
      *width: 5.21053%; }
    .row-fluid .span2 {
      width: 15.78947%;
      *width: 15.73684%; }
    .row-fluid .span3 {
      width: 26.31579%;
      *width: 26.26316%; }
    .row-fluid .span4 {
      width: 36.84211%;
      *width: 36.78947%; }
    .row-fluid .span5 {
      width: 47.36842%;
      *width: 47.31579%; }
    .row-fluid .span6 {
      width: 57.89474%;
      *width: 57.84211%; }
    .row-fluid .span7 {
      width: 68.42105%;
      *width: 68.36842%; }
    .row-fluid .span8 {
      width: 78.94737%;
      *width: 78.89474%; }
    .row-fluid .span9 {
      width: 89.47368%;
      *width: 89.42105%; }
    .row-fluid .span10 {
      width: 100%;
      *width: 99.94737%; }
    .row-fluid .offset1 {
      margin-left: 15.78947%;
      *margin-left: 15.68421%; }
    .row-fluid .offset1:first-child {
      margin-left: 10.52632%;
      *margin-left: 10.42105%; }
    .row-fluid .offset2 {
      margin-left: 26.31579%;
      *margin-left: 26.21053%; }
    .row-fluid .offset2:first-child {
      margin-left: 21.05263%;
      *margin-left: 20.94737%; }
    .row-fluid .offset3 {
      margin-left: 36.84211%;
      *margin-left: 36.73684%; }
    .row-fluid .offset3:first-child {
      margin-left: 31.57895%;
      *margin-left: 31.47368%; }
    .row-fluid .offset4 {
      margin-left: 47.36842%;
      *margin-left: 47.26316%; }
    .row-fluid .offset4:first-child {
      margin-left: 42.10526%;
      *margin-left: 42.0%; }
    .row-fluid .offset5 {
      margin-left: 57.89474%;
      *margin-left: 57.78947%; }
    .row-fluid .offset5:first-child {
      margin-left: 52.63158%;
      *margin-left: 52.52632%; }
    .row-fluid .offset6 {
      margin-left: 68.42105%;
      *margin-left: 68.31579%; }
    .row-fluid .offset6:first-child {
      margin-left: 63.15789%;
      *margin-left: 63.05263%; }
    .row-fluid .offset7 {
      margin-left: 78.94737%;
      *margin-left: 78.84211%; }
    .row-fluid .offset7:first-child {
      margin-left: 73.68421%;
      *margin-left: 73.57895%; }
    .row-fluid .offset8 {
      margin-left: 89.47368%;
      *margin-left: 89.36842%; }
    .row-fluid .offset8:first-child {
      margin-left: 84.21053%;
      *margin-left: 84.10526%; }
    .row-fluid .offset9 {
      margin-left: 100.0%;
      *margin-left: 99.89474%; }
    .row-fluid .offset9:first-child {
      margin-left: 94.73684%;
      *margin-left: 94.63158%; }
    .row-fluid .offset10 {
      margin-left: 110.52632%;
      *margin-left: 110.42105%; }
    .row-fluid .offset10:first-child {
      margin-left: 105.26316%;
      *margin-left: 105.15789%; }

  input,
  textarea,
  .uneditable-input {
    margin-left: 0; }

  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 60px; }

  input.span1,
  textarea.span1,
  .uneditable-input.span1 {
    width: 46px; }

  input.span2,
  textarea.span2,
  .uneditable-input.span2 {
    width: 166px; }

  input.span3,
  textarea.span3,
  .uneditable-input.span3 {
    width: 286px; }

  input.span4,
  textarea.span4,
  .uneditable-input.span4 {
    width: 406px; }

  input.span5,
  textarea.span5,
  .uneditable-input.span5 {
    width: 526px; }

  input.span6,
  textarea.span6,
  .uneditable-input.span6 {
    width: 646px; }

  input.span7,
  textarea.span7,
  .uneditable-input.span7 {
    width: 766px; }

  input.span8,
  textarea.span8,
  .uneditable-input.span8 {
    width: 886px; }

  input.span9,
  textarea.span9,
  .uneditable-input.span9 {
    width: 1006px; }

  input.span10,
  textarea.span10,
  .uneditable-input.span10 {
    width: 1126px; }

  .thumbnails {
    margin-left: -60px; }

  .thumbnails > li {
    margin-left: 60px; }

  .row-fluid .thumbnails {
    margin-left: 0; } }
@media (min-width: 768px) and (max-width: 979px) {
  .row {
    margin-left: -37.2px;
    *zoom: 1; }
    .row:before, .row:after {
      display: table;
      content: "";
      line-height: 0; }
    .row:after {
      clear: both; }

  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 37.2px; }

  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 706.8px; }

  .span1 {
    width: 37.2px; }

  .span2 {
    width: 111.6px; }

  .span3 {
    width: 186px; }

  .span4 {
    width: 260.4px; }

  .span5 {
    width: 334.8px; }

  .span6 {
    width: 409.2px; }

  .span7 {
    width: 483.6px; }

  .span8 {
    width: 558px; }

  .span9 {
    width: 632.4px; }

  .span10 {
    width: 706.8px; }

  .offset1 {
    margin-left: 111.6px; }

  .offset2 {
    margin-left: 186px; }

  .offset3 {
    margin-left: 260.4px; }

  .offset4 {
    margin-left: 334.8px; }

  .offset5 {
    margin-left: 409.2px; }

  .offset6 {
    margin-left: 483.6px; }

  .offset7 {
    margin-left: 558px; }

  .offset8 {
    margin-left: 632.4px; }

  .offset9 {
    margin-left: 706.8px; }

  .offset10 {
    margin-left: 781.2px; }

  .row-fluid {
    width: 100%;
    *zoom: 1; }
    .row-fluid:before, .row-fluid:after {
      display: table;
      content: "";
      line-height: 0; }
    .row-fluid:after {
      clear: both; }
    .row-fluid [class*="span"] {
      display: block;
      width: 100%;
      min-height: 30px;
      box-sizing: border-box;
      float: left;
      margin-left: 5.26316%;
      *margin-left: 5.21053%; }
    .row-fluid [class*="span"]:first-child {
      margin-left: 0; }
    .row-fluid .controls-row [class*="span"] + [class*="span"] {
      margin-left: 5.26316%; }
    .row-fluid .span1 {
      width: 5.26316%;
      *width: 5.21053%; }
    .row-fluid .span2 {
      width: 15.78947%;
      *width: 15.73684%; }
    .row-fluid .span3 {
      width: 26.31579%;
      *width: 26.26316%; }
    .row-fluid .span4 {
      width: 36.84211%;
      *width: 36.78947%; }
    .row-fluid .span5 {
      width: 47.36842%;
      *width: 47.31579%; }
    .row-fluid .span6 {
      width: 57.89474%;
      *width: 57.84211%; }
    .row-fluid .span7 {
      width: 68.42105%;
      *width: 68.36842%; }
    .row-fluid .span8 {
      width: 78.94737%;
      *width: 78.89474%; }
    .row-fluid .span9 {
      width: 89.47368%;
      *width: 89.42105%; }
    .row-fluid .span10 {
      width: 100%;
      *width: 99.94737%; }
    .row-fluid .offset1 {
      margin-left: 15.78947%;
      *margin-left: 15.68421%; }
    .row-fluid .offset1:first-child {
      margin-left: 10.52632%;
      *margin-left: 10.42105%; }
    .row-fluid .offset2 {
      margin-left: 26.31579%;
      *margin-left: 26.21053%; }
    .row-fluid .offset2:first-child {
      margin-left: 21.05263%;
      *margin-left: 20.94737%; }
    .row-fluid .offset3 {
      margin-left: 36.84211%;
      *margin-left: 36.73684%; }
    .row-fluid .offset3:first-child {
      margin-left: 31.57895%;
      *margin-left: 31.47368%; }
    .row-fluid .offset4 {
      margin-left: 47.36842%;
      *margin-left: 47.26316%; }
    .row-fluid .offset4:first-child {
      margin-left: 42.10526%;
      *margin-left: 42%; }
    .row-fluid .offset5 {
      margin-left: 57.89474%;
      *margin-left: 57.78947%; }
    .row-fluid .offset5:first-child {
      margin-left: 52.63158%;
      *margin-left: 52.52632%; }
    .row-fluid .offset6 {
      margin-left: 68.42105%;
      *margin-left: 68.31579%; }
    .row-fluid .offset6:first-child {
      margin-left: 63.15789%;
      *margin-left: 63.05263%; }
    .row-fluid .offset7 {
      margin-left: 78.94737%;
      *margin-left: 78.84211%; }
    .row-fluid .offset7:first-child {
      margin-left: 73.68421%;
      *margin-left: 73.57895%; }
    .row-fluid .offset8 {
      margin-left: 89.47368%;
      *margin-left: 89.36842%; }
    .row-fluid .offset8:first-child {
      margin-left: 84.21053%;
      *margin-left: 84.10526%; }
    .row-fluid .offset9 {
      margin-left: 100.0%;
      *margin-left: 99.89474%; }
    .row-fluid .offset9:first-child {
      margin-left: 94.73684%;
      *margin-left: 94.63158%; }
    .row-fluid .offset10 {
      margin-left: 110.52632%;
      *margin-left: 110.42105%; }
    .row-fluid .offset10:first-child {
      margin-left: 105.26316%;
      *margin-left: 105.15789%; }

  input,
  textarea,
  .uneditable-input {
    margin-left: 0; }

  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 37.2px; }

  input.span1,
  textarea.span1,
  .uneditable-input.span1 {
    width: 23.2px; }

  input.span2,
  textarea.span2,
  .uneditable-input.span2 {
    width: 97.6px; }

  input.span3,
  textarea.span3,
  .uneditable-input.span3 {
    width: 172px; }

  input.span4,
  textarea.span4,
  .uneditable-input.span4 {
    width: 246.4px; }

  input.span5,
  textarea.span5,
  .uneditable-input.span5 {
    width: 320.8px; }

  input.span6,
  textarea.span6,
  .uneditable-input.span6 {
    width: 395.2px; }

  input.span7,
  textarea.span7,
  .uneditable-input.span7 {
    width: 469.6px; }

  input.span8,
  textarea.span8,
  .uneditable-input.span8 {
    width: 544px; }

  input.span9,
  textarea.span9,
  .uneditable-input.span9 {
    width: 618.4px; }

  input.span10,
  textarea.span10,
  .uneditable-input.span10 {
    width: 692.8px; } }
@media (max-width: 767px) {
  body {
    padding-left: 20px;
    padding-right: 20px; }

  .navbar-fixed-top,
  .navbar-fixed-bottom,
  .navbar-static-top {
    margin-left: -20px;
    margin-right: -20px; }

  .container-fluid {
    padding: 0; }

  .dl-horizontal dt {
    float: none;
    clear: none;
    width: auto;
    text-align: left; }
  .dl-horizontal dd {
    margin-left: 0; }

  .container {
    width: auto; }

  .row-fluid {
    width: 100%; }

  .row,
  .thumbnails {
    margin-left: 0; }

  .thumbnails > li {
    float: none;
    margin-left: 0; }

  [class*="span"],
  .uneditable-input[class*="span"],
  .row-fluid [class*="span"] {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box; }

  .span12,
  .row-fluid .span12 {
    width: 100%;
    box-sizing: border-box; }

  .row-fluid [class*="offset"]:first-child {
    margin-left: 0; }

  .input-large,
  .input-xlarge,
  .input-xxlarge,
  input[class*="span"],
  select[class*="span"],
  textarea[class*="span"],
  .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box; }

  .input-prepend input,
  .input-append input,
  .input-prepend input[class*="span"],
  .input-append input[class*="span"] {
    display: inline-block;
    width: auto; }

  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0; }

  .modal {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0; }
    .modal.fade {
      top: -100px; }
    .modal.fade.in {
      top: 20px; } }
@media (max-width: 480px) {
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0); }

  .page-header h1 small {
    display: block;
    line-height: 20px; }

  input[type="checkbox"],
  input[type="radio"] {
    border: 1px solid #ccc; }

  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left; }
  .form-horizontal .controls {
    margin-left: 0; }
  .form-horizontal .control-list {
    padding-top: 0; }
  .form-horizontal .form-actions {
    padding-left: 10px;
    padding-right: 10px; }

  .media .pull-left,
  .media .pull-right {
    float: none;
    display: block;
    margin-bottom: 10px; }

  .media-object {
    margin-right: 0;
    margin-left: 0; }

  .modal {
    top: 10px;
    left: 10px;
    right: 10px; }

  .modal-header .close {
    padding: 10px;
    margin: -10px; }

  .carousel-caption {
    position: static; } }
@media (max-width: 979px) {
  body {
    padding-top: 0; }

  .navbar-fixed-top,
  .navbar-fixed-bottom {
    position: static; }

  .navbar-fixed-top {
    margin-bottom: 20px; }

  .navbar-fixed-bottom {
    margin-top: 20px; }

  .navbar-fixed-top .navbar-inner,
  .navbar-fixed-bottom .navbar-inner {
    padding: 5px; }

  .navbar .container {
    padding: 0; }

  .navbar .brand {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 0 0 -5px; }

  .nav-collapse {
    clear: both; }

  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px; }

  .nav-collapse .nav > li {
    float: none; }

  .nav-collapse .nav > li > a {
    margin-bottom: 2px; }

  .nav-collapse .nav > .divider-vertical {
    display: none; }

  .nav-collapse .nav .nav-header {
    color: #282828;
    text-shadow: none; }

  .nav-collapse .nav > li > a,
  .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #282828;
    border-radius: 3px; }

  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    border-radius: 0px; }

  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px; }

  .nav-collapse .nav > li > a:hover,
  .nav-collapse .nav > li > a:focus,
  .nav-collapse .dropdown-menu a:hover,
  .nav-collapse .dropdown-menu a:focus {
    background-color: white; }

  .navbar-inverse .nav-collapse .nav > li > a,
  .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999; }

  .navbar-inverse .nav-collapse .nav > li > a:hover,
  .navbar-inverse .nav-collapse .nav > li > a:focus,
  .navbar-inverse .nav-collapse .dropdown-menu a:hover,
  .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111111; }

  .nav-collapse.in .btn-group {
    margin-top: 5px;
    padding: 0; }

  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    float: none;
    display: none;
    max-width: none;
    margin: 0 15px;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none; }

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

  .nav-collapse .dropdown-menu:before,
  .nav-collapse .dropdown-menu:after {
    display: none; }

  .nav-collapse .dropdown-menu .divider {
    display: none; }

  .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after {
    display: none; }

  .nav-collapse .navbar-form,
  .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); }

  .navbar-inverse .nav-collapse .navbar-form,
  .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111111;
    border-bottom-color: #111111; }

  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0; }

  .nav-collapse,
  .nav-collapse.collapse {
    overflow: hidden;
    height: 0; }

  .navbar .btn-navbar {
    display: block; }

  .navbar-static .navbar-inner {
    padding-left: 10px;
    padding-right: 10px; } }
@media (max-width: 767px) {
  .navbar .container {
    width: auto;
    padding: 0; } }
@media (min-width: 980px) {
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important; } }
.light, .product-detail-banner h1 {
  font-weight: 100;
  font-style: normal; }

.regular, .carousel ol {
  font-weight: 400;
  font-style: normal; }

.book {
  font-weight: 500;
  font-style: normal; }

.semi-bold {
  font-weight: 600;
  font-style: normal; }

.bold, .navbar .nav a, .navbar .nav a:hover, .navbar .btn-navbar, .navbar .btn-navbar:hover, .support-concept ul li strong, .hotline ul li strong, .product-detail-banner h1 span, ol {
  font-weight: 700;
  font-style: normal; }

.extra-bold, .bundle-list .bundle-item .bundle-item-title span, .teaser-list h2 {
  font-family: soleil;
  font-weight: 800;
  font-style: normal; }

body {
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-touch-callout: none;
  min-width: 320px;
  text-rendering: optimizeLegibility; }
  @media (max-width: 767px) {
    body {
      padding-left: 0px; } }

h1, h2, h3, h4, h5 {
  text-align: left !important;
  color: #282828;
  line-height: 50px;
  font-style: normal; }
  h1 a, h2 a, h3 a, h4 a, h5 a {
    color: #282828;
    text-decoration: none; }

h1, .h--alpha {
  font-weight: 700;
  font-size: 36px;
  font-style: normal;
  text-transform: uppercase; }
  h1 strong, .h--alpha strong {
    font-weight: 700; }

h2, .h--beta {
  font-weight: 700;
  font-size: 18px; }

h3, .h--gamma {
  font-weight: 700;
  font-size: 15px; }

img {
  width: 100%; }

.btnTopEliminate {
  position: absolute;
  width: 90%;
  bottom: 14px; }

@media (max-width: 767px) {
  .btnTopEliminate {
    margin-top: 10px !important;
    position: relative;
    bottom: 0;
    left: 0;
    margin-bottom: 30px; } }
time + h2 {
  line-height: 1em;
  margin-top: 0; }

.light, .product-detail-banner h1 {
  font-weight: 100;
  font-style: normal; }

.regular, .carousel ol {
  font-weight: 400;
  font-style: normal; }

.book {
  font-weight: 500;
  font-style: normal; }

.semi-bold {
  font-weight: 600;
  font-style: normal; }

.bold, .navbar .nav a, .navbar .nav a:hover, .navbar .btn-navbar, .navbar .btn-navbar:hover, .support-concept ul li strong, .hotline ul li strong, .product-detail-banner h1 span, ol {
  font-weight: 700;
  font-style: normal; }

.extra-bold, .bundle-list .bundle-item .bundle-item-title span, .teaser-list h2 {
  font-family: soleil;
  font-weight: 800;
  font-style: normal; }

.content {
  padding-top: 135px;
  position: relative;
  z-index: 0; }
  @media (max-width: 979px) {
    .content {
      padding-top: 0px; } }
  @media (max-width: 320px) {
    .content .btn {
      display: block;
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      box-sizing: border-box; } }

@media (max-width: 767px) {
  .container {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 5%;
    margin-right: 5%; } }

@media (min-width: 1030px) {
  .overboard {
    margin-left: -40px;
    margin-right: -40px; } }
@media (max-width: 767px) {
  body {
    padding-left: 0px;
    padding-right: 0px; } }

@media (max-width: 767px) {
  .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
    margin-left: 0px;
    margin-right: 0px; } }

@media (max-width: 767px) {
  .span3 {
    padding-bottom: 2em; } }
.span3:last-child {
  padding-bottom: 0; }

.span33 {
  width: 33%; }

.breadcrumb {
  margin: 0 0 40px;
  padding: 59px 0 61px;
  background: none;
  text-transform: uppercase;
  border-bottom: 1px solid #cccccc; }
  @media print {
    .breadcrumb {
      display: none !important; } }
  .breadcrumb h1, .breadcrumb h2, .breadcrumb h3, .breadcrumb h4, .breadcrumb h5, .breadcrumb h6 {
    text-decoration: underline;
    font-weight: 400;
    padding-right: 10px;
    font-size: 24px;
    line-height: 1em;
    color: #282828;
    display: inline-block;
    vertical-align: baseline;
    zoom: 1;
    *display: inline;
    *vertical-align: auto; }
  .breadcrumb a {
    color: #282828; }
    .breadcrumb a.active, .breadcrumb .product-list .product-item .feature-list a.feature-item.no-touch:hover, .product-list .product-item .feature-list .breadcrumb a.feature-item.no-touch:hover {
      color: #282828; }
    .breadcrumb a:hover {
      text-decoration: none; }
    .breadcrumb a.active h1, .breadcrumb .product-list .product-item .feature-list a.feature-item.no-touch:hover h1, .product-list .product-item .feature-list .breadcrumb a.feature-item.no-touch:hover h1, .breadcrumb a.active h2, .breadcrumb .product-list .product-item .feature-list a.feature-item.no-touch:hover h2, .product-list .product-item .feature-list .breadcrumb a.feature-item.no-touch:hover h2, .breadcrumb a.active h3, .breadcrumb .product-list .product-item .feature-list a.feature-item.no-touch:hover h3, .product-list .product-item .feature-list .breadcrumb a.feature-item.no-touch:hover h3, .breadcrumb a.active h4, .breadcrumb .product-list .product-item .feature-list a.feature-item.no-touch:hover h4, .product-list .product-item .feature-list .breadcrumb a.feature-item.no-touch:hover h4, .breadcrumb a.active h5, .breadcrumb .product-list .product-item .feature-list a.feature-item.no-touch:hover h5, .product-list .product-item .feature-list .breadcrumb a.feature-item.no-touch:hover h5, .breadcrumb a.active h6, .breadcrumb .product-list .product-item .feature-list a.feature-item.no-touch:hover h6, .product-list .product-item .feature-list .breadcrumb a.feature-item.no-touch:hover h6 {
      font-weight: 800;
      text-decoration: none; }

[class^="ico-"], .ppr-product-brick-item--active-mobile::after, .ppr-product-brick-item--active-mobile a.ppr-product-brick-item__link::after, .ppr-product-item__link::after, .ppr-product-menu__button::after,
[class*=" ico-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("/assets/img/sprite.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
  margin-top: 1px; }

.ico--inverted:not(.js-reverted), html:not(.js-offscreen-nav) .navbar--inverted.affix-top [class^="ico-"]:not(.js-reverted), html:not(.js-offscreen-nav) .navbar--inverted.affix-top .ppr-product-brick-item--active-mobile:not(.js-reverted)::after, html:not(.js-offscreen-nav) .navbar--inverted.affix-top .ppr-product-brick-item--active-mobile a.ppr-product-brick-item__link:not(.js-reverted)::after, .ppr-product-brick-item--active-mobile html:not(.js-offscreen-nav) .navbar--inverted.affix-top a.ppr-product-brick-item__link:not(.js-reverted)::after, html:not(.js-offscreen-nav) .navbar--inverted.affix-top .ppr-product-item__link:not(.js-reverted)::after, html:not(.js-offscreen-nav) .navbar--inverted.affix-top .ppr-product-menu__button:not(.js-reverted)::after, html:not(.js-offscreen-nav) .navbar--inverted.affix-top [class*=" ico-"]:not(.js-reverted), .ppr-product-brick-item--active-mobile a.ppr-product-brick-item__link:not(.js-reverted)::after, .ppr-product-menu__button:not(.js-reverted)::after {
  background-image: url("/assets/img/sprite-inverted.png"); }

.ico-prodarrow, .ppr-product-brick-item--active-mobile a.ppr-product-brick-item__link::after, .ppr-product-item__link::after, .ppr-product-menu__button::after {
  background-position: -136px -7px; }

.ico-home {
  background-position: -156px -5px;
  width: 22px;
  height: 14px; }

.ico-search {
  background-position: -193px -4px;
  width: 17px;
  height: 17px; }

.ico-hamburger {
  background-position: -44px -5px;
  width: 18px;
  height: 14px; }

.ico-arrow-left {
  background-position: -230px -3px;
  width: 20px;
  height: 20px; }

.ico-arrow-right {
  background-position: -264px -3px;
  width: 20px;
  height: 20px; }

.ico-close, .ppr-product-brick-item--active-mobile::after, .ppr-product-item--active .ppr-product-item__link::after {
  background-position: -11px -30px;
  width: 13px;
  height: 14px; }

.ico-arrow-up {
  background-position: -264px -27px;
  width: 20px;
  height: 20px; }

.bdrTpBright {
  border-top: 1px solid #fff; }

.bdrBtBright {
  border-bottom: 1px solid #fff; }

.bdrBtNone {
  border-bottom: none !important; }

.glanzBlck {
  background: #222222;
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(radial, 70% 3%, 0px, center center, 100%, color-stop(18%, #222222), color-stop(80%, #050505));
  /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(70% 3%, circle cover, #222222 18%, #050505 80%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 12+ */
  background: -ms-radial-gradient(70% 3%, circle cover, #222222 18%, #050505 80%);
  /* IE10+ */
  background: radial, circle 70% 3%, #222222 18%, #050505 80%;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#050505',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */ }

.site-title {
  margin: 0;
  padding: 0;
  width: 223px;
  height: 46px;
  background: url("/assets/img/projektpro_logo_hires.png") no-repeat 0 0;
  background-size: 223px 46px;
  text-indent: -90000px;
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out; }

.site-title--inverted, html:not(.js-offscreen-nav) .navbar--inverted .site-title {
  background-image: url("/assets/img/projektpro_logo_hires_inverted.png"); }

.lt-ie9 .site-title {
  background: url("/assets/img/projektpro_logo.png") no-repeat 0 0; }
.lt-ie9 .site-title--inverted, .lt-ie9 html:not(.js-offscreen-nav) .navbar--inverted .site-title, html:not(.js-offscreen-nav) .navbar--inverted .lt-ie9 .site-title {
  background: url("/assets/img/projektpro_logo_inverted.png") no-repeat 0 0; }

@media (max-width: 979px) {
  .navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    margin-bottom: 0; }

  .content {
    padding-top: 96px; } }
.navbar-inner {
  -webkit-transition: background 0.4s ease, padding 0.4s ease, box-shadow 400ms ease;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 400ms ease;
  box-shadow: none !important;
  padding-top: 36px;
  padding-bottom: 14px;
  background: white; }
  @media (max-width: 979px) {
    .navbar-inner {
      box-shadow: 0 2px 5px rgba(15, 14, 9, 0.1) !important; } }
  .navbar-inner:after {
    content: "";
    width: 100%;
    margin-left: 0%;
    height: 0px;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    position: absolute;
    bottom: 0px;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
    opacity: 1;
    filter: alpha(opacity=100); }

.home .affix-top .navbar-inner {
  background: rgba(255, 255, 255, 0.6);
  /* [class^="ico-"],[class*=" ico-"]{
     @extend .ico--inverted;
   }*/ }

.home .affix .navbar-inner {
  background: white; }

.navbar .nav a, .navbar .nav a:hover, .navbar .btn-navbar, .navbar .btn-navbar:hover {
  background-color: none !important;
  background-image: none !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 14px;
  color: #282828;
  opacity: 0.64;
  filter: alpha(opacity=64);
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  text-transform: uppercase; }
  .navbar .nav a:hover, .navbar .nav a:hover:hover, .navbar .btn-navbar:hover, .navbar .btn-navbar:hover:hover {
    opacity: 1;
    filter: alpha(opacity=100); }
.navbar .btn-navbar {
  padding-bottom: 30px; }
.navbar .active > a, .navbar .product-list .product-item .feature-list .feature-item.no-touch:hover > a, .product-list .product-item .feature-list .navbar .feature-item.no-touch:hover > a, .navbar .active > a:hover, .navbar .product-list .product-item .feature-list .feature-item.no-touch:hover > a:hover, .product-list .product-item .feature-list .navbar .feature-item.no-touch:hover > a:hover {
  opacity: 1;
  filter: alpha(opacity=100); }
.navbar .nav-main li {
  padding-right: 20px;
  position: relative; }
  @media (min-width: 980px) {
    .navbar .nav-main li ul.sub-nav {
      display: none;
      position: absolute;
      top: 54px;
      left: 0;
      padding-top: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.85); }
      .navbar .nav-main li ul.sub-nav li {
        background-color: rgba(0, 0, 0, 0.85);
        border-top: 1px solid rgba(255, 255, 255, 0.85);
        padding-right: 0; }
        .navbar .nav-main li ul.sub-nav li a {
          color: #fff;
          text-transform: none;
          font-size: 14px;
          line-height: 18px;
          padding: 11px;
          display: block;
          min-width: 182px;
          font-weight: normal;
          opacity: 1; }
          .navbar .nav-main li ul.sub-nav li ahover {
            text-decoration: none; }
        .navbar .nav-main li ul.sub-nav li:first-of-type:after, .navbar .nav-main li ul.sub-nav li:first-of-type:before {
          bottom: 100%;
          left: 24%;
          border: solid transparent;
          content: " ";
          height: 0;
          width: 0;
          position: absolute;
          pointer-events: none;
          z-index: -1; }
        .navbar .nav-main li ul.sub-nav li:first-of-type:after {
          border-color: rgba(213, 0, 0, 0);
          border-bottom-color: rgba(0, 0, 0, 0.9);
          border-width: 7px;
          margin-left: -7px; }
        .navbar .nav-main li ul.sub-nav li:first-of-type:before {
          border-color: rgba(255, 255, 255, 0);
          border-bottom-color: #FFFFFF;
          border-width: 8px;
          margin-left: -8px; } }
  .navbar .nav-main li.nav-icon {
    margin-top: 2.5px;
    margin-right: 0;
    padding-right: 0px; }
    @media (max-width: 979px) {
      .navbar .nav-main li.nav-icon.nav-toggle {
        display: none !important; } }
    .navbar .nav-main li.nav-icon.nav-lang > a {
      /* width:43px;*/
      height: 42px;
      display: block;
      padding: 0 0 20px 49px !important;
      margin: 16px 0 0 0;
      background-image: url("/assets/img/i18n.png") !important;
      background-repeat: no-repeat !important;
      background-position: 0px 0px !important; }
    .navbar .nav-main li.nav-icon.nav-lang ul.sub-nav {
      left: auto;
      right: 0;
      top: 51px; }
      .navbar .nav-main li.nav-icon.nav-lang ul.sub-nav li:first-of-type:before,
      .navbar .nav-main li.nav-icon.nav-lang ul.sub-nav li:first-of-type:after {
        left: 70%; }
      .navbar .nav-main li.nav-icon.nav-lang ul.sub-nav li a.current {
        background-image: url("/assets/img/i18n.png") !important;
        background-repeat: no-repeat !important;
        background-position: 154px -117px !important; }
      .navbar .nav-main li.nav-icon.nav-lang ul.sub-nav li a {
        text-align: right;
        padding-right: 50px; }
  .navbar .nav-main li:hover ul.sub-nav {
    display: block; }
    @media (max-width: 979px) {
      .navbar .nav-main li:hover ul.sub-nav {
        display: none; } }
.navbar .brand-container {
  width: 30%; }
.navbar .controls-container {
  width: 70%; }
.navbar .nav-tabs {
  width: 100%;
  border: none;
  margin: 0 !important;
  padding: 0; }
  .navbar .nav-tabs li {
    position: relative;
    width: 49.88888888888%;
    border-right: 1px solid rgba(15, 14, 9, 0.1);
    background: #ffffff;
    padding: 0 !important; }
    .navbar .nav-tabs li.active, .navbar .nav-tabs .product-list .product-item .feature-list li.feature-item.no-touch:hover, .product-list .product-item .feature-list .navbar .nav-tabs li.feature-item.no-touch:hover {
      cursor: pointer !important; }
    .navbar .nav-tabs li.demo-tab {
      animation-delay: 200ms;
      -webkit-animation-delay: 200ms;
      -ms-animation-delay: 200ms;
      -moz-animation-delay: 200ms;
      -o-animation-delay: 200ms;
      border-left: 1px solid rgba(15, 14, 9, 0.1); }
      .navbar .nav-tabs li.demo-tab:after {
        pointer-events: none;
        content: "";
        position: absolute;
        background: url("/assets/img/sprite.png") no-repeat -22px -9px;
        background: url("/assets/img/sprite.png") no-repeat -22px -9px;
        width: 11px;
        height: 7px;
        top: 50%;
        right: 10%;
        margin-top: -3.5px;
        z-index: 2222; }
      .navbar .nav-tabs li.demo-tab.active:after, .navbar .nav-tabs .product-list .product-item .feature-list li.demo-tab.feature-item.no-touch:hover:after, .product-list .product-item .feature-list .navbar .nav-tabs li.demo-tab.feature-item.no-touch:hover:after {
        background-position: -3px -9px;
        opacity: 0.5;
        filter: alpha(opacity=50); }
    .navbar .nav-tabs li.subnav-tab {
      animation-delay: 340ms;
      -webkit-animation-delay: 340ms;
      -ms-animation-delay: 340ms;
      -moz-animation-delay: 340ms;
      -o-animation-delay: 340ms; }
      .navbar .nav-tabs li.subnav-tab:after {
        pointer-events: none;
        content: "";
        position: absolute;
        background: url("/assets/img/sprite.png") no-repeat -44px -5px;
        background: url("/assets/img/sprite.png") no-repeat -44px -5px;
        width: 18px;
        height: 14px;
        top: 50%;
        right: 10%;
        margin-top: -7px;
        z-index: 2222; }
      .navbar .nav-tabs li.subnav-tab.active:after, .navbar .nav-tabs .product-list .product-item .feature-list li.subnav-tab.feature-item.no-touch:hover:after, .product-list .product-item .feature-list .navbar .nav-tabs li.subnav-tab.feature-item.no-touch:hover:after {
        opacity: 0.5;
        filter: alpha(opacity=50); }
    .navbar .nav-tabs li a, .navbar .nav-tabs li a:hover, .navbar .nav-tabs li a:focus {
      line-height: 60px;
      margin: 0 !important;
      padding: 0 !important;
      text-align: center;
      border: none !important;
      border-radius: none !important; }
    .navbar .nav-tabs li.active a, .navbar .nav-tabs .product-list .product-item .feature-list li.feature-item.no-touch:hover a, .product-list .product-item .feature-list .navbar .nav-tabs li.feature-item.no-touch:hover a, .navbar .nav-tabs li.active a:hover, .navbar .nav-tabs .product-list .product-item .feature-list li.feature-item.no-touch:hover a:hover, .product-list .product-item .feature-list .navbar .nav-tabs li.feature-item.no-touch:hover a:hover, .navbar .nav-tabs li.active a:focus, .navbar .nav-tabs .product-list .product-item .feature-list li.feature-item.no-touch:hover a:focus, .product-list .product-item .feature-list .navbar .nav-tabs li.feature-item.no-touch:hover a:focus {
      text-align: center;
      border: none !important;
      border-radius: none !important; }
.navbar .primary {
  display: block;
  z-index: 10; }
.navbar .secondary {
  display: none; }

.navbar-inner {
  position: relative !important;
  z-index: 9 !important; }

.affix .navbar-inner {
  background: white;
  position: relative;
  z-index: 9;
  box-shadow: 0 2px 5px rgba(15, 14, 9, 0.1) !important; }
  .affix .navbar-inner:after {
    opacity: 0;
    filter: alpha(opacity=0); }
@media (min-width: 979px) {
  .affix .navbar-inner {
    padding-top: 0px;
    padding-bottom: 0px; }
  .affix .site-title {
    height: 20px; }
  .affix .brand-container {
    padding-top: 0px; }
  .affix .primary {
    display: block; }
  .affix .secondary {
    display: none; } }

html:not(.js-offscreen-nav) .navbar--inverted .navbar-inner:after {
  border-bottom: none; }
html:not(.js-offscreen-nav) .navbar--inverted .nav-main-item a {
  color: #FFF !important; }
html:not(.js-offscreen-nav) .navbar--inverted .nav-main li.nav-icon.nav-lang > a {
  background-position: 0px -88px !important; }

.lt-ie9, .touch {
  /*.navbar-inner {
    position: relative;
    z-index: 9;
    background: white;
    @include box-shadow(0 2px 5px rgba(15, 14, 9, 0.1) !important);
    &:after {
      @include opacity(0);
    }
  }*/
  /*.home{
    .navbar-inner {
      background: transparent;
      @include box-shadow(0 2px 5px rgba(255, 255, 255, 0) !important);
    }
  }*/ }

html:not(.js-offscreen-nav).lt-ie9 .navbar--inverted.affix .navbar-inner,
html:not(.js-offscreen-nav).lt-ie9 .home .navbar--inverted.affix .navbar-inner, html:not(.js-offscreen-nav).touch .navbar--inverted.affix .navbar-inner,
html:not(.js-offscreen-nav).touch .home .navbar--inverted.affix .navbar-inner {
  background: white; }

html:not(.js-offscreen-nav).lt-ie9 .navbar--inverted.affix-top .navbar-inner,
html:not(.js-offscreen-nav).lt-ie9 .home .navbar--inverted.affix-top .navbar-inner, html:not(.js-offscreen-nav).touch .navbar--inverted.affix-top .navbar-inner,
html:not(.js-offscreen-nav).touch .home .navbar--inverted.affix-top .navbar-inner {
  background: transparent;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0) !important; }

html:not(.js-offscreen-nav) .navbar--inverted.affix .site-title {
  background-image: url("/assets/img/projektpro_logo_hires.png"); }
html:not(.js-offscreen-nav) .navbar--inverted.affix .nav-main-item > a {
  color: #282828 !important; }
html:not(.js-offscreen-nav) .navbar--inverted.affix [class^="ico-"], html:not(.js-offscreen-nav) .navbar--inverted.affix .ppr-product-brick-item--active-mobile::after, html:not(.js-offscreen-nav) .navbar--inverted.affix .ppr-product-brick-item--active-mobile a.ppr-product-brick-item__link::after, .ppr-product-brick-item--active-mobile html:not(.js-offscreen-nav) .navbar--inverted.affix a.ppr-product-brick-item__link::after, html:not(.js-offscreen-nav) .navbar--inverted.affix .ppr-product-item__link::after, html:not(.js-offscreen-nav) .navbar--inverted.affix .ppr-product-menu__button::after, html:not(.js-offscreen-nav) .navbar--inverted.affix [class*=" ico-"] {
  background-image: url("/assets/img/sprite.png"); }

html:not(.js-offscreen-nav) .navbar.affix .nav-main li.nav-icon.nav-lang > a,
html:not(.js-offscreen-nav) .navbar--inverted.affix .nav-main li.nav-icon.nav-lang > a {
  background-position: 0 0 !important; }

.home .navbar-inner:after {
  border: none; }

@media (max-width: 979px) {
  .nav-collapse {
    text-align: right; }
    .nav-collapse li.nav-main-item {
      margin-right: 0 !important;
      padding-right: 0 !important; } }

@media (max-width: 979px) {
  .active .ico-hamburger, .product-list .product-item .feature-list .feature-item.no-touch:hover .ico-hamburger {
    background-image: url("/assets/img/sprite.png") !important; }

  .sub-nav {
    display: none; }

  .nav-lang > a {
    display: none !important; }
  .nav-lang .sub-nav {
    display: block !important;
    position: relative !important;
    top: auto !important; }
    .nav-lang .sub-nav li {
      padding-right: 17px !important; }
      .nav-lang .sub-nav li a {
        padding-right: 0 !important; }
        .nav-lang .sub-nav li a.current {
          opacity: 1 !important; } }
.tab-content {
  width: 100% !important;
  padding-bottom: 5px; }

.tab-pane {
  padding: 20px 0 50px 0;
  background: white;
  box-shadow: 0 2px 5px rgba(15, 14, 9, 0.2); }

.sitemap {
  padding-bottom: 72px !important; }
  .sitemap a {
    color: #282828; }
  .sitemap .sitemap-column {
    float: left;
    width: 20%;
    /*.sub-nav{
      border-top:1px solid #000;
    }*/ }
    .sitemap .sitemap-column.last {
      width: 20%; }
      .sitemap .sitemap-column.last .sub-nav li {
        border-right: none; }
    .sitemap .sitemap-column.first {
      width: 20%; }
      .sitemap .sitemap-column.first .section-title, .sitemap .sitemap-column.first .sub-nav li {
        padding-left: 0; }
  .sitemap .section-title {
    font-size: 14px;
    padding-left: 1em;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: bold; }
  .sitemap .sub-nav li {
    border-top: 1px solid #e9e9e9;
    border-right: 1px solid #939393;
    padding: 0.65em 0.65em 0.65em 1em; }
  .sitemap .sub-nav li:last-child {
    border-bottom: 1px solid #e9e9e9; }
  .sitemap .sitemap-column.first .sub-nav li {
    border-right: none; }
  .sitemap .sitemap-column.second .sub-nav li {
    border-left: 1px solid #939393; }

.sitemap,
.download-form {
  padding-top: 62px !important; }
  .sitemap .switchToSite,
  .sitemap .switchToDemo,
  .download-form .switchToSite,
  .download-form .switchToDemo {
    display: none; }
    .sitemap .switchToSite a,
    .sitemap .switchToDemo a,
    .download-form .switchToSite a,
    .download-form .switchToDemo a {
      animation-delay: 200ms;
      -webkit-animation-delay: 200ms;
      -ms-animation-delay: 200ms;
      -moz-animation-delay: 200ms;
      -o-animation-delay: 200ms;
      border-left: 1px solid rgba(15, 14, 9, 0.1); }
      .sitemap .switchToSite a:after,
      .sitemap .switchToDemo a:after,
      .download-form .switchToSite a:after,
      .download-form .switchToDemo a:after {
        pointer-events: none;
        content: "";
        position: absolute;
        background: url("/assets/img/sprite.png") no-repeat -3px -9px;
        background: url("/assets/img/sprite.png") no-repeat -3px -9px;
        width: 11px;
        height: 7px;
        top: 50%;
        right: 10%;
        margin-top: -3.5px;
        z-index: 2222; }
      .sitemap .switchToSite a.active:after, .sitemap .switchToSite .product-list .product-item .feature-list a.feature-item.no-touch:hover:after, .product-list .product-item .feature-list .sitemap .switchToSite a.feature-item.no-touch:hover:after,
      .sitemap .switchToDemo a.active:after,
      .sitemap .switchToDemo .product-list .product-item .feature-list a.feature-item.no-touch:hover:after,
      .product-list .product-item .feature-list .sitemap .switchToDemo a.feature-item.no-touch:hover:after,
      .download-form .switchToSite a.active:after,
      .download-form .switchToSite .product-list .product-item .feature-list a.feature-item.no-touch:hover:after,
      .product-list .product-item .feature-list .download-form .switchToSite a.feature-item.no-touch:hover:after,
      .download-form .switchToDemo a.active:after,
      .download-form .switchToDemo .product-list .product-item .feature-list a.feature-item.no-touch:hover:after,
      .product-list .product-item .feature-list .download-form .switchToDemo a.feature-item.no-touch:hover:after {
        background-position: -22px -9px;
        opacity: 0.5;
        filter: alpha(opacity=50); }
  .sitemap .switchToSite,
  .download-form .switchToSite {
    padding-right: 70px;
    position: relative;
    float: left;
    margin-bottom: 28px; }
  .sitemap .switchToDemo,
  .download-form .switchToDemo {
    float: left;
    padding-right: 70px;
    position: absolute;
    bottom: -50px;
    left: 0px;
    text-transform: uppercase; }
  .sitemap .closeMenu,
  .download-form .closeMenu {
    position: absolute;
    right: 50px;
    top: -42px;
    text-transform: uppercase;
    color: #dddddd;
    font-weight: bold;
    letter-spacing: 2px; }

.download-form {
  padding-top: 32px !important; }
  .download-form .switchToSite a:after {
    background: url("/assets/img/sprite.png") no-repeat -22px -9px;
    background: url("/assets/img/sprite.png") no-repeat -22px -9px; }
  .download-form .switchToSite a.active:after, .download-form .switchToSite .product-list .product-item .feature-list a.feature-item.no-touch:hover:after, .product-list .product-item .feature-list .download-form .switchToSite a.feature-item.no-touch:hover:after {
    background-position: -3px -9px; }

.home h1 {
  padding-top: 0;
  margin-top: 0px; }
.home .content > section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: none; }
  .home .content > section:last-child {
    border-bottom: none;
    margin-bottom: 0; }
  .home .content > section h1 {
    margin-bottom: 44px; }
.home .project-showroom .btn {
  margin-top: 10px; }
.home .news {
  border-bottom: none !important; }
  .home .news a:not(.btn) {
    color: #282828;
    text-decoration: none; }
    .home .news a:not(.btn):hover {
      text-decoration: none; }
  .home .news h1 {
    padding-bottom: 40px;
    margin-bottom: 0 !important; }
  .home .news h2 {
    text-align: left; }
  .home .news p {
    padding: 10px 0  0px 0;
    margin-bottom: 0; }
  .home .news article > span.link {
    color: #1967bf;
    display: block;
    margin-bottom: 15px; }
  .home .news article {
    /*min-height: 550px;*/ }

header.teaser {
  padding-bottom: 40px;
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 40px; }
  header.teaser h1 {
    text-transform: uppercase; }
header .container {
  margin-top: -300px;
  z-index: 100;
  position: relative; }
  @media (max-width: 979px) {
    header .container {
      margin-top: 40px; } }

.home-head-img {
  display: block;
  margin-top: -135px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-height: 900px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top; }

.vidslider {
  height: 420px !important;
  margin-left: 27px !important; }
  .vidslider .video_pic_link {
    width: 615px;
    float: left;
    margin-right: 10px;
    margin-top: 40px; }

@media (max-width: 979px) {
  html:not(.js-offscreen-nav) .home-head-img {
    margin-top: -105px; }

  html.js-offscreen-nav .home-head-img {
    margin-top: 0px; } }
@media (max-width: 500px) {
  #cboxLoadedContent h1 {
    font-size: 18px !important; } }
.product-list-container {
  -webkit-touch-callout: none;
  /* prevent callout to copy image, etc when tap to hold */
  -webkit-text-size-adjust: none;
  /* prevent webkit from resizing text to fit */
  -webkit-user-select: none;
  /* prevent copy paste, to allow, change 'none' to 'text' */
  min-height: 450px; }

.product-list-container {
  background: #282828;
  padding: 50px 0 30px; }

.feature-item-btn-close {
  display: none;
  position: absolute;
  left: 261px;
  top: 14px;
  z-index: 100;
  background: none;
  border: none; }

.touch .feature-item-btn-close {
  display: block; }

.list-wrap {
  float: left;
  margin-left: 0px;
  margin-right: -300000px; }

.bundle-list {
  float: left;
  padding-left: 18px; }
  .bundle-list .bundle-item {
    display: block;
    width: 190px;
    padding-right: 14px !important;
    border-top: 1px solid #4f4f53; }
    .bundle-list .bundle-item.active .bundle-item-title, .bundle-list .product-list .product-item .feature-list .bundle-item.feature-item.no-touch:hover .bundle-item-title, .product-list .product-item .feature-list .bundle-list .bundle-item.feature-item.no-touch:hover .bundle-item-title {
      text-decoration: none;
      opacity: 1;
      filter: alpha(opacity=100); }
      .bundle-list .bundle-item.active .bundle-item-title i, .bundle-list .product-list .product-item .feature-list .bundle-item.feature-item.no-touch:hover .bundle-item-title i, .product-list .product-item .feature-list .bundle-list .bundle-item.feature-item.no-touch:hover .bundle-item-title i {
        display: block; }
    .bundle-list .bundle-item.inactive .bundle-item-title {
      opacity: 0.5;
      filter: alpha(opacity=50); }
    .bundle-list .bundle-item .bundle-item-title {
      -webkit-transition: opacity 200ms ease;
      transition: opacity 200ms ease;
      line-height: 49px;
      display: block;
      font-size: 14px;
      color: white;
      font-family: soleil;
      font-weight: 500;
      font-style: normal; }
      .bundle-list .bundle-item .bundle-item-title i {
        display: none;
        margin-top: 20px;
        margin-right: 5px;
        float: right; }
      .bundle-list .bundle-item .bundle-item-title:hover, .bundle-list .bundle-item .bundle-item-title.active, .bundle-list .bundle-item .product-list .product-item .feature-list .bundle-item-title.feature-item.no-touch:hover, .product-list .product-item .feature-list .bundle-list .bundle-item .bundle-item-title.feature-item.no-touch:hover {
        text-decoration: none;
        opacity: 1;
        filter: alpha(opacity=100); }
        .bundle-list .bundle-item .bundle-item-title:hover i, .bundle-list .bundle-item .bundle-item-title.active i, .bundle-list .bundle-item .product-list .product-item .feature-list .bundle-item-title.feature-item.no-touch:hover i, .product-list .product-item .feature-list .bundle-list .bundle-item .bundle-item-title.feature-item.no-touch:hover i {
          display: block; }
    .bundle-list .bundle-item .product-link {
      -webkit-transition: opacity 200ms ease;
      transition: opacity 200ms ease;
      opacity: 0.1;
      filter: alpha(opacity=10); }
    .bundle-list .bundle-item:hover .product-link, .bundle-list .bundle-item.active .product-link, .bundle-list .product-list .product-item .feature-list .bundle-item.feature-item.no-touch:hover .product-link, .product-list .product-item .feature-list .bundle-list .bundle-item.feature-item.no-touch:hover .product-link {
      opacity: 1;
      filter: alpha(opacity=100); }

.product-list-wrap {
  float: left;
  padding-left: 10px; }

.feature-item {
  padding: 2px;
  margin: 0;
  overflow: hidden; }
  .feature-item .feature-entry-content {
    background-repeat: no-repeat;
    background-size: 95px 95px;
    -ms-behavior: url(/assets/css/backgroundsize.min.htc);
    overflow: hidden;
    width: 95px;
    height: 95px;
    padding-top: 71px;
    color: white; }
    .feature-item .feature-entry-content .feature-description {
      padding-left: 10px;
      font-size: 12px;
      width: 285px;
      line-height: 1.4em; }

.product-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0; }
  .product-list .product-item {
    margin: 0;
    padding: 0; }
    .product-list .product-item .feature-list {
      list-style: none;
      margin: 0;
      padding: 0; }
      .product-list .product-item .feature-list .feature-item {
        position: absolute;
        z-index: 1;
        height: auto;
        opacity: 1;
        filter: alpha(opacity=100);
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        perspective: 1000;
        -webkit-perspective: 1000;
        -ms-perspective: 1000;
        -moz-perspective: 1000;
        -o-perspective: 1000;
        -webkit-transition: -webkit-transform 500ms cubic-bezier(0.19, 1, 0.22, 1), opacity 500ms cubic-bezier(0.19, 1, 0.22, 1), top 500ms cubic-bezier(0.19, 1, 0.22, 1);
        transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1), opacity 500ms cubic-bezier(0.19, 1, 0.22, 1), top 500ms cubic-bezier(0.19, 1, 0.22, 1); }
        .product-list .product-item .feature-list .feature-item.disabled {
          transform: scale(0, 0);
          -webkit-transform: scale(0, 0);
          -ms-transform: scale(0, 0);
          -moz-transform: scale(0, 0);
          -o-transform: scale(0, 0);
          opacity: 0;
          filter: alpha(opacity=0);
          pointer-events: none; }
        .product-list .product-item .feature-list .feature-item.moveRight {
          transform: translateX(198px);
          -webkit-transform: translateX(198px);
          -ms-transform: translateX(198px);
          -moz-transform: translateX(198px);
          -o-transform: translateX(198px); }
        .product-list .product-item .feature-list .feature-item.moveTop {
          transform: translateY(-99px);
          -webkit-transform: translateY(-99px);
          -ms-transform: translateY(-99px);
          -moz-transform: translateY(-99px);
          -o-transform: translateY(-99px); }
        .product-list .product-item .feature-list .feature-item .feature-entry-content {
          background-repeat: no-repeat;
          background-size: 95px 95px;
          -ms-behavior: url(/assets/css/backgroundsize.min.htc);
          overflow: hidden;
          transform: translateZ(0);
          -webkit-transform: translateZ(0);
          -ms-transform: translateZ(0);
          -moz-transform: translateZ(0);
          -o-transform: translateZ(0);
          backface-visibility: hidden;
          -webkit-backface-visibility: hidden;
          -ms-backface-visibility: hidden;
          -moz-backface-visibility: hidden;
          -o-backface-visibility: hidden;
          perspective: 1000;
          -webkit-perspective: 1000;
          -ms-perspective: 1000;
          -moz-perspective: 1000;
          -o-perspective: 1000;
          -webkit-transition: width 500ms cubic-bezier(0.19, 1, 0.22, 1), height 500ms cubic-bezier(0.19, 1, 0.22, 1), opacity 200ms cubic-bezier(1, 0, 0, 1);
          transition: width 500ms cubic-bezier(0.19, 1, 0.22, 1), height 500ms cubic-bezier(0.19, 1, 0.22, 1), opacity 200ms cubic-bezier(1, 0, 0, 1); }
        .product-list .product-item .feature-list .feature-item.active, .product-list .product-item .feature-list .feature-item.no-touch:hover {
          z-index: 1000; }
          .product-list .product-item .feature-list .feature-item.active .feature-entry-content, .product-list .product-item .feature-list .feature-item.no-touch:hover .feature-entry-content {
            width: 293px;
            height: 194px; }
            .lt-ie9 .product-list .product-item .feature-list .feature-item.active .feature-entry-content, .lt-ie9 .product-list .product-item .feature-list .feature-item.no-touch:hover .feature-entry-content {
              background-image: none !important;
              background-size: 45px 45px; }

.feature-title {
  color: white !important;
  margin: 0;
  margin-bottom: 14px;
  width: 95px;
  text-align: center !important;
  padding: 0;
  font-size: 11px;
  line-height: 1em; }
  .feature-title:hover {
    text-decoration: none !important; }

.product-detail-link .animated, .product-detail-link .ppr-product-item__link::after {
  animation-duration: 0.6s;
  -webkit-animation-duration: 0.6s;
  -ms-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -o-animation-duration: 0.6s; }
.product-detail-link p {
  font-size: 24px; }
.product-detail-link a {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s; }

.download-list li {
  padding: 1em 0 0.4em 0;
  line-height: 1em;
  margin: 0;
  border-top: 1px solid #cccccc; }
  .download-list li:last-child {
    border-bottom: 1px solid #cccccc; }
.download-list .download-link {
  color: #282828; }
.download-list .meta {
  padding-right: 4em; }

/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  /*-webkit-border-radius: 4px;*/
  /*-moz-border-radius: 4px;*/
  /*border-radius: 4px;*/
  direction: ltr;
  /*.dow {
        border-top: 1px solid #ddd !important;
    }*/ }

.datepicker th {
  font-weight: normal; }

.datepicker thead tr {
  border-bottom: 1px solid #ccc; }

.datepicker-inline {
  width: 220px; }

.datepicker.datepicker-rtl {
  direction: rtl; }

.datepicker.datepicker-rtl table tr td span {
  float: right; }

.datepicker-dropdown {
  top: 0;
  left: 0; }

.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 6px; }

.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 7px; }

.datepicker > div {
  display: none; }

.datepicker.days div.datepicker-days {
  display: block; }

.datepicker.months div.datepicker-months {
  display: block; }

.datepicker.years div.datepicker-years {
  display: block; }

.datepicker table {
  margin: 0; }

.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  /*-webkit-border-radius: 4px;*/
  /*-moz-border-radius: 4px;*/
  /*border-radius: 4px;*/
  border: none; }

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent; }

.datepicker table tr td.day:hover {
  background: #eeeeee;
  cursor: pointer; }

.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999; }

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default; }

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: linear, top, #fdd49a, #fdf59a;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000 !important; }

.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr .product-list .product-item .feature-list td.today.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.today.feature-item.no-touch:hover,
.datepicker table tr td.today:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.today.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.today.feature-item.no-touch:hover,
.datepicker table tr td.today.disabled.active,
.datepicker table tr .product-list .product-item .feature-list td.today.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.today.disabled.feature-item.no-touch:hover,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.today.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.today.disabled.feature-item.no-touch:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a; }

.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr .product-list .product-item .feature-list td.today.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.today.feature-item.no-touch:hover,
.datepicker table tr td.today:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.today.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.today.feature-item.no-touch:hover,
.datepicker table tr td.today.disabled.active,
.datepicker table tr .product-list .product-item .feature-list td.today.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.today.disabled.feature-item.no-touch:hover,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.today.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.today.disabled.feature-item.no-touch:hover {
  background-color: #fbf069     \9; }

.datepicker table tr td.today:hover:hover {
  color: #000; }

.datepicker table tr td.today.active:hover, .datepicker table tr .product-list .product-item .feature-list td.today.feature-item.no-touch:hover, .product-list .product-item .feature-list .datepicker table tr td.today.feature-item.no-touch:hover {
  color: #fff; }

.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  border-radius: 0; }

.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
  background-image: -webkit-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: -o-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: linear, top, #f3c17a, #f3e97a;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border-radius: 0; }

.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr .product-list .product-item .feature-list td.range.today.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.range.today.feature-item.no-touch:hover,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.range.today.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.range.today.feature-item.no-touch:hover,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr .product-list .product-item .feature-list td.range.today.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.range.today.disabled.feature-item.no-touch:hover,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.range.today.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.range.today.disabled.feature-item.no-touch:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a; }

.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr .product-list .product-item .feature-list td.range.today.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.range.today.feature-item.no-touch:hover,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.range.today.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.range.today.feature-item.no-touch:hover,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr .product-list .product-item .feature-list td.range.today.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.range.today.disabled.feature-item.no-touch:hover,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.range.today.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.range.today.disabled.feature-item.no-touch:hover {
  background-color: #efe24b  \9; }

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
  background-image: -webkit-linear-gradient(top, #b3b3b3, #808080);
  background-image: -o-linear-gradient(top, #b3b3b3, #808080);
  background-image: linear, top, #b3b3b3, #808080;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }

.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr .product-list .product-item .feature-list td.selected.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.selected.feature-item.no-touch:hover,
.datepicker table tr td.selected:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.selected.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.selected.feature-item.no-touch:hover,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr .product-list .product-item .feature-list td.selected.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.selected.disabled.feature-item.no-touch:hover,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.selected.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.selected.disabled.feature-item.no-touch:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080; }

.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr .product-list .product-item .feature-list td.selected.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.selected.feature-item.no-touch:hover,
.datepicker table tr td.selected:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.selected.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.selected.feature-item.no-touch:hover,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr .product-list .product-item .feature-list td.selected.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.selected.disabled.feature-item.no-touch:hover,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.selected.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.selected.disabled.feature-item.no-touch:hover {
  background-color: #666666  \9; }

.datepicker table tr td.active, .datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover, .product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover,
.datepicker table tr td.active:hover,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover {
  background-color: #bacf1d;
  /*background-color: #006dcc;*/
  /*background-image: -moz-linear-gradient(top, #0088cc, #0044cc);*/
  /*background-image: -ms-linear-gradient(top, #0088cc, #0044cc);*/
  /*background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));*/
  /*background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);*/
  /*background-image: -o-linear-gradient(top, #0088cc, #0044cc);*/
  /*background-image: linear-gradient(top, #0088cc, #0044cc);*/
  /*background-repeat: repeat-x;*/
  /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);*/
  /*border-color: #0044cc #0044cc #002a80;*/
  /*border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
  /*filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);*/
  color: #000000;
  font-weight: bold;
  /*text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);*/ }

.datepicker table tr td.active:hover, .datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover, .product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover:hover,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:active:hover,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:active:hover,
.datepicker table tr td.active:hover:active,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover:active,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:active:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:active:hover,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover:active,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover.disabled,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr .product-list .product-item .feature-list td.disabled.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.disabled.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover.disabled,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr .product-list .product-item .feature-list td[disabled].feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td[disabled].feature-item.no-touch:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover[disabled],
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr .product-list .product-item .feature-list td.disabled[disabled].feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled[disabled].feature-item.no-touch:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover[disabled],
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover[disabled] {
  background-color: #bacf1d; }

.datepicker table tr td.active:active, .datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:active:hover, .product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:active:hover,
.datepicker table tr td.active:hover:active,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover:active,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:active:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:active:hover,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover:active,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr .product-list .product-item .feature-list td.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td.disabled.feature-item.no-touch:hover {
  background-color: #bacf1d; }

.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  /*-webkit-border-radius: 4px;*/
  /*-moz-border-radius: 4px;*/
  /*border-radius: 4px;*/ }

.datepicker table tr td span:hover {
  background: #eeeeee; }

.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default; }

.datepicker table tr td span.active, .datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover, .product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover,
.datepicker table tr td span.active:hover,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover {
  background-color: #bacf1d;
  /*background-color: #006dcc;*/
  /*background-image: -moz-linear-gradient(top, #0088cc, #0044cc);*/
  /*background-image: -ms-linear-gradient(top, #0088cc, #0044cc);*/
  /*background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));*/
  /*background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);*/
  /*background-image: -o-linear-gradient(top, #0088cc, #0044cc);*/
  /*background-image: linear-gradient(top, #0088cc, #0044cc);*/
  /*background-repeat: repeat-x;*/
  /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);*/
  /*border-color: #0044cc #0044cc #002a80;*/
  /*border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
  /*filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);*/
  color: black;
  /*text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);*/ }

.datepicker table tr td span.active:hover, .datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover, .product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover:hover,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:active:hover,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:active:hover,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover:active,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:active:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:active:hover,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover:active,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover.disabled,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.disabled.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover.disabled,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td .product-list .product-item .feature-list span[disabled].feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span[disabled].feature-item.no-touch:hover,
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover[disabled],
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td .product-list .product-item .feature-list span.disabled[disabled].feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled[disabled].feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled:hover[disabled],
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover[disabled],
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover[disabled] {
  background-color: #bacf1d; }

.datepicker table tr td span.active:active, .datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:active:hover, .product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:active:hover,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover:active,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:active:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:active:hover,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover:active,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td .product-list .product-item .feature-list span.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td .product-list .product-item .feature-list span.disabled.feature-item.no-touch:hover,
.product-list .product-item .feature-list .datepicker table tr td span.disabled.feature-item.no-touch:hover {
  background-color: #bacf1d; }

.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999; }

.datepicker th.datepicker-switch {
  width: 145px; }

.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer; }

.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee; }

.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle; }

.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent; }

.input-append.date .add-on i,
.input-prepend.date .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px; }

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

.input-daterange input:first-child {
  border-radius: 3px 0 0 3px; }

.input-daterange input:last-child {
  border-radius: 0 3px 3px 0; }

.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px; }

/*!
 * Timepicker Component for Twitter Bootstrap
 *
 * Copyright 2013 Joris de Wit
 *
 * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
.bootstrap-timepicker {
  position: relative; }

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
  left: auto;
  right: 0; }

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
  left: auto;
  right: 12px; }

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
  left: auto;
  right: 13px; }

.bootstrap-timepicker .add-on {
  cursor: pointer; }

.bootstrap-timepicker .add-on i {
  display: inline-block;
  width: 16px;
  height: 16px; }

.bootstrap-timepicker-widget.dropdown-menu {
  padding: 2px 3px 2px 2px; }

.bootstrap-timepicker-widget.dropdown-menu.open {
  display: inline-block; }

.bootstrap-timepicker-widget.dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  left: 9px;
  position: absolute;
  top: -7px; }

.bootstrap-timepicker-widget.dropdown-menu:after {
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  left: 10px;
  position: absolute;
  top: -6px; }

.bootstrap-timepicker-widget a.btn,
.bootstrap-timepicker-widget input {
  border-radius: 4px; }

.bootstrap-timepicker-widget table {
  width: 100%;
  margin: 0; }

.bootstrap-timepicker-widget table td {
  text-align: center;
  height: 30px;
  margin: 0;
  padding: 2px; }

.bootstrap-timepicker-widget table td:not(.separator) {
  min-width: 30px; }

.bootstrap-timepicker-widget table td span {
  width: 100%; }

.bootstrap-timepicker-widget table td a {
  border: 1px transparent solid;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  outline: 0;
  color: #333; }

.bootstrap-timepicker-widget table td a:hover {
  text-decoration: none;
  background-color: #eee;
  border-radius: 4px;
  border-color: #ddd; }

.bootstrap-timepicker-widget table td a i {
  margin-top: 2px; }

.bootstrap-timepicker-widget table td input {
  width: 25px;
  margin: 0;
  text-align: center; }

.bootstrap-timepicker-widget .modal-content {
  padding: 4px; }

@media (min-width: 767px) {
  .bootstrap-timepicker-widget.modal {
    width: 200px;
    margin-left: -100px; } }
@media (max-width: 767px) {
  .bootstrap-timepicker {
    width: 100%; }

  .bootstrap-timepicker .dropdown-menu {
    width: 100%; } }
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  height: 40px;
  box-shadow: none; }

@media print {
  select {
    display: none; } }

@media print {
  .accordion-toggle {
    display: none !important; } }

.form-section {
  /*  .container {
      background: white url("/assets/img/form/mac.jpg") no-repeat 640px 50px;

      @media (min-width: 1200px) {
        background: white url("/assets/img/form/mac.jpg") no-repeat 730px 50px;
      }
    }*/ }
  .form-section header {
    margin: 2em 0; }
    .form-section header h1 {
      margin-top: 0;
      font-size: 14px;
      margin-bottom: 0;
      line-height: 1em; }

.help-block {
  font-size: 12px;
  line-height: 1.4em; }

.help {
  display: block;
  padding-top: 0.5em; }

.form-feedback {
  position: absolute;
  top: -50px; }

.input-date {
  background-image: url("/assets/img/form/icon-calender.png");
  background-repeat: no-repeat;
  background-position: 6px 9px;
  text-align: right; }

.input-time {
  background-image: url("/assets/img/form/icon-clock.png");
  background-repeat: no-repeat;
  background-position: 6px 9px;
  text-align: right; }

.form-description {
  padding-right: 30px;
  padding-bottom: 90px; }
  @media (max-width: 979px) {
    .form-description {
      padding-right: 0; } }

.form-label-left {
  position: relative; }
  .form-label-left label, .form-label-left .label-left {
    padding-right: 1em; }
  .form-label-left .row-fluid {
    margin-bottom: 1em; }
  .form-label-left .btn-large {
    min-width: 200px;
    margin-right: 38px; }
    @media (max-width: 979px) {
      .form-label-left .btn-large {
        margin-right: 0; } }

input[type='radio'] {
  margin-right: 10px;
  position: relative;
  top: -3px; }

.invalid input,
.invalid .message {
  border: 1px solid red; }

.message {
  margin-left: 0px !important;
  height: 30px;
  width: 36px; }
  .message input {
    margin: 0 10px; }

.btn-primary {
  border: 1px solid #AFCD1E !important;
  text-shadow: none !important;
  background: #AFCD1E !important;
  color: #FFF !important; }

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  color: #000 !important; }

.btn-primary-invers:hover {
  background: none !important;
  color: #FFF !important; }

.btn-large {
  font-size: 14px;
  font-weight: bold; }

@media (max-width: 820px) {
  .ppr-product-button__link {
    width: auto !important; } }
.form_switch_lb {
  padding: 20px 80px;
  max-width: 1024px; }
  @media (max-width: 700px) {
    .form_switch_lb {
      padding: 10px 10px; } }

.form_switch_lb .pure-g {
  margin-top: 50px; }

.form_switch_lb .pure-g .btn {
  margin-bottom: 24px; }

.page-produkte .video-teaser a {
  margin-top: 1em; }

.project-detail-section {
  background: #efefef;
  margin-bottom: 100px;
  padding-bottom: 25px;
  width: 100%; }
  .project-detail-section > h1 {
    padding: 30px 0;
    padding-left: 50px;
    margin: 0;
    margin-bottom: -7px;
    line-height: 1em; }
    @media (max-width: 767px) {
      .project-detail-section > h1 {
        padding-left: 5%; } }

.products-detail-description h2 {
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase; }

.vid_list {
  direction: rtl;
  /**
   * Youtube
   */
  /*
  .management{
    .play-overlay{
        &:before{
          background-position:0 -86px;
        }
      }
  }

  .ava{
    .play-overlay{
        &:before{
          background-position:0 -172px;
        }
      }
  }
  .bauleitung, .mobil{
    .play-overlay{
        &:before{
          background-position:0 -258px;
        }
      }
  }
  */ }
  .vid_list > .grd-1-1 {
    direction: ltr; }
  .vid_list > .l-box {
    padding: 0 !important; }
  .vid_list .control {
    border-top: 1px solid #7E7E7E;
    margin: 50px 0 0 0;
    padding: 0;
    float: none;
    height: 496px;
    overflow-x: auto;
    overflow-y: hidden; }
    .vid_list .control .bundle-item {
      padding: 12px 0 12px 0; }
      .vid_list .control .bundle-item .bundle-item-title {
        font-size: 18px;
        line-height: 24px; }
    .vid_list .control .inactive {
      opacity: 0.5; }
      .vid_list .control .inactive .bundle-item-title {
        opacity: 1; }
    .vid_list .control li {
      color: #fff;
      padding: 32px 0 22px 0;
      display: block;
      margin: 0;
      border-bottom: 1px solid #7E7E7E;
      width: auto; }
      .vid_list .control li a.bundle-item-title {
        line-height: 18px; }
  .vid_list .view {
    color: #fff;
    margin-top: 50px;
    font-size: 20px;
    position: relative; }
    .vid_list .view h3 {
      position: absolute;
      top: 270px;
      width: 100%;
      z-index: 10;
      text-align: center !important;
      font-size: 34px;
      color: #fff;
      font-weight: normal; }
      .vid_list .view h3 span {
        font-weight: bold; }
    .vid_list .view a {
      margin-bottom: 34px;
      display: block; }
      .vid_list .view a img {
        /* width:457px;*/
        opacity: 0.5; }
      .vid_list .view a img:hover {
        /* width:457px; */ }
    .vid_list .view strong {
      font-weight: normal; }
    .vid_list .view em {
      font-style: normal !important;
      font-weight: bold; }
    .vid_list .view ul li {
      display: none;
      position: absolute; }
    .vid_list .view ul li.active, .vid_list .view ul .product-list .product-item .feature-list li.feature-item.no-touch:hover, .product-list .product-item .feature-list .vid_list .view ul li.feature-item.no-touch:hover {
      display: block;
      position: relative; }
  .vid_list .play-overlay:before {
    content: "";
    top: calc(50% - 55px);
    left: calc(50% - 55px);
    width: 110px;
    height: 110px;
    background-image: url("/assets/img/playWhite.png");
    background-size: auto;
    background-position: 0 0;
    background-repeat: no-repeat; }

.vid-icon {
  background-image: url("/assets/img/sprite_vid_res.png");
  background-repeat: no-repeat;
  padding-left: 52px !important; }

.vid-icon-lightgreen {
  background-position: 0px 0px; }

.vid-icon-lightorange {
  background-position: 0px -92px; }

.vid-icon-midblue {
  background-position: 0px -182px; }

.vid-icon-gray {
  background-position: 0px -274px; }

@media (max-width: 1200px) {
  .vid_list .control {
    height: 380px; }
    .vid_list .control .bundle-item,
    .vid_list .control .vid-item {
      padding: 9px 0 9px 0; }
      .vid_list .control .bundle-item .bundle-item-title,
      .vid_list .control .bundle-item .vid-item-title,
      .vid_list .control .vid-item .bundle-item-title,
      .vid_list .control .vid-item .vid-item-title {
        font-size: 16px; }
    .vid_list .control .vid-icon-lightgreen {
      background-position: 0px -3px; }
    .vid_list .control .vid-icon-lightorange {
      background-position: 0px -95px; }
    .vid_list .control .vid-icon-midblue {
      background-position: 0px -185px; }
    .vid_list .control .vid-icon-gray {
      background-position: 0px -277px; }
  .vid_list .view {
    font-size: 18px; }
    .vid_list .view h3 {
      top: 225px; } }
@media (max-width: 979px) {
  .vid_list .control {
    height: 282px; }
    .vid_list .control .bundle-item,
    .vid_list .control .vid-item {
      padding: 4px 0 4px 0; }
      .vid_list .control .bundle-item .bundle-item-title,
      .vid_list .control .bundle-item .vid-item-title,
      .vid_list .control .vid-item .bundle-item-title,
      .vid_list .control .vid-item .vid-item-title {
        font-size: 13px;
        line-height: 20px; }
        .vid_list .control .bundle-item .bundle-item-title i,
        .vid_list .control .bundle-item .vid-item-title i,
        .vid_list .control .vid-item .bundle-item-title i,
        .vid_list .control .vid-item .vid-item-title i {
          margin-top: 17px;
          margin-right: 0px !important; }
    .vid_list .control .vid-icon {
      padding-left: 38px !important;
      padding-right: 0px !important; }
    .vid_list .control .vid-icon-lightgreen {
      background-position: 0px -12px; }
    .vid_list .control .vid-icon-lightorange {
      background-position: 0px -104px; }
    .vid_list .control .vid-icon-midblue {
      background-position: 0px -194px; }
    .vid_list .control .vid-icon-gray {
      background-position: 0px -286px; }
  .vid_list .view {
    font-size: 13px; }
    .vid_list .view h3 {
      top: 158px; } }
@media (max-width: 767px) {
  .vid_list {
    direction: ltr; }
    .vid_list > .grd-1-1 {
      direction: ltr; }
    .vid_list .control {
      height: auto; }
      .vid_list .control .bundle-item,
      .vid_list .control .vid-item {
        padding: 15px 0 15px 0; }
        .vid_list .control .bundle-item .bundle-item-title,
        .vid_list .control .bundle-item .vid-item-title,
        .vid_list .control .vid-item .bundle-item-title,
        .vid_list .control .vid-item .vid-item-title {
          font-size: 15px;
          line-height: 20px; }
      .vid_list .control .vid-icon {
        padding-left: 50px !important;
        padding-right: 0px !important; }
      .vid_list .control .vid-icon-lightgreen {
        background-position: 0px 3px; }
      .vid_list .control .vid-icon-lightorange {
        background-position: 0px -89px; }
      .vid_list .control .vid-icon-midblue {
        background-position: 0px -178px; }
      .vid_list .control .vid-icon-gray {
        background-position: 0px -274px; }
    .vid_list .view {
      font-size: 15px; }
      .vid_list .view h3 {
        bottom: 24%;
        top: inherit; } }
.project-detail-item {
  background-color: #232329; }
  .project-detail-item h2 {
    font-size: 18px;
    font-weight: 100;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1em; }
  .project-detail-item .main_head {
    font-weight: 800;
    font-size: 18px;
    margin-top: 0;
    line-height: 1.26em;
    color: #fff;
    text-align: center !important;
    margin-top: 25%; }
    @media (max-width: 767px) {
      .project-detail-item .main_head {
        text-align: left !important;
        padding-left: 5%; } }
  .project-detail-item .always .deko {
    width: 100%;
    margin-top: 40%; }
  .project-detail-item .more-text {
    margin-top: 8%;
    color: #fff;
    margin-left: 26%;
    margin-right: -60%;
    line-height: 24px;
    font-size: 16px; }
    @media (max-width: 767px) {
      .project-detail-item .more-text {
        margin-left: 5%;
        margin-right: 5%;
        padding-bottom: 20px; } }
  .project-detail-item .more-button {
    position: absolute;
    bottom: 8%;
    left: 12%;
    display: none; }
    @media (max-width: 767px) {
      .project-detail-item .more-button {
        position: relative;
        margin-left: 5%;
        float: right;
        right: 0;
        left: 0;
        margin-right: 5%;
        margin-bottom: 5%;
        opacity: 1 !important;
        display: block; } }
  .project-detail-item.detail .more-button {
    display: block; }

.kacheln {
  position: relative;
  float: left;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  width: 30%;
  margin-left: 5%;
  margin-bottom: 5%; }
  .kacheln:nth-of-type(3n+1) {
    margin-left: 0; }
  @media (max-width: 979px) {
    .kacheln {
      width: 45%;
      margin-left: 10%;
      margin-bottom: 10%; }
      .kacheln:nth-of-type(3n+1) {
        margin-left: 10%; }
      .kacheln:nth-of-type(2n+1) {
        margin-left: 0; } }
  @media (max-width: 767px) {
    .kacheln {
      width: 100%;
      margin-left: 0 !important;
      margin-right: 0 !important; } }
  .kacheln img.spacer {
    width: 100%;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out; }
    @media (max-width: 767px) {
      .kacheln img.spacer {
        display: none; } }
  .kacheln .always {
    position: absolute;
    width: 100%;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    top: 0;
    left: 0; }
    @media (max-width: 767px) {
      .kacheln .always {
        position: relative;
        top: 0;
        left: 0; }
        .kacheln .always h2.main_head {
          position: relative;
          top: 0;
          left: 0; }
        .kacheln .always h3.sub_head {
          position: relative;
          top: 0;
          left: 0; } }
  .kacheln .more {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }
  @media (max-width: 767px) {
    .kacheln .more.more-text {
      opacity: 1 !important; } }
  .kacheln.detail {
    z-index: 999;
    width: 65%;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out; }
    @media (max-width: 979px) {
      .kacheln.detail {
        width: 100%; } }
    .kacheln.detail .always {
      width: 50%;
      -webkit-transition: width 0.4s ease-in-out;
      transition: width 0.4s ease-in-out; }
    .kacheln.detail .more {
      opacity: 1;
      -webkit-transition: opacity 1s ease-in-out;
      transition: opacity 1s ease-in-out; }

.self-under-item {
  background-color: #AFCD1E; }
  @media (max-width: 767px) {
    .self-under-item {
      width: 100%;
      margin-left: 0 !important;
      margin-right: 0 !important; } }
  .self-under-item .always {
    padding: 5%;
    bottom: 0; }
    @media (max-width: 767px) {
      .self-under-item .always {
        position: relative;
        top: 0;
        left: 0; } }
  .self-under-item h2.main_head {
    font-weight: 800;
    font-size: 250%;
    line-height: 1.16em;
    color: #fff;
    margin-top: 5%; }
  .self-under-item h3.sub_head {
    color: #fff;
    position: absolute;
    bottom: 5%;
    line-height: 24px;
    left: 5%;
    right: 5%;
    font-weight: bold;
    font-size: 20px; }
  .self-under-item .more-text {
    opacity: 0;
    margin-top: 8%;
    color: #fff;
    line-height: 24px;
    font-size: 16px; }
  .self-under-item.detail {
    width: 30%;
    height: 93%; }
    .self-under-item.detail .always {
      width: 100%; }
    @media (max-width: 979px) {
      .self-under-item.detail {
        width: 45%;
        height: 61%; } }
    @media (max-width: 767px) {
      .self-under-item.detail {
        width: 100%;
        height: auto; } }

.partner-item {
  background-color: #F2F2F2; }
  .partner-item .more-text h5 a {
    text-decoration: underline; }
  .partner-item.detail .always {
    bottom: 0;
    width: 100%; }
    .partner-item.detail .always > img {
      width: 32%;
      float: right; }
  .partner-item.detail .more-text {
    padding: 5%; }
  @media (max-width: 767px) {
    .partner-item .more {
      padding: 5%; }
      .partner-item .more h5 {
        font-size: 20px; }
    .partner-item img.deko {
      width: 33%;
      float: right; } }
  @media (min-width: 768px) {
    .partner-item {
      width: 22.5%;
      margin-left: 2.5%;
      margin-bottom: 2%; }
      .partner-item:nth-of-type(2n+1) {
        margin-left: 2.5%; }
      .partner-item:nth-of-type(3n+1) {
        margin-left: 2.5%; }
      .partner-item:nth-of-type(5n+1) {
        margin-left: 2.5%; }
      .partner-item:nth-of-type(4n+1) {
        margin-left: 0; }
      .partner-item.detail {
        width: 73%;
        height: 95%; }
        .partner-item.detail img.spacer {
          width: 0;
          -webkit-transition: width 0.4s ease-in-out;
          transition: width 0.4s ease-in-out; }
        .partner-item.detail .always > img.deko {
          opacity: 0.1;
          -webkit-transition: width 0.4s ease-in-out;
          transition: width 0.4s ease-in-out; }
        .partner-item.detail .always > .more-text {
          position: absolute;
          top: 0; } }
  @media (min-width: 980px) {
    .partner-item {
      width: 18%;
      margin-left: 2.5%;
      margin-bottom: 2%; }
      .partner-item:nth-of-type(2n+1) {
        margin-left: 2.5%; }
      .partner-item:nth-of-type(3n+1) {
        margin-left: 2.5%; }
      .partner-item:nth-of-type(4n+1) {
        margin-left: 2.5%; }
      .partner-item:nth-of-type(5n+1) {
        margin-left: 0; }
      .partner-item.detail {
        width: 59%;
        height: 95%; } }

.team {
  overflow: hidden;
  *zoom: 1; }
  .team .team-list article {
    -webkit-touch-callout: none;
    /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;
    /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;
    /* prevent copy paste, to allow, change 'none' to 'text' */
    padding: 0;
    float: left;
    margin: 3px;
    display: block;
    width: 175px;
    height: 175px;
    font-size: 14px; }
    @media (max-width: 320px) {
      .team .team-list article {
        width: 280px;
        height: 280px; } }
    .team .team-list article h2 {
      font-size: 15px;
      text-align: center !important;
      padding: 0.8em 0;
      line-height: 1em;
      text-transform: uppercase;
      color: white;
      margin: 0; }
    .team .team-list article p {
      font-size: 12px;
      padding: 0 12px;
      color: white;
      text-transform: none;
      font-style: normal;
      line-height: 1.6em; }

.card {
  position: relative;
  width: 175px;
  height: 175px;
  -webkit-perspective: 600px;
  perspective: 600px; }
  @media (max-width: 320px) {
    .card {
      width: 280px;
      height: 280px; } }
  .card .front {
    background-size: 100% !important;
    position: absolute;
    width: inherit;
    height: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 900;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .card .front h2 {
      position: absolute;
      margin: 0;
      left: 0;
      right: 0;
      display: block;
      bottom: 0;
      background: rgba(40, 40, 40, 0.7); }
  .card .back {
    background-size: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 800;
    -webkit-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .card .back .vcenter-container {
      background: rgba(40, 40, 40, 0.8); }
  .card.active .front, .product-list .product-item .feature-list .card.feature-item.no-touch:hover .front, .card:hover .front {
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .card.active .back, .product-list .product-item .feature-list .card.feature-item.no-touch:hover .back, .card:hover .back {
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg); }

.self-understanding {
  background: #efefef;
  margin-bottom: 40px; }
  .self-understanding h1 {
    padding-left: 50px;
    font-size: 24px; }
    @media (max-width: 767px) {
      .self-understanding h1 {
        line-height: 1em;
        padding: 1em 0 1em 5%; } }
  .self-understanding .self-understanding-item {
    float: left;
    width: 264px;
    padding: 0;
    height: 570px;
    border: 1px solid #d9d9d9;
    background: white;
    margin-right: 30px;
    position: relative;
    overflow: hidden; }
    .self-understanding .self-understanding-item .entry-content {
      padding: 15px; }
    .self-understanding .self-understanding-item header {
      position: relative;
      padding: 0; }
    .self-understanding .self-understanding-item blockquote {
      z-index: 100;
      color: white;
      text-indent: 0;
      border: none;
      padding: 1em;
      position: absolute;
      bottom: -1em; }

.halfResImage,
.halfResImageLink {
  width: 476px;
  float: left;
  margin-left: 60px;
  display: block; }
  @media (max-width: 979px) {
    .halfResImage,
    .halfResImageLink {
      width: 100%;
      margin-bottom: 20px;
      margin-left: 20px; } }
  @media (max-width: 979px) and (min-width: 768px) {
    .halfResImage,
    .halfResImageLink {
      margin-left: 37.2px;
      margin-right: 37.2px; } }
  @media (max-width: 767px) {
    .halfResImage,
    .halfResImageLink {
      margin-left: 0px; } }
  .halfResImage img,
  .halfResImageLink img {
    width: 100%; }

.template-service .equalHeights1, .template-service .equalHeights2, .template-service .equalHeights3 {
  border-bottom: 1px solid #c1c1c3;
  margin: 14px 0;
  padding-bottom: 5px; }
.template-service .equalHeights3 {
  border-bottom: none; }
@media (max-width: 767px) {
  .template-service .training .equalHeights:last-child {
    margin-top: 50px; } }
@media (max-width: 568px) {
  .template-service .training .equalHeights:last-child {
    margin-top: 90px; } }

.head-section {
  border-bottom: 1px solid #efefef;
  padding-bottom: 50px;
  margin-bottom: 50px; }

.teaser-list h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1em; }
.teaser-list a {
  text-decoration: underline; }
.teaser-list ul li {
  padding: 15px 0;
  border-top: 1px solid #efefef; }
  .teaser-list ul li a {
    color: #000;
    text-decoration: none; }
@media (max-width: 767px) {
  .teaser-list .span5:first-child {
    padding-bottom: 2em; } }

.support-concept header, .hotline header {
  margin-bottom: 50px; }
.support-concept h2, .hotline h2 {
  border-bottom: 1px solid #c1c1c3;
  font-size: 24px;
  margin-bottom: 0;
  line-height: 1em;
  padding-bottom: 9px; }
.support-concept ul, .hotline ul {
  list-style: none;
  margin: 0;
  padding: 0; }
  .support-concept ul li, .hotline ul li {
    padding: 10px 0;
    border-top: 1px solid #cccccc; }
    .support-concept ul li strong, .hotline ul li strong {
      font-size: 14px; }
    .support-concept ul li:last-child, .hotline ul li:last-child {
      border-bottom: 1px solid #cccccc; }
    .support-concept ul li a, .hotline ul li a {
      text-decoration: underline; }

.carousel {
  margin-top: 20px;
  /*.carousel-control-mini.right{top:10px;}
  .carousel-control-mini.right{
    background-image: url("/assets/img/slideNext.png");
    background-position: 0 0;
    width:68px;
    height:21px;
    top:-36px;
  }*/ }
  .carousel .item img {
    width: 50%; }
  .carousel .item img.bigImage {
    width: 100%; }
  .carousel .item .carousel-caption {
    color: #282828;
    width: 45%;
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
    padding-top: 0;
    background: #F2F2F2; }
    .carousel .item .carousel-caption h2 {
      margin-bottom: 0;
      padding-bottom: 0;
      line-height: 1.2em; }
    .carousel .item .carousel-caption p {
      padding-top: 0;
      color: #282828 !important; }
  .carousel .item .carousel-floating-caption {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 0 0 40px; }
    .carousel .item .carousel-floating-caption h3, .carousel .item .carousel-floating-caption h4 {
      color: #FFF;
      padding: 0;
      margin: 0;
      font-size: 20px;
      line-height: 24px; }
    .carousel .item .carousel-floating-caption h4 {
      font-weight: normal;
      text-transform: uppercase; }
    @media (max-width: 979px) {
      .carousel .item .carousel-floating-caption {
        padding: 30px 0 0 30px; }
        .carousel .item .carousel-floating-caption h3, .carousel .item .carousel-floating-caption h4 {
          font-size: 16px;
          line-height: 20px; } }
    @media (max-width: 767px) {
      .carousel .item .carousel-floating-caption {
        padding: 20px 0 0 20px; }
        .carousel .item .carousel-floating-caption h3, .carousel .item .carousel-floating-caption h4 {
          font-size: 14px;
          line-height: 18px; } }
  .carousel .oneForAllButton {
    position: absolute;
    left: 42px;
    top: 22%; }
    @media (max-width: 1199px) {
      .carousel .oneForAllButton {
        left: 42px;
        top: 26%; } }
    @media (max-width: 1029px) {
      .carousel .oneForAllButton {
        left: 42px;
        top: 28%; } }
    @media (max-width: 979px) {
      .carousel .oneForAllButton {
        left: 31px;
        top: 27%; } }
    @media (max-width: 767px) {
      .carousel .oneForAllButton {
        left: auto;
        top: auto;
        right: 0px;
        bottom: -44px;
        width: 100%; } }
  @media (max-width: 979px) {
    .carousel .item img {
      width: 100%; }
    .carousel .item .carousel-caption {
      width: 100%;
      right: auto;
      left: 0;
      top: auto;
      bottom: 0 !important; } }
  .carousel .carousel-inner {
    padding-bottom: 30px; }
  .carousel .carousel-indicators.carousel-indicators-bottom {
    top: auto;
    bottom: -70px;
    right: auto;
    left: 45%; }
  .carousel .carousel-indicators.carousel-indicators-bottom.carousel-indicators-overlay {
    top: auto;
    bottom: 0px;
    right: auto;
    left: 45%; }
  .carousel .carousel-indicators.carousel-indicators-black li {
    background: #FFF;
    border-radius: 5px; }
  .carousel .carousel-indicators.carousel-indicators-black .active, .carousel .carousel-indicators.carousel-indicators-black .product-list .product-item .feature-list .feature-item.no-touch:hover, .product-list .product-item .feature-list .carousel .carousel-indicators.carousel-indicators-black .feature-item.no-touch:hover {
    background-color: #000; }
  .carousel .carousel-control-light {
    background-image: url("/assets/img/light_arrow.png");
    width: 24px;
    height: 34px; }
  .carousel .carousel-control-light.left {
    background-position: 0 -34px;
    left: 10px; }
  .carousel .carousel-control-light.right {
    background-position: 0 0;
    right: 10px; }
  .carousel .carousel-control-white {
    background-image: url("/assets/img/light_arrow_white.png");
    width: 24px;
    height: 34px;
    top: 48%; }
  .carousel .carousel-control-white.left {
    background-position: 0 -34px;
    left: 10px; }
  .carousel .carousel-control-white.right {
    background-position: 0 0;
    right: 10px; }
  .carousel .carousel-control-mini.right,
  .carousel .carousel-control-mini.left {
    width: 20%;
    top: 0;
    bottom: 0;
    background: none;
    height: auto; }
  .carousel .carousel-control-mini.right {
    cursor: url("/assets/img/slideNext.png"), e-resize; }
  .carousel .carousel-control-mini.left {
    cursor: url("/assets/img/slidePrev.png"), w-resize; }
  .carousel .carousel-indicators {
    cursor: pointer; }

.home-products-carousel-section {
  background: #F2F2F2;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px; }

.cases-carousel-section {
  padding-top: 0px;
  padding-bottom: 50px; }
  @media (max-width: 767px) {
    .cases-carousel-section {
      padding-bottom: 100px; } }

.accordion .accordion-heading {
  cursor: pointer; }
.accordion .accordion-group {
  border: none;
  border-top: 1px solid #cccccc;
  padding: 0.8em 0; }
  .accordion .accordion-group:hover .accordion-toggle:before, .accordion .accordion-group.active .accordion-toggle:before, .accordion .product-list .product-item .feature-list .accordion-group.feature-item.no-touch:hover .accordion-toggle:before, .product-list .product-item .feature-list .accordion .accordion-group.feature-item.no-touch:hover .accordion-toggle:before {
    -webkit-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg); }
  .accordion .accordion-group:last-child {
    border-bottom: 1px solid #cccccc; }
  .accordion .accordion-group .accordion-toggle {
    position: relative;
    padding: 0;
    padding-right: 1em;
    padding-left: 3em;
    color: #282828; }
    .accordion .accordion-group .accordion-toggle:hover {
      color: #282828; }
    .accordion .accordion-group .accordion-toggle:before {
      content: "";
      position: absolute;
      background: url("/assets/img/sprite.png") no-repeat -22px -9px;
      background: url("/assets/img/sprite.png") no-repeat -22px -9px;
      width: 11px;
      height: 7px;
      top: 50%;
      left: 10%;
      margin-top: -3.5px;
      -webkit-transform: rotateZ(-90deg);
      -ms-transform: rotateZ(-90deg);
      transform: rotateZ(-90deg);
      -webkit-transition: all 200ms ease;
      transition: all 200ms ease; }
.accordion .accordion-body .row {
  margin-top: 1em;
  border-top: 1px solid #cccccc; }
.accordion .accordion-body .accordion-text {
  padding-top: 1em; }
  .accordion .accordion-body .accordion-text a {
    text-decoration: underline; }

.accordion-table .triggerRow .accordion-toggle {
  padding-right: 16px;
  position: relative; }
  .accordion-table .triggerRow .accordion-toggle:after {
    content: "";
    position: absolute;
    background: url("/assets/img/sprite.png") no-repeat -22px -9px;
    background: url("/assets/img/sprite.png") no-repeat -22px -9px;
    width: 11px;
    height: 7px;
    top: 50%;
    right: 0;
    margin-top: -3.5px;
    opacity: 1;
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease; }
.accordion-table .triggerRow.collapsed:hover .accordion-toggle:after {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg); }
.accordion-table .triggerRow.collapsed .accordion-toggle:after {
  opacity: 0;
  -webkit-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  transform: rotateZ(90deg); }
.accordion-table .triggerRow {
  border-bottom: none !important; }
.accordion-table .hiddenRow td {
  padding: 0 !important; }
.accordion-table .hiddenRow td > div > span {
  padding: 35px 0;
  margin: 0 !important; }
.accordion-table .hiddenRow td > div > span button {
  position: absolute;
  bottom: 35px;
  width: 27%; }

.event-table {
  width: auto !important; }

.product-detail-banner {
  overflow: hidden;
  *zoom: 1;
  padding: 20px 40px 20px 20px;
  margin-bottom: 4em;
  background: #232328;
  overflow: hidden; }
  .product-detail-banner .container {
    margin-top: 0;
    min-height: 410px; }
  .product-detail-banner h1 {
    text-transform: none;
    color: white; }
    .product-detail-banner h1 a {
      text-decoration: none;
      color: white; }
      .product-detail-banner h1 a:hover {
        text-decoration: none; }
  .product-detail-banner .container {
    position: relative; }
  .product-detail-banner .feature-description {
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      .product-detail-banner .feature-description {
        display: none; } }
    .product-detail-banner .feature-description h2, .product-detail-banner .feature-description h3, .product-detail-banner .feature-description blockquote {
      font-weight: 700;
      color: rgba(255, 255, 255, 0.1);
      font-size: 60px;
      line-height: 1em;
      text-transform: uppercase;
      border: none;
      padding: 0;
      margin: 0; }
    .product-detail-banner .feature-description h3 {
      color: white; }
  .product-detail-banner .feature-list {
    list-style: none;
    margin: 0; }
    .product-detail-banner .feature-list .feature-item {
      float: left;
      opacity: 0.5;
      filter: alpha(opacity=50);
      -webkit-transition: opacity 400ms ease;
      transition: opacity 400ms ease; }
      .product-detail-banner .feature-list .feature-item.active, .product-detail-banner .product-list .product-item .feature-list .feature-item.no-touch:hover, .product-list .product-item .product-detail-banner .feature-list .feature-item.no-touch:hover, .product-detail-banner .feature-list .feature-item:hover {
        opacity: 1;
        filter: alpha(opacity=100); }

.template-produkt .product-detail-banner .feature-list .feature-item {
  opacity: 1;
  filter: alpha(opacity=100); }

.template-produkt .product-detail-banner .feature-list:hover .feature-item {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.template-produkt .product-detail-banner .feature-list:hover .feature-item:hover {
  opacity: 1;
  filter: alpha(opacity=100); }

.feature-item-link {
  border: 1px solid rgba(35, 35, 40, 0);
  height: 94px !important;
  width: 94px !important;
  display: block;
  margin-top: -10px; }
  .feature-item-link:hover {
    text-decoration: none; }

.parent-produkte .product-detail-banner .feature-list .feature-item {
  opacity: 1;
  filter: alpha(opacity=100); }
.parent-produkte .product-detail-banner .feature-list:hover .feature-item {
  opacity: 0.5;
  filter: alpha(opacity=50); }
  .parent-produkte .product-detail-banner .feature-list:hover .feature-item:hover {
    opacity: 1;
    filter: alpha(opacity=100); }

.product-detail-content h2 {
  text-transform: uppercase; }
.product-detail-content h3 {
  font-size: 18px;
  line-height: 24px; }
.product-detail-content ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  .product-detail-content ul li {
    padding: 1em 0;
    border-top: 1px solid #d4d4d4; }
    .product-detail-content ul li:last-child {
      border-bottom: 1px solid #d4d4d4; }

.more > a {
  color: white;
  text-decoration: underline; }

@media (min-width: 978px) {
  .product-detail-banner .feature-description {
    float: left;
    width: 49%;
    position: absolute;
    bottom: 50px; }
  .product-detail-banner .feature-list {
    float: right;
    position: relative;
    top: -50px;
    width: 47%; }
  .product-detail-banner.single .feature-list {
    top: 0px; } }
.mini-product {
  display: block;
  position: relative;
  float: left;
  width: 24%;
  margin-left: 1%;
  margin-bottom: 1%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #fff;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out; }
  .mini-product:nth-last-of-type(4n+0) {
    margin-left: 0; }
  .mini-product .spacer {
    width: 100% !important; }
  .mini-product .deko {
    top: 0;
    margin-top: 40%;
    position: absolute;
    width: 100% !important; }
  .mini-product .head {
    color: #fff;
    position: absolute;
    top: 0;
    margin-top: 65%;
    width: 100%;
    text-align: center !important;
    font-size: 1.2em; }
    @media (max-width: 1023px) {
      .mini-product .head {
        font-size: 1.0em; } }
    @media (max-width: 767px) {
      .mini-product .head {
        margin-top: 0;
        font-size: 2.45vw;
        line-height: 8vw;
        padding: 0 5%; } }

.mini-case {
  display: block;
  position: relative;
  float: left;
  width: 24%;
  margin-left: 1%;
  margin-bottom: 1%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #fff;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out; }
  .mini-case:nth-last-of-type(4n+0) {
    margin-left: 0; }
  .mini-case .spacer {
    width: 100% !important; }
  .mini-case .deko {
    top: 0;
    margin-top: 0%;
    position: absolute;
    width: 100% !important; }
  .mini-case .head {
    color: #fff;
    position: absolute;
    width: 100%;
    font-size: 0.8em;
    background: rgba(0, 0, 0, 0.7);
    line-height: 1.2em;
    bottom: -10px;
    padding: 2%;
    max-height: 55%;
    text-overflow: ellipsis; }
    @media (max-width: 979px) {
      .mini-case .head {
        display: none; } }

@media (max-width: 767px) {
  .carousel-footer .carousel-control-light.left {
    left: 0px;
    top: 28%; }

  .carousel-footer .carousel-control-light.right {
    right: 0px;
    top: 28%; } }
.mini-baustein {
  position: relative;
  display: inline-block;
  width: 18.9%;
  max-width: 95px;
  margin-left: 1%;
  margin-bottom: 1%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out; }
  .mini-baustein:nth-last-of-type(5n+0) {
    margin-left: 0; }
  @media (max-width: 767px) {
    .mini-baustein {
      width: 18%;
      margin-left: 1%; } }
  @media (max-width: 400px) {
    .mini-baustein {
      width: 17%; } }
  .mini-baustein .spacer {
    width: 100% !important; }
  .mini-baustein .deko {
    top: 0;
    position: absolute;
    width: 100% !important; }
  .mini-baustein .head {
    color: #fff;
    position: absolute;
    top: -10px;
    margin-top: 65%;
    width: 100%;
    text-align: center !important;
    font-size: 79%; }
    @media (max-width: 767px) {
      .mini-baustein .head {
        font-size: 1.5vw;
        top: auto;
        bottom: 5px;
        line-height: 1.5vw;
        margin: 0; } }

.mini-inner {
  width: 80%;
  margin: 0 10%; }

.page-kontakt .contact {
  background: #282828;
  color: white; }
  .page-kontakt .contact h1, .page-kontakt .contact h2, .page-kontakt .contact h3, .page-kontakt .contact h4, .page-kontakt .contact h5 {
    text-transform: uppercase;
    color: white; }
.page-kontakt .vertriebsregionen h2 {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2em;
  margin-bottom: 2px;
  margin-top: 24px; }
.page-kontakt .vertriebsregionen p {
  margin: 0;
  padding: 0; }

.map-section {
  margin: 0 !important;
  padding: 0 !important;
  height: 400px; }

#map-canvas {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%; }

.modal {
  border-radius: 0;
  width: auto; }
  .modal .modal-header {
    border: 0;
    padding: 0;
    padding-right: 10px;
    overflow-y: visible;
    overflow: visible; }
  .modal .modal-body {
    padding: 5px; }
  .modal a[data-dismiss="modal"], .modal button.close {
    overflow-y: visible;
    position: absolute;
    right: -30px;
    color: white;
    opacity: 0.01;
    filter: alpha(opacity=1);
    opacity: 1;
    text-shadow: none;
    font-size: 40px;
    padding: 0;
    margin: 0;
    padding-bottom: 10px; }
  .modal.bootstrap-timepicker-widget {
    width: 110px;
    background: none;
    box-shadow: none;
    border: none; }
    .modal.bootstrap-timepicker-widget.fade.in {
      top: 255px; }
    .modal.bootstrap-timepicker-widget table tr:nth-child(2) {
      background: white; }
      .modal.bootstrap-timepicker-widget table tr:nth-child(2) td:first-child {
        border-right: 1px solid #000000; }
    .modal.bootstrap-timepicker-widget table .separator {
      display: none; }
    .modal.bootstrap-timepicker-widget table td a:hover {
      background: none;
      border: none; }

#dateModal {
  left: 57%; }
  #dateModal.fade.in {
    top: 20%;
    left: 57%; }
  #dateModal .modal-header {
    padding: 0;
    padding-right: 10px; }

footer[role="contentinfo"] .container {
  padding-top: 30px;
  padding-bottom: 10px;
  border-top: 1px solid #efefef; }
@media (max-width: 400px) {
  footer[role="contentinfo"] {
    padding-top: 4px;
    font-size: 86%; }
    footer[role="contentinfo"] .copyright, footer[role="contentinfo"] .nav {
      padding-top: 5px; } }
footer[role="contentinfo"] a {
  color: #282828; }
footer[role="contentinfo"] .copyright {
  padding-right: 10px; }
footer[role="contentinfo"] .scrollTop i {
  margin-left: 1em; }

.casestudies-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .casestudies-list li {
    display: inline-block;
    vertical-align: baseline;
    zoom: 1;
    *display: inline;
    *vertical-align: auto;
    vertical-align: top;
    width: 33.33333333%;
    color: #000;
    margin: 0;
    padding: 0;
    margin-bottom: 0.3em;
    margin-left: -3px; }
    .casestudies-list li a {
      text-decoration: none !important; }
  .casestudies-list figure {
    padding-right: 0.3em;
    position: relative; }
    .casestudies-list figure img {
      width: 100%; }
    .casestudies-list figure figcaption {
      color: #FFF !important;
      text-transform: none !important;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0.3em;
      background-color: rgba(0, 0, 0, 0.7);
      line-height: 1em;
      padding-left: 1em;
      min-height: 4em;
      padding-right: 1em;
      padding-top: 1em; }
    .casestudies-list figure figcaption.extra {
      display: none;
      top: 0;
      bottom: 4em;
      line-height: 1.0em; }
    .casestudies-list figure:hover figcaption.extra {
      display: block; }
  @media (max-width: 979px) {
    .casestudies-list li {
      width: 50%; } }
  @media (max-width: 767px) {
    .casestudies-list li {
      width: 100%; } }

.casestudies-teaser {
  /*display: none;*/
  list-style: none;
  padding: 0;
  margin: 0; }
  .casestudies-teaser li {
    width: 33.33333333%;
    color: #000;
    margin: 0;
    padding: 0;
    float: left;
    display: block; }
    .casestudies-teaser li figure {
      padding: 0 4px 4px 0;
      position: relative; }
      .casestudies-teaser li figure a {
        text-decoration: none !important;
        display: block; }
        .casestudies-teaser li figure a img {
          width: 100%; }
      .casestudies-teaser li figure figcaption {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none; }
        .casestudies-teaser li figure figcaption a {
          z-index: 10;
          display: block;
          padding: 14px;
          background: #040404;
          background-color: rgba(0, 0, 0, 0.84);
          position: absolute;
          top: 0;
          left: 0;
          right: 4px;
          bottom: 4px; }
          .casestudies-teaser li figure figcaption a strong {
            display: block;
            text-transform: uppercase;
            line-height: 1.2em;
            margin-top: 0;
            margin-bottom: 1.5em; }
          .casestudies-teaser li figure figcaption a strong,
          .casestudies-teaser li figure figcaption a div {
            color: #FFF;
            font-size: 1.3em; }
          .casestudies-teaser li figure figcaption a div {
            padding-right: 4.5em;
            line-height: 1.4em; }
          .casestudies-teaser li figure figcaption a em {
            color: #33bbFF;
            position: absolute;
            bottom: 14px;
            left: 14px;
            font-size: 1.3em;
            font-style: normal; }
    .casestudies-teaser li figure:hover figcaption {
      display: block; }
  @media (max-width: 1200px) {
    .casestudies-teaser li figure figcaption a strong {
      margin-bottom: 1.5em; }
    .casestudies-teaser li figure figcaption a em,
    .casestudies-teaser li figure figcaption a strong,
    .casestudies-teaser li figure figcaption a div {
      font-size: 1.1em; } }
  @media (max-width: 979px) {
    .casestudies-teaser li {
      width: 50%; }
      .casestudies-teaser li figure figcaption a strong {
        margin-bottom: 1.5em; }
      .casestudies-teaser li figure figcaption a em,
      .casestudies-teaser li figure figcaption a strong,
      .casestudies-teaser li figure figcaption a div {
        font-size: 1.2em; }
    .casestudies-teaser li:last-child {
      display: none !important; } }
  @media (max-width: 767px) {
    .casestudies-teaser li {
      width: 100%; }
      .casestudies-teaser li figure figcaption a strong {
        margin-bottom: 0.8em; }
      .casestudies-teaser li figure figcaption a em,
      .casestudies-teaser li figure figcaption a strong,
      .casestudies-teaser li figure figcaption a div {
        font-size: 1.4em;
        /*display:none;*/ }
      .casestudies-teaser li figure figcaption a em {
        bottom: 40px; }
    .casestudies-teaser li:last-child {
      display: block !important; } }

.case {
  position: relative; }
  .case .breadcrumb {
    border-bottom: none;
    margin-bottom: 0 !important; }
  .case h2 {
    line-height: 1.5; }

.pgntn {
  position: absolute;
  right: 0;
  top: 75px;
  margin: 0;
  padding: 0; }
  .pgntn ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .pgntn li {
    display: inline-block; }
    .pgntn li:first-child {
      margin-right: 1em; }
    .pgntn li.disabled {
      opacity: 0.5;
      filter: alpha(opacity=50); }

@media (max-width: 767px) {
  .pgntn {
    top: 35px; } }
blockquote span {
  display: block; }

blockquote span:before {
  content: '„'; }

blockquote span:after {
  content: '“'; }

.cmsText blockquote {
  background: #F2F2F2;
  border: none;
  padding: 2em 3.5em 3em 3.5em;
  margin: 1.5em 0; }
.cmsText blockquote span {
  color: #000; }
.cmsText blockquote em {
  display: block;
  float: right;
  font-size: 12px;
  font-style: normal;
  padding-bottom: 1.5em; }
.cmsText h2 {
  font-size: 14px;
  margin-bottom: 22px; }
.cmsText hr {
  margin: 12px 0;
  border-top: 2px solid #F2F2F2; }
.cmsText ul.used_software li a {
  color: #282828; }

.cookie_info {
  position: fixed;
  -webkit-transform: translate3d(0px, -9210px, 0px);
          transform: translate3d(0px, -9210px, 0px);
  -webkit-transition: -webkit-transform .8s;
          transition: transform .8s;
  z-index: 9999;
  left: 0;
  right: 0;
  /*max-height: 70px;*/
  overflow: hidden; }
  .cookie_info .container {
    padding-top: 20px;
    line-height: 19px;
    padding-bottom: 20px; }
    .cookie_info .container span {
      display: block;
      max-width: 75%; }
      @media (max-width: 979px) {
        .cookie_info .container span {
          max-width: 90%; } }
    .cookie_info .container a {
      text-decoration: underline; }
    @media (max-width: 628px) {
      .cookie_info .container {
        max-width: 80%; } }
  @media (max-width: 979px) {
    .cookie_info {
      bottom: 0;
      opacity: 0.7; } }

.navbar-fixed-top {
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  -webkit-transition: -webkit-transform .8s;
          transition: transform .8s; }

.has_cookiebar .cookie_info {
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  -webkit-transition: -webkit-transform .8s;
          transition: transform .8s; }

@media (min-width: 980px) {
  .has_cookiebar .navbar-fixed-top {
    -webkit-transform: translate3d(0px, 60px, 0px);
            transform: translate3d(0px, 60px, 0px);
    -webkit-transition: -webkit-transform .8s;
            transition: transform .8s; } }
.main-headline {
  line-height: 1em;
  font-size: 42px;
  font-style: normal;
  font-family: soleil;
  font-weight: 300;
  margin-bottom: 50px; }
  .main-headline strong {
    font-weight: 800; }

.image-header {
  width: 100%;
  height: 450px;
  background-size: cover;
  -ms-behavior: url("/assets/css/backgroundsize.min.htc");
  background-position: 50% 50%;
  -webkit-background-position: 50% 50%;
  -ms-background-position: 50% 50%;
  -moz-background-position: 50% 50%;
  -o-background-position: 50% 50%;
  margin-bottom: 100px; }
  @media (min-width: 1200px) {
    .image-header {
      height: 540px; } }

.image-header-responsive img {
  display: none; }
@media (max-width: 768px) {
  .image-header-responsive {
    margin-bottom: 20px;
    background: none;
    height: auto; }
    .image-header-responsive img {
      display: block;
      width: 100%; } }

.uppercase {
  text-transform: uppercase; }

.animated, .ppr-product-item__link::after {
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms; }

.scroll-container, .scroll-container-x, .scroll-container-y {
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none; }

.scroll-container-x {
  overflow-x: scroll; }

.scroll-container-y {
  overflow-y: scroll; }

.scroll-inner {
  height: 600px;
  float: left;
  margin-left: 50px;
  margin-right: -300000px; }
  @media (max-width: 767px) {
    .scroll-inner {
      margin-left: 5%; } }

.scroll-inner--small {
  height: 425px !important; }

.justify {
  /*  -ms-word-break: break-all;
    word-break: break-all;

    word-break: break-word;

    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;

    -webkit-hyphenate-before: 2;
    -webkit-hyphenate-after: 3;
    hyphenate-lines: 3;

    text-align: justify;*/ }
  .justify img {
    margin-bottom: 1em; }

.content > section {
  margin-bottom: 50px;
  padding-bottom: 50px; }

ol {
  padding: 20px 0; }

.vcenter-container {
  display: table;
  width: 100%;
  height: 100%; }
  .vcenter-container .vcenter-inner {
    display: table-cell;
    vertical-align: middle; }

.default-list h2, .default-list-article h2 {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .default-list h2 a, .default-list-article h2 a {
    text-decoration: none; }
.default-list a, .default-list-article a {
  text-decoration: underline; }
.default-list img, .default-list-article img {
  margin-bottom: 2em; }
  @media (max-width: 767px) {
    .default-list img, .default-list-article img {
      margin-top: 2em; } }
.default-list .images, .default-list-article .images {
  overflow: hidden;
  white-space: nowrap; }
  .default-list .images img, .default-list-article .images img {
    margin-bottom: 0;
    margin-right: 5px;
    width: auto;
    max-height: 120px; }

.default-list li {
  padding: 1.5em 0;
  border-bottom: 1px solid #CCCCCC; }
  .default-list li:first-child {
    padding-top: 0; }

.default-table {
  text-align: left;
  table-layout: fixed;
  width: 100%; }
  .default-table thead {
    font-weight: bold;
    text-transform: uppercase; }
  .default-table tr {
    width: 100%;
    border-bottom: 1px solid #CCCCCC; }
  .default-table tbody tr:first-child {
    border-top: 1px solid #CCCCCC; }
  .default-table td, .default-table th {
    height: 100%;
    vertical-align: top;
    /**
     * Change box model to avoid spacing between table cells: On ´linked´ rows whole
     * area is clickable.
     */
    -o-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
    /**
     * like .btn-large
     */
    padding-top: 11px;
    padding-bottom: 11px;
    /**
     * Make it possible to use ´spanX´-classes on table cells to simulate grid
     * + media-query support
     */
    display: inline-block !important;
    padding-right: 50px; }
    @media (max-width: 767px) {
      .default-table td, .default-table th {
        width: auto !important;
        display: table-cell !important; }
        .default-table td:last-child, .default-table th:last-child {
          padding-right: 0; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .default-table td, .default-table th {
        padding-right: 37.2px; } }
    @media (min-width: 1200px) {
      .default-table td, .default-table th {
        padding-right: 60px;
        /**
         * For Firefox
         */
        float: left !important; } }
    .default-table td:last-child, .default-table th:last-child {
      margin-right: 0 !important;
      padding-right: 0 !important; }

/**
 * Progressive enhancement: Display .js-tr-link like normal text only if JS is enabled
 * (whole table-row is clickable via JS then)
 *
 * 		<table class=js-tr-links>
 *			<tr onclick=window.location.href=$(this).children('td').children('.js-tr-link').attr('href');  class=js-tr-linkable>
 *				<td>
 *					<a class=js-tr-link>Fallback-Link-Text</a>
 *				</td>
 *			</tr>
 *		</table>
 *
 */
html.js {
  /*a*/ }
  html.js .js-tr-link {
    text-decoration: none;
    color: inherit; }
    html.js .js-tr-link:hover, html.js .js-tr-link:focus, html.js .js-tr-link:active {
      text-decoration: none;
      color: inherit; }
  html.js .js-tr-linkable {
    /**
     * Clickable (via JS)
     */
    cursor: pointer; }

/**
 * Hide helper class
 */
@media (max-width: 767px) {
  .default-table td.palm--hide,
  .default-table th.palm--hide,
  .palm--hide {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px !important;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px !important; } }

/**
 * Tweak span class to make spans like span1.5 possible
 */
@media (min-width: 768px) and (max-width: 979px) {
  .tweak-span-1-5 {
    width: 55.8px !important; } }
@media (min-width: 980px) and (max-width: 1199px) {
  .tweak-span-1-5 {
    width: 100px !important; } }
@media (min-width: 1200px) {
  .tweak-span-1-5 {
    width: 120px !important; } }

@media (min-width: 768px) and (max-width: 979px) {
  .tweak-span-2-5 {
    width: 93px !important; } }
@media (min-width: 980px) and (max-width: 1199px) {
  .tweak-span-2-5 {
    width: 200px !important; } }
@media (min-width: 1200px) {
  .tweak-span-2-5 {
    width: 240px !important; } }

/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 * (from inuit.css - https://github.com/csswizardry/inuit.css/)
 */
.accessibility {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.knowledge-header {
  padding-bottom: 11px;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC; }

.knowledge-body {
  padding-top: 20px;
  padding-right: 15%; }
  .knowledge-body img {
    width: 66.66%;
    margin: 20px 0; }
  .knowledge-body hr {
    width: 117%; }
  .knowledge-body ol, .knowledge-body ol code {
    font-weight: normal; }

.knowledge__search-result {
  margin-bottom: 20px; }
  .knowledge__search-result > h4 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    margin-bottom: 0; }

.search-input {
  padding-left: 40px !important;
  background-image: url(../img/suche.png);
  background-repeat: no-repeat;
  background-position: 10px 50%; }

.search-highlight {
  background-color: #aecc1d; }

/**
 * Colorbox mangifier
 */
a.colorbox {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in; }

/**
 * Youtube
 */
.play-overlay {
  position: relative;
  display: inline-block; }
  .play-overlay > img {
    margin-top: 0 !important; }
  .play-overlay:before {
    content: "";
    position: absolute;
    top: calc(50% - 55px);
    left: calc(50% - 55px);
    display: block;
    width: 110px;
    height: 110px;
    background-image: url("/assets/img/playWhite.png");
    background-size: 110px 110px;
    background-position: calc(50%) 50%;
    background-repeat: no-repeat; }

/**
 * Youtube
 */
/*
.play-overlay{
  position:relative;
  display:inline-block;

  > img{
    margin-top:0!important;
  }

  &:before{
    content:"";

    position:absolute;
    top:calc(50% - 50px);
    left:calc(50% - 50px);

    display:block;
    width:100px;
    height:100px;

    background-color:rgba(255,255,255,0.5);
    background-image:url("../img/play.png");
    background-size:64px 64px;
    background-position:calc(50% + 5px) 50%;
    background-repeat:no-repeat;

    border-radius:100%;
    -webkit-border-radius:100%;
    -moz-border-radius:100%;
    -o-border-radius:100%;
    -ms-border-radius:100%;
  }
}
*/
.video_pic_link {
  text-decoration: none !important; }

.posRel {
  position: relative !important; }

.clrBoth {
  clear: both !important; }

.noLinkLink {
  color: #fff;
  font-size: 1.3em;
  padding: 11px 0;
  display: block;
  text-align: center; }

.noLinkLink:hover {
  text-decoration: none;
  color: #EEE; }

.ppr-product-brick-category {
  height: 100%;
  display: inline-block;
  line-height: 0; }
  .ppr-product-brick-category__wrapper {
    height: 100%;
    overflow: hidden;
    display: inline-block;
    vertical-align: top; }

.ppr-product-brick-item, .ppr-product-brick-item--active, .ppr-product-brick-item--active-below-other, .ppr-product-brick-item--active-mobile, .ppr-product-brick-item--in-last-cat {
  width: 95px;
  height: 95px;
  position: absolute;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center; }
  .ppr-product-brick-item__link {
    position: absolute;
    width: 95px;
    height: 95px;
    z-index: 5000; }
  .ppr-product-brick-item__head {
    width: 95px;
    height: 95px;
    display: block;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 2; }
  .ppr-product-brick-item--active .ppr-product-brick-item__head, .ppr-product-brick-item--active-below-other .ppr-product-brick-item__head {
    z-index: 1000; }
  .ppr-product-brick-item__conten {
    width: 95px;
    height: 95px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: left 0.4s, right 0.4s, width 0.4s, height 0.4s;
            transition: left 0.4s, right 0.4s, width 0.4s, height 0.4s; }
  .ppr-product-brick-item--active .ppr-product-brick-item__conten, .ppr-product-brick-item--active-below-other .ppr-product-brick-item__conten {
    width: 293px;
    height: 194px;
    z-index: 999; }
  .ppr-product-brick-item--in-last-cat.ppr-product-brick-item--active .ppr-product-brick-item__conten, .ppr-product-brick-item--in-last-cat.ppr-product-brick-item--active-below-other .ppr-product-brick-item__conten {
    left: -198px; }
  .ppr-product-brick-item--in-last-cat.ppr-product-brick-item--active-below-other .ppr-product-brick-item__conten {
    left: 0; }
  .ppr-product-brick-item--mobile .ppr-product-brick-item__link {
    display: none; }
  .ppr-product-brick-item--active-mobile {
    left: 0 !important;
    top: 0 !important;
    width: 100%;
    height: 100%;
    z-index: 20000;
    position: fixed;
    -webkit-transition-duration: 0.4s !important;
            transition-duration: 0.4s !important;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); }
    .ppr-product-brick-item--active-mobile::after {
      content: " ";
      position: absolute;
      top: 40px;
      right: 40px; }
  .ppr-product-brick-item--active-mobile .ppr-product-brick-item__head {
    left: 30px;
    top: 30px; }
  .ppr-product-brick-item--active-mobile .ppr-product-brick-item__conten {
    width: 100%;
    height: 100%;
    position: static; }
  .ppr-product-brick-item--active-mobile .ppr-product-brick-item__teaser-text {
    font-size: 17px;
    width: auto;
    border-top: 1px solid #fff;
    margin-top: 115px;
    padding: 0;
    padding-top: 10px;
    margin-left: 10px;
    margin-right: 10px; }
  .ppr-product-brick-item--active-mobile a.ppr-product-brick-item__link {
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: auto;
    text-decoration: none;
    position: fixed;
    padding: 30px; }
    .ppr-product-brick-item--active-mobile a.ppr-product-brick-item__link::before {
      width: auto;
      height: auto;
      display: block;
      content: "Details";
      font-size: 20px;
      color: #fff;
      cursor: pointer;
      padding: 20px 0;
      border-top: 1px solid #fff; }
    .ppr-product-brick-item--active-mobile a.ppr-product-brick-item__link::after {
      content: " ";
      position: absolute;
      left: 100px;
      top: 45px; }
  .ppr-product-brick-item__title {
    width: 95px;
    color: #fff;
    position: absolute;
    bottom: 15px;
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 11px;
    line-height: 11px;
    text-align: center !important; }
  .ppr-product-brick-item--active.ppr-product-brick-item--linkable .ppr-product-brick-item__title, .ppr-product-brick-item--linkable.ppr-product-brick-item--active-below-other .ppr-product-brick-item__title {
    text-decoration: underline; }
  .ppr-product-brick-item__teaser-text {
    color: #fff;
    width: 293px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 18px;
    box-sizing: border-box;
    margin-top: 95px; }

.ppr-product-bricks {
  -webkit-transition: height 0.4s;
          transition: height 0.4s; }

.ppr-product-button, .ppr-product-button--on-top-menu {
  padding-left: 225px;
  margin-top: 20px; }
  .ppr-product-button--on-top-menu {
    padding-left: 0; }
  .ppr-product-button__link {
    display: inline-block;
    color: #FFF;
    text-align: center;
    cursor: pointer;
    background: #AFCD1E;
    padding: 11px 10px 9px 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    margin-right: 4px;
    margin-bottom: 4px;
    border: 1px solid #AFCD1E;
    width: 194px; }
    .ppr-product-button__link:hover {
      text-decoration: none;
      color: white;
      background: none; }

.ppr-product-item, .ppr-product-item--active, .ppr-product-item--inactive {
  display: block;
  position: relative;
  width: auto;
  border-top: 1px solid #4F4F53;
  margin: 0;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px; }
  .ppr-product-item__link {
    display: inline-block;
    width: 100%;
    height: 100%; }
    .ppr-product-item__link:hover, .ppr-product-item__link:link {
      text-decoration: none; }
    .ppr-product-item__link::after {
      content: " ";
      position: absolute;
      top: 16px;
      right: 10px;
      display: none; }
    .ppr-product-item__link:hover::after, .ppr-product-item--active .ppr-product-item__link::after {
      display: inline-block; }
  .ppr-product-item__pre-title {
    font-family: soleil;
    font-weight: 800;
    font-style: normal; }
  .ppr-product-item__title {
    margin-left: 4px;
    line-height: 49px;
    font-size: 14px;
    color: #fff;
    font-family: soleil;
    font-weight: 500;
    font-style: normal; }
  .ppr-product-item--inactive {
    opacity: 0.5; }

.ppr-product-list {
  position: relative;
  min-height: 600px;
  background-color: #282828;
  padding: 40px 0 40px 0;
  margin: 0;
  overflow: hidden; }
  .ppr-product-list__bricks-wrapper {
    position: relative; }

.ppr-product-menu, .ppr-product-menu--ontop, .ppr-product-menu--inactive, .ppr-product-menu--active {
  display: block; }
  .ppr-product-menu__button {
    display: none;
    color: white;
    width: auto;
    text-align: center;
    cursor: pointer;
    background-color: #2a89ff;
    padding: 11px 0 9px 0;
    margin: 0 10px 10px 10px;
    font-size: 14px;
    line-height: 14px;
    position: relative; }
    .ppr-product-menu__button::after {
      content: " ";
      position: absolute;
      top: 10px;
      right: 10px; }
  .ppr-product-menu--ontop .ppr-product-menu__button {
    display: block; }
  .ppr-product-menu__products {
    position: relative;
    -webkit-transition: -webkit-transform 0.4s;
            transition: transform 0.4s;
    width: 100%;
    z-index: 10000; }
  .ppr-product-menu--ontop .ppr-product-menu__products {
    width: auto;
    margin: 0 10px 0 10px; }
  .ppr-product-menu--inactive .ppr-product-menu__products {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%); }
  .ppr-product-menu--active .ppr-product-menu__products {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .ppr-product-menu__products-wrapper {
    overflow: hidden;
    position: absolute;
    width: 200px;
    z-index: 1; }
  .ppr-product-menu--ontop .ppr-product-menu__products-wrapper {
    margin-top: -10px; }
  .ppr-product-menu--ontop .ppr-product-menu__products-wrapper {
    width: 100%;
    z-index: auto; }

.ppr-products {
  vertical-align: top;
  background-color: #282828;
  margin: 0;
  padding: 0; }

.ppr-product-teaser, .ppr-product-teaser--active {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  max-height: 0;
  opacity: 0.1; }
  .ppr-product-teaser__wrapper {
    padding: 0; }
  .ppr-product-teaser__text {
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    display: block; }
  .ppr-product-teaser__link {
    color: #fff;
    background-color: #2a89ff;
    padding: 11px 0 9px 0;
    display: block;
    margin-top: 5px;
    text-align: center; }
    .ppr-product-teaser__link:hover, .ppr-product-teaser__link:link {
      text-decoration: none;
      color: white; }
  .ppr-product-teaser--active {
    opacity: 1;
    max-height: 300px; }
