@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.
*/

/* latin-ext */
@font-face {
  font-family: 'Telex';
  font-style: normal;
  font-weight: 400;
  src: local('Telex Regular'), local('Telex-Regular'), url(/img/ieVw2Y1fKWmIO-faDVtSKA.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Telex';
  font-style: normal;
  font-weight: 400;
  src: local('Telex Regular'), local('Telex-Regular'), url(/img/ieVw2Y1fKWmIO-fUDVs.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/*!
 * Bootstrap v3.1.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.0 | MIT License | git.io/normalize */body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}@media print{*{color:#000 !important;text-shadow:none !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) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{-webkit-tap-highlight-color:rgba(0,0,0,0)}body{line-height:1.428571429;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.list-inline>li:first-child{padding-left:0}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.428571429;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #e9e9e9}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #e9e9e9}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media(max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="date"]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{display:inline;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-control-static{padding-top:7px}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media(min-width:768px){.navbar{border-radius:4px}}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:20px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media(min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;color:#428bca;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto;margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group .list-group-item:first-child{border-top:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel>.list-group:first-child .list-group-item:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tfoot>tr:first-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tfoot>tr:first-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:first-child>td{border-top:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:transparent;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:auto;overflow-y:scroll;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media(min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{content:"";border-width:10px}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom .arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left .arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{display:table;content:" "}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none !important}@media(max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none !important}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none !important}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none !important}@media(min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media(max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none !important}}@media(min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none !important}}@media(min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none !important}}@media(min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none !important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}@media print{.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none !important}}/*!
 * Bootstrap v3.1.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn:active,.btn.active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff2d6ca2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#2b669a}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff419641',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2aabd2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffeb9316',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc12e2a',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#357ebd;background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff3f3f3',GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:linear-gradient(to bottom,#222 0,#282828 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff282828',GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0);background-repeat:repeat-x}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3278b3',GradientType=0);background-repeat:repeat-x;border-color:#3278b3}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}/**
* @author Perfectus Inc.
* @author website www.perfectusinc.com
* @copyright Copyright 2015-2016 Perfectus Inc.
* CSS Document
* For Mobile Layout
*/
@charset "utf-8";

@media screen and (max-width: 767px) {
/*------To display the products first-------------*/	
	.columnwith-left, .two-column {
		left: 0;
	}
	#left-column {
		position: relative !important;
		right:0% !important;
		margin: 30px 0 0;
	}
	/*-------------------*/
	#right-column {
		margin: 30px 0 0;	
	}
	/* Mobile brands alignment for tablets and phones */
	.brands-wrapper {
		text-align: center;
		padding: 20px 0;
	}
	.brands .item {
		margin: 8px 10px;
	}
	.brands .item > a > img {
		max-height: 70px;
	}
	.brands .item > a {
		height: 70px;
	}
	.header .block-header .language-switcher, .header .block-header .currency_top {
    	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		float: none;
		margin: 0;
		padding: 0;
		text-align: center;
		display: inherit;
		border-right:none;
	}
	.header-container .header .header-top ul.links {
		float: none;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	.header-container .header .header-top ul.links li {
		display: inline-block;
		float: none;
		margin: 0;
		outline: medium none;
	}
	.header .form-search .input-text {
		width:100%;
		margin: 25px 0 0;
	}
	.greeting_msg {
		margin: 26px 0 0;
		text-align: center;
	}
	.greeting {
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		border-right: medium none;
		float: left;
		margin: 0 0 15px;
		padding: 0 0 10px;
		width: 100%;
	}
	.greeting_msg > a {
		float: none;
		text-align: center;
	}
	.custom-banner-image, .footer-top .col-xs-12, .footer-wrapper .col-xs-12 {
		margin: 0 0 30px;
	}
	.custom-banner-image:last-child, .our-services-details .col-xs-12:last-child, .footer-top .col-xs-12:last-child, .footer-wrapper .col-xs-12:last-child {
		margin:0;
	}
	#nav-cat ul li.submenu:hover > ul {
		display:none !important;
	}
	#bannerboxallContent img {
		height: auto;
		width: 100%;
	}
	#nav-cat li.submenu:hover, #nav-cat li.submenu {
		background-image:none !important;
	}
	.navSplitPagesResult {
		float: left;
		margin-top: 15px;
		text-align: left;
		width: 100%;
	}
	.content_box td:first-child, .content_box td:last-child, .content_box td {
		float: left;
		text-align: center;
		width: 100%;
	}
	.productListing-data .listingProductImage, .newproductlisting img {
		margin: 0;
		padding: 0;
	}
	.productListing-data .productlisting {
		float: none;
		font-size: 1.2em;
		margin: 0;
	}
	.productListing-data .product_name, .newproductlisting .product_name {
		text-align: center;
	}
	.navSplitPagesResult {
		margin-top: 15px;
		text-align: left;
		width: 100%;
	}
	.sorter label, .productListing-data .short-description, .productListing-data .product_name, .productlisting_btn, .newproductlisting .product_name, .newproductlisting .short-description {
		width:100%;
	}
	.sorter .select2-container {
		margin: 10px 0 0;
	}
	.split-login .create-account {
		margin-bottom: 30px;
	}
	.create-account-page .submit-info .button_submit {
		float: left;
		margin: 5px 0 0;
	}
	#shoppingCartDefault .buttonRow.back, #shoppingCartDefault .checkout_button {
		float: left;
		margin: 10px 5px 0 0;
	}
	.product-review-default {
		margin: 15px 0 0;
		text-align: center;
	}
	#checkoutConfirmDefault #orderTotals {
		padding: 0 !important;
		width: 60%;
	}
	#checkoutShipto, .billing-address, .payment-address-content, .payment-module {
		margin: 0 0 30px;
	}
	.checkout-steps, .current-step {
		margin: 0 10px 10px 0 !important;
	}
	.address-entries > div {
		margin: 15px 0;
	}
	#advSearchDefault .content .col-xs-12 {
		margin: 15px 0;
	}
	#advSearchDefault .content .row .select2-container {
		width:100% !important;
	}
	.nav > li.navbar-right {
		float: none !important;
	}
	.contact-us ul li p {
		display: inline-block;
		width: 70%;
	}
	.newproductlisting .productnewprice .cssButton.normal_button.button_sold_out_sm, .newproductlisting 
	.productnewprice .cssButtonHover.button_sold_out_sm.button_sold_out_smHover, .newproductlisting .productnewprice > 
	a.more-info-text, .newproductlisting .productnewprice > a.button {
    	margin-bottom: 10px;
		display: inline-block;
	}
	.newproductlisting .product_name, .newproductlisting .productlisting_price {
    	margin-top: 0px;
	}
	.resultsContainer .s-product-name{width:60% !important;}
	.resultsContainer{top:65px !important;}
	.header .header-left-wrapper.input-group{margin:0 auto}
	.product_info #product_info_display {margin-top: 20px;}
}
@media only screen and (min-width:768px) and (max-width:991px) {
/*------To display the products first-------------*/
	.columnwith-left {
		left: 0;
	}
	.two-column {
		left: 0;
	}
	.three-columns {
		right: 0 !important;
	}
	#left-column {
		right: 0;
		margin: 30px 0 0;
	}
/*------To display the products first-------------*/
	#right-column {
		margin: 30px 0 0;	
	}
	.header .block-header .language-switcher {
		border:none;
	}
	.header .header-content .logo {
    	margin: 0 0 25px;
	}
	#nav-cat ul li.submenu:hover > ul {
		display:none !important;
	}
	#bannerboxallContent img {
		height: auto;
		width: 100%;
	}
	#nav-cat li.submenu:hover, #nav-cat li.submenu {
		background-image:none !important;
	}
	.our-services-details .col-sm-6, .footer-top .col-sm-12, .footer-wrapper .col-sm-6.about-us, .footer-wrapper .col-sm-6.extra-details {
		margin: 0 0 30px;
	}
	.product_sideboximage > img {
		height: auto;
		width: 150px;
	}
	.product_sideboxname {
		line-height: 40px;
		margin: 30px 0;
	}
	.three-columns .product_sideboxname, .rightcolumnwl .product_sideboxname {
		line-height: 1.5;
		margin: 0;
	}
	#left-column .leftBoxContainer .product_sideboxname > a, #right-column .rightBoxContainer .product_sideboxname > a, .sidebox_price, #left-column h3, #right-column h3 {
		font-size: 1.5em;
	}
	.three-columns .leftBoxContainer .product_sideboxname > a, .rightcolumnwl .rightBoxContainer .product_sideboxname > a, .three-columns .sidebox_price, .rightcolumnwl .sidebox_price, .three-columns h3, .rightcolumnwl h3 {
		font-size: 1em !important;
	}
	#checkoutConfirmDefault #orderTotals {
		width: 60%;
	}
	#checkoutShipping .buttonRow.back, #checkoutShipAddressDefault .buttonRow.back, #checkoutPayment .buttonRow.back, #checkoutPayAddressDefault .buttonRow.back, #checkoutConfirmDefault .checkout-shipping-button .buttonRow.back {
		line-height:22px;
	}
	#advSearchDefault .content .row .select2-container {
		width:100% !important;
	}
	.nav > li.navbar-right {
		float: none !important;
	}
	.sorter {
		width:60%;
	}
	.sorter label {
		width:100%;
	}
	.contact-us ul li p {
		display: inline-block;
		width: 70%;
	}
	.resultsContainer .s-product-name{width:70% !important;}
	.homepage_v3 .footer-v3-wrapper #footer-2 .row > div {padding: 0 9px 0 15px;}
}
@media only screen and (min-width:992px) and (max-width:1199px) {
/*------To display the products first-------------*/	
	.columnwith-left {
		left: 33.333%;
	}
	#left-column {
		right: 66.666%;
	}
	.three-columns {
		right: 33.333% !important;
	}
	.two-column {
		left: 33.333%;
	}
/*------To display the products first-------------*/
	.greeting_msg {
		margin: 10px 0;
	}
	.contact-us .fa, .about-us .address .fa {
		margin-right:10px;
	}
	.contact-us ul li p {
		display: inline-block;
		width: 70%;
	}
	.greeting {
		border-right: medium none;
		float: left;
		margin: 0 0 10px;
		padding-right: 0;
		width: 100%;
	}
	.our-services-details .col-sm-6 {
		margin: 0 0 30px;
	}
	#accountHistInfo #orderTotals {
		padding-right: 3em !important;
	}
	#checkoutConfirmDefault #orderTotals {
		width: 60%;
		padding-right: 4em !important;
	}
	#checkoutShipping .buttonRow.back, #checkoutShipAddressDefault .buttonRow.back, #checkoutPayment .buttonRow.back, #checkoutPayAddressDefault .buttonRow.back, #checkoutConfirmDefault .checkout-shipping-button .buttonRow.back {
		line-height:22px;
	}
	#advSearchDefault .content .row .select2-container {
		width:100% !important;
	}
	.resultsContainer .s-product-name{width:70% !important;}
}
@media screen and (max-width: 340px) {
	.our-services-details .custom-block {padding: 0}
}
@media screen and (max-width: 340px) {
	.product_sideboximage{margin: 0 10px 0 0}
}
@media screen and (max-width: 480px) {
	#reviewsWrite .product_price, #reviewsInfoDefault .product_price {
		line-height: 41px;
		text-align: center;
		width: 100%;
	}
	#checkoutConfirmDefault #orderTotals {
		margin: 15px 0 0;
		width: 100%;
	}
	.forward.productpage_links {
		float: left;
		margin: 10px 0 0;
		text-align: center;
		width: 100%;
	}
	#checkoutShipping .buttonRow.back, #checkoutShipAddressDefault .buttonRow.back, #checkoutPayment .buttonRow.back, #checkoutPayAddressDefault .buttonRow.back, #checkoutConfirmDefault .checkout-shipping-button .buttonRow.back {
		line-height:20px;
	}
	.navSplitPagesLinks {
		float: left;
		margin: 5px 0;
		width: 100%;
	}
	/* Mobile brands alignment improvements */
	.brands-wrapper {
		text-align: center;
	}
	.brands .item {
		margin: 10px 5px;
		padding: 10px;
	}
	.brands .item > a > img {
		max-height: 60px;
		width: auto;
		max-width: 100%;
	}
	.brands .item > a {
		height: 60px;
		padding: 5px;
	}
}
@media only screen and (min-width:992px) and (max-width:1149px) {
	.nav > li.navbar-right {
		float: none !important;
	}
}
@media only screen and (min-width:992px) and (max-width:1050px) {
	.our-services-details .custom-block{padding:5px}
}
@media screen and (max-width:991px) {
	.our-services-details > div {
		margin: 0 0 15px;
	}
	.our-services-details > div, .our-services-details .custom-block {text-align:left}
	.footer-wrapper .accordion-toggle h2:after {
		color: #fff;
		content: "" !important;
		cursor: pointer;
		float: right;
		font-family: "FontAwesome";
		font-size: 18px;
		position: relative !important;
		width: auto !important;
	}
	.footer-wrapper .visible-phone {margin: 0 0 20px}
	.owl-item .product_image .hover_info .zoom-button a, .owl-item .product_image .hover_info .detailbutton-wrapper a, 
	.specialsListBoxContents .product_image .hover_info .zoom-button a, .specialsListBoxContents .product_image .hover_info 
	.detailbutton-wrapper a, .owl-item:hover .product_image .hover_info .zoom-button a, .specialsListBoxContents:hover 
	.product_image .hover_info .zoom-button a {display: none}
}
@media only screen and (min-width:620px) and (max-width:1199px) {
	#specialsListing li {width:44.75%}
	.homepage_v3 #specialsListing li {width:44.09%}
}
@media only screen and (min-width:595px) and (max-width:605px) {
	#specialsListing .specialsListBoxContents .product-name-desc {min-height: 85px;}
}
@media only screen and (min-width:570px) and (max-width:619px) {
	#specialsListing li {width:43.75%}
	.homepage_v3 #specialsListing li {width:43.49%}
	.homepage_v3 #specialsListing .specialsListBoxContents .product-name-desc {min-height: 105px;}
}
@media screen and (max-width:569px) {
	#specialsListing li {width:94%}
	.homepage_v3 #specialsListing li {width:93%}
}
@media screen and (max-width:472px) {
	.create-account-page .newsletter-details-signup .newsletter.row .submit-info {
		float: left;
		margin-top: 15px;
	}
}
@media only screen and (max-width:1199px) {
	.owl-item .product_image .hover_info .zoom-button a, .owl-item .product_image .hover_info .detailbutton-wrapper a, 
	.specialsListBoxContents .product_image .hover_info .zoom-button a, .specialsListBoxContents .product_image .hover_info 
	.detailbutton-wrapper a, .owl-item:hover .product_image .hover_info .zoom-button a, 
	.specialsListBoxContents:hover .product_image .hover_info .zoom-button a, .homepage_v3 .item:hover .product_image .hover_info 
	.zoom-button a, .homepage_v3 .specialsListBoxContents:hover .product_image .hover_info .zoom-button a {opacity: 1;left:35.5%}
	.owl-item .product_image .hover_info .detailbutton-wrapper a, .specialsListBoxContents .product_image .hover_info 
	.detailbutton-wrapper a{left:51%}
}
@media only screen and (max-width:649px) {
	.owl-item .product_image .hover_info .zoom-button a, .owl-item .product_image .hover_info .detailbutton-wrapper a, 
	.specialsListBoxContents .product_image .hover_info .zoom-button a, .specialsListBoxContents .product_image .hover_info 
	.detailbutton-wrapper a, .owl-item:hover .product_image .hover_info .zoom-button a, .specialsListBoxContents:hover 
	.product_image .hover_info .zoom-button a{left:34%}
	.owl-item .product_image .hover_info .detailbutton-wrapper a, .specialsListBoxContents .product_image .hover_info 
	.detailbutton-wrapper a{left:51%}
}

/*this is the stylesheet for the instant search box, you can manually 
edit the position of the search box by uncommenting and changing the left and top values bellow.
Also make sure you set autoPosition = false in instantSearch.js*/

.resultsContainer {
	background: #ffffff none repeat scroll 0 0;
    display: none;
    float: left;
    left: 0 !important;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 55px;
    vertical-align: bottom;
    width: 100%;
    z-index: 999;
	box-shadow:0 4px 4px rgba(0, 0, 0, 0.1);
	border: 1px solid #EAEAEA;
	border-top: medium none;
}
.resultsContainer ul {
	margin : 0;
	padding : 0;
	list-style-type : none;
	
}
.resultsContainer li {
	margin : 0;
	padding : 10px 15px;
	display:inline-block;
	width:100%;
}
.resultsContainer li:hover {
    background: #e9e9e9 none repeat scroll 0 0;
}
.resultsContainer a {
    text-decoration: none;
	display:block;
}
.resultsContainer a {
    border-bottom: 1px solid #eaeaea;
}
.resultsContainer a .s-product-img > img {
	height: auto;
	width: 50px;
}
.search-box .resultsContainer a:last-child {
    border-bottom: medium none;
}
.resultsContainer li:hover a {
    color: #000000;
}
.thinFont {
	font-weight : lighter;
}
.alignRight{
	display : inline-block;
	float : right;
	font-weight : lighter;
	font-size : 70%;
	margin-top : 2px;
	padding-left:40px;
}
.resultsContainer .s-product-img {
    float: left;
    margin-right: 15px;
    width: auto;
}
.resultsContainer .s-product-name {
    float: left;
    width: 75%;
}
.resultsContainer .s-product-price .productSpecialPriceSale, .resultsContainer .s-product-price .productSalePrice, .resultsContainer .s-product-price .normalprice, .resultsContainer .s-product-price .productSpecialPrice, .resultsContainer .s-product-price .productPriceDiscount {
	margin-right: 5px;	
}
.s-product-price {
    float: left;
    margin: 10px 0 0;
    width: auto;
}/*@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}*/
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
/*#cssmenu {
  font-family: Montserrat, sans-serif;
  background: #333333;
}*/
#cssmenu > ul > li {
  float: left;
}
#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul > li {
  float: right;
}
/*#cssmenu > ul > li > a {
  padding: 17px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #dddddd;
  font-weight: 700;
  text-transform: uppercase;
}
#cssmenu > ul > li:hover > a {
  color: #ffffff;
}
*/
/*#cssmenu > ul > li.has-sub:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: '';
}*/
#cssmenu > ul > li.has-sub:before {
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    right: 10px;
    top: 18px;
    transition: all 0.25s ease 0s;
    width: 0;
    z-index: 100;
	border-top: 4px solid #FFFFFF;
}
#cssmenu > ul > li.has-sub > a {
  padding: 10px 25px 10px 15px;
}
#cssmenu .nav.open li.has-sub:before {
	content: none;
}
#cssmenu ul ul li.has-sub:before {
    border-bottom: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid transparent;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    right: 10px;
    top: 16px;
    transition: all 0.25s ease 0s;
    width: 0;
    z-index: 999;
}
/*#cssmenu > ul > li.has-sub:hover:before {
  top: 23px;
  height: 0;
}*/
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu ul ul li {
  height: 0;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu.align-right li:hover > ul {
  left: auto;
  right: 0;
}
#cssmenu li:hover > ul > li {
  height: auto;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#cssmenu.align-right ul ul li.has-sub:after {
  right: auto;
  left: 11px;
}
/*#cssmenu ul ul li.has-sub:hover:before {
	border-left: 4px solid #FFFFFF;
}*/
#cssmenu.align-right ul ul li.has-sub:before {
  right: auto;
  left: 14px;
}
#cssmenu.small-screen {
  width: 100%;
  float:left;
}
#cssmenu.small-screen > ul {
  display: none;
  background: none repeat scroll 0 0 #F1F1F1;
  width:100%;
  z-index: 999;
}
#cssmenu.small-screen.align-center > ul {
  text-align: left;
}
#cssmenu.small-screen ul li, #cssmenu.small-screen ul ul li {
  width: 100%;
  border-top: 1px solid rgba(120, 120, 120, 0.2);
}
#cssmenu.small-screen ul li a, #cssmenu.small-screen ul ul li a {
	border-bottom: medium none;
	width: 100%;
}
#cssmenu.small-screen ul ul li,
#cssmenu.small-screen li:hover > ul > li {
  height: auto;
}
#cssmenu.small-screen ul li a,
#cssmenu.small-screen ul ul li a {
  width: 100%;
  border-bottom: 0;
}
#cssmenu.small-screen > ul > li {
  float: none;
}
#cssmenu.small-screen ul ul li a {
  padding-left: 25px;
  line-height: 11px;
}
#cssmenu.small-screen ul ul ul li a {
  padding-left: 35px;
}
/*#cssmenu.small-screen ul ul li a {
  color: #dddddd;
  background: none;
}
#cssmenu.small-screen ul ul li:hover > a,
#cssmenu.small-screen ul ul li.active > a {
  color: #ffffff;
}*/
#cssmenu.small-screen ul ul,
#cssmenu.small-screen ul ul ul,
#cssmenu.small-screen.align-right ul ul {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: left;
  border: none;
  padding:0;
}
#cssmenu.small-screen > ul > li.has-sub > a:after,
#cssmenu.small-screen > ul > li.has-sub > a:before,
#cssmenu.small-screen ul ul > li.has-sub > a:after,
#cssmenu.small-screen ul ul > li.has-sub > a:before {
  display: none;
}
#cssmenu.small-screen #menu-button {
 	background: url("../images/menu.png") no-repeat scroll 97.5% center;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 600;
    height: 50px;
    text-transform: uppercase;
    width: 100%;
	padding: 14px;
	color:#FFFFFF;
	font-weight:normal;
}
#cssmenu.small-screen #menu-button.menu-opened {
    background-image: url("../images/menu-close.png");
	background-position: 97.5% center;
}
.small-screen .nav a:before {
	content: none;
}
.small-screen .nav > li > a {
	line-height:20px;
}
#cssmenu.small-screen .submenu-button {
  position: absolute;
  z-index: 999;
  right: 0;
  top: 0;
  display: block;
  border-left: 1px solid rgba(120, 120, 120, 0.2);
  height: 40px;
  width: 40px;
  cursor: pointer;
}
.nav-maincontainer .small-screen .nav #home {padding-left:0}
.nav-maincontainer .small-screen  .nav #brands b {display: none}
.small-screen .nav li > ul > li > a {
	border: none;
}
#cssmenu.small-screen ul ul .submenu-button {
  height: 32px;
  width: 32px;
}
#cssmenu.small-screen .submenu-button:after {
  position: absolute;
  top: 19px;
  right: 15px;
  width: 8px;
  height: 2px;
  display: block;
  background: #FFFFFF;
  content: '';
}
#cssmenu.small-screen ul ul .submenu-button:after {
  top: 16px;
  right: 12px;
}
#cssmenu.small-screen .submenu-button.submenu-opened:after {
  background: #ffffff;
}
#cssmenu.small-screen .submenu-button:before {
  position: absolute;
  top: 16px;
  right: 18px;
  display: block;
  width: 2px;
  height: 8px;
  background: #FFFFFF;
  content: '';
}
#cssmenu.small-screen ul ul .submenu-button:before {
  top: 13px;
  right: 15px;
}
#cssmenu.small-screen .submenu-button.submenu-opened:before {
  display: none;
}
#cssmenu.small-screen.select-list {
  padding: 5px;
}
/* MailChimp Form Embed Code - Slim - 08/17/2011 */
#mc_embed_signup form {display:block; position:relative; text-align:left; padding:10px 0 10px 3%}
#mc_embed_signup h2 {font-weight:bold; padding:0; margin:15px 0; font-size:1.4em;}
#mc_embed_signup input {border:1px solid #999; -webkit-appearance:none;}
#mc_embed_signup input[type=checkbox]{-webkit-appearance:checkbox;}
#mc_embed_signup input[type=radio]{-webkit-appearance:radio;}
#mc_embed_signup input:focus {border-color:#333;}
#mc_embed_signup .button {clear:both; background-color: #aaa; border: 0 none; border-radius:4px; color: #FFFFFF; cursor: pointer; display: inline-block; font-size:15px; font-weight: bold; height: 32px; line-height: 32px; margin: 0 5px 10px 0; padding:0; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}
#mc_embed_signup .button:hover {background-color:#777;}
#mc_embed_signup .small-meta {font-size: 11px;}
#mc_embed_signup .nowrap {white-space:nowrap;}     
#mc_embed_signup .clear {clear:none; display:inline;}

#mc_embed_signup label {display:block; font-size:16px; padding-bottom:10px; font-weight:bold;}
#mc_embed_signup input.email {display:block; padding:8px 0; margin:0 4% 10px 0; text-indent:5px; width:58%; min-width:130px;}
#mc_embed_signup input.button {display:block; width:35%; margin:0 0 10px 0; min-width:90px;}

#mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%;margin: 0 5%; clear: both;}
#mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;}
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}

/*
Image Handler 4 v4.3.2
*/
#trailimageid {
  position: absolute;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 220px;
  height: 0px;
  z-index: 1000;
}

#trailimageid div {
  padding: 5px;
  background-color: #FFF;
  border: 1px solid #888;
  text-align: center;
}

#trailimageid h1 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 2px 0px;
  text-align: left;
  width: 100%;
}

#trailimageid img {
  margin: 2px;
  border: none;
}

@media (max-width:480px) {
  #trailimageid { display: none; }
}

@media (min-width:481px) {
  #trailimageid { display: block; }
}
#nav-cat{width:100%;margin:0;font-weight:bold}#nav-cat ul{margin:0;padding:0;width:100%}#nav-cat li{border-bottom:1px solid rgba(0,0,0,0.1);list-style:none outside none;margin:0;padding:5px 10px;position:relative}#nav-cat li li{margin:0}#nav-cat li:hover{z-index:1000}#nav-cat li a:hover{color:#fafafa}#nav-cat li.submenu{background-image:url(../images/arrows/arrow40.png);background-position:97% 45%;background-repeat:no-repeat}#nav-cat li.submenu:hover{background-image:url(../images/arrows/arrow40.png);background-position:97% 45%;background-repeat:no-repeat}#nav-cat li a{display:block;padding:.25em 0 .25em .5em;text-decoration:none;width:100%;color:#fafafa !important}#nav-cat>ul a{width:auto}#nav-cat ul ul{position:absolute;top:0;left:100%;display:none;width:200px}#nav-cat ul li.submenu:hover>ul{display:block}#right-column #categoriescss #nav-cat ul li.submenu:hover > ul {display:block;left:-200px;position:absolute;}/**
 * @package templateSystem
 * @copyright Copyright 2003-2005 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: stylesheet_new.css 3286 2006-03-28 01:14:04Z drbyte $
 */
#mainWrapper{text-align:left;vertical-align:top;width:960px;background-color:#fff;margin:8px auto 0 auto;padding-bottom:10px}#bottomShadow{height:16px;margin:0 auto 0 auto;width:960px;background-color:transparent;background-image:url(../images/bottom_shadow.gif);background-repeat:no-repeat;background-attachment:scroll;background-position:0 0;overflow-x:hidden;overflow-y:hidden;float:left}.smallProductImage img{margin-right:6px}a:visited{color:#0092c2;text-decoration:none;font-weight:normal}CODE{font-family:arial,verdana,helvetica,sans-serif;font-size:1em}#tellafriendContent input{vertical-align:middle}#logo,.centerBoxContents,.specialsListBoxContents,.categoryListBoxContents,.centerBoxContentsAlsoPurch,.attribImg{float:left}LABEL.inputLabelPayment{width:15em;float:left}LABEL.selectLabel,LABEL.switchedLabel,LABEL.uploadsLabel{width:12em;float:left}ADDRESS{font-style:normal}.clearBoth{clear:both}#mainWrapper{text-align:left;vertical-align:top}#contentMainWrapper{margin:0}#headerpic{margin:0 auto 0 auto;padding:0;width:960px}#headerpic img{display:block}#logotop{position:relative;height:80px;width:960px;margin:0 auto 0 auto;padding:0}#logotop img{border:0;margin-top:8px}#headerWrapper{width:100%}#headerWrapper img{border:0}#navColumnOneWrapper,#navColumnTwoWrapper{margin:auto}#sendSpendWrapper{border:1px solid #cacaca;float:right;margin:0 0 1em 1em}#navMainWrapper{position:absolute;color:#fff;top:2px;right:0}#navMainWrapper a:link,#navMainWrapper a:visited{color:#00aee7;text-decoration:none}#navMainWrapper a:hover{color:#acacac}#headerContent #logoimg{border:0;position:relative;top:25px;left:30px}#nameWrapper{padding:25px 0 10px 30px}#nameWrapper a,#nameWrapper a:visited{font-size:25px;text-decoration:none;color:#fff;font-weight:normal}#taglineWrapper{font-size: 1.5em;;padding:10px 0 10px 60px;margin-top:-30px;color:#fff}#navCurrenciesWrapper .nav_language{float:left;margin-top:8px;padding:0 15px 3px 0}#navCurrenciesWrapper .nav_currencies{float:left;margin-top:8px;padding:0 15px;border-left:1px solid #d2d2d2}#navCurrenciesWrapper form{margin:0;padding:0}#navCurrenciesWrapper select,#navCurrenciesWrapper input{margin:0;padding:0}#navEZPagesTop{text-align:left;padding-top:0;padding-left:0;padding-bottom:0;color:#515151}#navEZPagesTop a:link,#navEZPagesTop a:visited{display:block;color:#fff;font-family:Helvetica,Arial,sans-serif;font-size: 0.95em;;text-decoration:none;padding:12px 25px 11px 25px;white-space:nowrap;background-image:url(../images/menu_a_bg.gif);background-repeat:no-repeat;background-position:right center;line-height:16px}#navEZPagesTop ul{margin:0;list-style:none;padding-left:0}#navEZPagesTop ul li{float:left;padding:0}#navEZPagesTop a:hover{color:#00aee7;background-color:#353535}#topmenubarinner{height:41px;width:960px;margin:0 auto 0 auto}#indexDefaultMainContent{padding-left:0}#indexDefaultMainContent p{margin:0;padding-bottom:10px}#navMainSearch{position:absolute;margin:0 5px 0 0;top:32px;right:0}#navMainSearch input{font-size:10px}#footerhsy a:link,#footerhsy a:visited{color:#a5a5a5;text-decoration:none}#footerhsy a:hover{color:#00aee7}#footerhsy{background-color:#1d1d1d;color:#767676;width:100%;padding-bottom:0;float:left}#footerhsyInner{position:relative;width:960px;margin:0 auto 0 auto}.imgtop{position:absolute;top:-2px;right:16px}#footerline{height:2px;margin-top:5px;background-color:transparent;background-image:url(../images/footerborder.gif);background-repeat:repeat-x;background-attachment:scroll;background-position:0 0;overflow-x:hidden;overflow-y:hidden;float:left}#navMain{padding-right:3px}#navMain ul,#navCatTabs ul{margin:0;padding:2px 0;list-style-type:none;text-align:center;line-height:18px}#navSupp ul{margin:0;padding:2px 0;list-style-type:none;text-align:center;line-height:18px}#navMain ul li,#navSupp ul li,#navCatTabs ul li{display:inline}#navSupp ul li a,#navCatTabs ul li a{text-decoration:none;padding:0 9px 0 5px;margin:0;white-space:nowrap}#navMain ul li a{text-decoration:none;padding:0 0 0 8px;margin:0;white-space:nowrap}#navEZPagesTOCWrapper{font-weight:bold;float:right;height:1%;border:1px solid #dfdfdf}#navEZPagesTOC ul{margin:0;padding:.5em 0;list-style-type:none;line-height:1.5em}#navEZPagesTOC ul li{white-space:nowrap}#navEZPagesTOC ul li a{padding:0 .5em;margin:0}#contentColumnMain,#navColumnOne,#navColumnTwo,.centerBoxContents,.specialsListBoxContents,.categoryListBoxContents,.additionalImages,.centerBoxContentsSpecials,.centerBoxContentsAlsoPurch,.centerBoxContentsFeatured,.centerBoxContentsNew,.alert{vertical-align:top}#gvFaqDefaultMainContent{padding-left:10px}#productGeneral{margin:10px}#cartInstructionsDisplay{margin-left:10px}.gvBal{float:right}#bannerFour,#bannerFive,#bannerSix{padding:.8em}#bannerOne{padding:7px .8em .1em 10px}#bannerTwo,#bannerThree{padding:0;margin:8px 0 0 0;clear:both;background-color:#f5f5f5}#bannerTwo img,#bannerThree img{display:block;vertical-align:bottom}#siteinfoLegal,#siteinfoCredits,#siteinfoStatus,#siteinfoIP{font-size:.9em;padding-bottom:8px}#scUpdateQuantity{width:2em}.cartQuantity{width:4.7em}#cartAttribsList{margin-left:1em}#cartBoxListWrapper ul,#ezPageBoxList ul{list-style-type:none}.totalBox{width:5.5em;text-align:right;padding:.2em}#productMainImage a:link{text-decoration:none}#productAdditionalImages a:link{text-decoration:none}.centerBoxContents{padding:0 5px 5px 5px}h3.itemTitle a:link,h3.itemTitle a:visited{text-decoration:none}h3.itemTitle a:hover{text-decoration:underline}#navColumnOne,#navColumnTwo{background-color:#fff}h2.greeting{margin-top:13px}#navColumnOneWrapper{margin-left:7px;margin-right:1px;margin-top:0;color:#4b4b4b}#navColumnTwoWrapper{margin-left:1px;margin-right:9px;margin-top:0;color:#4b4b4b}#navCatTabsWrapper{background-color:#ededed}#navCatTabs{background-color:#ededed;width:960px;margin:0 auto 0 auto}#navCatTabs a.category-top:link,#navCatTabs a.category-top:visited{color:#0092c2}#navCatTabs a.category-top:hover{color:#c41200}#ezpagesContent a:link,#ezpagesContent a:visited{background-image:url(../images/point.gif);background-repeat:no-repeat;background-position:center left}h3 label{font-size:1.0}#navColumnOneWrapper h3.leftBoxHeading a:link,#navColumnOneWrapper h3.leftBoxHeading a:visited{color:#fff;font-size: 0.9em;font-weight:bold;padding-left:2px;line-height:16px}#navColumnTwoWrapper h3.rightBoxHeading a:link,#navColumnTwoWrapper h3.rightBoxHeading a:visited{color:#fff;font-size: 0.9em;font-weight:bold;padding-left:2px;line-height:16px}#navColumnOneWrapper h3.leftBoxHeading a:hover,#navColumnTwoWrapper h3.rightBoxHeading a:hover{color:#c41200}#search input{font-size:11px}.listingProductImage{padding:0;margin:8px}#productDetailsList,#productDetailsList li{list-style-type:none;margin-left:0;padding-left:0}#authorLink{text-align:center;font-size:.9em}.navNextPrevWrapper{margin-bottom:15px}#upProductsHeading{text-align:left}#upDateHeading{text-align:right}.back1{float:right}.bold{font-weight:bold}.rowOdd{background-color:#fdfdfd;height:1.5em;vertical-align:top}#myAccountGen li,#myAccountNotify li{margin:0}.accountQuantityDisplay{width:10%;vertical-align:top}#siteMapList{width:90%;float:right}.ratingRow{margin:1em 0 1.5em 0}LABEL#textAreaReviews{font-weight:normal;margin:1em 0}#popupShippingEstimator,#popupSearchHelp,#popupAdditionalImage,#popupImage,#popupCVVHelp,#popupCouponHelp,#popupAtrribsQuantityPricesHelp{background-color:#f5f5f5;background-image:none}.hiddenField{display:none}.visibleField{display:inline}#infoShoppingCart{background-image:none;background-color:#f5f5f5}a:link.productListing-heading{text-decoration:none}.cartBoxCheckout a:link,.cartBoxCheckout a:visited{margin:0;padding:0}.searchinput{background:url("../images/sinputbg.gif") no-repeat left top;height:21px;padding:2px 3px 0 5px;float:left;margin-right:0}.header-search{position:absolute;margin:0;top:7px;right:0}.header-search input{border:0;margin:0;color:#a6a6a6;background:0}.header-search form{float:left}.header-search input:focus{background:0}#cart_top{position:absolute;height:32px;right:2px;top:43px;background:url(../images/cart_bg.gif) 0 0 no-repeat;padding:0 0 0 40px;text-align:right;color:#9a9a9a}#cart_top a:link,#cart_top a:visited{color:#00aee7;text-decoration:none}#cart_top a:hover{color:#acacac}#indexCategoriesMainContent{margin-top:8px}#indexDefaultMainContent{margin-top:8px}/* SLIMBOX */#lbOverlay {	position: fixed;	z-index: 9999;	left: 0;	top: 0;	width: 100%;	height: 100%;	background-color: #000;	cursor: pointer;}#lbCenter, #lbBottomContainer {	position: absolute;	z-index: 9999;	overflow: hidden;	background-color: #fff;}.lbLoading {	background: #fff url(../images/zen_lightbox/loading.gif) no-repeat center;}#lbImage {	position: absolute;	left: 0;	top: 0;	border: 10px solid #fff;	background-repeat: no-repeat;}#lbPrevLink, #lbNextLink {	display: block;	position: absolute;	top: 0;	width: 50%;	outline: none;}#lbPrevLink {	left: 0;}#lbPrevLink:hover {	background: transparent url(../images/zen_lightbox/prevlabel.gif) no-repeat 0 0%;}#lbNextLink {	right: 0;}#lbNextLink:hover {	background: transparent url(../images/zen_lightbox/nextlabel.gif) no-repeat 100% 0%;}.nextNoHover {	background: transparent url(../images/zen_lightbox/nextlabel.gif) no-repeat 100% 0%;}.prevNoHover {	background: transparent url(../images/zen_lightbox/prevlabel.gif) no-repeat 0 0%; }#lbBottom {	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;	font-size: 10px;	color: #666;	line-height: 1.4em;	text-align: left;	border: 10px solid #fff;	border-top-style: none;}#lbCloseLink {	display: block;	float: right;	width: 66px;	height: 22px;	background: transparent url(../images/zen_lightbox/closelabel.gif) no-repeat center;	margin: 5px 0;	outline: none;}#lbCaption, #lbNumber {	margin-right: 71px;}#lbCaption {	font-weight: bold;}/**
* @author Perfectus Inc.
* @author website www.perfectusinc.com
* @copyright Copyright 2015-2016 Perfectus Inc.
* CSS Document
*/
html {
}
body {
	font-family: 'Arial','Telex', Arial, Helvetica;
	color:#404040;
	font-size:85%;
	margin:0;
	line-height: 1.322;
}
TEXTAREA {
    display: block;
    width: 100%;
}
ul {
  list-style:none;
}
input[type="text"],input[type="password"],input[type="email"],input[type="url"],textarea,select{
	border:1px solid #c2c2c2;
	color:#404040;
	line-height:20px;
	margin:1px 0 3px;
	min-height:20px;
	padding:4px 5px 3px;
	font-size: 0.95em;
	transition:all .3s ease-in 0;
	-moz-transition:all .3s ease-in 0;
	-webkit-transition:all .3s ease-in 0;
	-o-transition:all .3s ease-in 0;
	-ms-transition:all .3s ease-in 0
}
input[type="text"]:hover,input[type="password"]:hover,input[type="email"]:hover,input[type="url"]:hover,textarea:hover,select:hover {
	border:1px solid #a9a9a9;
	transition:all .3s ease-in 0;
	-moz-transition:all .3s ease-in 0;
	-webkit-transition:all .3s ease-in 0;
	-o-transition:all .3s ease-in 0;
	-ms-transition:all .3s ease-in 0;
}
textarea {
	overflow:auto
}
.button,input[type="submit"],input[type="reset"],input[type="button"],.readmore,button, .forward.productpage_links #reviewsWriteProductPageLink a {
	color:#FFFFFF;
	cursor:pointer;
	display:inline-block;
	font-size: 14px;
	padding:7px 10px;
	line-height: normal;
	border-bottom:3px solid rgba(0,0,0,0.2);
	border-top:none;
	border-right:none;
	border-left:none;
	text-decoration:none;
	width:auto !important;
	transition: all 0.3s ease-in 0s;
		-moz-transition: all 0.3s ease-in 0s;
		-webkit-transition: all 0.3s ease-in 0s;
		-o-transition: all 0.3s ease-in 0s;
		-ms-transition: all 0.3s ease-in 0s;
	background:none repeat scroll 0 0 #404040;
}
.forward.productpage_links #reviewsWriteProductPageLink input[type="submit"] {
	padding: 0;
	background:none;
	border-bottom:medium none;
}
.forward.productpage_links #reviewsWriteProductPageLink a {
	padding: 7px 10px;
	display:inline-block;
	border-bottom:3px solid rgba(0,0,0,0.2);
	line-height: normal;
	font-size: 14px;
}
.forward.productpage_links #reviewsWriteProductPageLink a > input[type="submit"] {
	font-size: 14px;	
}
img {
	max-width:100%;
}
a, a:hover
	{
		outline: none; 
		font-weight:normal;
		transition: all 0.3s ease-in-out 0s !important;
		-moz-transition: all 0.3s ease-in-out 0s !important;
		-webkit-transition: all 0.3s ease-in-out 0s !important;
		-o-transition: all 0.3s ease-in-out 0s !important;
		-ms-transition: all 0.3s ease-in-out 0s !important;
	}
a:active, a:visited {
	outline:none;
}
#right-column{
	vertical-align:top;
}
#left-column, #right-column {
	text-shadow:none;
}
#left-column h3 label, #right-column h3 label{
	margin-bottom:0px;
}
.centerBoxWrapper {
    margin-bottom: 10px;
}
#right-column .select[multiple], select[size] {
    height: auto !important;
}
#content-wrapper table td{ 
	border-bottom:none;
}
#centercontent-wrapper {
	position: relative;
	float:left;
}
.single-column {
	right: 0;
	width:100%;
}
a:hover, a:active {
    outline: 0 none;
}
.centerBoxWrapper, .tabTable {
	padding: 0px;
	height: 1%; /*do not remove- IEhack*/
	/*line-height:1.4;*/
}
.leftBoxContainer, .rightBoxContainer{
	width:100% !important;
	margin-bottom: 30px;
	float:left;
}
#left-column div:last-child, #right-column div:last-child {
	margin-bottom: 0;
}
.leftBoxContainer, .rightBoxContainer {
    box-shadow: 0 8px 5px -7px rgba(0, 0, 0, 0.4);
}
h3.rightBoxHeading, h3.leftBoxHeading  {
	margin: 0;
}
.sideBoxContent ul {margin:0; padding:0; list-style:none;}
.sideBoxContent ul li {
    margin-bottom: 0;
}
#reviewsHeading > a {
    padding-left: 0 !important;
}
table td, .centerBoxWrapperContents table td{
	padding:0px;
}
#contentarea-wrapper .grid-64 {
	width: 63%;
}
#bannerbox2Content a, #bannerboxallContent a, #bannerboxContent a, #whatsnewHeading > a, .sideBoxContentItem a, .reviewsContent a, #twittercachedsideboxContent a, #searchContent a
{
	padding-left:0px !important;
	padding-top:1px;
}
.centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #navNextPrevWrapperTop, #navNextPrevWrapperBottom, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo,  #bannerThree,  #bannerFour,  #bannerFive,  #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .accountQuantityDisplay, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg, .specialsListBoxContents {
text-align: center;
}
/*CSS for login page */
#loginForm FIELDSET 
{
    padding: 0 0 1.5em 0;
}
FIELDSET
{
	border:none !important;
}
LEGEND 
{
    font-weight: bold;
    padding: 0.3em 0.3em 0.3em 0;
}
.return_customer LEGEND{
	 padding: 0 0 0.5em 0;
}
LABEL.checkboxLabel, LABEL.radioButtonLabel {
    font-size: 0.95em;
    margin: 0.2em 0.5em;
	font-weight: bold;
}
#createAccountForm fieldset legend {
    font-size: 1.2em;
}
#createAccountForm fieldset legend {
    font-size: 1.2em;
}
/*CSS For Breadcrumb*/
#breadcrumb-wrapper .breadcrumb-title {
    color: #FFFFFF;
    float: left;
    font-size: 36px;
    text-align: center;
    width: 100%;
	display:none;
}
/*CSS For Breadcrumb End*/
.productinfo-wrapper {
    display: block;
    float: left;
    text-align: center;
    width: 100%;
}
.product_name, #whatsNew .centerBoxContentsNew.centeredContent .product_price, #featuredProducts .centerBoxContentsFeatured.centeredContent .product_price, #specialsDefault .centerBoxContentsSpecials.centeredContent .product_price, #specialsListing .specialsListBoxContents .product_price, #alsopurchased_products .product_price, #upcomingProducts .product_price {
    font-size: 0.8em;
    text-align: left;
	float:left;
	width:100%;
	margin: 0px 0 0;
	padding: 0 5px;
	text-align:center;
}
.productListing-data .product_name, .newproductlisting .product_name {
	text-align:left;
}
.product_name {
	margin: 1em 0 0;
}
.product-name-desc {
    float: left;
    width: 100%;
	min-height: 85px;
	transition: all 0.5s ease-in-out 0s;
		-moz-transition: all 0.5s ease-in-out 0s;
		-webkit-transition: all 0.5s ease-in-out 0s;
		-o-transition: all 0.5s ease-in-out 0s;
		-ms-transition: all 0.5s ease-in-out 0s;
}
.homepage_v3 .product-name-desc { min-height: 105px}
.product_price {
    text-align: left;
	display:inline-block;
    width: 100%;
}
/*width For button*/
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"]
 {
  width: auto;
}
#shoppingcartHeading > a {
    padding: 0 !important;
}
#shoppingcart h3, #reviews h3 {
    padding: 13px 13px 13px 10px;
}
.cartBoxTotal {
    font-size: 1.2em;
    float: left;
    text-align: center;
    width: 100%;
	padding:1em 0;
}
#ezPageBoxList li {
    margin: 0;
    padding: 0.2em 0;
	text-align: center;
}
#contentMainWrapper, #logoWrapper, #ezPageBoxList, #ezPageBoxList ul, #popupAdditionalImage, #popupImage {
	float: left;
	margin: 0 6px 10px;
	padding: 0;
	width:94%;
}
.categoryIcon, .information, #checkoutShippingContentChoose {
    margin-bottom: 15px;
}
.product-name-desc .normalprice, .product-name-desc .productSpecialPriceSale {
	color:#595959;
}
.normalprice, .productSpecialPriceSale {
	text-decoration: line-through;
	color: #595959;
    font-size: 14px;
}
.sidebox_price .normalprice, .sidebox_price .productSpecialPriceSale {
	color:#595959;
}
#indexDefaultMainContent {
    margin-top: -5px;
}
#contentColumnMain, #navColumnOne, #navColumnTwo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .alert-info {
    vertical-align: top;
}
#contentarea-wrapper #centercontent-wrapper .alsoPurchased .centerBoxWrapperContents table td{
	background-color:#FFFFFF;
	border:1px solid #E1E1E1;
	padding:5px;
}
#contentarea-wrapper #centercontent-wrapper .alsoPurchased .centerBoxWrapperContents table td.no-border{
	border:none;
}
#contentarea-wrapper #centercontent-wrapper .navNextPrevWrapper
{
	margin:10px 0 0;
}
#contentarea-wrapper #centercontent-wrapper .alsoPurchased .centerBoxWrapperContents .centerBoxContentsAlsoPurch
{
	margin:0 !important;
	background-color:#E1E1E1;
	padding:4%;
	width:92% !important;
}
#contentarea-wrapper #centercontent-wrapper .alsoPurchased .centerBoxWrapperContents img
{
	height:100px;
}
/*For full width layout padding */
#ezPagesHeading {
		padding-bottom:14px;
		margin-bottom:14px;
		padding-top:7px;
		border-bottom: 1px solid #E9E8E8;
	}
#contactUsForm .alert-info.forward {
    margin-bottom: 15px;
}
.alert-text, .information .alert-text, .msgalert {
    color: #595959;
	font-style:italic;
}
#loginForm .back {
	padding-left: 22px;
	line-height:35px;
}
.login-emailaddress, #loginForm .buttonRow {
	float:left;
}
LABEL.inputLabel {
    float: left;
	margin-top:7px;
	margin-right:10px;
}
.login-emailaddress .inputLabel {
	width:110px;
	margin-top:5px;
}
.login-password {
	float:left;
}
.login-password .inputLabel {
	width:80px;
	margin-top:5px;
}
#createAccountForm .alert-info.forward{
    margin-bottom: 10px;
}
input[type="radio"], input[type="checkbox"] {
    cursor: pointer;
    line-height: normal;
    margin: 6px 0;
}
#subproduct_name img {
    height: auto;
    margin-bottom: 25px;
}
/*for bck button */
#ezPageDefault h4	{
		text-transform:none;
		margin-top:5px;
	}
#reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
	margin: 0 4% 1% 0;
	}

#productListing
	{
		margin:10px 0 14px;
	}
#cartAdd strong, .add_title{
	font-size: 1.2em;;
}
.product_info, .product_description, .addtocart-info, .product_quantity, .product_review, .navNextPrevWrapper, .alsoPurchased, #productAttributes{
	float:left;
	width:100%;
}
span.title {
    display: block;
    font-size: 1.5em;
    font-weight: normal;
    margin: 0 0 14px;
	padding-bottom:9px;
	border-bottom: 1px solid #E9E9E9;
}
.product_review span.title
{
	margin-bottom:15px;
}
.alsoPurchased span.title, #centercontent-wrapper #productGeneral
{
	margin:0;
}
.cssButton.button_reviews{
	width:100%;
}
.navNextPrevCounter {
	margin: 0em;
	font-size: 0.9em;
}
#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper {
	margin: 0em;
	font-weight: normal;
	height: 1%;
	width: 100%;
}
span.bold {
    display: block;
    font-size: 0.95em;
    font-weight: 700;
}
.review_img{
	text-align:center;
	float:left;
}
#checkoutConfirmDefault .productprice-amount {
	font-size:15px;
	width:50%;
}
.cartQuantity input[type='text']{
	text-align:center;
	vertical-align:middle;
}
#shoppingCartDefault .buttonRow a, #checkoutShipping .change_address a, #checkoutPayment .change_address a, #checkoutConfirmDefault .change_address a, #addressBookDefault .change_address a span, #accountEditDefault .change_address a span, #accountHistoryDefault .change_address a, #accountHistInfo .change_address a, #createAcctSuccess .change_address a, #unsubDefault .change_address a
	{
		color:#FFFFFF;
	}
#shoppingCartDefault .buttonRow, .change_address > a, #pageThree .buttonRow.back > a, #pageFour .buttonRow.back > a, #pageTwo .buttonRow.back > a, #discountcouponInfo .content .buttonRow.forward > a {
    background: none repeat scroll 0 0 #404040;
    border-color: -moz-use-text-color -moz-use-text-color rgba(0, 0, 0, 0.2);
    border-style: none none solid;
    border-width: medium medium 3px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    padding: 7px;
    text-decoration: none;
    width: auto !important;
}
.instructions p:nth-child(2){
	font-style:italic;
}
#prevOrders .user-accountinfo, .user-accounthistory
	{
		text-align:center;
	}
#accountDefault h2, #addressBookDefault h2, caption #orderHistoryDetailedOrder, caption #orderHistoryStatus 
	{
		padding-left:0px;
	}
#checkoutConfirmDefault #orderTotals
	{
		float:right;
		width:40%;
	}
#checkoutConfirmDefault .product_price.total strong
{
	float:left;
	width:63%;	
}
#checkoutConfirmDefault div.total_price
{
	float:left;
	width:37%;	
}
#orderTotals .lineTitle 
	{
		float:left;
		width:60%;
	}
#orderTotals .amount
	{
		float:left;
		width:40%;
		font-weight:bold;
	}
#shippingEstimatorContent label.inputLabel {
    width: 100px;
}
#advSearchDefault .centeredContent{
	text-align:left;
	position: relative;
}
#advSearchDefault .centeredContent .resultsContainer {
    top: 36px;
}
#productAttributes .label {
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
    padding: 0 0 5px;
	line-height: 45px;
	color: #666666;
    font-size: 14px;
    font-weight: 300;
	text-transform: capitalize;
}
#productAttributes .attribute_options > label {
    font-weight: normal;
    text-transform: capitalize;
	font-size: 14px;
}
.attribImg {
    margin: 0.3em 0;
    width: 20%;
}
.productprice-wrapper > img, .product_price > img {
    min-height: auto;
	margin-left:10px;
	float: right;
}
h4.optionName{
	width:10.8%;
	float:left;
	margin-top:2px;
}
#addressBookDefault .productinfo-leftwrapper .change_address{
    margin-right: 3px;
}
.productprice-wrapper > a {
    float: left;
    margin-top: 15px;
    width: 35%;
}
#addressBookDefault .productinfo-leftwrapper > a{
	display:none;
}
#productQuantityDiscounts > table {
    border: 1px solid;
    border-collapse: collapse;
    width: 100%;
}
.indexDefaultHeading {
    background: url("../images/icons/line.png") repeat-x scroll 0 bottom transparent;
    padding: 0 0 13px;
}
.navbar .nav
{
	width:100%;
}
.jsn-header .container, .navbar .container
{
	width:auto !important;
}
h2#gvFaqDefaultSubHeading, #gvFaqDefaultMainContent
{
	padding-left:0px;
	background: none repeat scroll 0 0 transparent;
    color: #595959;
}
.jsn-header .container, .navbar .container
{
	width:auto !important;
	display: block;
}
/* For Products */
#whatsNew .centerBoxWrapperContents .centerBoxContentsNew, #specialsDefault .centerBoxWrapperContents .centerBoxContentsSpecials, #featuredProducts .centerBoxWrapperContents .centerBoxContentsFeatured
{
	width:95.4% !important;
	margin-left: 5px;
	margin-bottom:2px;
}
#whatsNew .centerBoxWrapperContents, #specialsDefault .centerBoxWrapperContents, #featuredProducts .centerBoxWrapperContents {
	margin-bottom:-10px;
}
#centercontent-wrapper .item-page h2
{
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 0;
	font-size: 1.5em;;
}
em
{
	font-style:normal !important;
}
/* short */
.item-page .thindottedheader a.button {
    color: #FFFFFF;
}
#siteMap .content, #gvFaqDefault .content, #discountcouponInfo .content, #privacy .content, #conditions .content, #shippingInfoMainContent
{
    left: 0%;
    position: relative;
}
/* Opera */
.opera #slideshow-wrapper
{
	min-height:450px;
}
.opera .detailbutton-image a
{
	width:78px;
}
.pagination-style a{
    text-shadow: none !important;
    padding: 5px 10px;
    text-decoration: none;
	border:1px solid #E9E9E9;
	color: #FFFFFF !important;
}
.pagination-style .fa {
    margin: 0;
}
.pagination-style .current 
{
	color: #FFFFFF;
    padding: 5px 10px;
}
.cat-count {
    margin-left: 5px;
}
.pagination-style a > img {
    position: relative;
    top: 3px;
}
#createAccountForm LABEL.inputLabel, #accountEditDefault LABEL.inputLabel {
    width: 250px;
}
.content_box fieldset {
    padding: 0;
}
.next-prev {
    display:inline-block;
    width: 100%;
}
#accountNotifications .next-prev {
    margin-top: 20px;
}
.next-prev .buttonRow {
    float: left;
    margin-right: 10px;
}
.alert-text, .information .alert-text, .msgalert, .alertrequired {
    color: #FF4444;
    font-style: italic;
}
/*Products homepage */
#specialsListing > ul {
	margin:15px 0 0;
	padding:0;
}
#whatsNew .item, #featuredProducts .item, #specialsDefault .item, #specialsListing li, #alsopurchased_products .centerBoxContentsAlsoPurch, #upcomingProducts li {
    border-bottom: 1px solid #E9E9E9;
    display: inline-block;
	box-shadow:0 8px 5px -7px rgba(0, 0, 0, 0.4);
    margin: 0 15px 3px;
    overflow: inherit;
    position: relative;
	float:left;
	padding:10px 10px 20px;
	background:none repeat scroll 0 0 #F9F9F9;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
	-webkit-backface-visibility: hidden;
}
#featuredProducts #featured-slider-inner .item {
	margin: 0 13px 13px 13px;
}
#specialsListing li {
	width: 29.75%;
	-webkit-backface-visibility: hidden;
	margin:15px;
}
.homepage_v3 #specialsListing li {width:29.59%}
#indexCategories #whatsNew li:nth-child(3n+3), #indexCategories #featuredProducts li:nth-child(3n+3), #indexCategories #specialsDefault li:nth-child(3n+3), #indexProductList #whatsNew li:nth-child(3n+3), #indexProductList #featuredProducts li:nth-child(3n+3), #indexProductList #specialsDefault li:nth-child(3n+3), #alsopurchased_products li:nth-child(3n+3) {
    margin-right: 0;
}
#indexCategories #featuredProducts li:last-child, #indexProductList #featuredProducts li:last-child {
	display:none;
}
.zoom-button .fa, .detailbutton-wrapper .fa {
	margin:0;
}
#whatsNew, #featuredProducts, #specialsDefault, #upcomingProducts {
    float: left;
    margin: 0 0 30px;
    width: 100%;
}
#indexDefault .centerBoxWrapper:last-child, #indexCategories .centerBoxWrapper:last-child {
    margin: 0;
}
.productSpecialPriceSale, .productSalePrice, .normalprice, .productSpecialPrice, .productPriceDiscount{
	margin-right:10px;
}
.productPriceDiscount {
    margin-right: 0;
}
#indexCategories #whatsNew, #indexCategories #featuredProducts, #indexCategories #specialsDefault {
    margin-top: 0px;
	overflow: hidden;
}
#indexProductList #whatsNew, #indexProductList #featuredProducts, #indexProductList #specialsDefault {
	margin-top:20px;
	overflow: hidden;
	margin-bottom: 0;
}
.centerBoxHeading .fa {
    margin: 0 0 0 10px;
}
.border-bg {
    float: left;
}
.productprice-wrapper .product_price
{
	padding:5px;
	bottom: 0;
    padding: 5px;
    position: absolute;
}
p.short-description {
    margin: 0;
}
/* Create Account Success */
#createAcctSuccess .buttonRow.forward.change_address {
    float: left;
	margin-right: 10px;
}
#createAcctSuccess .buttonRow.forward.change_address:last-child {
	margin-right: 0;
}
/* Product Detail Page */
#productAdditionalImages li {
    display: inline-block;
    list-style: none outside none;
    margin-bottom: 4px;
    padding: 5px;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
	border:1px solid #E9E9E9;
}
.additionalImages.centeredContent img {
    height: auto;
    width: 90%;
}
#productMainImage {
    display: inline-block;
}
.product_info .product_image {
    text-align: center;
    width: 100%;
}
#additionalimages-slider {
    border-top: 1px solid #E9E9E9;
    padding: 15px 0 0;
}
#upcomingProducts .product_image {
    width: 30%;
}
#whatsNew .product_image:after, #featuredProducts .product_image:after, #specialsDefault .product_image:after, #specialsListing .product_image:after, .centerBoxContentsAlsoPurch .product_image:after {
    content: "";
    display: block;
    margin: 1.9em auto 0;
    width: 150px;
	border-bottom:1px dashed #E9E9E9;
	transition: all 0.6s ease-in-out 0s;
		-moz-transition: all 0.6s ease-in-out 0s;
		-webkit-transition: all 0.6s ease-in-out 0s;
		-o-transition: all 0.6s ease-in-out 0s;
		-ms-transition: all 0.6s ease-in-out 0s;
}
#upcomingProducts .product-name-desc {
    float: right;
    width: 65%;
}
#upcomingProducts .product_name {
    margin: 0;
}
#whatsNew .product_image img, #featuredProducts .product_image img, #specialsDefault .product_image img, #specialsListing .product_image img, .centerBoxContentsAlsoPurch .product_image img, #upcomingProducts .product_image img{
    height: auto;
    width: 100%;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
#productAdditionalImages {
    float: left;
    text-align: center;
    width: 100%;
	margin-top:20px;
}
.imgLink {
    display: none;
}
#centercontent-wrapper .alsoPurchased > h1 {
    margin: 0;
}
#centercontent-wrapper .product_title h1#productName {
    margin-bottom: 0;
}
.product_info {
    margin-bottom: 35px;
	margin-top:15px;
}
.product_info_tab {
    float: left;
    width: 100%;
	margin: 15px 0;
}
.alsoPurchased {
    margin: 35px 0 0;
}
.tabcontents #description > p {
    margin: 0;
}
#product_info_display .product_price {
    border-bottom: 1px solid #E9E9E9;
    margin: 15px 0 0;
    padding-bottom: 15px;
}
#product_info_display .grid-32.noleft-margin.noright-margin {
    float: right;
}
.productprice-amount{
    font-size: 1.3em;
    font-weight: normal;
	width:100%;
}
.product_quantity {
    border-bottom: 1px solid #E9E9E9;
    line-height: 25px;
    padding-bottom: 13px;
}
.product_info_tab #productQuantityDiscounts {
    display: inline-block;
    margin: 20px 0 0;
    width: 100%;
}
.product_info_accordian .product_description, .product_review {
    margin: 0 0 10px;
	padding:0
}
#alsopurchased_products {
    float: left;
}
.centerBoxContentsAlsoPurch {
    list-style: none outside none;
}
/* Cart Button */
.addtocart-info .cart_quantity {
	position:relative;
}
.addtocart-info .qty_in_cart {
    margin-bottom: 20px;
}
.cart_quantity > strong {
    display: inline-block;
    float: left;
    line-height: 35px;
    margin-right: 1em;
}
.addtocart-info .cart_quantity span.minus {
    top: 17px;
}
.addtocart-info .cart_quantity span {
    color: #ffffff;
    cursor: pointer;
    font-size: 17px;
    line-height: 18px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 19px;
}
.addtocart-info .cart_quantity .cart_button {
    float: left;
    margin: 0 0 0 2.4em;
    width: auto;
}
.addtocart-info .cart_quantity .cart-min-qty {
    float: left;
    margin-top: 20px;
    width: 100%;
}
.addto_cart .cart_quantity strong {
    float: left;
    margin-right: 10px;
    margin-top: 9px;
}
.product_info_accordian {
    background: #F2F2F2;
    float: left;
    padding: 10px;
    width: 96%;
	box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.1);
	margin-left: 3px;
}
.product_info_tab .tabcontents #description .productGeneral.centeredContent {
    margin: 10px 0 0;
    text-align: left;
}
a:focus {
	outline: none;
	text-decoration: none;
}

/*Accordian */
.accordian-header {
    cursor: pointer;
    float: left;
    font-weight: normal;
    height: 35px;
    line-height: 35px;
    text-align: left;
    width: 93.6%;
    display: block;
    text-decoration: none;
}
h4.accordian-header {
    font-size: 1.8em;
    margin: 0;
    padding: 0 0 0 4%;
    width: 100%;
}
.accordian-header a {
    color: #FFFFFF;
}
.accordian-header a:hover {
    color: #FFFFFF;
}
.accordian-content {
    border-bottom: 1px solid #909090;
    clear: both;
    padding: 2%;
    width: 100%;
	background: #FFFFFF;
	font-size: 1.4em;
}
.accordian-header.active {
    background: url("../images/plus-minus.png") no-repeat scroll 5px -91px rgba(255,255,255,0.3) !important;
}
.accordian-header {
    background: url("../images/plus-minus.png") no-repeat scroll 5px 7px rgba(255,255,255,0.3) !important;
}
.contentText.accordian-content > p {
    margin: 0;
}
/* Product Attributes */
.addtocart-info {
    border-bottom: 1px solid #E9E9E9;
    float: left;
    margin-top: 15px;
    padding: 0;
    width: 100%;
	padding-bottom: 15px;
}
#product_info_display .addtocart-info .cart_quantity span.cssButton.button_sold_out {
    display: inline-block;
    width: auto;
}
#product_info_display #productAttributes {
    border-bottom: 1px solid #E9E9E9;
    padding: 0 0 15px;
	margin-top:5px;
}
#product_info_display #productAttributes .attribImg {
    float: left;
    margin: 10px 10px 0 0;
}
#product_info_display #productAttributes h5 {
    margin-bottom: 0;
}
.addthis_toolbox {
    float: left;
    margin-top: 15px;
    width: 100%;
}
#contentarea-wrapper #centercontent-wrapper .productinfo-rightwrapper .navNextPrevWrapper.centeredContent {
    float: left;
    margin: 20px 0 0;
    text-align: left;
}

#contentarea-wrapper .navNextPrevWrapper .navNextPrevList .button_return_to_product_list {
	font-size:19px;
	position:relative;
	top:2px; 
}
.navNextPrevList i.fa {
    font-size: 0.8em;
    line-height: 0;
    margin: 0;
}
#twttrHubFrameSecure {
    height: 0 !important;
    position: relative !important;
}
#twttrHubFrame {
    height: 0 !important;
    position: relative !important;
}
.product_attributes{
	width:82%;
	float:left;
}
.attribute_label {
    float: left;
    font-size: 1.2em;
    width: 18%;
}
.attribute_options > input[type="radio"], .attribute_options > input[type="checkbox"] {
    margin-right: 8px;
}
.attribute_options > label {
    font-size: 1em;
    margin-right: 10px;
}
/* Left Right Box */
#left-column h3, #right-column h3 {
    color: #FFFFFF;
    font-size: 1.2em;
    line-height: 25px;
    padding: 10px;
    text-transform: uppercase;
}
#left-column .leftBoxContainer a, #right-column .rightBoxContainer a{
	font-size: 0.95em;;
	line-height: 18px;
    padding: 8px 0px;
    text-decoration: none;
	word-wrap:break-word;
	display: block;
}
#left-column .leftBoxContainer .product_sideboxname > a, #right-column .rightBoxContainer .product_sideboxname > a {
    font-size: 1em;
}
#left-column .leftBoxContainer #categoriesContent a, #right-column .rightBoxContainer #categoriesContent a, #right-column #cartBoxListWrapper li > a, #left-column #cartBoxListWrapper li > a, #right-column .rightBoxContainer #informationContent a , #left-column .leftBoxContainer #informationContent a, #right-column .rightBoxContainer #moreinformationContent a , #left-column .leftBoxContainer #moreinformationContent a {
    border-left: 4px solid #F9F9F9;
    line-height: 35px;
    padding: 0 0 0 10px;
}
#left-column #languagesContent > a, #right-column #languagesContent > a {
    float: left;
    padding: 0 5px 3px 0;
}
#left-column #shoppingcartContent .cartBoxTotal, #right-column #shoppingcartContent .cartBoxTotal {
    padding: 5px 13px;
    text-align: left;
}
#left-column .leftBoxHeading a, #right-column .rightBoxHeading a {
    float: right;
    line-height: 25px;
    padding: 0;
	text-transform: none;
	font-weight:normal;
	font-size: 0.7em;
}

#whatsnew .sideBoxContentItem, #specials .sideBoxContentItem, #reviews .random-reviews, #featured .sideBoxContentItem{
    float: left;
	margin-bottom:0;
	text-align: left;
	width:100%;
}
#whatsnew .sideBoxContentItem .sidebox_content, #specials .sideBoxContentItem .sidebox_content, #reviews .random-reviews .sidebox_content, #featured .sideBoxContentItem .sidebox_content {
	margin: 0;
}
.sidebox_content {
    float: left;
    margin: 15px 0;
    width: 100%;
}
.sidebox_price {
    float: left;
    margin: 10px 0 0;
    width: 100%;
}
#featured .sidebox_price {
	margin : 0;
}
.product_sideboxname {
    float: right;
    width: 65%;
}
.product_sideboximage {
    float: left;
    width: 30%;
	margin: 0 10px 0 0;
}
.product_sideboximage > img {
   	width:70px;
	height:auto;
	padding: 5px 0;
}
.sideBoxContentItem {
    border-bottom: 1px dashed #E9E9E9;
    margin-bottom: 10px;
}
.sideBoxContentItem:last-child {
    border: medium none;
}
#specials .sideBoxContent .sideBoxContentItem a, #whatsnew .sideBoxContentItem a, #reviews .sideBoxContentItem a{
    float: left;
    width: 100%;
}
/* Category Sidebox */
#right-column #categories li:hover a, #left-column #categories li:hover a {
    background: none repeat scroll 0 0 #F9F9F9;
    padding: 0 0 0 10px;
}
/* Breadcrumb */
#navBreadCrumb > ul,
#navBreadCrumb .breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
#navBreadCrumb li {
    position: relative;
    display: flex;
    align-items: center;
    color: #5a6b7b;
    font-size: 0.95em;
}
#navBreadCrumb li + li::before {
    content: "/";
    color: #a8b3bd;
    margin: 0 6px;
}
#navBreadCrumb .crumb-sep {
    color: #a8b3bd;
    margin: 0 6px;
    display: inline-block;
}
#navBreadCrumb li a {
    color: #2e6db4;
    text-decoration: none;
}
#navBreadCrumb li a:hover,
#navBreadCrumb li a:focus {
    text-decoration: underline;
}
#navBreadCrumb li:last-child a,
#navBreadCrumb li:last-child {
    color: #111;
    pointer-events: none;
}
#navBreadCrumb li:last-child a:focus { outline: none; }
.footer-toplinks a:hover{ font-size: 1em; }
#breadcrumb-wrapper { background: none repeat scroll 0 0 #F1F1F1; float: left; margin: 2px 0 30px; padding: 20px 0; width: 100%; }
/* Category Page */
#indexCategories {
    float: left;
    width: 100%;
}
#subproduct_name img {
    height: auto;
    margin-bottom: 25px;
    width: 100%;
}
#indexCategories #subcategory_names li {
    display: inline-block;
    float: left;
    margin: 5px 10px 5px 0;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
#indexCategories #subcategory_names li a {padding: 10px;display: inline-block;}
#indexCategories #subcategory_names li:first-child {
	background:none repeat scroll 0 0 transparent;
	margin:5px 0;
	padding:10px 10px 10px 0;
}
#indexCategories #subcategory_names li:first-child:hover {
	background:none repeat scroll 0 0 transparent;
	border-radius: 0;
}
#subproduct_name > a {
    color: #FFFFFF !important;
}
.subcategory_list {
    background: none repeat scroll 0 0 #F9F9F9;
    float: left;
    margin: 0;
    padding: 15px;
    width: 100%;
}
#subcategory_names {
    float: left;
    margin: 0;
    width: 100%;
}
.content_box {
    background: none repeat scroll 0 0 #F9F9F9;
    border: 5px solid #E9E9E9;
    float: left;
	padding:2%;
	margin: 0 0 15px;
	width:100%;
}
.content_box strong {
    font-size: 1em;
    font-weight: bold;
    opacity: 0.8;
}
.content_box > p {
    line-height: 20px;
    margin: 5px 0 0;
    opacity: 0.8;
	font-size: 1em;
}
/* Product Listing */
.sort-list {
    float: right;
    margin-top: 6px;
    width: auto;
}
.productlisting_sort {
    float: left;
    width: auto;
}
.sorter label {
    float: left;
    margin-right: 10px;
    margin-top: 5px;
    width: auto;
	font-weight:normal;
}
.sorter{
    width: auto;
	float:left;
}
.sorter form
{
    float: left;
    width: auto;
}
#newProductsDefault .buttonRow.forward, #allProductsDefault .buttonRow.forward, #featuredDefault .buttonRow.forward, #indexProductList .buttonRow.forward, #advSearchResultsDefault .buttonRow.forward
{
    float: left;
	width:35%;
}
#specialsListing .speciallisting_number_links .navSplitPagesLinks {
    float: left;
}
#specialsListing .speciallisting_number_links .navSplitPagesResult, #indexProductList #productsListingBottomNumber {
	line-height:42px;
}
.navSplitPagesResult {
    float: right;
    margin-top: 2px;
    text-align: right;
    width: 35%;
}
.next-prev .navSplitPagesResult {
    line-height: 47px;
    margin: 0;
}
.navSplitPagesLinks
{
	float:right;
	width:auto;
	line-height:30px;
}
#indexProductList .tabTable, #advSearchResultsDefault .tabTable, #newProductsDefault table, #featuredDefault table, #allProductsDefault table {
    float: left;
    width: 100%;
}
.pageresult_bottom, .pageresult_top, .speciallisting_number_links {
    float: left;
    margin: 20px 0 0;
    width: 100%;
}
.special_toplinks {
    margin: -5px 0 0;
}
.special_bottomlinks {
    margin: 10px 0 0;
}
.productListing-odd, .productListing-even, .newproductlisting {
    border: 1px solid #E9E9E9;
	background:none repeat scroll 0 0 #F9F9F9;
    float: left;
    margin: 5px 0 0;
    padding: 5px;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.productListing-odd:hover, .productListing-even:hover, .newproductlisting:hover {
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.productListing-rowheading {
    display: none;
}
.productListing-data .listingProductImage, .newproductlisting img {
    margin: 0 0px 0 0;
    padding: 0;
}
.productListing-data .short-description, .productListing-data .product_name, .productlisting_btn, .newproductlisting .product_name, .newproductlisting .short-description{
    padding: 0;
    width: 100%;
}
.newproductlisting .product_name {margin: 0 0 0px }
.productnewprice > a.button {padding: 7px}
.productnewprice > a.button:hover, .productnewprice > a.button:visited, .productnewprice > a.button:focus, #indexProductList a.button:hover, #indexProductList a.button:focus, #indexProductList a.button:visited {color:#FFFFFF}
.productnewprice > a.more-info-text {font-size:14px;}
.productListing-data .short-description, .newproductlisting .short-description { 
	font-size:1em;
} 
.productlisting_price {
    float: left;
    font-size: 1.4em;
    line-height: 30px;
    margin: 0 0 15px;
    width: 100%;
}
.productListing-data .product_name > a, .newproductlisting .product_name > a {
    font-size: 0.8em;
}
.productListing-data .productlisting{
    float: right;
    margin: 0 0px 0 0;
	font-size: 0.9em;
}
.newproductlisting .productnewprice {
    font-size: 1.2em;
}
.newproductlisting .productnewprice > input, .productlisting > input {
    font-size: 16px;
    height: 35px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    width: 45px;
}
.newproductlisting .productlisting{
    float: left;
    width:100%;
}
/* Improved Product Listing Cards */
#indexProductList .tabTable tr.product-card {
    display: table-row;
}
#indexProductList .tabTable tr.product-card td.productListing-data {
    vertical-align: top;
    padding: 10px;
}
#indexProductList .tabTable tr.product-card td.productListing-data:first-child {
    width: 150px;
}
#indexProductList .tabTable .listingProductImage {
    width: 140px;
    height: 140px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}
#indexProductList .product_name { margin-top: 0; }
#indexProductList .product_name .product-name-link {
    font-weight: 600;
    text-decoration: none;
}
#indexProductList .short-description {
    margin-top: 6px;
    color: #555;
    font-size: 0.95em;
}
#indexProductList .product-price {
    font-size: 1.2em;
    color: #B00000;
    margin-bottom: 8px;
}
#indexProductList .product-ctas { margin-top: 8px; }
#indexProductList .cta-group { margin: 6px 0; }

/* Larger, more engaging USB/Download CTAs (image-based) */
#indexProductList .productListing-data a[href*="action=buy_stick_now"],
#indexProductList .productListing-data a[href*="action=buy_now"] {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}
#indexProductList .productListing-data a[href*="action=buy_stick_now"] img,
#indexProductList .productListing-data a[href*="action=buy_now"] img {
    width: 204px; /* ~60% of previous 340px */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#indexProductList .productListing-data a[href*="action=buy_stick_now"] img:hover,
#indexProductList .productListing-data a[href*="action=buy_now"] img:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 18px rgba(0,0,0,0.22);
}

/* Mobile-optimized CTA layout for product listing */
#indexProductList .product-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
#indexProductList .product-ctas .cta-link {
    display: block;
    flex: 1 1 240px;
    max-width: 420px;
}
#indexProductList .product-ctas .cta-link img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 1025px) {
  /* Right-align CTA group and reduce image size to 50% (half current) */
  #indexProductList .product-ctas { justify-content: flex-end; }
  #indexProductList .product-ctas .cta-link { display: inline-flex; align-items: center; justify-content: flex-end; flex: 0 0 40% !important; width: 40% !important; max-width: 40% !important; }
  /* Desktop listing CTA buttons at 40% of the cell width */
  #indexProductList td.productListing-data .product-ctas .cta-link img,
  #indexProductList .product-ctas .cta-link img,
  #indexProductList .product-ctas .cta-img,
  #indexProductList td.productListing-data a[href*="action=buy_now"] img,
  #indexProductList td.productListing-data a[href*="action=buy_stick_now"] img { width: 100% !important; height: auto; }
}
@media (max-width: 640px) {
  /* Stack listing cells to allow action buttons to occupy full row */
  #indexProductList .tabTable tr.product-card {
      display: block;
  }
  #indexProductList .tabTable tr.product-card td.productListing-data {
      display: block;
      width: 100% !important;
      max-width: none !important;
      overflow: visible;
      padding: 8px 10px;
  }
  #indexProductList .tabTable tr.product-card td.productListing-data:first-child {
      width: 100% !important;
  }
  /* Price to right side on mobile */
  #indexProductList .product-price { text-align: right; }

  /* Make the CTA row span the full width and stack buttons */
  #indexProductList .product-ctas {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      width: 100%;
      margin: 8px 0 0;
      justify-content: stretch;
  }
  #indexProductList .product-ctas .cta-link { max-width: 100%; }
  #indexProductList .product-ctas .cta-link { margin-left: 0 !important; }
  #indexProductList .product-ctas .cta-link img {
      width: 100%;
      height: auto;
      border-radius: 14px;
  }
  /* Ensure USB appears first and aligned to left edge */
  #indexProductList .product-ctas .usb-cta { order: 1; justify-self: start; }
  #indexProductList .product-ctas .download-cta { order: 2; }

  /* Avoid clipping previously set min-widths on small screens */
  #indexProductList .product-ctas, #indexProductList .product-price { min-width: 0; }

  /* Hide product thumbnail in listing on mobile */
  #indexProductList .tabTable tr.product-card td.productListing-data:first-child,
  table tr.product-card-mobile td.productListing-data:first-child,
  #indexProductList .listingProductImage,
  table tr.product-card-mobile img.listingProductImage { display: none !important; }
  
  /* Fix mobile layout: make product content span full width and align left */
  #indexProductList .tabTable tr.product-card td.productListing-data:not(:first-child) {
    width: 100% !important;
    padding-left: 10px !important;
    text-align: left !important;
  }
  
  /* Ensure product name and price align properly on mobile */
  #indexProductList .product_name {
    text-align: left !important;
    margin-bottom: 8px !important;
  }
  
  #indexProductList .product-price {
    text-align: left !important;
    margin-bottom: 10px !important;
  }
}

/* Ensure the CTA column has enough space and isn't constrained by the name cell */
#indexProductList .product-ctas { justify-content: flex-end; }
#indexProductList .product-ctas, #indexProductList .product-price { min-width: 200px; }

/* Ultra-small devices: ensure price shows and CTAs sit on one row */
@media (max-width: 400px) {
  #indexProductList .product-price { 
    display: block; 
    text-align: right; 
    margin-top: 6px;
  }
  #indexProductList .product-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
  }
  #indexProductList .product-ctas .cta-link { max-width: 100%; flex: 1 1 auto; }
  /* Buttons at ~25% of screen width */
  #indexProductList .product-ctas .cta-link img { width: 25vw !important; height: auto; display:block; margin:0 auto; max-width: none; }
}
#indexProductList td.productListing-data[style*="max-width: 1000px"] { width: auto !important; max-width: none !important; }

/* Premium look for thumbnails - 1:1 aspect ratio */
#indexProductList .tabTable .listingProductImage {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Responsive category banner image */
@media (max-width: 480px) {
  /* Ensure listing price is clearly visible on mobile even without #indexProductList wrapper */
  td.productListing-data .price-under-title,
  td.productListing-data .product-price,
  .price-under-title {
    display: block !important;
    text-align: right !important;
    font-weight: 700 !important;
    margin: 4px 0 6px !important;
    color: #B00000 !important;
    white-space: normal !important;
  }
  #categoryIcon img,
  .categoryIcon img,
  .centerColumn > img:first-child {
    width: 85%;
    max-width: 85%;
    height: 85vw;
    max-height: 85vw;
    object-fit: cover;
    display: block;
    margin: 8px auto 16px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }
}

/* Tablet and small desktop: keep category image elegant and responsive */
@media (max-width: 768px) {
  #categoryIcon img,
  .categoryIcon img,
  .centerColumn > img:first-child {
    width: 85%;
    max-width: 85%;
    height: 85vw;
    max-height: 85vw;
    object-fit: cover;
    display: block;
    margin: 10px auto 18px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }
}

/* Specific category image container used on list pages (e.g., TSX) */
#categoryImgListing img {
  display: block;
  width: 85vw;
  max-width: 85vw;
  height: 85vw;
  max-height: 85vw;
  object-fit: cover;
  margin: 10px auto 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Desktop: keep category image at 70% width */
@media (min-width: 1025px) {
  #categoryImgListing img {
    width: 70vw;
    max-width: 70vw;
    height: 70vw;
    max-height: 70vw;
    object-fit: cover;
  }
}

/* Mobile overflow fixes: ensure no horizontal scrolling */
@media (max-width: 480px) {
  html, body { overflow-x: hidden; }

  /* Header banner container sometimes has fixed width; constrain it */
  #headerpic { max-width: 100% !important; width: 100% !important; margin: 0 auto; overflow: hidden; }
  #headerpic img { max-width: 100%; height: auto; display: block; }

  /* Bootstrap-like rows can introduce negative margins; neutralize in content area */
  #indexProductListCatDescription.row { margin-left: 0 !important; margin-right: 0 !important; }
  .centerColumn .row { margin-left: 0 !important; margin-right: 0 !important; }

  /* Constrain category description and image wrappers to viewport */
  #indexProductListCatDescription,
  #categoryImgListing { width: 100% !important; max-width: 100% !important; box-sizing: border-box; margin: 0 auto; }
}

/* Mobile-first, compact card layout for listing (image 35%, content 65%) */
@media (max-width: 480px) {
  /* Remove legacy fixed desktop width and side margins that cause left gutter */
  #mainWrapper { width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }
  #bottomShadow { width: 100% !important; }
  #contentMainWrapper { margin: 0 !important; padding-left: 1vw !important; padding-right: 1vw !important; }
  #contentMainWrapper, #logoWrapper, #ezPageBoxList, #ezPageBoxList ul, #popupAdditionalImage, #popupImage { margin: 0 !important; }

  /* Gray dialog container nearly full width */
  #indexProductList, #indexProductList .tabTable, .centerBoxWrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    box-sizing: border-box;
    overflow-x: hidden;
    table-layout: fixed;
    padding-left: 1vw;
    padding-right: 1vw;
  }
  /* Make listing info/pagination fully responsive and wrap text */
  .navSplitPagesResult,
  #indexProductList #productsListingTopNumber,
  #indexProductList #productsListingBottomNumber {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-align: left !important;
    line-height: 1.4 !important;
    margin: 6px 0 !important;
  }
  /* Turn each product row into a 2-column grid */
  #indexProductList .tabTable tr.product-card {
    display: grid;
    grid-template-columns: 1fr; /* No thumbnail on mobile: single column */
    gap: 10px;
    align-items: start;
  }
  /* Normalize cells for grid */
  #indexProductList .tabTable tr.product-card td.productListing-data {
    display: block;
    width: auto !important;
    max-width: none !important;
    padding: 6px 8px;
  }
  /* Thumbnail column removed on mobile */
  #indexProductList .tabTable tr.product-card td.productListing-data:first-child { display: none !important; }
  /* Content column (name, price, buttons) */
  #indexProductList .tabTable tr.product-card td.productListing-data:not(:first-child) {
    grid-column: 2;
    padding-left: 4px;
  }
  #indexProductList .product_name { margin: 0 0 4px; line-height: 1.28; }
  #indexProductList .product_name a { font-size: 14px !important; }
  #indexProductList .product-price { margin: 0 0 8px; font-weight: 600; text-align: right; }
  /* Two buttons on one row */
  #indexProductList .product-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; justify-content: stretch; min-width: 0; }
  #indexProductList .product-ctas .cta-link { max-width: 100%; flex: 1 1 auto; overflow: visible; }
  /* Buttons at ~25% of screen width */
  #indexProductList .product-ctas .cta-link img { width: 25vw !important; height: auto; max-width: none; display:block; margin:0 auto; }
  /* Override legacy listing CTA image widths on mobile */
  #indexProductList .productListing-data a[href*="action=buy_now"] img,
  #indexProductList .productListing-data a[href*="action=buy_stick_now"] img { width: 25vw !important; height: auto; max-width: none; }
  /* Highest specificity target for CTA images within product-card rows */
  #indexProductList .tabTable tr.product-card td.productListing-data a[href*="action=buy_now"] img,
  #indexProductList .tabTable tr.product-card td.productListing-data a[href*="action=buy_stick_now"] img { width: 25vw !important; height: auto; max-width: none; }

  /* Universal mobile listing card (works without #indexProductList wrapper) */
  table tr.product-card-mobile td.productListing-data { display:block; width:100% !important; padding:8px 10px; }
  table tr.product-card-mobile td.productListing-data:first-child { display:flex; align-items:center; gap:10px; }
  table tr.product-card-mobile td.productListing-data:first-child img.listingProductImage { width:90px; height:90px; object-fit:cover; border-radius:8px; flex:0 0 90px; }
  table tr.product-card-mobile .product_name { margin:0 0 4px; line-height:1.3; }
  table tr.product-card-mobile .product_name a { font-size:14px !important; text-decoration:none; font-weight:600; color:#002c5a; }
  table tr.product-card-mobile .price-under-title, table tr.product-card-mobile .product-price { display:block !important; text-align:right !important; font-weight:700; color:#B00000; margin:4px 0 8px; }
  table tr.product-card-mobile .product-ctas { display:grid; grid-template-columns:1fr 1fr; gap:6px; }
  table tr.product-card-mobile .product-ctas .cta-link img { width:25vw !important; height:auto; display:block; margin:0 auto; }
}
/* Shopping Cart Page */
#cartImage > img {
	float:left;
    height: auto;
    width: 75px;
}
.cartTableHeading, #cartSubTotal {
    background-color: #F9F9F9;
    height: 2.5em;
}
table#cartContentsDisplay tr th, #prevOrders .tableHeading th, #accountHistInfo .tableHeading th, #cartSubTotal {
    border-bottom: 1px solid #E9E9E9;
}
table#cartContentsDisplay tr th, #prevOrders .tableHeading th, #accountHistInfo .tableHeading{
	background-color:#F9F9F9;
}
#cartContentsDisplay tr, #prevOrders tr {
	background: none repeat scroll 0 0 transparent;
	border-bottom: 1px solid #E9E9E9;
}
#prevOrders td {
	padding: 15px;
}
.cartProductDisplay, .cartUnitDisplay, .cartTotalDisplay, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, #cartInstructionsDisplay, .cartTotalsDisplay   {
	padding: 15px 20px !important;
	vertical-align:middle !important;
	text-align: center;
}
#shoppingCartDefault table, table#prevOrders, #accountHistInfo table {
    margin: 0;
}
#cartSubTotal {
    font-size: 1.1em;
    line-height: 2.5em;
    padding-right: 4em;
    text-align: right;
}
table#cartContentsDisplay tr th, #prevOrders .tableHeading th, #accountHistInfo .tableHeading, #accountHistInfo th {
	font-size: 1.1em;
	padding: 10px;
}
.cartQuantityUpdate > input[type="image"]:focus {
    border: medium none;
    box-shadow: none;
}
.cartQuantityUpdate > input[type="image"] {
    border: medium none;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.cartQuantityUpdate > input[type="image"]:hover {
    transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.cartRemoveItemDisplay img{
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
	width:14px;
	height:auto;
}
.cartRemoveItemDisplay img:hover {
    transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.buttonRow.forward.checkout_button {
    float: right;
}
#content-wrapper table#cartContentsDisplay tr td {
    border-bottom: 1px solid #CCCCCC;
    vertical-align: middle;
}
.cartProductDisplay > #product_name {
    display: inline-block;
    line-height: 80px;
}
#content-wrapper table#cartContentsDisplay tr:last-child td{
	border:none;
}
/* Login Page */
#createAccountForm fieldset {
    padding: 0;
    width: 100%;
	margin:10px 0 0;
}
#loginDefault #createAccountForm .content_box .buttonRow.forward {
    margin: 25px 0 0;
}
#loginDefault .content_box {
    margin: 0;
}
/* CheckOut Shipping */ /*For Steps */
#checkoutShipping .productinfo-rightwrapper {
    float: right;
}
#checkoutShipto {
    float: left;
}
.sendto-address {
    float: left;
    margin: 15px 0;
    width: 100%;
}
.add_title {
    color: #FFFFFF;
    padding: 5px;
}
#checkoutShipping .content_choose FIELDSET {
    border: 1px solid #D9D9D9 !important;
    margin-top: 10px;
	padding: 0.5em 0.5em 0.5em 1em;
}
address {
    float: left;
    font-size: 1em;
    font-weight: bold;
    line-height: 22px;
    width: 100%;
}
#accountHistInfo .change_address {
	display:inline-block;
}

#checkoutShipping .buttonRow.forward, #checkoutShipAddressDefault .buttonRow.forward, #checkoutPayment .buttonRow.forward, #checkoutPayAddressDefault .buttonRow.forward {
    float: left;
}
#checkoutConfirmDefault #cartContentsDisplay .buttonRow.forward {
    float: none;
    margin: 0;
}
#checkoutShipAddressDefault .productinfo-leftwrapper, #checkoutShipping .productinfo-leftwrapper, #checkoutPayAddressDefault .productinfo-leftwrapper, #addressBookDefault .productinfo-leftwrapper, #checkoutPayment .productinfo-leftwrapper{
    width: 35%;
}
#checkoutShipAddressDefault .productinfo-rightwrapper, #checkoutShipping .productinfo-rightwrapper, #checkoutPayAddressDefault .productinfo-rightwrapper, #addressBookDefault .productinfo-rightwrapper, #checkoutPayment .productinfo-rightwrapper{
    width: 65%;
	float:right;
}
#checkoutPayment .product_price.total > strong {
    font-size: 1.2em;
    font-weight: normal;
    margin-right: 10px;
}
#checkoutPayment .product_price.total span.total_price {
    font-size: 1.2em;
    font-weight: normal;
}
#checkoutConfirmDefault .productinfo-leftwrapper {
    margin-right: 2%;
    width: 49%;
}
#checkoutConfirmDefault .productinfo-rightwrapper {
    float: right;
    width: 49%;
}
/* Time Out */
.timeout_email, .timeout_password {
    float: left;
    width: 100%;
}
/* Account Page */
.allorder_text {
    float: right;
    font-size: 11px;
    margin-top: 5px;
    text-transform: none;
}
#content-wrapper table .user-accountinfo > td, #content-wrapper #accountHistInfo table td {
    border-bottom: 1px solid #CCCCCC;
    padding: 15px 20px;
}
#accountHistInfo #myAccountShipInfo address, #accountHistInfo #myAccountPaymentInfo address, #addressBookDefault address {
    margin-bottom: 20px;
}
/* Write Review Page */
#reviewsWrite .productprice-amount, #reviewsInfoDefault .productprice-amount{
	width:100%;
}
#reviewsWrite .product_price, #reviewsInfoDefault .product_price{
	width:auto;
}
#reviewsWrite .productprice-amount .normalprice, #reviewsInfoDefault .productprice-amount .normalprice, #reviewsDefault .productprice-amount .normalprice {
	color:#595959;
}
.forward.productpage_links {
	float:right;
	width:auto;
}
#reviewsWriteReviewer {
    background: url("../images/icons/slider_line.png") repeat-x scroll center bottom transparent;
    float: left;
    margin: 10px 0;
    padding: 0 0 15px;
    width: 100%;
}
LABEL#textAreaReviews{
	float:left;
	margin: 0 !important;
}
textarea#review-text {
    margin-bottom: 15px;
}
/* Product Review Info */
.ratings {
    background: none repeat scroll 0 0 #F1F1F1;
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1) inset;
    display: block;
    float: left;
    padding: 1.5% 1%;
    width: 98%;
	margin:20px 0 0;
}
.rating {
    float: right;
}
.user_detail {
    float: left;
    margin-top: 1px;
    text-align: center;
    width: 80%;
}
.bold.user_reviewer {
    float: left;
    font-size: 1em;
    margin-right: 10px;
    margin-top: 2px;
    letter-spacing: 1px;
}
.reviews-list span.date {
    float: left;
    font-size: 1em;
    margin-top: 2px;
	letter-spacing: 1px;
}
.reviews-list .productreviews-wrapper {
    background: none repeat scroll 0 0 #FFFFFF;
    float: left;
    padding: 1%;
    width: 98%;
}
.reviews-list .review_content {
    float: left;
    width: 100%;
}
.review_left{
	float:left;
	width:100%;
	margin-top:10px;
	font-size: 1em;
}
#productReviewsDefaultProductPageLink {
    margin-top: 10px;
	float: left;
}
.reviews-list .navSplitPagesResult {
    margin-bottom: 10px;
}
.reviews-list #reviewsDefaultListingTopLinks {
    margin-bottom: 23px;
}
#reviewsListingDefault #reviewsDefaultListingBottomLinks, .reviews-list #reviewsDefaultListingTopLinks {
	float:left;
}
.productreviews-wrapper .smallProductImage img {
    margin: 0 15px 0 0;
}
/* Search Sidebox */
#searchContent input[type="text"]{
	float: left;
    font-size: 10px !important;
    height: 26px;
    margin: 0;
    width: 185px !important;
}
#search #searchContent input {
    font-size: 1em;
    padding: 3px 7px;
}
#searchContent a {
    float: left;
}
#currenciesContent select {
    width: 100%;
}
/* Order History Sidebox */
.orderHistList li {
    background: url("../images/icons/cart.gif") no-repeat scroll left center transparent;
}
a.orderhistory_cart {
    padding: 8px 12px 8px 22px !important;
}
/* Manufacturer Info Sidebox */
#manufacturerinfoContent .centeredContent > img {
    border: 1px solid #E9E9E9;
}
#manufacturerinfoContent li {
    text-align: center;
}
/* Contact Us */
FIELDSET#contactUsForm {	
	border: medium none !important;
	padding: 0;
}
#contactUsForm .contactus-name {
    margin: 6px 0 0;
	float:left;
	width:20%;
}
#contactUsForm Label {
    float: left;
    width: 80%;
}
.custom.contactus-details {
    background: none repeat scroll 0 0 #595959;
    float: left;
    width: 100%;
	margin:0 0 15px;
}
.custom.contactus-details .address, .custom.contactus-details .mail, .custom.contactus-details .phone {
    color: #EAEAEA;
    float: left;
    margin: 0;
    padding: 1.5% 1.5% 1.5% 6%;
	width:24.32%;
	min-height:5%;
	line-height:15px;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.custom.contactus-details .address {
    width: 28.87%;
	background-position: 7px -355px !important;
}
.custom.contactus-details .mail {
    background-position: 7px -530px !important;
}
.custom.contactus-details .phone {
    background-position: 7px -443px !important;
}
/* Site Map */
#siteMapList ul{
	list-style:square;
	line-height: 25px;
	padding-left: 15px;
}
#siteMapList ul li ul{
	list-style:circle;
	margin-bottom:0;
}
ul.nav-child .submenu > a {
    background: url("../images/icons/cat_bullet.png") no-repeat scroll 160px 17px transparent;
}
#siteMap #siteMapList {
    float: left;
    width: 100%;
}

/* Best Seller Sidebox */
ol{
	counter-reset: li; /* Initiate a counter */
	list-style: none; /* Remove default numbering */
	*list-style: decimal; /* Keep using default numbering for IE6/7 */
	padding: 0;
}
ol ol{
	margin: 0 0 0 2em; /* Add some left margin for inner lists */
}
.rectangle-list a{
	position: relative;
	display: block;
	padding: .4em .4em .4em .8em;
	*padding: .4em;
	margin: .5em 0 .5em 2.5em;
	color: #444;
	text-decoration: none;
	transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-webkit-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;	
}
#bestsellers #bestsellersContent li:last-child {
	margin:0;
}
#left-column h3 a, #right-column h3 a, .buttonRow.back.change_address > a {
	color:#FFFFFF;
}
.rectangle-list a:hover{
	background: none repeat scroll 0 0 #F9F9F9;
}	
.rectangle-list a:before{
	content: counter(li);
	counter-increment: li;
	position: absolute;	
	left: -2.5em;
	top: 50%;
	margin-top: -1em;
	height: 2em;
	width: 2em;
	line-height: 2em;
	text-align: center;
	color:#FFFFFF;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
		-webkit-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
}
.rectangle-list a:after{
	position: absolute;	
	content: '';
	border: .5em solid transparent;
	left: -1em;
	top: 50%;
	margin-top: -.45em;
	transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-webkit-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;				
}
#bestsellersContent li a:link, #bestsellersContent li a:visited {
    padding: 0.4em;
}
.sideBoxContent {
    padding: 10px;
	background:none repeat scroll 0 0 #F9F9F9;
	width:100%;
	float:left;
	border-bottom: 1px dashed #E9E9E9;
	text-align: left;
}
#featured .sideBoxContent {
	padding: 0;
}
#featured .sideBoxContent .sideBoxContentItem {
	padding: 10px;
}
/* About Us Page */
.simple-boxcontent.team_info {
    border: 1px solid #E9E9E9;
    float: left;
    width: 97.1%;
}
.team_image {
    float: left;
    width: 35%;
}
.team_detail {
    background: none repeat scroll 0 0 #F5F5F5;
    float: right;
    padding: 10px;
    width: 61%;
}
.team_name, .team_title, .team_about{
    float: left;
    margin-bottom: 10px;
    width: 100%;
}
.team_about{
    margin-bottom:0;
}
/* Advanced Search */
#advSearchDefault .content_box > strong {
    float: left;
    margin-bottom: 10px;
    width: 100%;
}
#advSearchDefault .simple-boxcontent {
    border: 1px solid #E9E9E9;
    float: left;
    width: 96.5%;
}
/* Discount Coupon */
#discountcouponInfo > form {
    float: left;
    width: 100%;
}
/* Password Forgotten */
#passwordForgotten .buttonRow.forward {
    margin-top: 10px;
}
#passwordForgotten label {
    float: left;
    margin-top: 9px;
}
/* Page not found */
.pagenot_found {
    float: left;
    width: 100%;
	text-align:center;
}
.notfound_title {
    display: inline-block;
    margin: 30px 0 0;
    text-align: center;
    text-transform: uppercase;
}
.notfound_title > em {
    float: left;
    font-size: 200px;
    line-height: 170px;
}
.notfound_title > p {
    float: left;
    line-height: 76px;
    padding: 0 0 0 30px;
}
.notfound_title p span {
    float: left;
    font-size: 60px;
    text-align: left;
}
.notfound_title p em {
    font-size: 75px;
}
.notfound_text {
    color: #EAEAEA;
    float: left;
    font-size: 40px;
    padding: 2%;
    width: 96%;
}
.home_button .buttonRow.back.button > a {
    color: #EAEAEA;
}
.home_button {
    float: left;
    margin: 20px 0 0;
    text-align: center;
    width: 100%;
}
/* Link Color */
#subproduct_name > a, #subproduct_name > a:active, #subproduct_name > a:visited, a.table_edit_button span.cssButton.small_edit, #accountDefault a, .allorder_text > a, .allorder_text > a:active, .allorder_text > a:visited, .buttonRow.product_price > a, .content_box .bold.user_reviewer > strong, .content_box .date.user_reviewdate > strong, #reviewsContent > a, #searchContent a, .accordian-header, .jsn-mainnav.navbar .nav > li > a, .box_heading_style h1 a, ul.tabs li a, .info-links a, .info-links a:active, .info-links a:visited, #siteMapList a, #siteMapList a:active, #siteMapList a:visited, #cartContentsDisplay a.table_edit_button, #cartContentsDisplay a.table_edit_button:active, #cartContentsDisplay a.table_edit_button:visited {
	color:#595959;
}
.current-step > a, .checkout-steps > a {
	color:#595959 !important;
}
.footer-toplinks a{
	color: #E9E9E9 !important;
}
.content_box td:first-child {
	width:22%;
}
.content_box td:last-child {
	width:22%;
}
#navBreadCrumb li a:hover, .footer-toplinks a:hover{
	border-bottom: 1px solid;
}

FIELDSET {
    border: 1px solid #D4D4D4;
}
LEGEND {
    color: #555555;
}
.footer-toplinks > li {
    border-left: 1px solid #E9E9E9;
}
/* Admin Options CSS */
.msadmin_options {
    width: 100%;
}
.logo_setting .accordian-content img {
    background: none repeat scroll 0 0 #AAAAAA;
    padding: 10px;
}
span.admin-text {
    font-size: 11px;
}
.msadmin_options .accordian-content label {
    float: left;
    margin-top: 3px;
    width: 250px;
}
.msadmin_options .slideshow_image {
    float: left;
    width: auto;
}
.msadmin_options .slideshow_image {
    float: left;
    margin: 0 16px 10px 0;
    width: auto;
}
.msadmin_options .slideshow_image:last-child {
    margin-right: 0;
}
.banners .slideshow_image input {
    position: relative;
    top: 23px;
    vertical-align: top;
}
#checkoutConfirmDefault .productinfo-leftwrapper .important{float:left;}
.zoom {
			display:inline-block;
			position: relative;
		}
.zoom:after {
			content:'';
			display:block; 
			width:33px; 
			height:33px; 
			position:absolute; 
			top:0;
			right:0;
			background:url(../images/icon.png);
		}


.zoom img {
    border: 1px solid #E9E9E9;
    display: block;
    padding: 10px;
}

		.zoom img::selection { background-color: #FFFFFF; }

		#ex2 img:hover { cursor: url(grab.cur), default; }
		#ex2 img:active { cursor: url(grabbed.cur), default; }
		
/* New Design CSS */
h3.product_head_admin {
    text-align: center;
}
.edify_admin .accordian-content {
	margin: 0 0 10px;
	float: left;
}
.edify_admin .accordian-header {
	margin: 0 0 10px;
}
.edify_admin .accordian-header.active {
	margin:0;	
}
.store_banners .banners, .store_bottom_banners .banners, .custom_content .custom_block_content {
    border-bottom: 1px solid #E9E9E9;
    margin-bottom: 15px;
}
.custom_content .custom_block_content h5 {
    border-bottom: 1px solid;
    display: inline-block;
    font-size: 16px;
    padding: 0 0 5px;
}
/* Font Awesome */
i.fa {
    margin-right: 10px;
}

p.reviewCount {
   	margin-bottom: 0;
}
span.centerBoxHeading {
    padding: 0;
}
#centercontent-wrapper span.centerBoxHeading h2, .categories-wrapper span.centerBoxHeading h2 {
    padding: 15px 0;
    text-transform: none;
	margin-bottom: 20px;
	background:#FFFFFF;
	font-size:2em;
	border-bottom:1px solid #E9E9E9;
}
.centerBoxHeading a {
    float: right;
    font-size: 0.55em;
	margin:7px 0;
}
/*label*/
span.label-new {
    color: #FFFFFF;
    font-size: 1em;
    padding: 5px 10px;
    position: absolute;
    left: 10px;
    text-transform: uppercase;
    top: 10px;
	background:none repeat scroll 0 0 #7BC5FF;
}
span.label-sale {
    color: #FFFFFF;
    font-size: 1em;
    padding: 5px 10px;
    position: absolute;
    left: 10x;
    text-transform: uppercase;
    top: 45px;
	background:#AE2340;
}
span.label-featured {
    color: #FFFFFF;
    font-size: 1em;
    padding: 5px 10px;
    position: absolute;
    left: 10px;
    text-transform: uppercase;
    top: 45px;
	background:none repeat scroll 0 0 #FFAA00;
}
span.label-upcoming {
    color: #FFFFFF;
    font-size: 1em;
    padding: 5px 10px;
    position: absolute;
    left: 10px;
    text-transform: uppercase;
    top: 105px;
	background:none repeat scroll 0 0 #00C6B7;
}
.bottom-upcoming-wrapper, .bottom-special-wrapper {
    padding: 30px 0 0 !important;
}
.bottom-upcoming-wrapper #upcomingProducts, .bottom-special-wrapper #specialsDefault {
	margin: 0;
}
.our-services header, .know-us header {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}
.know-us header, .extra header, .my-account header {
    margin-bottom: 0;
    position: relative;
    text-align: center;
    top: -23px;
}
.our-services header > h2, .know-us header > h2, .my-account header > h2, .extra header > h2 {
    background-color: #FFFFFF;
    color: #404040;
    display: inline-block;
    margin: 0;
    padding: 10px;
    text-align: center;
	font-size:1.4em;
	text-transform:uppercase;
}
.extra header > h2 {
	font-size:1.5em;
}
.footer_container {
    display: inline-block;
    width: 100%;
	font-size: 0.9em;
	-webkit-backface-visibility: hidden;
}
.know-us-details #indexDefaultMainContent {
    margin: 0;
    padding: 0;
}
.our-services-details .custom-block i {
    font-size: 40px;
}
.our-services-details > div {
    border-left: 1px solid #151b23;
    text-align: center;
}
.our-services-details > div:first-child {border:medium none}
.our-services-details .custom-block {
    color: #ffffff;
    display: inline-block;
    padding: 10px;
    text-align: center;
}
.our-services-details .block-content {
    display: inline-block;
}
.our-services-details .custom-block .block-title {
    font-size: 16px;
	text-transform:uppercase;
	display:block;
	text-align:left;
}
.our-services-details .custom-block .block-text {
    font-size: 14px;
}
.navbar .nav > li.tab_active > a:after, .navbar .nav > li:hover > a:after, .navbar .nav > li > a:active:after {
    border-style: solid;
    border-width: 0 7px 6px;
    bottom: 3px;
    content: " ";
    display: block;
    height: 0;
    left: 50%;
    margin: 0 0 0 -7px;
    position: absolute;
    width: 0;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
#upcomingProducts .expected-date {
    display: block;
    float: left;
    margin: 1em 0 0;
    text-align: left;
    width: 100%;
}
.product-date {
    display: inline-block;
    text-align: left;
}
.about-us #indexDefaultMainContent > img {
    margin-bottom: 20px;
	-webkit-backface-visibility: hidden;
}
.know-us-details .fa {
    color: rgba(0, 0, 0, 0.3);
    float: left;
    margin-right: 15px;
    position: relative;
    top: -10px;
	transition: all 0.3s ease-in-out 0s;

		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
#indexDefaultMainContent > p.drop-cap:first-letter {
	line-height:23px;
}
.product_title .navNextPrevWrapper.centeredContent {
    display: inline-block;
    margin: 0 !important;
    position: absolute;
    right: 10px;
    top: 15px;
    width: auto;
}
.navNextPrevList {
    display: inline-block;
    list-style-type: none;
    margin: 0;
	line-height:0;
    white-space: nowrap;
}
.navNextPrevList > a {
    font-size: 1.2em;
}
.addtocart-info .cart_quantity span.cssButton.button_sold_out, .addtocart-info .cart_quantity span.cssButtonHover.button_sold_out.button_sold_outHover, .cssButton.button_sold_out_sm, .cssButtonHover.button_sold_out_sm.button_sold_out_smHover {
    background: none repeat scroll 0 0 #FF0000;
	padding: 7px;
    font-size: 14px;
    position: relative;
	color:#FFFFFF;
	text-align:center;
}
/*--Extra Box--*/
.extrabox .arrow-down {
    border-left: 22px solid rgba(0, 0, 0, 0);
    border-right: 22px solid rgba(0, 0, 0, 0);
    border-top: 22px solid #191919;
    bottom: -22px;
    color: #FFFFFF;
    cursor: pointer;
    height: 0;
    position: absolute;
    right: 70px;
    transition: all 1s ease 0s;
    width: 0;
    z-index: 9999;
}
.extrabox .arrow-down i {
    bottom: 6px;
    position: absolute;
    right: -4px;
}
.extrabox .arrow-down.opened {
    border-bottom: 22px solid #FFFFFF;
    border-top: 0 none;
    bottom: 0;
    color: #191919;
    transition: all 0.5s ease 0s;
}
.extrabox .arrow-down.opened i {
    bottom: -20px;
}
.arrow-down i {
	margin:0;
}
.extrabox {
    background: url("../images/bgpatterns/wrapper.png") no-repeat scroll center top #2B2B2B;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 999;
	display:none;
	padding:30px 0;
}
#contactForm-widget #senderName:focus, #contactForm-widget #senderEmail:focus, #contactForm-widget #message:focus {
    border: 1px solid #696969;
    box-shadow: none;
}
#contactForm-widget #senderName, #contactForm-widget #senderEmail {
    -moz-box-sizing: border-box;
    background: none repeat scroll 0 0 #222222;
    border: 1px solid #2C2C2C;
    border-radius: 3px;
    color: #AAAAAA;
    display: block;
    font-size: 11px;
    height: 40px;
    line-height: 24px;
    padding: 0 10px;
    transition: all 0.3s ease 0s;
    width: 100%;
	float:left;
	margin-bottom:10px;
}
#contactForm-widget #message {
    -moz-box-sizing: border-box;
    background: none repeat scroll 0 0 #222222;
    border: 1px solid #2C2C2C;
    border-radius: 3px;
    color: #AAAAAA;
    display: block;
    font-size: 11px;
    padding: 16px 10px;
    transition: all 0.3s ease 0s;
    width: 100%;
	float:left;
	margin-bottom:15px;
}
#contactForm-widget .col-lg-6:first-child {
    padding: 0;
}
#contactForm-widget .col-lg-6.message {
    padding-right: 0;
}
.extra-content header h4 {
    border-bottom: 1px solid rgba(126, 126, 126, 0.3);
    color: #AAAAAA;
    margin:0 0 20px;
    padding: 0 0 15px;
}
#map1 a {
    display: none;
}
.fieldtrue {
    border: 1px solid #1ABC5B !important;
}
.fielderror {
    border-color: #FF0000 !important;
}
.fieldtrue {
    border: 1px solid #1ABC5B !important;
}
.fielderror {
    border-color: #FF0000 !important;
}
#contactForm-widget span {
    color: #FF0000;
	margin-left:20px;
}
.widget-content .alert-box.alert-success > p {
    margin: 0;
}

/*Tab CSS */
ul.tabs{list-style-type:none;}ul.tabs li{display:inline;margin:0}div.tabcontent{display:block}div.tabcontents{background:none repeat scroll 0 0 #F9F9F9;box-shadow:0 8px 5px -7px rgba(0, 0, 0, 0.4);width:100%}div.tabcontents>div{padding:20px}

/*IE CSS*/
*+html .grid-32{width:30%}*+html .grid-16{width:13.666%}*+html .grid-72{width:70%}*+html .grid-24{width:22%}*+html .grid-88{width:89.60%}*+html .grid-8{width:6.30%}*+html .nspCol3{width:32.3%}*+html #centercontent-wrapper{right:0 !important;position:relative !important}*+html #contentarea-wrapper .grid-16{width:16.666% !important;float:left !important}*+html #right-column{position:relative !important;right:0}*+html #productListing{float:none}*+html #contentarea-wrapper #left-column{vertical-align:top !important}*+html #centercontent-wrapper{position:relative !important;left:17%}*+html #left-column{position:relative !important;left:-68% !important}*+html .subcontent-wrapper{position:relative !important}*+html #breadcrumb-wrapper .breadcrumb-title{float:none;width:0}*+html #breadcrumb-wrapper{padding-bottom:30px}*+html .productListing-data{float:left !important;width:auto !important}*+html #shoppingCartDefault .buttonRow,*+html #createAcctSuccess .buttonRow,*+html #addressBookDefault .buttonRow,*+html #checkoutShipping .buttonRow,*+html #checkoutPayment .buttonRow,*+html #checkoutConfirmDefault .buttonRow{float:left;margin-right:3px}*+html input[type="radio"],*+html input[type="checkbox"]{margin-top:0;margin-bottom:0}*+html #logo-wrapper{width:21.9% !important}*+html textarea:focus,*+html input[type="text"]:focus,*+html input[type="password"]:focus,*+html input[type="datetime"]:focus,*+html input[type="datetime-local"]:focus,*+html input[type="date"]:focus,*+html input[type="month"]:focus,*+html input[type="time"]:focus,*+html input[type="week"]:focus,*+html input[type="number"]:focus,*+html input[type="email"]:focus,*+html input[type="url"]:focus,*+html input[type="search"]:focus,*+html input[type="tel"]:focus,*+html input[type="color"]:focus,*+html .uneditable-input:focus{outline:thin dotted}*+html .dropdown-menu{border-right-width:2px;border-bottom-width:2px}*+html .dropdown-toggle{margin-bottom:-3px}*+html .dropdown-menu .divider{width:100%;margin:-5px 0 5px}*+html .open{z-index:1000}*+html .btn{display:inline;margin-left:.3em;line-height:20px;background-color:#e6e6e6;border:0}*+html .btn:hover,*+html .btn:active,*+html .btn.active,*+html .btn.disabled,*+html .btn[disabled]{background-color:#d9d9d9}*+html .btn:active,*+html .btn.active{background-color:#ccc}*+html .btn:first-child{margin-left:0}*+html .btn:hover{background-color:#d9d9d9}
/*
    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;-webkit-overflow-scrolling:touch}#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;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000}#colorbox{outline:0}#cboxTopLeft{width:14px;height:14px;background:url(../images/controls.png) no-repeat 0 0}#cboxTopCenter{height:14px;background:url(../images/border.png) repeat-x top left}#cboxTopRight{width:14px;height:14px;background:url(../images/controls.png) no-repeat -36px 0}#cboxBottomLeft{width:14px;height:43px;background:url(../images/controls.png) no-repeat 0 -32px}#cboxBottomCenter{height:43px;background:url(../images/border.png) repeat-x bottom left}#cboxBottomRight{width:14px;height:43px;background:url(../images/controls.png) no-repeat -36px -32px}#cboxMiddleLeft{width:14px;background:url(../images/controls.png) repeat-y -175px 0}#cboxMiddleRight{width:14px;background:url(../images/controls.png) repeat-y -211px 0}#cboxContent{background:#fff;overflow:visible}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{margin-bottom:5px}#cboxLoadingOverlay{background:url(../images/loading_background.png) no-repeat center center}#cboxLoadingGraphic{background:url(../images/loading.gif) no-repeat center center}#cboxTitle{position:absolute;bottom:-25px;left:0;text-align:center;width:100%;font-weight:bold;color:#7c7c7c}#cboxCurrent{position:absolute;bottom:-25px;left:58px;font-weight:bold;color:#7c7c7c}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;position:absolute;bottom:-29px;background:url(../images/controls.png) no-repeat 0 0;width:23px !important;height:23px;min-height:0;text-indent:-9999px}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxPrevious{left:0;background-position:-51px -25px}#cboxPrevious:hover{background-position:-51px 0}#cboxNext{left:27px;background-position:-75px -25px}#cboxNext:hover{background-position:-75px 0}#cboxClose{right:0;background-position:-100px -25px}#cboxClose:hover{background-position:-100px 0}.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0;right:27px}.cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0}.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px;right:27px}.cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0}

/*! Menucool Custom Color Picker v2012.8.30. http://www.menucool.com/color-picker */

div#colorpicker
{
    width: 191px;
    height: 164px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom:0;
    padding-right:0;
    position: absolute;
    top: 22px;
    left: 0px;
    background-color: #EEE;
    border: 1px solid #BBB;
    display: none;
    z-index: 200;
}
div#colorpicker div
{
    float: left;
    padding:0;
}
div#colorpicker div.clear
{
    float: none;
    clear: both;
    border: 0;
    overflow:hidden;
    height:0;
    font-size:0;
}
        
div#colorpicker div#colorContainer
{
    float: left;
    border:0;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    cursor: pointer;
}
div#colorContainer div
{
    border:0;
    border-top: solid 1px black;
    border-left: solid 1px black;
    width:9px;
    height:9px;
    overflow:hidden;/*for IE6*/
}
div#colorpicker div#hexBox, div#colorpicker div#bgBox
{
    border: 1px solid #999;
    font: normal 9px verdana;
    height: 16px;
    margin-bottom: 4px;
}
div#colorpicker div#hexBox
{
    width: 60px;
    padding-left: 3px;
    color: Black;
    line-height: 16px;
}
div#colorpicker div#bgBox
{
    width: 110px;
    margin-left: 4px;
    clear: right;
}

div.transChooser
{
    background: transparent url("../images/transChooser.gif");
}     
span.colorChooser
{
    width: 37px;
    height: 20px;
    background: transparent url("../images/colorChooser.gif");
    margin-left: 1px;
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
    overflow: visible;
    vertical-align: middle;
    z-index:1;
}

/* New CSS 12-04 */
.header-container .header .header-top {
   	border-bottom:1px solid rgba(0, 0, 0, 0.05);
	background:none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
    line-height: 40px;
    list-style: none outside none;
}
.header-container .header .language-switcher, .header-container .header .currency_top {
    float: left;
}
.header-container .header .language-switcher a, .header-container .header .currency_top a {
	text-transform:uppercase;
	background:none repeat scroll 0 0 rgba(0, 0, 0, 0.1);
	padding:3px 7px;
	font-size:85%;
	margin-right:2px;
}
.header-container .header a {
    font-size: 100%;
    outline: medium none;
}
.header-container .header a, .greeting{
	color: #FAFAFA;
}
.header-container .header a:hover, .item .product_image .hover_info a:active {
	color: #FAFAFA;
}
.greeting {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    padding-right: 15px;
}
.header-container .header .header-top ul.links {
    float: right;
    margin: 0;
    padding: 0;
}
.header-container .header .header-top .header-top-right ul.links li.first {
    padding-left: 0;
}
.header-container .header .header-top ul.links li {
    float: left;
    margin: 0;
    outline: medium none;
}
.header-container .header .header-top ul.links li a {
    display: block;
    font-size: 100%;
    height: 42px;
    line-height: 38px;
    outline: medium none;
    padding: 0 15px;
    text-decoration: none;
    transition: all 0.25s ease 0s;
}
a {
    outline: medium none;
    text-decoration: none;
    transition: color 450ms ease-in-out 0s, background-color 450ms ease-in-out 0s;
}
ul, ol {
    list-style: none outside none;
}
.header-container .header .header-top .header-top-right ul.links li.last a {
    background-position: 0 -148px;
    background-color:rgba(0, 0, 0, 0.1);
}
.header .header-det {
    padding: 30px 0;
    position: relative;
}
.header .logo {
    margin: 0;
    outline: medium none;
    text-align: center;
}
.logo img {
    height: auto;
    width: 400px;
}
.form-search {
    position: relative;
    width: 100%;
    margin: 0;
}
.input-text {
    font-size: 1em;
    color: #ddd;
    border-width: 0;
    background: transparent;
}
.form-search input[type="text"] {
    border: medium none;
    box-shadow: none;
    margin: 0;
    min-height: 0;
    outline: medium none;
    padding: 2px 0 3px 1em;
    width: 90%;
}
.header .form-search .input-text {
    background: url("../images/search.png") no-repeat scroll 8px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    float: left;
	line-height:16px;
    font-size: 0.95em;
    margin: 15px 0px;
    padding: 6px 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: text;
    padding: 11px 14px 11px 34px;
    width: 100%;
	color:#FAFAFA !important;	
	transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
}
.header .header-left-wrapper.input-group {
    width: 85%;
}
.header-container .header .resultsContainer a:hover, .header-container .header .resultsContainer a:active, .header-container .header .resultsContainer a:focus {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
}
/*Top Header*/
.header-container .header .header-content .logo > a:hover {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.header .form-search .button {
    display: none;
}
.block-header label {
    color: #FAFAFA;
    font-weight: normal;
    margin: 0;
}
.header .block-header .language-switcher {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    margin-right: 14px;
    padding-right: 14px;
}
.header .block-header .language-switcher, .header .block-header .currency_top {
    display: inline-block;
}
.greeting_msg {
    display: inline-block;
    margin: 26px 0;
    width: 100%;
	text-align:right;
}
.greeting_msg > a {
    padding: 3px 7px;
	background:none repeat scroll 0 0 rgba(0, 0, 0, 0.1);
}
/*Nav*/
.header-container .header #nav > li > a {
	font-size:1.05em;
	text-transform:uppercase;
}
.header-container .header #nav li ul a {
	font-size:100%;
	text-transform:none;
	border-bottom: 1px solid #F2F2F2;
	background-color:#FFFFFF;
	word-wrap: break-word;
}
.header-container #nav li ul li a.parent {
    background: url("../images/icons/cat_bullet-1.png") no-repeat scroll right 15px center #FFFFFF;
}
.nav-maincontainer {
    padding: 0;
}
/* Desktop menu must always be visible - only apply on desktop screens */
@media (min-width: 768px) {
    #cssmenu { display: block !important; visibility: visible !important; height: auto !important; overflow: visible !important; }
    #cssmenu ul { display: block !important; visibility: visible !important; height: auto !important; }
    #cssmenu > ul { display: block !important; visibility: visible !important; height: auto !important; }
    #cssmenu #nav { display: block !important; visibility: visible !important; height: auto !important; }
    #cssmenu ul#nav { display: block !important; visibility: visible !important; height: auto !important; }
    #cssmenu .nav { display: block !important; visibility: visible !important; }
    .nav-maincontainer { display: block !important; height: auto !important; }
    .nav-maincontainer .nav-container { display: block !important; height: auto !important; }
    
    /* Force menu items to be visible on desktop */
    #cssmenu ul li { display: list-item !important; height: auto !important; }
    #cssmenu ul li a { display: block !important; height: auto !important; padding: 10px 15px !important; }
}

/* CRITICAL: Mobile menu defaults */
@media (max-width: 1199px) {
    /* Hide menu by default (no !important so JS/CSS can override) */
    #cssmenu > ul#nav { display: none; }
    #cssmenu ul#nav { display: none; }
    #cssmenu > ul { display: none; }
    #cssmenu ul { display: none; }

    /* Show when template toggles container open */
    #cssmenu.asrm-custom-nav.open > ul { display: block; }

    /* Hide legacy menu-button to prevent duplicates */
    #cssmenu.small-screen #menu-button { display: none; }
    #cssmenu #menu-button { display: none; }

    /* Remove CSS-generated fallback label to avoid duplicate MAIN MENU */
    #cssmenu:not(.small-screen):before { content: none; display: none; }
}

/* Additional safety for small phones */
@media (max-width: 767px) {
    #cssmenu ul#nav { display: none; }
    #cssmenu > ul { display: none; }
}
.header-container #nav > li.tab_active > a, .header-container #nav > li:hover > a, .header-container #nav > li > a:active, .header-container #nav li a {
	color:#FAFAFA;
}
.header-container #nav li ul a:hover {
	background-color:#FFFFFF;
}
/* Remove decorative icons from desktop menu items */
ul.nav-child .submenu > a,
.header-container #nav li ul li a.parent {
	background: none !important;
	background-image: none !important;
}
/* Slideshow */
.slideshow-container, .main-breadcrumb {
    background: url("../images/bgpatterns/overlay1.png") repeat scroll 0 0 #F5F5F5;
	box-shadow:0 5px 15px -15px inset;
	padding:30px 0;
}
.main-breadcrumb {
    border-bottom: 1px dashed #E9E9E9;
	padding: 30px 0;
}
.bx-viewport > ul {
    padding: 0;
}
.top-custom-block {
    background: none repeat scroll 0 0 #F9F9F9;
    border: 1px dashed #E9E9E9;
    margin: 0 0 20px;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.brands-wrapper .bx-wrapper .bx-prev, #additionalimages-slider .owl-controls .owl-prev {
	left: 0;
	background: url("../images/brands_slider_arrows.png") no-repeat scroll 100% 0% #CCCCCC;
}
.brands-wrapper .bx-wrapper .bx-next, #additionalimages-slider .owl-controls .owl-next {
	right: 0;
	background: url("../images/brands_slider_arrows.png") no-repeat scroll 0% 100% #CCCCCC;
}
.brands-wrapper .bx-wrapper .bx-controls-direction a, #additionalimages-slider .owl-controls .owl-prev, #additionalimages-slider .owl-controls .owl-next {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 22px;
	height: 22px;
	text-indent: -9999px;
	z-index: 99;
}
#additionalimages-slider .owl-controls .owl-prev, #additionalimages-slider .owl-controls .owl-next {
	margin-top:-10px;
}
.brands-wrapper, .category-slideshow-wrapper {
    padding: 30px 0;
	background:none repeat scroll 0 0 #F3F3F3;
}
.category-slideshow-wrapper {
	background:none repeat scroll 0 0 #FFFFFF;
}
.brands-wrapper h2, .category-slideshow-wrapper h2, .box_heading h2 {
	margin: 0;
    display: inline-block;
    margin: 0;
    padding: 10px;
	font-size:1.2em;
	text-transform:uppercase;
	position:relative;
	background:#FFFFFF;
}
.brands-wrapper h2 {
    background: none repeat scroll 0 0 #f3f3f3;
}
#indexCategories .box_heading h2, #indexProductList .box_heading h2 {
	font-size:1.1em;
}
.brands-wrapper header, .category-slideshow-wrapper header, .box_heading header {
    text-align: left;
	margin:0 0 30px;
	position:relative;
}
.brands-wrapper header:before, .category-slideshow-wrapper header:before, .box_heading header:before {
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
}
.footer-top-wrapper {
    padding: 30px 0 20px;
}
/* Modern footer refresh */
.footer-wrapper.footer-modern {
    background: #0f141b;
    color: #cfd6df;
}
.footer-wrapper.footer-modern a { color: #e6edf6; }
.footer-wrapper.footer-modern a:hover { color: #8ab4ff; text-decoration: none; }
.footer-wrapper.footer-modern #footer-2 h2,
.footer-wrapper.footer-modern #footer-3 h2 {
    color: #e6edf6;
    letter-spacing: .02em;
}
.footer-wrapper.footer-modern #footer-2 { border-bottom-color: #1c2633; }
.footer-wrapper.footer-modern .footer-list,
.footer-wrapper.footer-modern #footer-2 ul { list-style:none; margin:0; padding:0; }
.footer-wrapper.footer-modern #footer-2 ul li { margin:6px 0; }
.footer-wrapper .contact-item { display:flex; align-items:flex-start; gap:10px; margin:8px 0; }
.footer-wrapper .contact-item i { opacity:.75; }

/* Payment/social row spacing */
.footer-wrapper .social-wrapper { margin-top: 10px; }
.footer-wrapper .payment-row { margin-top: 14px; opacity:.9; }

/* Back to top button */
#w2b-StoTop.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 999;
    display: none;
    width: 48px;
    height: 48px;
    background: #1f6feb;
    color: #fff;
    padding: 0;
    border-radius: 999px;
    font-size: 0; /* hide text, keep aria-label accessible */
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0,0,0,.28);
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease, background-color .15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#w2b-StoTop.back-to-top::before{
    content: "\2191"; /* up arrow */
    font-size: 22px;
    line-height: 1;
}
#w2b-StoTop.back-to-top:hover { transform: translateY(-2px); box-shadow:0 12px 28px rgba(0,0,0,.32); background:#1557c0; }
#w2b-StoTop.back-to-top.show { display: inline-block; opacity: 1; }

/* Column spacing & readability */
.footer-wrapper .container .row > [class*="col-"] { margin-bottom: 22px; }
.footer-wrapper .muted { color:#9aa4af; }

@media (min-width: 992px){
  .footer-wrapper .container .row > [class*="col-"] { margin-bottom: 0; }
}
.newsletter h2, .social h2, .payment h2 {
	color: #FAFAFA;
}
/*News Letter*/
.newsletter #mc_embed_signup label {
    font-size: 1.5em;
    font-weight: normal;
    line-height: 75px;
    padding-bottom: 30px;
	display:inline-block;
}
#mc-embedded-subscribe-form > p {
    padding-bottom: 15px;
}
.footer-1, #footer-2 {
	padding-bottom:30px;
	margin-bottom:30px;
	border-bottom:1px solid #151b23;	
}
#footer-3 {padding-bottom:30px}
.footer-wrapper #footer-2 h2, .footer-wrapper #footer-3 h2 {
 	color: #fff;
    font-size: 16px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.footer-v3-container .footer-wrapper .footer-1, .footer-v3-container .footer-wrapper #footer-2, .footer-v3-container .footer-wrapper #footer-3 {
    padding: 30px;
}
.footer-v3-container .footer-wrapper {padding: 0}
.footer-v3-container .footer-bottom #footer-2, .footer-v3-container .footer-bottom .footer-1 {margin-bottom:0}
.footer-wrapper #footer-2 h2 {margin: 0 0 10px}
.footer-wrapper #footer-2 h2:after, .footer-wrapper #footer-3 h2:after {
 	background: none repeat scroll 0 0 #fff;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 50px;
}
.footer-wrapper .newsletter h2 {
    border-bottom: medium none;
	padding: 0 0 30px;
	font-size:18px;
	text-transform:uppercase;
	margin: 0;
}
.newsletter #mc_embed_signup input.email {
	background: none repeat scroll 0 0 #FFFFFF;
    color: #404040;
    display: block;
    float: left;
    margin: 0;
    min-width: 130px;
    min-height: 39px;
	padding: 15px 0;
    text-indent: 15px;
    width: 70%;
}
.newsletter #mc_embed_signup input.button, #contactForm-widget input[type="submit"] {
    display: block;
    float: left;
    margin: 0;
    min-width: 90px;
	min-height:39px;
    width: 100% !important;
	border-bottom:3px solid rgba(0, 0, 0, 0.2);
	line-height: inherit;
	height:auto;
	padding: 9px 15px;
	font-weight:normal;
	border-radius:0;
	background-color: rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.newsletter #mc_embed_signup input.button {
	border-bottom:medium none;
	padding:15px 30px;
}
#contactForm-widget input[type="submit"] {
	width:auto !important;
	border-top:none;
	border-left:none;
	border-right:none;
	color:#FAFAFA;
}
.newsletter .fa {
    color: rgba(0, 0, 0, 0.3);
    float: left;
    left: 10px;
    margin-right: 30px;
    position: relative;
    transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top:5px;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
	-webkit-backface-visibility: hidden;
}
.footer-wrapper .newsletter {
	text-align:center;
}
.newsletter #mc_embed_signup .clear {
    clear: none;
    display: inline-block;
}
.newsletter #mc_embed_signup input {
	border:none;	
}
.newsletter #mc_embed_signup form {
    padding: 0 0 0 14.5% !important;
}
.newsletter > header, .social > header, .payment > header {
    margin: 0 0 20px;
    width: 100%;
	text-align:left;
	float:left;
}
/*Social Wrapper*/
.social-wrapper {
    display: inline-block;
    text-align: left;
    width: 100%;
}
.social_bookmarks {
    display: inline-block;
    margin: 0;
	padding:0 ;
    text-align: left;
}
.social_bookmarks li {
    padding: 0 5px 5px 0;
	float:left;
}
.social_bookmarks li a {
    border: 1px solid rgba(0, 0, 0, 0.2);
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
    display: block;
    float: left;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease-in-out 0s !important;
	-moz-transition: all 0.3s ease-in-out 0s !important;
		-webkit-transition: all 0.3s ease-in-out 0s !important;
		-o-transition: all 0.3s ease-in-out 0s !important;
		-ms-transition: all 0.3s ease-in-out 0s !important;
    width: 40px;
}
ul.social_bookmarks .fa {
    margin: 0;
}
.social_bookmarks li.facebook a {
	border: 1px solid #2A5BB6;
	background: none repeat scroll 0 0 #2A5BB6;
}
.social_bookmarks li.twitter a {
	border: 1px solid #12CBED;
	background: none repeat scroll 0 0 #12CBED;
}
.social_bookmarks li.pinterest a {
	border: 1px solid #C11B1B;
	background: none repeat scroll 0 0 #C11B1B;
}
.social_bookmarks li.google_plus a {
	border: 1px solid #DD4B39;
	background: none repeat scroll 0 0 #DD4B39;
}
.social_bookmarks li.tumblr a {
	border: 1px solid #3F729B;
	background: none repeat scroll 0 0 #3F729B;
}
.social_bookmarks li.linkedin a {
	border: 1px solid #007FB1;
	background: none repeat scroll 0 0 #007FB1;
}
.social_bookmarks li.youtube a {
	border: 1px solid #D63030;
	background: none repeat scroll 0 0 #D63030;
}
.social_bookmarks li a:hover {
	border: 1px solid rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
	transition: all 0.3s ease-in-out 0s !important;
	-moz-transition: all 0.3s ease-in-out 0s !important;
		-webkit-transition: all 0.3s ease-in-out 0s !important;
		-o-transition: all 0.3s ease-in-out 0s !important;
		-ms-transition: all 0.3s ease-in-out 0s !important;
}

/*On Hover*/
.hover_info {
    left: 0;
    position: relative;
    bottom: -20px;
    width: 100%;
}
.hover_info:hover h1 {
    right: 0;
    transition-delay: 250ms;
	-moz-transition-delay: 250ms;
		-webkit-transition-delay: 250ms;
		-o-transition-delay: 250ms;
		-ms-transition-delay: 250ms;
}
.hover_info h1 {
    color: #fafafa;
    font-size: 1.2em;
    right: -100%;
    padding: 10px 20px;
    position: absolute;
    top: 0;
	margin:0;
    transition: right 200ms linear 0s;
	-moz-transition: right 200ms linear 0s;
		-webkit-transition: right 200ms linear 0s;
		-o-transition: right 200ms linear 0s;
		-ms-transition: right 200ms linear 0s;
}
.hover_info:hover p {
    opacity: 1;
    transition-delay: 300ms;
	-moz-transition-delay: 300ms;
		-webkit-transition-delay: 300ms;
		-o-transition-delay: 300ms;
		-ms-transition-delay: 300ms;
}
.hover_info p {
    color: #FFFFFF;
    font-size: 1.1em;
    left: 5%;
    line-height: 1.4;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 80px;
    transition: opacity 200ms linear 0s;
	-moz-transition: opacity 200ms linear 0s;
		-webkit-transition: opacity 200ms linear 0s;
		-o-transition: opacity 200ms linear 0s;
		-ms-transition: opacity 200ms linear 0s;
    width: 90%;
}
.item .product_image .hover_info p, .centerBoxContentsAlsoPurch .product_image .hover_info p, .specialsListBoxContents .product_image .hover_info p {
	top:40px;
	font-size:1em;
}
.hover_info:hover a {
    left: 0;
    transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
	-moz-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-webkit-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-o-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-ms-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
}
.hover_info a:hover, .hover_info a:visited, .hover_info a:active {
	color:#FAFAFA;
}
.hover_info a {
    background: none repeat scroll 0 0 rgba(0,0,0,0.5);
    bottom: 0;
    color: #FAFAFA;
    font-size: 1em;
    padding: 10px 20px;
    position: absolute;
    left: -100%;
}
.owl-item .product_image .hover_info .zoom-button a, .owl-item .product_image .hover_info .detailbutton-wrapper a, .specialsListBoxContents .product_image .hover_info .zoom-button a, .specialsListBoxContents .product_image .hover_info  .detailbutton-wrapper a {
	background: none repeat scroll 0 0 #FFFFFF;
    bottom: 30px;
    font-size: 12px;
    height: 35px;
	width:35px;
    left: 0;
    line-height: 35px;
    opacity: 0;
    position: absolute;
	padding: 0;
}
.item:hover .product_image .hover_info .zoom-button a, .item:hover .product_image .hover_info .detailbutton-wrapper a, .specialsListBoxContents:hover .product_image .hover_info .detailbutton-wrapper a, .specialsListBoxContents:hover .product_image .hover_info .zoom-button a {
	opacity:1;
	left:34%;
	transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
	-moz-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-webkit-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-o-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-ms-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
}
.homepage_v3 .item:hover .product_image .hover_info .zoom-button a, .homepage_v3 .item:hover .product_image .hover_info .detailbutton-wrapper a, .homepage_v3 .specialsListBoxContents:hover .product_image .hover_info .detailbutton-wrapper a, .homepage_v3 .specialsListBoxContents:hover .product_image .hover_info .zoom-button a {
	opacity:1;
	left:33%;
	transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
	-moz-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-webkit-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-o-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
		-ms-transition: left 200ms linear 700ms, color 0s ease 0s, background 200ms linear 0s;
}
.item:hover .product_image .hover_info .detailbutton-wrapper a, .specialsListBoxContents:hover .product_image .hover_info .detailbutton-wrapper a {
	left:51%;
}
.homepage_v3 .item:hover .product_image .hover_info .detailbutton-wrapper a, .homepage_v3 .specialsListBoxContents:hover .product_image .hover_info .detailbutton-wrapper a {
	left:51%;
}
.owl-item .product_image .hover_info a:hover, .specialsListBoxContents .product_image .hover_info a:hover {
	color:#FFFFFF;
}

/*Main Content*/
.main-top {
    padding: 30px 0;
}
.owl-carousel {
	overflow:hidden;
}
#indexCategories .box_heading, #indexProductList .box_heading {
	display:block;
}
.owl-pagination {
	display:none;
}
.brands .item > a > img {
    height: auto;
    width: 100%;
    max-height: 80px;
    object-fit: contain;
}
.brands .item {
    margin:5px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brands .item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
}
#main-slideshow .owl-buttons {
    opacity: 0.5;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
#main-slideshow:hover .owl-buttons {
    opacity: 1;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.centerBoxWrapper .owl-theme .owl-controls .owl-buttons div, #main-slideshow .owl-controls .owl-buttons div, .brands-slider .owl-controls .owl-buttons div {
    background: url("../images/icons/item-slider.png") no-repeat scroll 100% 100% #CCCCCC;
    cursor: pointer;
    height: 60px;
	position: absolute;
	top: 42%;
	text-indent: -9999px;
    overflow: hidden;
    width: 50px;
	outline: 0;
    z-index: 99;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.brands-slider .owl-controls .owl-buttons div {
	background: url("../images/icons/item-slider.png") no-repeat scroll 94% 93% #CCCCCC;
	height: 50px;
	width: 40px;
	top:29%;
}
.centerBoxWrapper .owl-theme .owl-controls .owl-buttons div.owl-next, .brands-slider .owl-controls .owl-buttons div.owl-next, #main-slideshow .owl-controls .owl-buttons div.owl-next {
    right: 0%;
	background-position:100% 0;
}
.brands-slider .owl-controls .owl-buttons div.owl-next {
	background-position: 90% 8%;
}
.centerBoxWrapper .owl-theme .owl-controls .owl-buttons .disabled, .centerBoxWrapper .owl-theme .owl-controls .owl-buttons .disabled:hover, #additionalimages-slider .owl-controls .owl-prev.disabled, #additionalimages-slider .owl-controls .owl-next.disabled, #additionalimages-slider .owl-controls .owl-prev.disabled:hover, #additionalimages-slider .owl-controls .owl-next.disabled:hover, .brands-slider .owl-controls .owl-next.disabled, .brands-slider .owl-controls .owl-next.disabled:hover, .brands-slider .owl-controls .owl-prev.disabled, .brands-slider .owl-controls .owl-prev.disabled:hover {
    cursor: default;
    background-color:#E9E9E9;
}
.custom-banner-container {
    background: none repeat scroll 0 0 #F9F9F9;
    border-bottom: 1px dashed #E9E9E9;
	border-top: 1px dashed #E9E9E9;
    padding: 30px 0;
}
.custom-banner-container .top-banner {
	position: relative;
}
.custom-banner-container .top-banner:hover:before {
    transform: scale(1);
}
.custom-banner-container .top-banner:hover:after {
    transform: scale(1);
}
.custom-banner-container .top-banner:before {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0);
    transition: all 0.5s ease-out 0s;
}
.custom-banner-container .top-banner:after {
    background: rgba(0, 0, 0, 0) url("../images/plus-img.png") no-repeat scroll 0 0;
    bottom: 0;
    content: "";
    display: block;
    height: 60px;
    left: 0;
    margin: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0);
    transition: all 0.5s ease-out 0s;
    width: 60px;
}
.main-top .main .custom-banner-container {
    background: none;
	border: none;
}
.custom-banner-container .custom-banner-image img {
	width:100%;
	height:auto;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.custom-banner-container .custom-banner-image a {
    display: block;
    overflow: hidden;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.top-banner h3 {
    font-weight: 100;
    margin: 20px 0 12px;
	text-align: center;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.top-banner p {
    margin-bottom: 20px;
	text-align: center;
}

/*Custom-content*/
.custom-content-wrapper {
    padding: 30px 0;
	background:#2B2B2B;
}
.bottom-banner-wrapper {
	padding:30px 0;
	background: none repeat scroll 0 0 #F9F9F9;
    border-bottom: 1px dashed #E9E9E9;
}
.bottom-banner img {
    background: none repeat scroll 0 0 #F9F9F9;
}
/*Footer*/
.footer-wrapper {
    background: #2B2B2B;
    color: #AAAAAA;
    font-size: 100%;
}
.aboutus_address, .aboutus_mail, .aboutus_phone, .aboutus_fax, .aboutus_skype {
    float: left;
    padding-bottom: 10px;
    text-align: left;
    width: 100%;
}
.footer-wrapper .contact-us li:last-child {
    padding: 0;
}
.mail > a {
    color: #AAAAAA;
}
.footer-wrapper {
    padding: 30px 0 0;
}
.footer-wrapper header {
    margin: 0 0 25px;
    width: 100%;
}
.footer-wrapper ul {
    padding: 0;
}
.extra-links > li {
    line-height: 30px;
    width: 100%;
}
.extra-links li a {
    color: #AAAAAA;
    display: inline-block;
    padding: 5px 0;
    width: 100%;
}
.extra-links li a:last-child{padding:5px 0 0}
.extra-links li a:hover {
	color: #FFFFFF;
}
#footer-2 .about-us-container, #footer-2 .contact-us ul {padding-top: 10px;}
.contact-us .fa, .about-us .address .fa {
    border: 1px solid #AAAAAA;
    border-radius: 0%;
    color: #AAAAAA;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
	float:left;
	margin-right: 15px;
}
.contact-us ul li p {
    display: inline-block;
    width: 75%;
}
.contact-us ul li:last-child > p, #footer-2 .about-us-container .address {
    margin-bottom: 0;
}
.contact-us ul li:hover .fa, .about-us .address:hover .fa {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
.about-us-container div.address {
    float: left;
    margin: 10px 0 0;
    width: 100%;
}
.extra-links li a .fa {
    margin-right: -16px;
	line-height: inherit;
	opacity:0;
	transition:all 0.3s ease 0s;
}
.extra-links li a:hover .fa {
	margin-right:2px;
	opacity:1;
	transition:all 0.3s ease 0s;
}
.copyright {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}
.footer-v3-container .footer-wrapper .copyright {padding: 15px 30px}
.copyright-text > p {
    margin: 0;
	text-align: center;
}
.back-to-top {
    background: url("../images/totop_arrows.png") no-repeat scroll 0% 0% #E1E1E1;
    cursor: pointer;
    float: right;
    height: 45px;
    right: 20px;
	bottom:20px;
	position:fixed;
	color:#FFFFFF;
    width: 45px;
	padding:0;
	font-size:0;
	z-index:999;
}
/*Sticky Header*/
.sticky-header-wrapper {
    float: left;
    width: 100%;
	box-shadow:0 3px 3px -1px rgba(0, 0, 0, 0.1);
	position:fixed;
	top:0;
	left:0;
	z-index:9999999;
	display:none;
}
.sticky-header-wrapper .logo {
    margin: 12px 0;
    text-align: left;
}
.sticky-header-content .logo img {
    width: 180px;
}
.sticky-header-wrapper .custom_links.topbar_links {
    float: right;
    line-height: 30px;
    margin: 0;
}
.sticky-header-wrapper .top-search {
    float: left;
}
.sticky-header-wrapper .topbar_links a {
    float: right;
	color:#FFFFFF;
	margin:15px 1px;
	background:none repeat scroll 0 0 rgba(0, 0, 0, 0.1);
}
.topbar_links a {
    float: left;
    padding: 10px;
	line-height:22px;
}
.sticky-header-wrapper .topbar_links nav ul li {
	float:right;
	line-height:30px;
}
.sticky-header-wrapper .topbar_links nav ul li:hover {
	background:none;
}
.sticky-header-wrapper .custom_links.topbar_links ul {
    margin: 0;
}
.header .sticky-header-content .form-search .input-text {
	width:100%;
}
/*Product Info*/
.cart_quantity > input[type="text"] {
    float: left;
    font-size: 12px;
    height: 35px;
    margin: 0 0.8em 0 0;
    padding: 10px;
    text-align: center;
    width: 35px;
}
ul.tabs {
    margin-bottom: 30px;
    padding: 0;
    position: relative;
    text-align: left;
}
ul.tabs:before {
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
}
ul.tabs li a {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #E9E9E9;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1em;
    list-style: none outside none;
    margin: 0 10px 0 0;
    padding: 5px 8px;
    position: relative;
    text-transform: uppercase;
}
.product_info #productDetailsList, .product_info #productDetailsList li {
	margin:0;
}
#centercontent-wrapper header {
    margin: 0 0 30px;
    position: relative;
    text-align: left;
}
#centercontent-wrapper header:before {
	content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
}
#centercontent-wrapper header > h1, .checkout-steps {
	background: none repeat scroll 0 0 #FFFFFF;
    display: inline-block;
    margin: 0;
    padding: 10px;
    position: relative;
	font-size:1em;
	text-transform:uppercase;
	line-height:22px;
}
.checkout-steps, .current-step {
	border: 1px solid #E9E9E9;
	margin: 0 10px 0 0 !important;
	transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
}
#indexProductListCatDescription, #categoryDescription {
	margin-bottom:30px;
}
#categoryImgListing > img {
    height: auto;
    width: auto;
}

/*ToolTip CSS*/
/*.tooltip{
    position:absolute;
    z-index:1020;
    display:block;
    visibility:visible;
    padding:5px;
    font-size:11px;
    opacity:0;
    filter:alpha(opacity=0)
}
.tooltip.in{
    opacity:.8;
    filter:alpha(opacity=80)
}
.tooltip.top{
    margin-top:-2px
}
.tooltip.right{
    margin-left:2px
}
.tooltip.bottom{
    margin-top:2px
}
.tooltip.left{
    margin-left:-2px
}
.tooltip.top .tooltip-arrow{
    bottom:0;
    left:50%;
    margin-left:-5px;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-top:5px solid #4EB1BA
}
.tooltip.left .tooltip-arrow{
    top:50%;
    right:0;
    margin-top:-5px;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-left:5px solid #000
}
.tooltip.bottom .tooltip-arrow{
    top:0;
    left:50%;
    margin-left:-5px;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-bottom:5px solid #000
}
.tooltip.right .tooltip-arrow{
    top:50%;
    left:0;
    margin-top:-5px;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-right:5px solid #000
}
.tooltip-inner{
    max-width:200px;
    padding:3px 8px;
    color:#fff;
    text-align:center;
    text-decoration:none;
    background-color:#000;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px
}
.tooltip-arrow{
    position:absolute;
    width:0;
    height:0
}*/
/*Alert Box*/
.alert {
	font-weight:normal;
	border:none;
	display:inline-block;
	width:100%;
	margin:0 0 20px;
}
body > div.alert.alert-success.alert-dismissable {
    margin-bottom: 0;
}
button.close:hover {
	background:none;
}

.mousetrap {
width: 100% !important;
height: 100% !important;
}
/* CLOUD ZOOM CSS - DISABLED
.cloud-zoom img { width: 100%; height:auto; }
.cloud-zoom-lens {
	border: 1px solid #ccc;
	margin:-1px;
	background-color:#fff;	
	cursor:move;
}
.cloud-zoom-title {
position:absolute !important;
background-color:#000;
color:#FFFFFF;
padding:3px;
width:100%;
text-align:center;
font-weight:bold;
font-size:10px;
top:0px;
display:none;
}
.cloud-zoom-big {
	border:4px solid #ccc;
	overflow:hidden;
	background: #FFFFFF
}
.cloud-zoom-loading {
color:white;
background:#222;
padding:3px;
border:1px solid #000;
display:none;
}
CLOUD ZOOM CSS - DISABLED */ 

/*Login Page*/
.split-login .content {
    border-bottom: 0 none;
    border-style: solid solid none;
    border-width: 1px 1px 0;
    min-height: 270px;
    padding: 14px 21px;
	border-color:#E9E9E9;
	background:none repeat scroll 0 0 #F9F9F9;
}
.split-login .buttons-set {
    border-style: solid;
    border-width: 1px;
    margin: 0;
    padding: 8px 13px;
	display:inline-block;
	width:100%;
}
.split-login .buttons-set {
    background: none repeat scroll 0 0 #F9F9F9;
    border-color: #E9E9E9;
}
.split-set {
    border-top-style: solid;
    border-top-width: 1px;
    clear: both;
    margin: 4em 0 0;
    padding: 8px 0 0;
    text-align: right;
}
.split-set {
    border-top-color: #E9E9E9;
}
.split-login .content h4, .create-account-page .content h4, #contactUsDefault .content h4, #checkoutShipping .content h4, #checkoutPayment .content h4, #checkoutConfirmDefault .content h4, #checkoutSuccess .content h4, #accountDefault .content h4, #accountHistoryDefault .content h4, #accountHistInfo .content h4, #accountEditDefault .content h4, #addressBookDefault .content h4, #addressBookProcessDefault .content h4, #acctNewslettersDefault .content h4, #accountNotifications .content h4, #checkoutShipAddressDefault .content h4, #checkoutPayAddressDefault .content h4, #timeoutDefault .content h4, #createAcctSuccess .content h4, #gvFaqDefault .content h4, #reviewsDefault .content h4, #advSearchDefault .content h4 {
    border-bottom: 1px solid #E9E9E9;
    margin: 0 0 20px;
    padding: 0 0 10px;
	text-align:left;
}
#advSearchDefault .content h4 .forward {
    display: inline-block;
    float: right;
    font-size: 0.8em;
}
#advSearchDefault .content .row .select2-container {
    margin-right: 10px;
}
.split-login .create-account-button {
    display: inline-block;
    float: right;
}
.login-buttons .button_login {
    float: right;
}
.login-buttons > a {
    float: left;
	line-height:35px;
}
.split-login #loginForm label {
    float: left;
    font-weight: 400;
    position: relative;
    z-index: 0;
}
.split-login #loginForm input#login-email-address, .split-login #loginForm input#login-password, #accountEditDefault .content input[type="text"], #addressBookProcessDefault .content input[type="text"], #accountPassword .content input[type="text"], #accountPassword .content input[type="password"], #checkoutNewAddress .content input[type="text"], #gvFaqDefault .content input[type="text"], #discountcouponInfo .content input[type="text"], #advSearchDefault .content input[type="text"] {
    width: 100%;
	min-height:35px;
}
/*Create Account*/
.create-account-page .content, #passwordForgotten .content, #timeoutDefault .content, #contactUsDefault .content, #checkoutShipping .content, 
#checkoutPayment .content, #checkoutConfirmDefault .content, #checkoutSuccess .content, #accountDefault .content, #accountHistoryDefault .content, #accountHistInfo .content, #accountEditDefault .content, #addressBookDefault .content, #addressBookProcessDefault .content, #accountPassword .content, #acctNewslettersDefault .content, #accountNotifications .content, #checkoutShipAddressDefault .content, #checkoutPayAddressDefault .content, #createAcctSuccess .content, #gvFaqDefault .content, #discountcouponInfo .content, #reviewsInfoDefault .content, #reviewsDefault .content, #reviewsWrite .content, #advSearchDefault .content {
    padding: 14px 21px;
	border: 1px solid #E9E9E9;
	background:none repeat scroll 0 0 #F9F9F9;
	margin: 20px 0;
}
#accountNotifications > form > .content {
    margin-bottom: 0;
}
#loginDefault #loginForm .content {
    border-color: #E9E9E9;
    border-style: solid solid none;
    border-width: 1px 1px 0;
    padding: 20px;
    width: 100%;
	background:none repeat scroll 0 0 #F9F9F9;
}
.split-login .buttons-set, #loginDefault #loginForm .buttons-set {
    border-style: solid;
    border-width: 1px;
    display: inline-block;
    margin: 0;
    padding: 8px 13px;
    width: 100%;
	background:none repeat scroll 0 0 #F9F9F9;
}
.split-login .buttons-set, #loginDefault #loginForm .buttons-set {
    border-color: #e9e9e9;
}
#loginDefault #loginForm .buttons-set {
    padding: 15px 20px;
}
#passwordForgotten .content, #timeoutDefault .content {
	margin: 0;
}
#contactUsDefault .content, #reviewsDefault .content, #reviewsWrite .content {
	margin: 0 0 20px
}
.create-account-page .content label, #timeoutDefault .content label, #contactUsDefault .content label, #checkoutSuccess .content label, #accountEditDefault .content label, #addressBookProcessDefault .content label, #accountPassword .content label, #checkoutNewAddress .content label, #gvFaqDefault .content label, #discountcouponInfo .content label, #advSearchDefault .content label, #acctNewslettersDefault .content label {
	font-weight:400;
}
.create-account-page .content input.inputlogin, .create-account-page .content select.inputlogin, #passwordForgotten .content input#email-address, #timeoutDefault .content #login-email-address, #timeoutDefault .content #login-password, #contactUsDefault .content input#contactname, #contactUsDefault .content input#email-address, #contactUsDefault .content #enquiry, #advSearchDefault .content select, .create-account-page .statezone input.inputLabel.visibleField, #loginForm .login-password > input, #loginForm .login-emailaddress > input {
	width:100%;
	min-height:35px;
}
.create-account-page .content select, .create-account-page .content select.inputlogin, #addressBookProcessDefault .content select, #checkoutNewAddress .content select {
    width: 100% !important;
}
.create-account-page .content select, #addressBookProcessDefault .content select, #checkoutNewAddress .content select, #advSearchDefault .content select, #loginForm .login-password > input, #loginForm .login-emailaddress > input {
	height:35px;
	line-height:35px;
}
.create-account-page .submit-info .button_submit {
    float: right;
}
#createAcctDefault .create-account-page {
    margin-top: 20px;
}
#createAcctDefault .create-account-page .content, #loginDefault #createAccountForm .content {
    margin: 0 0 24px;
}
.create-account-page .newsletter-details .content {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border-color: #E9E9E9 -moz-use-text-color -moz-use-text-color;
    border-style: solid none none;
    border-width: 1px medium medium;
    padding: 20px 0 0;
}
#checkoutShipAddressDefault .row.address-entries address, #checkoutPayAddressDefault .row.address-entries address{
    margin: 10px 0 0 20px;
}
.create-account-page .newsletter-details-signup .newsletter.row .newsletter {
    width: auto;
}
.create-account-page .newsletter-details-signup .newsletter.row .submit-info {
    float: right;
    width: auto;
}
#accountHistoryDefault .buttonRow.forward.change_address.account-history-back {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}
/*Timeout*/
#timeoutDefault .timeoutbuttons {
	display:inline-block;
	width:100%;
}
#timeoutDefault .timeoutbuttons .button_login {
	float:right;
}
#timeoutDefault .timeoutbuttons a {
	float:left;
	margin:12px 0;
}
/*Contact Us*/
.contactus-sendbutton .button_send {
    float: right;
}
.contactus-sendbutton .alert-text {
    display: inline-block;
    float: left;
}
.contactus-sendbutton {
    margin-top: 20px;
}
/*Checkout*/
.shipping-methods > .col-lg-12{
    border-bottom: 1px solid #E9E9E9;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.ship-method {
    margin-top: 15px;
}
.shipping-methods:last-child > .col-lg-12 {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
}
#checkoutShipping .checkout-shipping-button .buttonRow.forward, #checkoutPayment .checkout-shipping-button .buttonRow.forward, #checkoutConfirmDefault .checkout-shipping-button .buttonRow.forward, #checkoutShipAddressDefault .checkout-shipping-button .buttonRow.forward, #checkoutPayAddressDefault .checkout-shipping-button .buttonRow.forward {
	float:right;
}
#checkoutConfirmDefault .payment-module .important {
    margin-top: 15px;
}
#checkoutConfirmDefault .buttonRow.forward {
	display:inline-block;
}
#checkoutShipping .buttonRow.back, #checkoutShipAddressDefault .buttonRow.back, #checkoutPayment .buttonRow.back, #checkoutPayAddressDefault .buttonRow.back, #checkoutConfirmDefault .checkout-shipping-button .buttonRow.back {
    float: left;
	line-height:45px;
	display:inline-block;
}
#checkoutSuccess .content .buttonRow.forward {
    display: inline-block;
    margin: 15px 0 0;
}
/*Account Pages*/
#accountDefault ul {
    padding: 0;
}
/*GV FAQ*/
#discountcouponInfo LABEL.inputLabel{
	width:auto;
	margin-top:4px;
	margin-right:10px;
}
#gvFaqDefault #gvFaqDefaultMainContent .gv_faq {
    padding: 0;
	margin:0;
}
#gvFaqDefault .content .button_redeem, #gvFaqDefaultContent,  #discountcouponInfo .content .button_send {
    margin: 10px 0 0;
}
#gvFaqDefault .alert h4 {
	margin:0;
}
/* Account History */
.user-orderhistory {
    border-bottom: 1px solid #E9E9E9;
    display: inline-block;
    line-height: 20px;
    margin: 0 0 30px;
    padding: 0 0 20px;
    width: 100%;
}
.user-orderhistory:last-child {
    border: medium none;
    margin: 0 0 5px;
    padding: 0;
}
.account_history .next-prev {
    margin: 0;
}
.user-orderhistory .change_address {
    margin-top: 10px;
	display:inline-block;
}
#accountHistInfo #orderTotals {
    padding: 10px;
}
#accountHistInfo tr.user-accounthistory {
    border-bottom: 1px solid #E9E9E9;
}
#orderTotals {
    display: inline-block;
    padding-right: 6em !important;
    text-align: right;
    width: 100%;
}
/*Reviews*/
.reviews-list .smallProductImage img {
    display: inline-block;
    height: auto;
    margin-right: 15px;
    width: 100%;
}
.reviews-list blockquote p {
    font-size: 0.8em;
    margin: 15px 0;
}
.reviews-list blockquote .product-review-default footer img, .reviews-list blockquote .reviews-description img {
    margin-top: 10px;
}
.reviews-list blockquote {
    background: none repeat scroll 0 0 #F9F9F9;
    border-left: 5px solid #E9E9E9;
    padding: 15px 20px;
}
.review-links {
    display: inline-block;
    margin-top: 15px;
}
.review-links > .buttonRow {
    float: left;
    margin: 0 5px 5px 0;
    padding: 2px 7px 5px;
}
.review-links.review-info-btn > .buttonRow {padding: 0}
.review-links.review-info-btn > .buttonRow > a, #reviewsWrite .review-links.review-info-btn > .buttonRow > a {	
	padding: 7px 5px;
	display: inline-block; 
	line-height:normal; 
	font-size:14px;
}
blockquote .review-links a, #reviewsWrite .review-links a{
    color: #FAFAFA !important;
    font-size: 0.8em;
}
#reviewsWrite .ratingRow {
    margin: 1em 0 0;
}
/*Menu*/
.header-container .header a.toggleMenu {
    display:  none;
    padding: 10px 15px;
    color: #FAFAFA;
	background-image:url("../images/menuicon.png");
	background-repeat:no-repeat;
	background-position:center right;
	width:100%;
	font-size: 1.2em;
	text-transform:uppercase;
}
.nav {
    list-style: none;
     *zoom: 1;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 13em;
	padding:0;
}
.nav a {
    padding: 10px 15px;
}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
}
.nav > li > a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover > ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    position: relative;
    z-index:100;
}
.nav li li li a {
    z-index:200;
}

@media screen and (max-width: 1149px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none;
    }
    .nav > li > .parent {
        background-position: 99% 50%;
    }
    .nav > li > .parent {
        background-image: url("../images/arrows/arrow40.png");
        background-repeat: no-repeat;
        background-position: 99% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
    }
   .nav > li.hover > ul , .nav li li.hover > ul {
        position: static;
    }

}

#centercontent-wrapper .table-responsive {
    border: medium none;
    margin: 0;
}
#myAccountGen li a {
    display: inline-block;
    padding: 5px 0;
}

.columnwith-left {
    left: 25%;
}
#left-column {
    right: 75%;
}
.two-column {
    left: 25%;
}
.three-columns {
    right: 50% !important;
}

#bannerboxall {
    box-shadow: none;
}
#bannerboxall h3 {
    display: none;
}
#bannerboxall #bannerboxallContent > a {
	box-shadow:0 8px 5px -7px rgba(0, 0, 0, 0.4);
	padding:0;
}
#bannerboxall .sideBoxContent {
    padding: 0;
	background:none;
}
#bannerboxall #bannerboxallContent > a:first-child {
	margin-bottom:30px;
}
button.close {
	min-height:0;
}

/*Home Page V3*/
.home-top-wrapper, .footer-v3-wrapper {
    background: no-repeat fixed 0 0 #F1F1F1;
}
#    background: url("../images/banners/home_v3.jpg") no-repeat fixed 0 0 #F1F1F1;^M
.home-container, .footer-v3-container {
    background: none repeat scroll 0 0 #FFFFFF;
}
.homepage_v3 .header-container .header .header-top, .homepage_v3 .header-container .header .header-content, .homepage_v3 .header-container .header .nav-maincontainer {
	padding: 0 30px;
}
.homepage_v3 .slideshow-container {
	padding: 30px;
	background: none repeat scroll 0 0 #FFFFFF;
	box-shadow:none;
}
.homepage_v3 .custom-banner-container, .homepage_v3 .main-top, .footer-v3-container .custom-banner-container, .footer-v3-container .custom-content-wrapper, .footer-v3-container .bottom-banner-wrapper, .footer-v3-container .brands-wrapper, .homepage_v3 .main-breadcrumb{
	padding: 30px;
}
.map {
    height: 350px;
    width: 100%;
}
#map1 iframe, #contactUsDefault .content iframe {
	height: 100%;
	width: 100%;
	border: none;
}
#map-canvas {
	height: 400px;
    margin: 30px 0;
    padding: 0;
}
#map-canvas img {
    max-width: none;
}
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.2
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	/*overflow: hidden;*/
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}
/* Styling Pagination*/
.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}
/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}


#indexDefaultMainContent.content .main-page-text {
    background-color: #fafafa;
    float: left;
    margin-bottom: 30px;
    padding: 20px;
    width: 100%;
	font-size: 13px;
}
#indexDefaultMainContent .main-page-text p:last-child {
    padding: 0;
}


/* Mega Menu CSS */
.header-container #cssmenu ul.nav-child .submenu > a {background-image: none}
@media only screen and (min-width:1217px) and (max-width:1600px) {
li.submenu:hover .megamenu {
    background: #FFFFFF none repeat scroll 0 0;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.5);
    left: 0;
    padding: 20px;
    position: absolute;
    width: 100%;
	z-index: 1;
}
#nav .megamenu li > ul, #nav .megamenu li ul a {
	border-bottom: medium none ;
}
.main-menu-2 ul.nav-child .submenu > a {
	background: none;
	border-bottom: medium none !important;	
}
.header-container .header #nav.main-menu-2 li ul a {
	border-bottom: medium none;
	display: inline-block;
}
#cssmenu .main-menu-2 ul ul li{height:auto;}
.megamenu {
    left: -99999px;
    position: absolute;
}
.megamenu > .nav-child > li > a {
    font-weight: bold;
}
#cssmenu .main-menu-2 ul ul {
    border: medium none;
    left: 0;
    position: relative;
}
.nav-maincontainer .inner{position:relative;}
li#cssmenu .main-menu-2 ul ul ul
{maring-left:0;}
#cssmenu .main-menu-2 li .megamenu > ul > li {
    float: none;
    height: auto !important;
    margin: 0 0 0 0;
    width: 100%;
}
#cssmenu .nav.main-menu-2 ul ul {
    list-style: outside none disc;
    margin-left: 10px;
	padding-left: 10px;
}
#cssmenu .nav.main-menu-2 > li {
    float: left;
    position: inherit;
}
.megamenu  .unstyled1{
    -moz-column-count: 5;
    -moz-column-gap: 10px;
    -webkit-column-count: 5;
    -webkit-column-gap: 10px;
    column-count: 5;
    column-gap: 10px;
    width: 18%;
}

.megamenu > .nav-child > li {
    display: inline-block;
    width: 100%;
}
}
#shoppingCartDefault > div:last-child {
    margin: 0;
}

/* ULTIMATE MOBILE MENU FIX - MAXIMUM PRIORITY */
@media screen and (max-width: 1199px) {
    /* Nuclear option - hide everything with maximum specificity */
    html body div.nav-maincontainer div.container div.nav-container div#cssmenu ul#nav,
    html body div.nav-maincontainer div.container div.nav-container div#cssmenu > ul,
    html body div#cssmenu ul#nav,
    html body div#cssmenu > ul,
    body div#cssmenu ul#nav,
    body div#cssmenu > ul,
    div#cssmenu ul#nav,
    div#cssmenu > ul,
    #cssmenu ul#nav,
    #cssmenu > ul,
    #cssmenu ul,
    .nav-maincontainer #cssmenu ul,
    .nav-maincontainer #cssmenu > ul {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Only show when explicitly opened (works with or without small-screen class) */
    html body div#cssmenu.small-screen ul#nav.open,
    body div#cssmenu.small-screen ul#nav.open,
    div#cssmenu.small-screen ul#nav.open,
    #cssmenu.small-screen ul#nav.open,
    #cssmenu.small-screen > ul.open,
    /* general open overrides */
    html body div#cssmenu ul#nav.open,
    body div#cssmenu ul#nav.open,
    div#cssmenu ul#nav.open,
    #cssmenu ul#nav.open,
    #cssmenu > ul.open,
    /* ensure any nested ul opened via JS shows */
    #cssmenu ul.open,
    #cssmenu li > ul.open {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
        position: static !important;
        left: auto !important;
    }
}

@media screen and (max-width: 767px) {
    /* Extra safety for smaller screens */
    html body div#cssmenu ul,
    body div#cssmenu ul,
    div#cssmenu ul,
    #cssmenu ul {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Custom styling for product title - navy blue color */
.product-overview-title,
h2.product-overview-title {
    color: #1e3a8a !important; /* Navy blue */
}

/* Alternative dark blue option */
.product-title-dark-blue {
    color: #003366 !important; /* Dark blue */
}