/*
	Animate.css - http://daneden.me/animate
*/
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

@-moz-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@-ms-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@-o-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;
  -moz-animation-name: flash;
  -ms-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash; }

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

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

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

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

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

.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -ms-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake; }

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

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0); }
  40% {
    -moz-transform: translateY(-30px); }
  60% {
    -moz-transform: translateY(-15px); } }

@-ms-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateY(0); }
  40% {
    -ms-transform: translateY(-30px); }
  60% {
    -ms-transform: translateY(-15px); } }

@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0); }
  40% {
    -o-transform: translateY(-30px); }
  60% {
    -o-transform: translateY(-15px); } }

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

.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -ms-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0); } }

@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1); }
  10%, 20% {
    -moz-transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -moz-transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -moz-transform: scale(1.1) rotate(-3deg); }
  100% {
    -moz-transform: scale(1) rotate(0); } }

@-ms-keyframes tada {
  0% {
    -ms-transform: scale(1); }
  10%, 20% {
    -ms-transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -ms-transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -ms-transform: scale(1.1) rotate(-3deg); }
  100% {
    -ms-transform: scale(1) rotate(0); } }

@-o-keyframes tada {
  0% {
    -o-transform: scale(1); }
  10%, 20% {
    -o-transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -o-transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -o-transform: scale(1.1) rotate(-3deg); }
  100% {
    -o-transform: scale(1) rotate(0); } }

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -ms-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada; }

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center; }
  20% {
    -webkit-transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg); } }

@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg); }
  40% {
    -moz-transform: rotate(-10deg); }
  60% {
    -moz-transform: rotate(5deg); }
  80% {
    -moz-transform: rotate(-5deg); }
  100% {
    -moz-transform: rotate(0deg); } }

@-ms-keyframes swing {
  20% {
    -ms-transform: rotate(15deg); }
  40% {
    -ms-transform: rotate(-10deg); }
  60% {
    -ms-transform: rotate(5deg); }
  80% {
    -ms-transform: rotate(-5deg); }
  100% {
    -ms-transform: rotate(0deg); } }

@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg); }
  40% {
    -o-transform: rotate(-10deg); }
  60% {
    -o-transform: rotate(5deg); }
  80% {
    -o-transform: rotate(-5deg); }
  100% {
    -o-transform: rotate(0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%); } }

@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%); }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -moz-transform: translateX(20%) rotate(3deg); }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -moz-transform: translateX(10%) rotate(2deg); }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -moz-transform: translateX(0%); } }

@-ms-keyframes wobble {
  0% {
    -ms-transform: translateX(0%); }
  15% {
    -ms-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -ms-transform: translateX(20%) rotate(3deg); }
  45% {
    -ms-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -ms-transform: translateX(10%) rotate(2deg); }
  75% {
    -ms-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -ms-transform: translateX(0%); } }

@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%); }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -o-transform: translateX(20%) rotate(3deg); }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -o-transform: translateX(10%) rotate(2deg); }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -o-transform: translateX(0%); } }

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -ms-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble; }

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

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1); }
  50% {
    -moz-transform: scale(1.1); }
  100% {
    -moz-transform: scale(1); } }

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

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1); }
  50% {
    -o-transform: scale(1.1); }
  100% {
    -o-transform: scale(1); } }

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

.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -ms-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in; } }

@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) rotateY(0);
    -moz-animation-timing-function: ease-out; }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -moz-animation-timing-function: ease-out; }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in; }
  80% {
    -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -moz-animation-timing-function: ease-in; }
  100% {
    -moz-transform: perspective(400px) scale(1);
    -moz-animation-timing-function: ease-in; } }

@-ms-keyframes flip {
  0% {
    -ms-transform: perspective(400px) rotateY(0);
    -ms-animation-timing-function: ease-out; }
  40% {
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -ms-animation-timing-function: ease-out; }
  50% {
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-animation-timing-function: ease-in; }
  80% {
    -ms-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -ms-animation-timing-function: ease-in; }
  100% {
    -ms-transform: perspective(400px) scale(1);
    -ms-animation-timing-function: ease-in; } }

@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) rotateY(0);
    -o-animation-timing-function: ease-out; }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -o-animation-timing-function: ease-out; }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in; }
  80% {
    -o-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -o-animation-timing-function: ease-in; }
  100% {
    -o-transform: perspective(400px) scale(1);
    -o-animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -ms-backface-visibility: visible !important;
  -ms-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip; }

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

@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg); }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg); }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

@-ms-keyframes flipInX {
  0% {
    -ms-transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -ms-transform: perspective(400px) rotateX(-10deg); }
  70% {
    -ms-transform: perspective(400px) rotateX(10deg); }
  100% {
    -ms-transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg); }
  70% {
    -o-transform: perspective(400px) rotateX(10deg); }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg); }
  70% {
    -moz-transform: perspective(400px) rotateY(10deg); }
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

@-ms-keyframes flipInY {
  0% {
    -ms-transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -ms-transform: perspective(400px) rotateY(-10deg); }
  70% {
    -ms-transform: perspective(400px) rotateY(10deg); }
  100% {
    -ms-transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -o-transform: perspective(400px) rotateY(-10deg); }
  70% {
    -o-transform: perspective(400px) rotateY(10deg); }
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-ms-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

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

.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn; }

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

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

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

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp; }

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

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

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

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

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -ms-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown; }

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

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

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

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -ms-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

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

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

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

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight; }

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

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

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

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

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -ms-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

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

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

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

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

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -ms-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

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

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

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

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

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -ms-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

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

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

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

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

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -ms-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

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

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

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

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

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

.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -ms-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut; }

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

@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0); }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px); } }

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

@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px); } }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -ms-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

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

@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0); }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px); } }

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

@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(20px); } }

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -ms-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

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

@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px); } }

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

@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px); } }

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -ms-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

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

@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px); } }

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

@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(20px); } }

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -ms-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

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

@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0); }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px); } }

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

@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px); } }

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -ms-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

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

@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0); }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px); } }

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

@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px); } }

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -ms-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

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

@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px); } }

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

@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px); } }

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

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -ms-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

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

@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px); } }

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

@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px); } }

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

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -ms-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

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

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

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

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

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

.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -ms-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0); } }

@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px); }
  80% {
    -moz-transform: translateY(10px); }
  100% {
    -moz-transform: translateY(0); } }

@-ms-keyframes bounceInUp {
  0% {
    opacity: 0;
    -ms-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -ms-transform: translateY(-30px); }
  80% {
    -ms-transform: translateY(10px); }
  100% {
    -ms-transform: translateY(0); } }

@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px); }
  80% {
    -o-transform: translateY(10px); }
  100% {
    -o-transform: translateY(0); } }

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -ms-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0); } }

@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px); }
  80% {
    -moz-transform: translateY(-10px); }
  100% {
    -moz-transform: translateY(0); } }

@-ms-keyframes bounceInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -ms-transform: translateY(30px); }
  80% {
    -ms-transform: translateY(-10px); }
  100% {
    -ms-transform: translateY(0); } }

@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -o-transform: translateY(30px); }
  80% {
    -o-transform: translateY(-10px); }
  100% {
    -o-transform: translateY(0); } }

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -ms-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0); } }

@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px); }
  80% {
    -moz-transform: translateX(-10px); }
  100% {
    -moz-transform: translateX(0); } }

@-ms-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -ms-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -ms-transform: translateX(30px); }
  80% {
    -ms-transform: translateX(-10px); }
  100% {
    -ms-transform: translateX(0); } }

@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -o-transform: translateX(30px); }
  80% {
    -o-transform: translateX(-10px); }
  100% {
    -o-transform: translateX(0); } }

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -ms-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0); } }

@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px); }
  80% {
    -moz-transform: translateX(10px); }
  100% {
    -moz-transform: translateX(0); } }

@-ms-keyframes bounceInRight {
  0% {
    opacity: 0;
    -ms-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -ms-transform: translateX(-30px); }
  80% {
    -ms-transform: translateX(10px); }
  100% {
    -ms-transform: translateX(0); } }

@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px); }
  80% {
    -o-transform: translateX(10px); }
  100% {
    -o-transform: translateX(0); } }

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -ms-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight; }

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

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

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

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

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

.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -ms-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); } }

@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0); }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px); }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px); } }

@-ms-keyframes bounceOutUp {
  0% {
    -ms-transform: translateY(0); }
  20% {
    opacity: 1;
    -ms-transform: translateY(20px); }
  100% {
    opacity: 0;
    -ms-transform: translateY(-2000px); } }

@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0); }
  20% {
    opacity: 1;
    -o-transform: translateY(20px); }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px); } }

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -ms-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px); } }

@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0); }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px); }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px); } }

@-ms-keyframes bounceOutDown {
  0% {
    -ms-transform: translateY(0); }
  20% {
    opacity: 1;
    -ms-transform: translateY(-20px); }
  100% {
    opacity: 0;
    -ms-transform: translateY(2000px); } }

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }

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

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); } }

@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0); }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px); }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px); } }

@-ms-keyframes bounceOutLeft {
  0% {
    -ms-transform: translateX(0); }
  20% {
    opacity: 1;
    -ms-transform: translateX(20px); }
  100% {
    opacity: 0;
    -ms-transform: translateX(-2000px); } }

@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0); }
  20% {
    opacity: 1;
    -o-transform: translateX(20px); }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px); } }

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -ms-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px); } }

@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0); }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px); } }

@-ms-keyframes bounceOutRight {
  0% {
    -ms-transform: translateX(0); }
  20% {
    opacity: 1;
    -ms-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -ms-transform: translateX(2000px); } }

@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0); }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px); } }

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -ms-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

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

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

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

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

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

.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -ms-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn; }

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

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

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

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

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

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -ms-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

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

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

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

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

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

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -ms-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

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

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

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

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

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

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -ms-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

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

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

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

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

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

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -ms-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

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

@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0; } }

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

@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0; } }

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

.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -ms-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut; }

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

@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0; } }

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

@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0; } }

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -ms-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

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

@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0; } }

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

@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0; } }

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -ms-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

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

@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0; } }

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

@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0; } }

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

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -ms-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

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

@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0; } }

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

@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0; } }

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -ms-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

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

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

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

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

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

.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -ms-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge; }

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

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

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

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

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

.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -ms-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn; }

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

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

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

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

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

.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -ms-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut; }

/*
 * jQuery Off Canvas Menu v1.2
 * Copyright (c) 2014 Matt Mcnamee
 *
 * Dual licensed under the MIT and GPL licenses:
 *  http://www.opensource.org/licenses/mit-license.php
 *  http://www.gnu.org/licenses/gpl.html
 */
.onCanvas, body, html {
  background: #1D1F20;
  width: 100%; }

.onCanvas {
  width: 100%;
  min-height: 100%;
  position: relative;
  height: 100%;
  float: left;
  z-index: 2;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: .4s;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }

.overflow_hidden, .overflow_hidden .onCanvas, .overflow_hidden body {
  overflow: hidden !important;
  height: 100%; }

html.offCanvas_open body .onCanvas {
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px); }

html.offCanvas_open body .onCanvas.onCanvas_left {
  -webkit-transform: translateX(260px);
  -moz-transform: translateX(260px);
  -ms-transform: translateX(260px);
  -o-transform: translateX(260px);
  transform: translateX(260px); }

@media screen and (min-width: 365px) {
  html.offCanvas_open body .onCanvas {
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    -o-transform: translateX(-300px);
    transform: translateX(-300px); }
  html.offCanvas_open body .onCanvas.onCanvas_left {
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    -ms-transform: translateX(300px);
    -o-transform: translateX(300px);
    transform: translateX(300px); } }

a.offCanvas_trigger {
  display: block;
  float: right;
  margin: 20px 17px 0 0;
  outline: 0;
  width: 30px;
  height: 38px; }

.offCanvas_trigger.offCanvas_trigger_open .offCanvas_trigger_item {
  background: #fff; }

.offCanvas_trigger.offCanvas_trigger_open .offCanvas_trigger_item:first-child {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transform-origin: 6px 50%;
  -ms-transform-origin: 6px 50%;
  -webkit-transform-origin: 6px 50%;
  transform-origin: 6px 50%; }

.offCanvas_trigger.offCanvas_trigger_open .offCanvas_trigger_item:nth-child(2) {
  opacity: 0; }

.offCanvas_trigger.offCanvas_trigger_open .offCanvas_trigger_item:nth-child(3) {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%; }

.offCanvas_trigger_item {
  -moz-transition: all linear .4s;
  -o-transition: all linear .4s;
  -webkit-transition: all linear .4s;
  transition: all linear .4s;
  display: block;
  width: 30px;
  height: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin: 0 0 5px;
  background: #fff; }

@media screen and (max-width: 767px) {
  a.offCanvas_trigger {
    display: block; } }

.offCanvas {
  padding: 20px 5px 20px 35px;
  height: 100%;
  overflow-y: hidden;
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
  width: 235px;
  background-color: #242e30;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s,visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s,visibility 0s .4s;
  -webkit-transition: visibility 0s .4s,-webkit-transform .4s 0s;
  transition: visibility 0s .4s,-webkit-transform .4s 0s;
  -o-transition: transform .4s 0s,visibility 0s .4s;
  transition: transform .4s 0s,visibility 0s .4s;
  transition: transform .4s 0s,visibility 0s .4s,-webkit-transform .4s 0s;
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
  -webkit-overflow-scrolling: touch; }

.offCanvas.offCanvas_left {
  left: 0;
  -webkit-transform: translateX(-80px);
  -moz-transform: translateX(-80px);
  -ms-transform: translateX(-80px);
  -o-transform: translateX(-80px);
  transform: translateX(-80px); }

@media screen and (min-width: 365px) {
  .offCanvas {
    width: 275px; } }

html.offCanvas_open .offCanvas.offCanvas_menu_open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s,visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s,visibility 0s 0s;
  -webkit-transition: visibility 0s 0s,-webkit-transform .4s 0s;
  transition: visibility 0s 0s,-webkit-transform .4s 0s;
  -o-transition: transform .4s 0s,visibility 0s 0s;
  transition: transform .4s 0s,visibility 0s 0s;
  transition: transform .4s 0s,visibility 0s 0s,-webkit-transform .4s 0s;
  overflow-y: scroll; }

ul.offCanvas_menu {
  position: relative; }

ul.offCanvas_menu, ul.offCanvas_menu ul {
  -webkit-transform: translateZ(0);
  list-style: none;
  float: left;
  width: 100%;
  display: block;
  margin: 0 0 20px;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

ul.offCanvas_menu ul {
  padding: 0 0 15px 20px;
  margin: 0;
  display: none; }

ul.offCanvas_menu li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  float: left;
  cursor: pointer;
  position: relative; }

ul.offCanvas_menu li a {
  display: block;
  float: left;
  width: 75%;
  padding: 7px 0;
  font-size: 16px;
  color: #ddd;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

ul.offCanvas_menu > li > a {
  text-transform: uppercase;
  font-size: 18px; }

ul.offCanvas_menu li a:hover {
  color: #fff; }

ul.offCanvas_menu li .offCanvas_menu_has_children_indicator {
  display: block;
  float: left;
  width: 25%;
  height: 20px;
  position: absolute;
  right: 0;
  top: 8px;
  text-align: center; }

ul.offCanvas_menu li > .offCanvas_menu_has_children_indicator svg {
  fill: #fff;
  width: 11px;
  height: 11px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform ease .2s;
  -moz-transition: -moz-transform ease .2s;
  -ms-transition: -ms-transform ease .2s;
  -o-transition: -o-transform ease .2s;
  transition: -webkit-transform ease .2s;
  -o-transition: transform ease .2s;
  transition: transform ease .2s;
  transition: transform ease .2s, -webkit-transform ease .2s; }

ul.offCanvas_menu li.offCanvas_menu_sub_open > .offCanvas_menu_has_children_indicator svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

ul.offCanvas_menu_social, ul.offCanvas_menu_social li {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0; }

ul.offCanvas_menu_social {
  width: 90%;
  float: left;
  margin-bottom: 80px; }

ul.offCanvas_menu_social li {
  display: inline-block;
  padding: 0 8px; }

ul.offCanvas_menu_social li a {
  color: #777;
  font-size: 28px; }

ul.offCanvas_menu_social li a:hover {
  color: #999; }

/*
	Colorbox
*/
#cboxOverlay, #cboxWrapper, #colorbox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden; }

#cboxWrapper {
  max-width: none; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxBottomLeft, #cboxMiddleLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#cboxTitle {
  margin: 0; }

#cboxLoadingGraphic, #cboxLoadingOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxClose, #cboxNext, #cboxPrevious, #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;
  padding: 0;
  margin: 0; }

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

/* ================================= */
/* Colorbox Theme */
/* ================================= */
#cboxOverlay {
  background: #000000;
  opacity: 0.9;
  filter: alpha(opacity=90); }

#colorbox {
  outline: 0; }

#cboxContent {
  margin-top: 32px;
  overflow: visible; }

.cboxIframe {
  background: #FFFFFF; }

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

#cboxLoadedContent {
  background: #FFFFFF;
  padding: 1px; }

#cboxLoadingGraphic {
  background: url(../../images/colorbox/loading.gif) no-repeat center center; }

#cboxLoadingOverlay {
  background: #000000; }

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000000; }

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px; }

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 25px !important;
  height: 25px;
  position: absolute;
  top: -25px;
  background: url(../../images/colorbox/controls.png) no-repeat 0 0;
  padding: 0 !important; }

button#cboxPrevious, button#cboxNext, button#cboxSlideshow, button#cboxClose {
  border: none !important;
  outline: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  background-color: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none; }

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0; }

#cboxPrevious {
  background-position: 0px 0px;
  right: 44px; }

#cboxPrevious:hover {
  background-position: 0px -25px; }

#cboxNext {
  background-position: -25px 0px;
  right: 22px; }

#cboxNext:hover {
  background-position: -25px -25px; }

#cboxClose {
  background-position: -50px 0px;
  right: 0; }

#cboxClose:hover {
  background-position: -50px -25px; }

.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious {
  right: 66px; }

.cboxSlideshow_on #cboxSlideshow {
  background-position: -75px -25px;
  right: 44px; }

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -100px -25px; }

.cboxSlideshow_off #cboxSlideshow {
  background-position: -100px 0px;
  right: 44px; }

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -75px -25px; }

/* Do not Edit! */
/**
  * Grid.css v2.1.2
  * https://github.com/mcnamee/grid
  *
  * Copyright 2014 Matt Mcnamee - www.mcnamee.co
  * Free to use under the GPLv2 license.
  * http://www.gnu.org/licenses/gpl-2.0.html
  **/
* {
  text-rendering: auto;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body, html {
  height: 100%; }

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

body, button, input, select, textarea {
  font-family: sans-serif;
  color: #222; }

body {
  background: #fff;
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

a {
  color: #00e;
  outline: 0; }

a:hover {
  color: #06e; }

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

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

ins {
  background: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: 700; }

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

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

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

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

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

ol, ul {
  margin: 0;
  padding: 0; }

dd {
  margin: 0 0 0 40px; }

nav ol, nav ul {
  list-style: none;
  margin: 0;
  padding: 0; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle; }

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

figure, form {
  margin: 0; }

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

label {
  cursor: pointer; }

legend {
  border: 0;
  padding: 0;
  white-space: normal; }

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

button, input {
  line-height: normal; }

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

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

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

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

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

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

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

input:invalid, textarea:invalid {
  background-color: #f0dddd; }

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

td {
  vertical-align: top; }

.chromeframe {
  margin: .2em 0;
  background: #ccc;
  color: #000;
  padding: .2em 0; }

address {
  display: block;
  line-height: 18px;
  margin-bottom: 18px; }

::-moz-selection {
  background: #333;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #333;
  color: #fff;
  text-shadow: none; }

p img {
  margin: 0; }

em {
  font-style: italic; }

small {
  font-size: 80%; }

blockquote, blockquote p {
  font-size: 17px;
  line-height: 24px;
  color: #777;
  font-style: italic; }

blockquote {
  margin: 0 0 20px;
  padding: 10px 20px;
  border-left: 1px solid #ddd; }

blockquote cite {
  display: block;
  font-size: 12px;
  color: #555; }

blockquote cite:before {
  content: "\2014 \0020"; }

blockquote cite a, blockquote cite a:visited {
  color: #555; }

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
  float: left; }

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

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

.grid_demo, .grid_demo_g {
  margin: 0 0 20px;
  font-size: 11px; }

.grid_demo .inner, .grid_demo .text_align_center, .grid_demo_g > .inner > div {
  background: #ececec;
  border: 1px solid #ccc;
  border-right: 0;
  padding-top: 30px;
  padding-bottom: 30px; }

.grid_demo .inner:last-child, .grid_demo .text_align_center:last-child, .grid_demo_g > .inner > div {
  border-right: 1px solid #ccc; }

.float_right {
  float: right !important; }

.float_left {
  float: left !important; }

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

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

.text_align_left {
  text-align: left !important; }

.scale_with_grid {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100%; }

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }

.clearfix:after, .clearfix:before, .container_24:after, .container_24:before {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }

.clearfix:after, .container_24:after {
  clear: both; }

.clearfix, .container_24 {
  zoom: 1; }

.container_24 {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width linear .2s;
  -moz-transition: width linear .2s;
  -o-transition: width linear .2s;
  transition: width linear .2s; }

.grid_1, .grid_10, .grid_11, .grid_12, .grid_13, .grid_14, .grid_15, .grid_16, .grid_17, .grid_18, .grid_19, .grid_2, .grid_20, .grid_21, .grid_22, .grid_23, .grid_24, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9 {
  display: inline-block;
  float: left;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.hidden {
  display: none !important;
  visibility: hidden; }

.inner {
  padding-left: 10px;
  padding-right: 10px; }

.inner_l {
  padding-left: 10px; }

.inner_r {
  padding-right: 10px; }

.inner_t {
  padding-top: 10px; }

.inner_b {
  padding-bottom: 10px; }

body {
  min-width: 1008px; }

.container_24 {
  width: 1008px; }

.grid_1 {
  width: 4.1666666666667%; }

.grid_2 {
  width: 8.3333333333333%; }

.grid_3 {
  width: 12.5%; }

.grid_4 {
  width: 16.666666666667%; }

.grid_5 {
  width: 20.833333333333%; }

.grid_6 {
  width: 25%; }

.grid_7 {
  width: 29.166666666667%; }

.grid_8 {
  width: 33.333333333333%; }

.grid_9 {
  width: 37.5%; }

.grid_10 {
  width: 41.666666666667%; }

.grid_11 {
  width: 45.833333333333%; }

.grid_12 {
  width: 50%; }

.grid_13 {
  width: 54.166666666667%; }

.grid_14 {
  width: 58.333333333333%; }

.grid_15 {
  width: 62.5%; }

.grid_16 {
  width: 66.666666666667%; }

.grid_17 {
  width: 70.833333333333%; }

.grid_18 {
  width: 75%; }

.grid_19 {
  width: 79.166666666667%; }

.grid_20 {
  width: 83.333333333333%; }

.grid_21 {
  width: 87.5%; }

.grid_22 {
  width: 91.666666666667%; }

.grid_23 {
  width: 95.833333333333%; }

.grid_24 {
  width: 100%; }

.prefix_0 {
  margin-left: 0; }

.prefix_1 {
  margin-left: 4.1666666666667%; }

.prefix_2 {
  margin-left: 8.3333333333333%; }

.prefix_3 {
  margin-left: 12.5%; }

.prefix_4 {
  margin-left: 16.666666666667%; }

.prefix_5 {
  margin-left: 20.833333333333%; }

.prefix_6 {
  margin-left: 25%; }

.prefix_7 {
  margin-left: 29.166666666667%; }

.prefix_8 {
  margin-left: 33.333333333333%; }

.prefix_9 {
  margin-left: 37.5%; }

.prefix_10 {
  margin-left: 41.666666666667%; }

.prefix_11 {
  margin-left: 45.833333333333%; }

.prefix_12 {
  margin-left: 50%; }

.prefix_13 {
  margin-left: 54.166666666667%; }

.prefix_14 {
  margin-left: 58.333333333333%; }

.prefix_15 {
  margin-left: 62.5%; }

.prefix_16 {
  margin-left: 66.666666666667%; }

.prefix_17 {
  margin-left: 70.833333333333%; }

.prefix_18 {
  margin-left: 75%; }

.prefix_19 {
  margin-left: 79.166666666667%; }

.prefix_20 {
  margin-left: 83.333333333333%; }

.prefix_21 {
  margin-left: 87.5%; }

.prefix_22 {
  margin-left: 91.666666666667%; }

.prefix_23 {
  margin-left: 95.833333333333%; }

.prefix_24 {
  margin-left: 100%; }

.hidden_l, .visible_m, .visible_phone, .visible_s, .visible_xl, .visible_xs {
  display: none !important; }

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .hidden_m, .hidden_phone, .hidden_s, .hidden_xl, .hidden_xs {
    display: inline-block !important; }
  .hidden_l, .visible_m, .visible_phone, .visible_s, .visible_xl, .visible_xs {
    display: none !important; }
  .visible_l {
    display: inline-block !important; } }

@media only screen and (min-width: 1200px) {
  body {
    min-width: 1170px; }
  .container_24 {
    width: 1170px; }
  .grid_1_xl {
    width: 4.1666666666667%; }
  .grid_2_xl {
    width: 8.3333333333333%; }
  .grid_3_xl {
    width: 12.5%; }
  .grid_4_xl {
    width: 16.666666666667%; }
  .grid_5_xl {
    width: 20.833333333333%; }
  .grid_6_xl {
    width: 25%; }
  .grid_7_xl {
    width: 29.166666666667%; }
  .grid_8_xl {
    width: 33.333333333333%; }
  .grid_9_xl {
    width: 37.5%; }
  .grid_10_xl {
    width: 41.666666666667%; }
  .grid_11_xl {
    width: 45.833333333333%; }
  .grid_12_xl {
    width: 50%; }
  .grid_13_xl {
    width: 54.166666666667%; }
  .grid_14_xl {
    width: 58.333333333333%; }
  .grid_15_xl {
    width: 62.5%; }
  .grid_16_xl {
    width: 66.666666666667%; }
  .grid_17_xl {
    width: 70.833333333333%; }
  .grid_18_xl {
    width: 75%; }
  .grid_19_xl {
    width: 79.166666666667%; }
  .grid_20_xl {
    width: 83.333333333333%; }
  .grid_21_xl {
    width: 87.5%; }
  .grid_22_xl {
    width: 91.666666666667%; }
  .grid_23_xl {
    width: 95.833333333333%; }
  .grid_24_xl {
    width: 100%; }
  .prefix_0_xl {
    margin-left: 0; }
  .prefix_1_xl {
    margin-left: 4.1666666666667%; }
  .prefix_2_xl {
    margin-left: 8.3333333333333%; }
  .prefix_3_xl {
    margin-left: 12.5%; }
  .prefix_4_xl {
    margin-left: 16.666666666667%; }
  .prefix_5_xl {
    margin-left: 20.833333333333%; }
  .prefix_6_xl {
    margin-left: 25%; }
  .prefix_7_xl {
    margin-left: 29.166666666667%; }
  .prefix_8_xl {
    margin-left: 33.333333333333%; }
  .prefix_9_xl {
    margin-left: 37.5%; }
  .prefix_10_xl {
    margin-left: 41.666666666667%; }
  .prefix_11_xl {
    margin-left: 45.833333333333%; }
  .prefix_12_xl {
    margin-left: 50%; }
  .prefix_13_xl {
    margin-left: 54.166666666667%; }
  .prefix_14_xl {
    margin-left: 58.333333333333%; }
  .prefix_15_xl {
    margin-left: 62.5%; }
  .prefix_16_xl {
    margin-left: 66.666666666667%; }
  .prefix_17_xl {
    margin-left: 70.833333333333%; }
  .prefix_18_xl {
    margin-left: 75%; }
  .prefix_19_xl {
    margin-left: 79.166666666667%; }
  .prefix_20_xl {
    margin-left: 83.333333333333%; }
  .prefix_21_xl {
    margin-left: 87.5%; }
  .prefix_22_xl {
    margin-left: 91.666666666667%; }
  .prefix_23_xl {
    margin-left: 95.833333333333%; }
  .prefix_24_xl {
    margin-left: 100%; }
  .hidden_l, .hidden_m, .hidden_phone, .hidden_s, .hidden_xs {
    display: inline-block !important; }
  .hidden_xl, .visible_l, .visible_m, .visible_phone, .visible_s, .visible_xs {
    display: none !important; }
  .visible_xl {
    display: inline-block !important; } }

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body {
    min-width: 750px; }
  .container_24 {
    width: 750px; }
  .grid_1_m {
    width: 4.1666666666667%; }
  .grid_2_m {
    width: 8.3333333333333%; }
  .grid_3_m {
    width: 12.5%; }
  .grid_4_m {
    width: 16.666666666667%; }
  .grid_5_m {
    width: 20.833333333333%; }
  .grid_6_m {
    width: 25%; }
  .grid_7_m {
    width: 29.166666666667%; }
  .grid_8_m {
    width: 33.333333333333%; }
  .grid_9_m {
    width: 37.5%; }
  .grid_10_m {
    width: 41.666666666667%; }
  .grid_11_m {
    width: 45.833333333333%; }
  .grid_12_m {
    width: 50%; }
  .grid_13_m {
    width: 54.166666666667%; }
  .grid_14_m {
    width: 58.333333333333%; }
  .grid_15_m {
    width: 62.5%; }
  .grid_16_m {
    width: 66.666666666667%; }
  .grid_17_m {
    width: 70.833333333333%; }
  .grid_18_m {
    width: 75%; }
  .grid_19_m {
    width: 79.166666666667%; }
  .grid_20_m {
    width: 83.333333333333%; }
  .grid_21_m {
    width: 87.5%; }
  .grid_22_m {
    width: 91.666666666667%; }
  .grid_23_m {
    width: 95.833333333333%; }
  .grid_24_m {
    width: 100%; }
  .prefix_0_m {
    margin-left: 0; }
  .prefix_1_m {
    margin-left: 4.1666666666667%; }
  .prefix_2_m {
    margin-left: 8.3333333333333%; }
  .prefix_3_m {
    margin-left: 12.5%; }
  .prefix_4_m {
    margin-left: 16.666666666667%; }
  .prefix_5_m {
    margin-left: 20.833333333333%; }
  .prefix_6_m {
    margin-left: 25%; }
  .prefix_7_m {
    margin-left: 29.166666666667%; }
  .prefix_8_m {
    margin-left: 33.333333333333%; }
  .prefix_9_m {
    margin-left: 37.5%; }
  .prefix_10_m {
    margin-left: 41.666666666667%; }
  .prefix_11_m {
    margin-left: 45.833333333333%; }
  .prefix_12_m {
    margin-left: 50%; }
  .prefix_13_m {
    margin-left: 54.166666666667%; }
  .prefix_14_m {
    margin-left: 58.333333333333%; }
  .prefix_15_m {
    margin-left: 62.5%; }
  .prefix_16_m {
    margin-left: 66.666666666667%; }
  .prefix_17_m {
    margin-left: 70.833333333333%; }
  .prefix_18_m {
    margin-left: 75%; }
  .prefix_19_m {
    margin-left: 79.166666666667%; }
  .prefix_20_m {
    margin-left: 83.333333333333%; }
  .prefix_21_m {
    margin-left: 87.5%; }
  .prefix_22_m {
    margin-left: 91.666666666667%; }
  .prefix_23_m {
    margin-left: 95.833333333333%; }
  .prefix_24_m {
    margin-left: 100%; }
  .hidden_l, .hidden_phone, .hidden_s, .hidden_xl, .hidden_xs {
    display: inline-block !important; }
  .hidden_m, .visible_l, .visible_phone, .visible_s, .visible_xl, .visible_xs {
    display: none !important; }
  .visible_m {
    display: inline-block !important; } }

@media only screen and (max-width: 767px) {
  body {
    min-width: 300px; }
  .container_24 {
    width: 90%; }
  .grid_1, .grid_10, .grid_11, .grid_12, .grid_13, .grid_14, .grid_15, .grid_16, .grid_17, .grid_18, .grid_19, .grid_2, .grid_20, .grid_21, .grid_22, .grid_23, .grid_24, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9 {
    width: 100%; }
  .prefix_1, .prefix_10, .prefix_11, .prefix_12, .prefix_13, .prefix_14, .prefix_15, .prefix_16, .prefix_17, .prefix_18, .prefix_19, .prefix_2, .prefix_20, .prefix_21, .prefix_22, .prefix_23, .prefix_24, .prefix_3, .prefix_4, .prefix_5, .prefix_6, .prefix_7, .prefix_8, .prefix_9 {
    margin-left: 0; }
  .no_inner_phone {
    padding-left: 0;
    padding-right: 0; }
  .no_inner_l_phone {
    padding-left: 0; }
  .no_inner_r_phone {
    padding-right: 0; }
  .no_inner_t_phone {
    padding-top: 0; }
  .no_inner_b_phone {
    padding-bottom: 0; } }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  body {
    min-width: 420px; }
  .grid_1_s {
    width: 4.1666666666667%; }
  .grid_2_s {
    width: 8.3333333333333%; }
  .grid_3_s {
    width: 12.5%; }
  .grid_4_s {
    width: 16.666666666667%; }
  .grid_5_s {
    width: 20.833333333333%; }
  .grid_6_s {
    width: 25%; }
  .grid_7_s {
    width: 29.166666666667%; }
  .grid_8_s {
    width: 33.333333333333%; }
  .grid_9_s {
    width: 37.5%; }
  .grid_10_s {
    width: 41.666666666667%; }
  .grid_11_s {
    width: 45.833333333333%; }
  .grid_12_s {
    width: 50%; }
  .grid_13_s {
    width: 54.166666666667%; }
  .grid_14_s {
    width: 58.333333333333%; }
  .grid_15_s {
    width: 62.5%; }
  .grid_16_s {
    width: 66.666666666667%; }
  .grid_17_s {
    width: 70.833333333333%; }
  .grid_18_s {
    width: 75%; }
  .grid_19_s {
    width: 79.166666666667%; }
  .grid_20_s {
    width: 83.333333333333%; }
  .grid_21_s {
    width: 87.5%; }
  .grid_22_s {
    width: 91.666666666667%; }
  .grid_23_s {
    width: 95.833333333333%; }
  .grid_24_s {
    width: 100%; }
  .prefix_0_s {
    margin-left: 0; }
  .prefix_1_s {
    margin-left: 4.1666666666667%; }
  .prefix_2_s {
    margin-left: 8.3333333333333%; }
  .prefix_3_s {
    margin-left: 12.5%; }
  .prefix_4_s {
    margin-left: 16.666666666667%; }
  .prefix_5_s {
    margin-left: 20.833333333333%; }
  .prefix_6_s {
    margin-left: 25%; }
  .prefix_7_s {
    margin-left: 29.166666666667%; }
  .prefix_8_s {
    margin-left: 33.333333333333%; }
  .prefix_9_s {
    margin-left: 37.5%; }
  .prefix_10_s {
    margin-left: 41.666666666667%; }
  .prefix_11_s {
    margin-left: 45.833333333333%; }
  .prefix_12_s {
    margin-left: 50%; }
  .prefix_13_s {
    margin-left: 54.166666666667%; }
  .prefix_14_s {
    margin-left: 58.333333333333%; }
  .prefix_15_s {
    margin-left: 62.5%; }
  .prefix_16_s {
    margin-left: 66.666666666667%; }
  .prefix_17_s {
    margin-left: 70.833333333333%; }
  .prefix_18_s {
    margin-left: 75%; }
  .prefix_19_s {
    margin-left: 79.166666666667%; }
  .prefix_20_s {
    margin-left: 83.333333333333%; }
  .prefix_21_s {
    margin-left: 87.5%; }
  .prefix_22_s {
    margin-left: 91.666666666667%; }
  .prefix_23_s {
    margin-left: 95.833333333333%; }
  .prefix_24_s {
    margin-left: 100%; }
  .hidden_l, .hidden_m, .hidden_xl, .hidden_xs {
    display: inline-block !important; }
  .hidden_s, .visible_l, .visible_m, .visible_xl, .visible_xs {
    display: none !important; }
  .visible_s {
    display: inline-block !important; }
  .no_inner_s {
    padding-left: 0;
    padding-right: 0; }
  .no_inner_l_s {
    padding-left: 0; }
  .no_inner_r_s {
    padding-right: 0; }
  .no_inner_t_s {
    padding-top: 0; }
  .no_inner_b_s {
    padding-bottom: 0; } }

@media only screen and (max-width: 479px) {
  .grid_1_xs {
    width: 4.1666666666667%; }
  .grid_2_xs {
    width: 8.3333333333333%; }
  .grid_3_xs {
    width: 12.5%; }
  .grid_4_xs {
    width: 16.666666666667%; }
  .grid_5_xs {
    width: 20.833333333333%; }
  .grid_6_xs {
    width: 25%; }
  .grid_7_xs {
    width: 29.166666666667%; }
  .grid_8_xs {
    width: 33.333333333333%; }
  .grid_9_xs {
    width: 37.5%; }
  .grid_10_xs {
    width: 41.666666666667%; }
  .grid_11_xs {
    width: 45.833333333333%; }
  .grid_12_xs {
    width: 50%; }
  .grid_13_xs {
    width: 54.166666666667%; }
  .grid_14_xs {
    width: 58.333333333333%; }
  .grid_15_xs {
    width: 62.5%; }
  .grid_16_xs {
    width: 66.666666666667%; }
  .grid_17_xs {
    width: 70.833333333333%; }
  .grid_18_xs {
    width: 75%; }
  .grid_19_xs {
    width: 79.166666666667%; }
  .grid_20_xs {
    width: 83.333333333333%; }
  .grid_21_xs {
    width: 87.5%; }
  .grid_22_xs {
    width: 91.666666666667%; }
  .grid_23_xs {
    width: 95.833333333333%; }
  .grid_24_xs {
    width: 100%; }
  .prefix_0_xs {
    margin-left: 0; }
  .prefix_1_xs {
    margin-left: 4.1666666666667%; }
  .prefix_2_xs {
    margin-left: 8.3333333333333%; }
  .prefix_3_xs {
    margin-left: 12.5%; }
  .prefix_4_xs {
    margin-left: 16.666666666667%; }
  .prefix_5_xs {
    margin-left: 20.833333333333%; }
  .prefix_6_xs {
    margin-left: 25%; }
  .prefix_7_xs {
    margin-left: 29.166666666667%; }
  .prefix_8_xs {
    margin-left: 33.333333333333%; }
  .prefix_9_xs {
    margin-left: 37.5%; }
  .prefix_10_xs {
    margin-left: 41.666666666667%; }
  .prefix_11_xs {
    margin-left: 45.833333333333%; }
  .prefix_12_xs {
    margin-left: 50%; }
  .prefix_13_xs {
    margin-left: 54.166666666667%; }
  .prefix_14_xs {
    margin-left: 58.333333333333%; }
  .prefix_15_xs {
    margin-left: 62.5%; }
  .prefix_16_xs {
    margin-left: 66.666666666667%; }
  .prefix_17_xs {
    margin-left: 70.833333333333%; }
  .prefix_18_xs {
    margin-left: 75%; }
  .prefix_19_xs {
    margin-left: 79.166666666667%; }
  .prefix_20_xs {
    margin-left: 83.333333333333%; }
  .prefix_21_xs {
    margin-left: 87.5%; }
  .prefix_22_xs {
    margin-left: 91.666666666667%; }
  .prefix_23_xs {
    margin-left: 95.833333333333%; }
  .prefix_24_xs {
    margin-left: 100%; }
  .hidden_l, .hidden_m, .hidden_s, .hidden_xl {
    display: inline-block !important; }
  .hidden_xs, .visible_l, .visible_m, .visible_s, .visible_xl {
    display: none !important; }
  .visible_xs {
    display: inline-block !important; }
  .no_inner_xs {
    padding-left: 0;
    padding-right: 0; }
  .no_inner_l_xs {
    padding-left: 0; }
  .no_inner_r_xs {
    padding-right: 0; }
  .no_inner_t_xs {
    padding-top: 0; }
  .no_inner_b_xs {
    padding-bottom: 0; } }

@media only screen and (max-width: 767px) {
  .hidden_phone {
    display: none !important; }
  .visible_phone {
    display: inline-block !important; } }

@media print {
  * {
    background: 0 0 !important;
    color: #000 !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
    filter: none !important;
    -ms-filter: none !important;
    font-family: Arial,Helvetica,sans-serif;
    margin: 20px 0;
    text-align: left !important; }
  body {
    font-size: 11px;
    line-height: 1.2em; }
  body div {
    display: block;
    float: left;
    width: 90%;
    margin: 10px auto;
    padding: 0; }
  a, a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: "";
    display: none; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: ""; }
  blockquote, pre {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  img, tr {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  h2, h3, p {
    orphans: 3;
    widows: 3; }
  h2, h3 {
    page-break-after: avoid; }
  h1, h2, h3, h4, h5, p, table, ul {
    margin: 0 0 8px;
    padding: 0; }
  .hidden_print {
    display: none !important; } }

td.hidden_phone, th.hidden_phone {
  display: table-cell !important; }
  @media screen and (max-width: 767px) {
    td.hidden_phone, th.hidden_phone {
      display: none !important; } }

td.visible_phone, th.visible_phone {
  display: none !important; }
  @media screen and (max-width: 767px) {
    td.visible_phone, th.visible_phone {
      display: table-cell !important; } }

tr.hidden_phone {
  display: table-row !important; }
  @media screen and (max-width: 767px) {
    tr.hidden_phone {
      display: none !important; } }

tr.visible_phone {
  display: none !important; }
  @media screen and (max-width: 767px) {
    tr.visible_phone {
      display: table-row !important; } }

/*!
 * FullCalendar v2.0.2 Stylesheet
 * Docs & License: http://arshaw.com/fullcalendar/
 * (c) 2013 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left; }

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

html .fc,
.fc table {
  font-size: 1em; }

.fc td,
.fc th {
  padding: 0;
  vertical-align: top; }

/* Header
------------------------------------------------------------------------*/
.fc-header td {
  white-space: nowrap; }

.fc-header-left {
  width: 25%;
  text-align: left; }

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

.fc-header-right {
  width: 25%;
  text-align: right; }

.fc-header-title {
  display: inline-block;
  vertical-align: top; }

.fc-header-title h2 {
  margin-top: 0;
  white-space: nowrap; }

.fc .fc-header-space {
  padding-left: 10px; }

.fc-header .fc-button {
  margin-bottom: 1em;
  vertical-align: top; }

/* buttons edges butting together */
.fc-header .fc-button {
  margin-right: -1px; }

.fc-header .fc-corner-right,
.fc-header .ui-corner-right {
  /* theme */
  margin-right: 0;
  /* back to normal */ }

/* button layering (for border precedence) */
.fc-header .fc-state-hover,
.fc-header .ui-state-hover {
  z-index: 2; }

.fc-header .fc-state-down {
  z-index: 3; }

.fc-header .fc-state-active,
.fc-header .ui-state-active {
  z-index: 4; }

/* Content
------------------------------------------------------------------------*/
.fc-content {
  position: relative;
  z-index: 1;
  /* scopes all other z-index's to be inside this container */
  clear: both;
  zoom: 1;
  /* for IE7, gives accurate coordinates for [un]freezeContentHeight */ }

.fc-view {
  position: relative;
  width: 100%;
  overflow: hidden; }

/* Cell Styles
------------------------------------------------------------------------*/
.fc-widget-header,
.fc-widget-content {
  /* <td>, usually */
  border: 1px solid #ddd; }

.fc-state-highlight {
  /* <td> today cell */
  /* TODO: add .fc-today to <th> */
  background: #fcf8e3; }

.fc-cell-overlay {
  /* semi-transparent rectangle while dragging */
  background: #bce8f1;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */ }

/* Buttons
------------------------------------------------------------------------*/
.fc-button {
  position: relative;
  display: inline-block;
  padding: 0 .6em;
  overflow: hidden;
  height: 1.9em;
  line-height: 1.9em;
  white-space: nowrap;
  cursor: pointer; }

.fc-state-default {
  /* non-theme */
  border: 1px solid; }

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

/*
	Our default prev/next buttons use HTML entities like &lsaquo; &rsaquo; &laquo; &raquo;
	and we'll try to make them look good cross-browser.
*/
.fc-button .fc-icon {
  margin: 0 .1em;
  font-size: 2em;
  font-family: "Courier New", Courier, monospace;
  vertical-align: baseline;
  /* for IE7 */ }

.fc-icon-left-single-arrow:after {
  content: "\02039";
  font-weight: bold; }

.fc-icon-right-single-arrow:after {
  content: "\0203A";
  font-weight: bold; }

.fc-icon-left-double-arrow:after {
  content: "\000AB"; }

.fc-icon-right-double-arrow:after {
  content: "\000BB"; }

/* icon (for jquery ui) */
.fc-button .ui-icon {
  position: relative;
  top: 50%;
  float: left;
  margin-top: -8px;
  /* we know jqui icons are always 16px tall */ }

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e6e6e6));
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6; }

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear; }

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none; }

/* Global Event Styles
------------------------------------------------------------------------*/
.fc-event-container > * {
  z-index: 8; }

.fc-event-container > .ui-draggable-dragging,
.fc-event-container > .ui-resizable-resizing {
  z-index: 9; }

.fc-event {
  border: 1px solid #3a87ad;
  /* default BORDER color */
  background-color: #3a87ad;
  /* default BACKGROUND color */
  color: #fff;
  /* default TEXT color */
  font-size: .85em;
  cursor: default; }

a.fc-event {
  text-decoration: none; }

a.fc-event,
.fc-event-draggable {
  cursor: pointer; }

.fc-rtl .fc-event {
  text-align: right; }

.fc-event-inner {
  width: 100%;
  height: 100%;
  overflow: hidden; }

.fc-event-time,
.fc-event-title {
  padding: 0 1px; }

.fc .ui-resizable-handle {
  display: block;
  position: absolute;
  z-index: 99999;
  overflow: hidden;
  /* hacky spaces (IE6/7) */
  font-size: 300%;
  /* */
  line-height: 50%;
  /* */ }

/* Horizontal Events
------------------------------------------------------------------------*/
.fc-event-hori {
  border-width: 1px 0;
  margin-bottom: 1px; }

.fc-ltr .fc-event-hori.fc-event-start,
.fc-rtl .fc-event-hori.fc-event-end {
  border-left-width: 1px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }

.fc-ltr .fc-event-hori.fc-event-end,
.fc-rtl .fc-event-hori.fc-event-start {
  border-right-width: 1px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

/* resizable */
.fc-event-hori .ui-resizable-e {
  top: 0           !important;
  /* importants override pre jquery ui 1.7 styles */
  right: -3px      !important;
  width: 7px       !important;
  height: 100%     !important;
  cursor: e-resize; }

.fc-event-hori .ui-resizable-w {
  top: 0           !important;
  left: -3px       !important;
  width: 7px       !important;
  height: 100%     !important;
  cursor: w-resize; }

.fc-event-hori .ui-resizable-handle {
  _padding-bottom: 14px;
  /* IE6 had 0 height */ }

/* Reusable Separate-border Table
------------------------------------------------------------*/
table.fc-border-separate {
  border-collapse: separate; }

.fc-border-separate th,
.fc-border-separate td {
  border-width: 1px 0 0 1px; }

.fc-border-separate th.fc-last,
.fc-border-separate td.fc-last {
  border-right-width: 1px; }

.fc-border-separate tr.fc-last th,
.fc-border-separate tr.fc-last td {
  border-bottom-width: 1px; }

.fc-border-separate tbody tr.fc-first td,
.fc-border-separate tbody tr.fc-first th {
  border-top-width: 0; }

/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/
.fc-grid th {
  text-align: center; }

.fc .fc-week-number {
  width: 22px;
  text-align: center; }

.fc .fc-week-number div {
  padding: 0 2px; }

.fc-grid .fc-day-number {
  float: right;
  padding: 0 2px; }

.fc-grid .fc-other-month .fc-day-number {
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* for IE */
  /* opacity with small font can sometimes look too faded
   might want to set the 'color' property instead
   making day-numbers bold also fixes the problem */ }

.fc-grid .fc-day-content {
  clear: both;
  padding: 2px 2px 1px;
  /* distance between events and day edges */ }

/* event styles */
.fc-grid .fc-event-time {
  font-weight: bold; }

/* right-to-left */
.fc-rtl .fc-grid .fc-day-number {
  float: left; }

.fc-rtl .fc-grid .fc-event-time {
  float: right; }

/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/
.fc-agenda table {
  border-collapse: separate; }

.fc-agenda-days th {
  text-align: center; }

.fc-agenda .fc-agenda-axis {
  width: 50px;
  padding: 0 4px;
  vertical-align: middle;
  text-align: right;
  font-weight: normal; }

.fc-agenda-slots .fc-agenda-axis {
  white-space: nowrap; }

.fc-agenda .fc-week-number {
  font-weight: bold; }

.fc-agenda .fc-day-content {
  padding: 2px 2px 1px; }

/* make axis border take precedence */
.fc-agenda-days .fc-agenda-axis {
  border-right-width: 1px; }

.fc-agenda-days .fc-col0 {
  border-left-width: 0; }

/* all-day area */
.fc-agenda-allday th {
  border-width: 0 1px; }

.fc-agenda-allday .fc-day-content {
  min-height: 34px;
  /* TODO: doesnt work well in quirksmode */
  _height: 34px; }

/* divider (between all-day and slots) */
.fc-agenda-divider-inner {
  height: 2px;
  overflow: hidden; }

.fc-widget-header .fc-agenda-divider-inner {
  background: #eee; }

/* slot rows */
.fc-agenda-slots th {
  border-width: 1px 1px 0; }

.fc-agenda-slots td {
  border-width: 1px 0 0;
  background: none; }

.fc-agenda-slots td div {
  height: 20px; }

.fc-agenda-slots tr.fc-slot0 th,
.fc-agenda-slots tr.fc-slot0 td {
  border-top-width: 0; }

.fc-agenda-slots tr.fc-minor th,
.fc-agenda-slots tr.fc-minor td {
  border-top-style: dotted; }

.fc-agenda-slots tr.fc-minor th.ui-widget-header {
  *border-top-style: solid;
  /* doesn't work with background in IE6/7 */ }

/* Vertical Events
------------------------------------------------------------------------*/
.fc-event-vert {
  border-width: 0 1px; }

.fc-event-vert.fc-event-start {
  border-top-width: 1px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.fc-event-vert.fc-event-end {
  border-bottom-width: 1px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px; }

.fc-event-vert .fc-event-time {
  white-space: nowrap;
  font-size: 10px; }

.fc-event-vert .fc-event-inner {
  position: relative;
  z-index: 2; }

.fc-event-vert .fc-event-bg {
  /* makes the event lighter w/ a semi-transparent overlay  */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .25;
  filter: alpha(opacity=25); }

.fc .ui-draggable-dragging .fc-event-bg,
.fc-select-helper .fc-event-bg {
  display: none\9;
  /* for IE6/7/8. nested opacity filters while dragging don't work */ }

/* resizable */
.fc-event-vert .ui-resizable-s {
  bottom: 0        !important;
  /* importants override pre jquery ui 1.7 styles */
  width: 100%      !important;
  height: 8px      !important;
  overflow: hidden !important;
  line-height: 8px !important;
  font-size: 11px  !important;
  font-family: monospace;
  text-align: center;
  cursor: s-resize; }

.fc-agenda .ui-resizable-resizing {
  /* TODO: better selector */
  _overflow: hidden; }

/*! jQuery UI - v1.11.4 - 2015-08-27
* http://jqueryui.com
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault='Open%20Sans'%2C%20Arial%2C%20Helvetica%2C%20sans-serif&fwDefault=normal&fsDefault=14px&cornerRadius=0px&bgColorHeader=%232f5ab2&bgTextureHeader=flat&bgImgOpacityHeader=0&borderColorHeader=%232f5ab2&fcHeader=%23ffffff&iconColorHeader=%23ffffff&bgColorContent=%23ffffff&bgTextureContent=flat&bgImgOpacityContent=0&borderColorContent=%23e1e2e3&fcContent=%23999999&iconColorContent=%23999999&bgColorDefault=%232f5ab2&bgTextureDefault=flat&bgImgOpacityDefault=0&borderColorDefault=%232f5ab2&fcDefault=%23ffffff&iconColorDefault=%23ffffff&bgColorHover=%233464c6&bgTextureHover=flat&bgImgOpacityHover=0&borderColorHover=%233464c6&fcHover=%23ffffff&iconColorHover=%23ffffff&bgColorActive=%232a509e&bgTextureActive=flat&bgImgOpacityActive=0&borderColorActive=%232a509e&fcActive=%23ffffff&iconColorActive=%23ffffff&bgColorHighlight=%235ecaff&bgTextureHighlight=flat&bgImgOpacityHighlight=0&borderColorHighlight=%235ecaff&fcHighlight=%23ffffff&iconColorHighlight=%23ffffff&bgColorError=%23ED5E56&bgTextureError=flat&bgImgOpacityError=0&borderColorError=%23ED5E56&fcError=%23ffffff&iconColorError=%23ffffff&bgColorOverlay=%23000000&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=70&bgColorShadow=%23000000&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=0&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */ }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */ }

.ui-front {
  z-index: 100; }

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important; }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none; }

.ui-resizable {
  position: relative; }

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none; }

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none; }

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0; }

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0; }

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px; }

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px; }

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px; }

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px; }

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none; }

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black; }

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none; }

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  min-height: 0;
  /* support: IE7 */
  font-size: 100%; }

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em; }

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em; }

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: .5em;
  top: 50%;
  margin-top: -8px; }

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto; }

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default; }

.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
  /* removes extra width in IE */ }

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none; }

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2.2em; }

/* button elements seem to need a little more width */
button.ui-button-icon-only {
  width: 2.4em; }

.ui-button-icons-only {
  width: 3.4em; }

button.ui-button-icons-only {
  width: 3.7em; }

/* button text element */
.ui-button .ui-button-text {
  display: block;
  line-height: normal; }

.ui-button-text-only .ui-button-text {
  padding: .4em 1em; }

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: .4em;
  text-indent: -9999999px; }

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 1em .4em 2.1em; }

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 2.1em .4em 1em; }

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em; }

/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: .4em 1em; }

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px; }

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px; }

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: .5em; }

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: .5em; }

/* button sets */
.ui-buttonset {
  margin-right: 7px; }

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -.3em; }

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0; }

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px; }

.ui-datepicker .ui-datepicker-prev {
  left: 2px; }

.ui-datepicker .ui-datepicker-next {
  right: 2px; }

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%; }

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em; }

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: 1px; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0; }

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative; }

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px; }

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto; }

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em; }

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right; }

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer; }

.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px; }

.ui-draggable .ui-dialog-titlebar {
  cursor: move; }

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: none; }

.ui-menu .ui-menu {
  position: absolute; }

.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 3px 1em 3px .4em;
  cursor: pointer;
  min-height: 0;
  /* support: IE7 */
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); }

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0; }

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px; }

/* icon support */
.ui-menu-icons {
  position: relative; }

.ui-menu-icons .ui-menu-item {
  padding-left: 2em; }

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0; }

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0; }

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden; }

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%; }

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25; }

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none; }

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none; }

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  /* Support: IE7 */
  overflow-x: hidden;
  padding-bottom: 1px; }

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0; }

.ui-selectmenu-open {
  display: block; }

.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer; }

.ui-selectmenu-button span.ui-icon {
  right: 0.5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%; }

.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

.ui-slider {
  position: relative;
  text-align: left; }

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none; }

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0; }

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
  filter: inherit; }

.ui-slider-horizontal {
  height: .8em; }

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em; }

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%; }

.ui-slider-horizontal .ui-slider-range-min {
  left: 0; }

.ui-slider-horizontal .ui-slider-range-max {
  right: 0; }

.ui-slider-vertical {
  width: .8em;
  height: 100px; }

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em; }

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%; }

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0; }

.ui-slider-vertical .ui-slider-range-max {
  top: 0; }

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle; }

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 22px; }

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0; }

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none; }

/* vertically center icon */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0; }

.ui-spinner-up {
  top: 0; }

.ui-spinner-down {
  bottom: 0; }

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px; }

.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em; }

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0; }

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap; }

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text; }

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer; }

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none; }

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa; }

body .ui-tooltip {
  border-width: 2px; }

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px; }

.ui-widget .ui-widget {
  font-size: 1em; }

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 1em; }

.ui-widget-content {
  border: 1px solid #E6E6E6;
  background: #ffffff;
  color: #666666; }

.ui-widget-content a {
  color: #666666; }

.ui-widget-header {
  border: 1px solid #e02323;
  background: #e02323;
  color: #ffffff;
  font-weight: bold; }

.ui-widget-header a {
  color: #ffffff; }

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #e02323;
  background: #e02323;
  font-weight: normal;
  color: #ffffff; }

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #ffffff;
  text-decoration: none; }

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #e65050;
  background: #e65050;
  font-weight: normal;
  color: #ffffff; }

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
  color: #ffffff;
  text-decoration: none; }

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #b61a1a;
  background: #b61a1a;
  font-weight: normal;
  color: #ffffff; }

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #ed7c7c;
  background: #ed7c7c;
  color: #ffffff; }

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #ffffff; }

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #ED5E56;
  background: #ED5E56;
  color: #ffffff; }

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #ffffff; }

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #ffffff; }

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold; }

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal; }

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none; }

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */ }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px; }

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("/assets/images/jqueryui/ui-icons_999999_256x240.png"); }

.ui-widget-header .ui-icon {
  background-image: url("/assets/images/jqueryui/ui-icons_ffffff_256x240.png"); }

.ui-state-default .ui-icon {
  background-image: url("/assets/images/jqueryui/ui-icons_ffffff_256x240.png"); }

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url("/assets/images/jqueryui/ui-icons_ffffff_256x240.png"); }

.ui-state-active .ui-icon {
  background-image: url("/assets/images/jqueryui/ui-icons_ffffff_256x240.png"); }

.ui-state-highlight .ui-icon {
  background-image: url("/assets/images/jqueryui/ui-icons_ffffff_256x240.png"); }

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("/assets/images/jqueryui/ui-icons_ffffff_256x240.png"); }

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px; }

.ui-icon-carat-1-n {
  background-position: 0 0; }

.ui-icon-carat-1-ne {
  background-position: -16px 0; }

.ui-icon-carat-1-e {
  background-position: -32px 0; }

.ui-icon-carat-1-se {
  background-position: -48px 0; }

.ui-icon-carat-1-s {
  background-position: -64px 0; }

.ui-icon-carat-1-sw {
  background-position: -80px 0; }

.ui-icon-carat-1-w {
  background-position: -96px 0; }

.ui-icon-carat-1-nw {
  background-position: -112px 0; }

.ui-icon-carat-2-n-s {
  background-position: -128px 0; }

.ui-icon-carat-2-e-w {
  background-position: -144px 0; }

.ui-icon-triangle-1-n {
  background-position: 0 -16px; }

.ui-icon-triangle-1-ne {
  background-position: -16px -16px; }

.ui-icon-triangle-1-e {
  background-position: -32px -16px; }

.ui-icon-triangle-1-se {
  background-position: -48px -16px; }

.ui-icon-triangle-1-s {
  background-position: -64px -16px; }

.ui-icon-triangle-1-sw {
  background-position: -80px -16px; }

.ui-icon-triangle-1-w {
  background-position: -96px -16px; }

.ui-icon-triangle-1-nw {
  background-position: -112px -16px; }

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px; }

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px; }

.ui-icon-arrow-1-n {
  background-position: 0 -32px; }

.ui-icon-arrow-1-ne {
  background-position: -16px -32px; }

.ui-icon-arrow-1-e {
  background-position: -32px -32px; }

.ui-icon-arrow-1-se {
  background-position: -48px -32px; }

.ui-icon-arrow-1-s {
  background-position: -64px -32px; }

.ui-icon-arrow-1-sw {
  background-position: -80px -32px; }

.ui-icon-arrow-1-w {
  background-position: -96px -32px; }

.ui-icon-arrow-1-nw {
  background-position: -112px -32px; }

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px; }

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px; }

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px; }

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px; }

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px; }

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px; }

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px; }

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px; }

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px; }

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px; }

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px; }

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px; }

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px; }

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px; }

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px; }

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px; }

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px; }

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px; }

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px; }

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px; }

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px; }

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px; }

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px; }

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px; }

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px; }

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px; }

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px; }

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px; }

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px; }

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px; }

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px; }

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px; }

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px; }

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px; }

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px; }

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px; }

.ui-icon-arrow-4 {
  background-position: 0 -80px; }

.ui-icon-arrow-4-diag {
  background-position: -16px -80px; }

.ui-icon-extlink {
  background-position: -32px -80px; }

.ui-icon-newwin {
  background-position: -48px -80px; }

.ui-icon-refresh {
  background-position: -64px -80px; }

.ui-icon-shuffle {
  background-position: -80px -80px; }

.ui-icon-transfer-e-w {
  background-position: -96px -80px; }

.ui-icon-transferthick-e-w {
  background-position: -112px -80px; }

.ui-icon-folder-collapsed {
  background-position: 0 -96px; }

.ui-icon-folder-open {
  background-position: -16px -96px; }

.ui-icon-document {
  background-position: -32px -96px; }

.ui-icon-document-b {
  background-position: -48px -96px; }

.ui-icon-note {
  background-position: -64px -96px; }

.ui-icon-mail-closed {
  background-position: -80px -96px; }

.ui-icon-mail-open {
  background-position: -96px -96px; }

.ui-icon-suitcase {
  background-position: -112px -96px; }

.ui-icon-comment {
  background-position: -128px -96px; }

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

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

.ui-icon-trash {
  background-position: -176px -96px; }

.ui-icon-locked {
  background-position: -192px -96px; }

.ui-icon-unlocked {
  background-position: -208px -96px; }

.ui-icon-bookmark {
  background-position: -224px -96px; }

.ui-icon-tag {
  background-position: -240px -96px; }

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

.ui-icon-flag {
  background-position: -16px -112px; }

.ui-icon-calendar {
  background-position: -32px -112px; }

.ui-icon-cart {
  background-position: -48px -112px; }

.ui-icon-pencil {
  background-position: -64px -112px; }

.ui-icon-clock {
  background-position: -80px -112px; }

.ui-icon-disk {
  background-position: -96px -112px; }

.ui-icon-calculator {
  background-position: -112px -112px; }

.ui-icon-zoomin {
  background-position: -128px -112px; }

.ui-icon-zoomout {
  background-position: -144px -112px; }

.ui-icon-search {
  background-position: -160px -112px; }

.ui-icon-wrench {
  background-position: -176px -112px; }

.ui-icon-gear {
  background-position: -192px -112px; }

.ui-icon-heart {
  background-position: -208px -112px; }

.ui-icon-star {
  background-position: -224px -112px; }

.ui-icon-link {
  background-position: -240px -112px; }

.ui-icon-cancel {
  background-position: 0 -128px; }

.ui-icon-plus {
  background-position: -16px -128px; }

.ui-icon-plusthick {
  background-position: -32px -128px; }

.ui-icon-minus {
  background-position: -48px -128px; }

.ui-icon-minusthick {
  background-position: -64px -128px; }

.ui-icon-close {
  background-position: -80px -128px; }

.ui-icon-closethick {
  background-position: -96px -128px; }

.ui-icon-key {
  background-position: -112px -128px; }

.ui-icon-lightbulb {
  background-position: -128px -128px; }

.ui-icon-scissors {
  background-position: -144px -128px; }

.ui-icon-clipboard {
  background-position: -160px -128px; }

.ui-icon-copy {
  background-position: -176px -128px; }

.ui-icon-contact {
  background-position: -192px -128px; }

.ui-icon-image {
  background-position: -208px -128px; }

.ui-icon-video {
  background-position: -224px -128px; }

.ui-icon-script {
  background-position: -240px -128px; }

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

.ui-icon-info {
  background-position: -16px -144px; }

.ui-icon-notice {
  background-position: -32px -144px; }

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

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

.ui-icon-bullet {
  background-position: -80px -144px; }

.ui-icon-radio-on {
  background-position: -96px -144px; }

.ui-icon-radio-off {
  background-position: -112px -144px; }

.ui-icon-pin-w {
  background-position: -128px -144px; }

.ui-icon-pin-s {
  background-position: -144px -144px; }

.ui-icon-play {
  background-position: 0 -160px; }

.ui-icon-pause {
  background-position: -16px -160px; }

.ui-icon-seek-next {
  background-position: -32px -160px; }

.ui-icon-seek-prev {
  background-position: -48px -160px; }

.ui-icon-seek-end {
  background-position: -64px -160px; }

.ui-icon-seek-start {
  background-position: -80px -160px; }

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px; }

.ui-icon-stop {
  background-position: -96px -160px; }

.ui-icon-eject {
  background-position: -112px -160px; }

.ui-icon-volume-off {
  background-position: -128px -160px; }

.ui-icon-volume-on {
  background-position: -144px -160px; }

.ui-icon-power {
  background-position: 0 -176px; }

.ui-icon-signal-diag {
  background-position: -16px -176px; }

.ui-icon-signal {
  background-position: -32px -176px; }

.ui-icon-battery-0 {
  background-position: -48px -176px; }

.ui-icon-battery-1 {
  background-position: -64px -176px; }

.ui-icon-battery-2 {
  background-position: -80px -176px; }

.ui-icon-battery-3 {
  background-position: -96px -176px; }

.ui-icon-circle-plus {
  background-position: 0 -192px; }

.ui-icon-circle-minus {
  background-position: -16px -192px; }

.ui-icon-circle-close {
  background-position: -32px -192px; }

.ui-icon-circle-triangle-e {
  background-position: -48px -192px; }

.ui-icon-circle-triangle-s {
  background-position: -64px -192px; }

.ui-icon-circle-triangle-w {
  background-position: -80px -192px; }

.ui-icon-circle-triangle-n {
  background-position: -96px -192px; }

.ui-icon-circle-arrow-e {
  background-position: -112px -192px; }

.ui-icon-circle-arrow-s {
  background-position: -128px -192px; }

.ui-icon-circle-arrow-w {
  background-position: -144px -192px; }

.ui-icon-circle-arrow-n {
  background-position: -160px -192px; }

.ui-icon-circle-zoomin {
  background-position: -176px -192px; }

.ui-icon-circle-zoomout {
  background-position: -192px -192px; }

.ui-icon-circle-check {
  background-position: -208px -192px; }

.ui-icon-circlesmall-plus {
  background-position: 0 -208px; }

.ui-icon-circlesmall-minus {
  background-position: -16px -208px; }

.ui-icon-circlesmall-close {
  background-position: -32px -208px; }

.ui-icon-squaresmall-plus {
  background-position: -48px -208px; }

.ui-icon-squaresmall-minus {
  background-position: -64px -208px; }

.ui-icon-squaresmall-close {
  background-position: -80px -208px; }

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px; }

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px; }

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px; }

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px; }

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px; }

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px; }

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 0px; }

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 0px; }

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 0px; }

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 0px; }

/* Overlays */
.ui-widget-overlay {
  background: #000000;
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */ }

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #000000;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
  border-radius: 8px; }

/*
 * qTip2 - Pretty powerful tooltips - v2.2.1
 * http://qtip2.com
 *
 * Copyright (c) 2014 
 * Released under the MIT licenses
 * http://jquery.org/license
 *
 * Date: Sat Sep 6 2014 11:12 GMT+0100+0100
 * Plugins: tips modal viewport svg imagemap ie6
 * Styles: core basic css3
 */
.qtip {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  max-width: 280px;
  min-width: 50px;
  font-size: 10.5px;
  line-height: 12px;
  direction: ltr;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0; }

.qtip-content {
  position: relative;
  padding: 5px 9px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word; }

.qtip-titlebar {
  position: relative;
  padding: 5px 35px 5px 10px;
  overflow: hidden;
  border-width: 0 0 1px;
  font-weight: bold; }

.qtip-titlebar + .qtip-content {
  border-top-width: 0 !important; }

/* Default close button class */
.qtip-close {
  position: absolute;
  right: -9px;
  top: -9px;
  z-index: 11;
  /* Overlap .qtip-tip */
  cursor: pointer;
  outline: medium none;
  border: 1px solid transparent; }

.qtip-titlebar .qtip-close {
  right: 4px;
  top: 50%;
  margin-top: -9px; }

* html .qtip-titlebar .qtip-close {
  top: 16px; }

/* IE fix */
.qtip-titlebar .ui-icon,
.qtip-icon .ui-icon {
  display: block;
  text-indent: -1000em;
  direction: ltr; }

.qtip-icon, .qtip-icon .ui-icon {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none; }

.qtip-icon .ui-icon {
  width: 18px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  text-indent: 0;
  font: normal bold 10px/13px Tahoma,sans-serif;
  color: inherit;
  background: transparent none no-repeat -100em -100em; }

/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
/* Default tooltip style */
.qtip-default {
  border: 1px solid #F1D031;
  background-color: #FFFFA3;
  color: #555; }

.qtip-default .qtip-titlebar {
  background-color: #FFEF93; }

.qtip-default .qtip-icon {
  border-color: #CCC;
  background: #F1F1F1;
  color: #777; }

.qtip-default .qtip-titlebar .qtip-close {
  border-color: #AAA;
  color: #111; }

/*! Light tooltip style */
.qtip-light {
  background-color: white;
  border-color: #E2E2E2;
  color: #454545; }

.qtip-light .qtip-titlebar {
  background-color: #f1f1f1; }

/*! Dark tooltip style */
.qtip-dark {
  background-color: #505050;
  border-color: #303030;
  color: #f3f3f3; }

.qtip-dark .qtip-titlebar {
  background-color: #404040; }

.qtip-dark .qtip-icon {
  border-color: #444; }

.qtip-dark .qtip-titlebar .ui-state-hover {
  border-color: #303030; }

/*! Cream tooltip style */
.qtip-cream {
  background-color: #FBF7AA;
  border-color: #F9E98E;
  color: #A27D35; }

.qtip-cream .qtip-titlebar {
  background-color: #F0DE7D; }

.qtip-cream .qtip-close .qtip-icon {
  background-position: -82px 0; }

/*! Red tooltip style */
.qtip-red {
  background-color: #F78B83;
  border-color: #D95252;
  color: #912323; }

.qtip-red .qtip-titlebar {
  background-color: #F06D65; }

.qtip-red .qtip-close .qtip-icon {
  background-position: -102px 0; }

.qtip-red .qtip-icon {
  border-color: #D95252; }

.qtip-red .qtip-titlebar .ui-state-hover {
  border-color: #D95252; }

/*! Green tooltip style */
.qtip-green {
  background-color: #CAED9E;
  border-color: #90D93F;
  color: #3F6219; }

.qtip-green .qtip-titlebar {
  background-color: #B0DE78; }

.qtip-green .qtip-close .qtip-icon {
  background-position: -42px 0; }

/*! Blue tooltip style */
.qtip-blue {
  background-color: #E5F6FE;
  border-color: #ADD9ED;
  color: #5E99BD; }

.qtip-blue .qtip-titlebar {
  background-color: #D0E9F5; }

.qtip-blue .qtip-close .qtip-icon {
  background-position: -2px 0; }

.qtip-shadow {
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15); }

/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-rounded,
.qtip-tipsy,
.qtip-bootstrap {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.qtip-rounded .qtip-titlebar {
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0; }

/* Youtube tooltip style */
.qtip-youtube {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 3px #333;
  -moz-box-shadow: 0 0 3px #333;
  box-shadow: 0 0 3px #333;
  color: white;
  border: 0 solid transparent;
  background: #4A4A4A;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4A4A4A), color-stop(100%, black));
  background-image: -webkit-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -moz-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -ms-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -o-linear-gradient(top, #4A4A4A 0, black 100%); }

.qtip-youtube .qtip-titlebar {
  background-color: #4A4A4A;
  background-color: transparent; }

.qtip-youtube .qtip-content {
  padding: .75em;
  font: 12px arial,sans-serif;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);"; }

.qtip-youtube .qtip-icon {
  border-color: #222; }

.qtip-youtube .qtip-titlebar .ui-state-hover {
  border-color: #303030; }

/* jQuery TOOLS Tooltip style */
.qtip-jtools {
  background: #232323;
  background: rgba(0, 0, 0, 0.7);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
  background-image: -moz-linear-gradient(top, #717171, #232323);
  background-image: -webkit-linear-gradient(top, #717171, #232323);
  background-image: -ms-linear-gradient(top, #717171, #232323);
  background-image: -o-linear-gradient(top, #717171, #232323);
  border: 2px solid #ddd;
  border: 2px solid #f1f1f1;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 12px #333;
  -moz-box-shadow: 0 0 12px #333;
  box-shadow: 0 0 12px #333; }

/* IE Specific */
.qtip-jtools .qtip-titlebar {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)"; }

.qtip-jtools .qtip-content {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)"; }

.qtip-jtools .qtip-titlebar,
.qtip-jtools .qtip-content {
  background: transparent;
  color: white;
  border: 0 dashed transparent; }

.qtip-jtools .qtip-icon {
  border-color: #555; }

.qtip-jtools .qtip-titlebar .ui-state-hover {
  border-color: #333; }

/* Cluetip style */
.qtip-cluetip {
  -webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  background-color: #D9D9C2;
  color: #111;
  border: 0 dashed transparent; }

.qtip-cluetip .qtip-titlebar {
  background-color: #87876A;
  color: white;
  border: 0 dashed transparent; }

.qtip-cluetip .qtip-icon {
  border-color: #808064; }

.qtip-cluetip .qtip-titlebar .ui-state-hover {
  border-color: #696952;
  color: #696952; }

/* Tipsy style */
.qtip-tipsy {
  background: black;
  background: rgba(0, 0, 0, 0.87);
  color: white;
  border: 0 solid transparent;
  font-size: 11px;
  font-family: 'Lucida Grande', sans-serif;
  font-weight: bold;
  line-height: 16px;
  text-shadow: 0 1px black; }

.qtip-tipsy .qtip-titlebar {
  padding: 6px 35px 0 10px;
  background-color: transparent; }

.qtip-tipsy .qtip-content {
  padding: 6px 10px; }

.qtip-tipsy .qtip-icon {
  border-color: #222;
  text-shadow: none; }

.qtip-tipsy .qtip-titlebar .ui-state-hover {
  border-color: #303030; }

/* Tipped style */
.qtip-tipped {
  border: 3px solid #959FA9;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #F9F9F9;
  color: #454545;
  font-weight: normal;
  font-family: serif; }

.qtip-tipped .qtip-titlebar {
  border-bottom-width: 0;
  color: white;
  background: #3A79B8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3A79B8), to(#2E629D));
  background-image: -webkit-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -moz-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -ms-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -o-linear-gradient(top, #3A79B8, #2E629D);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)"; }

.qtip-tipped .qtip-icon {
  border: 2px solid #285589;
  background: #285589; }

.qtip-tipped .qtip-icon .ui-icon {
  background-color: #FBFBFB;
  color: #555; }

/**
 * Twitter Bootstrap style.
 *
 * Tested with IE 8, IE 9, Chrome 18, Firefox 9, Opera 11.
 * Does not work with IE 7.
 */
.qtip-bootstrap {
  /** Taken from Bootstrap body */
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  /** Taken from Bootstrap .popover */
  padding: 1px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box; }

.qtip-bootstrap .qtip-titlebar {
  /** Taken from Bootstrap .popover-title */
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0; }

.qtip-bootstrap .qtip-titlebar .qtip-close {
  /**
			 * Overrides qTip2:
			 * .qtip-titlebar .qtip-close{
			 *   [...]
			 *   right: 4px;
			 *   top: 50%;
			 *   [...]
			 *   border-style: solid;
			 * }
			 */
  right: 11px;
  top: 45%;
  border-style: none; }

.qtip-bootstrap .qtip-content {
  /** Taken from Bootstrap .popover-content */
  padding: 9px 14px; }

.qtip-bootstrap .qtip-icon {
  /**
		 * Overrides qTip2:
		 * .qtip-default .qtip-icon {
		 *   border-color: #CCC;
		 *   background: #F1F1F1;
		 *   color: #777;
		 * }
		 */
  background: transparent; }

.qtip-bootstrap .qtip-icon .ui-icon {
  /**
			 * Overrides qTip2:
			 * .qtip-icon .ui-icon{
			 *   width: 18px;
			 *   height: 14px;
			 * }
			 */
  width: auto;
  height: auto;
  /* Taken from Bootstrap .close */
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20); }

.qtip-bootstrap .qtip-icon .ui-icon:hover {
  /* Taken from Bootstrap .close:hover */
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40); }

/* IE9 fix - removes all filters */
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar {
  -webkit-filter: none;
  filter: none;
  -ms-filter: none; }

.qtip .qtip-tip {
  margin: 0 auto;
  overflow: hidden;
  z-index: 10; }

/* Opera bug #357 - Incorrect tip position
	https://github.com/Craga89/qTip2/issues/367 */
x:-o-prefocus, .qtip .qtip-tip {
  visibility: hidden; }

.qtip .qtip-tip,
.qtip .qtip-tip .qtip-vml,
.qtip .qtip-tip canvas {
  position: absolute;
  color: #123456;
  background: transparent;
  border: 0 dashed transparent; }

.qtip .qtip-tip canvas {
  top: 0;
  left: 0; }

.qtip .qtip-tip .qtip-vml {
  behavior: url(#default#VML);
  display: inline-block;
  visibility: visible; }

#qtip-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

/* Applied to modals with show.modal.blur set to true */
#qtip-overlay.blurs {
  cursor: pointer; }

/* Change opacity of overlay here */
#qtip-overlay div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; }

.qtipmodal-ie6fix {
  position: absolute !important; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* ================================= */
/* Body and Universal Reset */
/* ================================= */
* {
  margin: 0;
  padding: 0; }

html {
  background: #EEEEEE;
  min-height: 100%; }

body {
  background: #FFFFFF;
  height: auto;
  position: relative; }

#popupWindowCaller {
  display: none; }

img {
  border: none; }

::-moz-selection {
  background: #393E42;
  color: #FFFFFF; }

::selection {
  background: #393E42;
  color: #FFFFFF; }

::-moz-selection {
  background: #393E42;
  color: #FFFFFF; }

@media (max-width: 767px) {
  html, body {
    font-size: 14px;
    line-height: 20px; }
  #homePage #menu_mobile {
    display: none; }
  .text_align_center_phone {
    text-align: center !important; } }

/* ================================= */
/* Defaults */
/* ================================= */
.clear {
  width: 100%; }

.collapse_header {
  cursor: pointer;
  position: relative;
  padding-right: 3em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.collapse_header:after {
  display: block;
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal !important;
  content: "\f106";
  font-size: 1.5em;
  height: 1em;
  line-height: 1em;
  margin-top: -0.5em;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform ease 0.2s;
  -moz-transition: -moz-transform ease 0.2s;
  -ms-transition: -ms-transform ease 0.2s;
  -o-transition: -o-transform ease 0.2s;
  transition: -webkit-transform ease 0.2s;
  -o-transition: transform ease 0.2s;
  transition: transform ease 0.2s;
  transition: transform ease 0.2s, -webkit-transform ease 0.2s; }

.collapse_header.closed:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.no-csstransforms .collapse_header.closed:after {
  content: "\f107"; }

.vert_align_container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.251em;
  /* Adjust this for spacing */ }

.vert_align_container .vert_align {
  display: inline-block;
  vertical-align: middle;
  width: auto; }

.vert_center_container {
  width: 100%;
  display: table;
  height: 100%; }
  .vert_center_container .inner_vert_center_container {
    width: 100%;
    display: table-cell;
    vertical-align: middle; }

.inner_t {
  padding-top: 30px; }

.inner_b {
  padding-bottom: 30px; }

/* ================================= */
/* Typography */
/* ================================= */
#content ul.noContent li:before, #content .noContent ul li:before, #content .slickslider .slick-dots li:before {
  content: none;
  display: none; }

#content ul.noContent li, #content .noContent ul li {
  text-indent: 0;
  margin-left: 0; }

#content .slickslider .slick-dots {
  margin-left: 0 !important; }

/* ================================= */
/* Off Canvas Menu */
/* ================================= */
html, body {
  background: #1a1a1a; }

.onCanvas {
  -webkit-box-shadow: 3px 0px 0px 0px #1a1a1a;
  box-shadow: 3px 0px 0px 0px #1a1a1a;
  background: #ffffff; }

.offCanvas {
  background: #333333; }

a.offCanvas_trigger {
  margin: 13px 0 0 0;
  height: 22px;
  float: none;
  margin-top: 5px; }

.offCanvas_trigger.offCanvas_trigger_open .offCanvas_trigger_item,
.offCanvas_trigger_item {
  background: #000000; }

ul.offCanvas_menu li a {
  color: #ffffff;
  text-transform: none; }

/* ================================= */
/* Sidebar */
/* ================================= */
.sidebar {
  padding-right: 31px;
  position: relative;
  margin-bottom: 20px; }
  .sidebar .parts_consumables_sidebar {
    display: block;
    margin-bottom: 20px;
    position: relative; }
    .sidebar .parts_consumables_sidebar .banner_1 {
      display: block;
      margin-left: -15%;
      margin-top: -9%;
      width: 115.053%; }
      @media screen and (max-width: 767px) {
        .sidebar .parts_consumables_sidebar .banner_1 {
          margin-top: 0px; } }
    .sidebar .parts_consumables_sidebar .vert_align_container {
      position: absolute;
      top: 0px;
      bottom: 50px;
      left: 0px;
      right: 0px;
      font-size: 0px; }
    .sidebar .parts_consumables_sidebar .banner_text {
      font-size: 14px;
      font-weight: bold;
      text-align: right;
      color: #ffffff;
      line-height: 1.3;
      padding: 0px 20px;
      width: 100%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box; }
      @media screen and (min-width: 768px) and (max-width: 1023px) {
        .sidebar .parts_consumables_sidebar .banner_text {
          font-size: 12px; } }
      .sidebar .parts_consumables_sidebar .banner_text h2 {
        font-size: 1.714em;
        line-height: 1;
        text-transform: none;
        color: inherit;
        margin-bottom: 10px; }
      .sidebar .parts_consumables_sidebar .banner_text > *:last-child {
        margin-bottom: 0px; }
    .sidebar .parts_consumables_sidebar .button, .sidebar .parts_consumables_sidebar .ui-button.ui-state-default {
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      text-transform: none;
      padding-left: 5px;
      padding-right: 5px; }
      @media screen and (min-width: 768px) and (max-width: 1023px) {
        .sidebar .parts_consumables_sidebar .button, .sidebar .parts_consumables_sidebar .ui-button.ui-state-default {
          font-size: 12px; } }
      .sidebar .parts_consumables_sidebar .button .fa, .sidebar .parts_consumables_sidebar .ui-button.ui-state-default .fa {
        font-size: 1.8em;
        line-height: 0.55;
        vertical-align: sub;
        margin-left: 0.2em; }
  .sidebar:after {
    content: '';
    position: absolute;
    height: 100%;
    right: 10px;
    top: 0px;
    bottom: 0px;
    width: 1px;
    background-image: -webkit-linear-gradient(top, #E6E6E6 0%, #E6E6E6 80%, rgba(230, 230, 230, 0) 100%);
    /* Chrome10+,Safari5.1+ */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#E6E6E6), color-stop(80%, #E6E6E6), to(rgba(230, 230, 230, 0)));
    background-image: -o-linear-gradient(top, #E6E6E6 0%, #E6E6E6 80%, rgba(230, 230, 230, 0) 100%);
    background-image: linear-gradient(to bottom, #E6E6E6 0%, #E6E6E6 80%, rgba(230, 230, 230, 0) 100%);
    /* W3C */ }
  @media screen and (max-width: 767px) {
    .sidebar {
      padding-right: 0px; }
      .sidebar.inner {
        padding-right: 10px; }
      .sidebar:after {
        display: none; } }

.sub_nav {
  background-color: #ffffff;
  padding: 0px;
  margin: 0px 0px 30px 0px; }
  .sub_nav a {
    display: block;
    color: #666666;
    padding: 15px;
    border: 1px solid #E6E6E6;
    border-top: 0px none transparent;
    text-decoration: none; }
    .sub_nav a:hover {
      color: #e02323; }
    .sub_nav a.down {
      color: #e02323;
      font-weight: bold; }
    .sub_nav a.level_1 {
      padding: 6px 10px 6px 20px; }
    .sub_nav a.level_2 {
      font-size: 11px;
      padding: 6px 10px 6px 35px; }
    .sub_nav a.level_3 {
      font-size: 11px;
      padding: 6px 10px 6px 50px; }
  .sub_nav .sub_nav_heading {
    padding: 15px;
    margin-bottom: 0px;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    background: #e02323;
    border: 0px none transparent;
    background-color: #e02323;
    background-image: -webkit-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#e02323), to(#cd1d1d));
    background-image: -o-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
    background-image: linear-gradient(to right, #e02323 0%, #cd1d1d 100%);
    background-position: left top; }
    .sub_nav .sub_nav_heading:hover {
      color: #ffffff; }

/* ================================= */
/* Content */
/* ================================= */
#content {
  padding: 0px;
  width: 100%;
  display: block;
  padding-top: 30px; }
  #content.home {
    padding-top: 0px; }

#copy {
  margin-bottom: 20px;
  /*
	@media screen and (max-width: $grid_s_max) {
		margin-top: 20px;
	}
	*/ }

.copy > h1:first-child {
  margin-top: -0.25em; }

.copy p, .copy table, .copy ul, .copy ol {
  margin: 0 0 18px 0; }

.copy ul, .copy ol {
  margin-left: 18px; }

/* ================================= */
/* Widgets */
/* ================================= */
.widget, .dialog {
  margin-top: 0px;
  margin-bottom: 30px; }
  .widget .widget_title, .dialog .widget_title, .dialog .title-bar, .dialog .title {
    padding: 15px;
    background: #e02323;
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: none;
    background-color: #e02323;
    background-image: -webkit-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#e02323), to(#cd1d1d));
    background-image: -o-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
    background-image: linear-gradient(to right, #e02323 0%, #cd1d1d 100%);
    background-position: left top; }
    .widget .widget_title h2, .dialog .widget_title h2, .dialog .title-bar h2, .dialog .title h2 {
      text-transform: inherit;
      font-size: inherit;
      color: inherit;
      margin: 0; }
  .widget .widget_content, .dialog .widget_content, .dialog .content {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-top: 0px none transparent;
    padding: 15px;
    /*
		h2, h2 a {
			font-size:     13px;
			line-height:   17px;
			color:         #000000;
			margin-bottom: 0;
		}
		*/
    /*
		p {
			margin-bottom: 10px !important;
		}

		ul {
			margin-bottom: 0 !important;

			li {
				font-weight:   bold;
				margin-left:   0px !important;
				margin-bottom: 5px;

				&:before {
					margin-right: 3px;
					font-size:    13px !important;
				}
			}
		}
		*/ }
    .widget .widget_content .widget_date, .dialog .widget_content .widget_date, .dialog .content .widget_date {
      padding: 8px 0 13px;
      margin: 4px 8px 10px 10px;
      text-align: center;
      width: 72px;
      background-color: #e02323;
      text-transform: uppercase;
      float: right;
      color: #FFFFFF;
      font-size: 22px;
      font-weight: bold; }
      .widget .widget_content .widget_date h2, .dialog .widget_content .widget_date h2, .dialog .content .widget_date h2 {
        font-weight: bold;
        font-size: 30px;
        text-transform: none;
        color: #FFFFFF;
        margin: 10px; }
    .widget .widget_content .blogDate, .dialog .widget_content .blogDate, .dialog .content .blogDate {
      color: #000000;
      font-style: italic;
      display: block;
      margin-bottom: 13px;
      line-height: 14px; }
    .widget .widget_content .blogLink, .dialog .widget_content .blogLink, .dialog .content .blogLink {
      text-decoration: underline; }
    .widget .widget_content .widget_form_row, .dialog .widget_content .widget_form_row, .dialog .content .widget_form_row {
      margin: 3px 0;
      text-align: right; }
      .widget .widget_content .widget_form_row label, .dialog .widget_content .widget_form_row label, .dialog .content .widget_form_row label {
        width: 21.5%;
        text-align: left;
        margin-right: 2%;
        display: inline-block; }
        @media (max-width: 1023px) {
          .widget .widget_content .widget_form_row label, .dialog .widget_content .widget_form_row label, .dialog .content .widget_form_row label {
            width: 100%;
            display: block; } }
    .widget .widget_content .widget_form_input, .dialog .widget_content .widget_form_input, .dialog .content .widget_form_input {
      text-align: right;
      width: 73%;
      padding-right: 1%;
      display: inline-block; }
      @media (max-width: 1023px) {
        .widget .widget_content .widget_form_input, .dialog .widget_content .widget_form_input, .dialog .content .widget_form_input {
          width: 100%; } }
    .widget .widget_content .widget_form_button, .dialog .widget_content .widget_form_button, .dialog .content .widget_form_button {
      margin-top: 7px;
      padding-right: 1%;
      text-align: right; }

.home_page .widget_content, .home_page .dialog .content, .dialog .home_page .content {
  min-height: 162px; }

/* ================================= */
/* Sitemap */
/* ================================= */
#content ul.sitemap {
  list-style: none;
  margin: 0px;
  padding: 0px; }
  #content ul.sitemap li.sitemapHeading > a {
    font-size: 16px;
    padding: 10px 5px;
    margin: 0px 0px 0px;
    border-bottom: 1px solid #DDDDDD;
    font-weight: bold;
    display: block; }
    #content ul.sitemap li.sitemapHeading > a:hover {
      background: #EEEEEE;
      border-bottom: 1px solid #AAAAAA; }
  #content ul.sitemap li a {
    padding: 5px 0px 3px;
    display: block; }
  #content ul.sitemap li:hover {
    color: #000000; }

.byLine {
  white-space: nowrap; }
  .byLine span {
    position: relative;
    display: inline-block;
    top: -5px;
    margin: 0 3px 0; }

/* ================================= */
/* Breadcrumbs */
/* ================================= */
#breadcrumbs {
  display: block;
  float: left;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #E6E6E6;
  margin-top: -30px;
  margin-bottom: 30px; }
  #breadcrumbs ul {
    list-style: none;
    margin: 23px 0px 17px 0px;
    display: block;
    position: relative; }
    #breadcrumbs ul li {
      display: inline;
      padding: 0 5px 0 0;
      color: #666666;
      font-size: 14px; }
      #breadcrumbs ul li a, #breadcrumbs ul li span {
        color: #000000;
        font-weight: bold; }
        #breadcrumbs ul li a:hover, #breadcrumbs ul li span:hover {
          color: #e02323; }
        #breadcrumbs ul li a.currentBreadcrumb, #breadcrumbs ul li span.currentBreadcrumb {
          color: #e02323;
          text-transform: none; }
          #breadcrumbs ul li a.currentBreadcrumb span, #breadcrumbs ul li span.currentBreadcrumb span {
            color: inherit; }

span.breadcrumbDivider {
  padding: 0px 0px 0px 5px;
  display: inline-block;
  font-size: 0px; }
  span.breadcrumbDivider:before {
    color: #e02323;
    font-family: FontAwesome;
    content: '\f054';
    font-size: 11.2px; }

/* ================================= */
/* Enquiry Form */
/* ================================= */
.required_fields_heading {
  font-size: 11px; }

.form_required i, .required_fields_heading i {
  color: #FF0000; }

.form_label, .form_required, .form_field {
  margin: 6px 0; }

.form_label {
  /*width:   20%;*/
  padding: 7px 0 0 0;
  clear: both; }

.form_required {
  width: 5%;
  padding: 10px 0 0 0; }

.form_field {
  width: 75%;
  min-height: 30px; }

@media (max-width: 767px) {
  .form_label {
    width: auto;
    padding: 0; }
  .form_required {
    width: 5%;
    padding: 0 0 0 10px; }
  .form_field {
    width: 100%;
    float: none;
    margin-top: 0; } }

#content .errorInput {
  background: #FFFFFF url(/assets/images/icons/error.gif) no-repeat right center;
  background: #FFFFFF url(/assets/images/icons/error_input.png) no-repeat right 10px center/17px 17px;
  -webkit-box-shadow: #EDC9C4 0 0 4px;
  box-shadow: #EDC9C4 0 0 4px;
  border: 1px solid #ED5E56; }

.imageVerification * {
  vertical-align: middle;
  margin: 0 5px 0 0;
  text-decoration: none !important; }

.imageVerification input,
.imageVerification input[type="text"] {
  width: 25%; }

.errorText {
  color: #ED5E56; }

input.hintText, .form_note {
  color: #999999; }

/* ================================= */
/* Form Fields Inputs */
/* ================================= */
input, textarea, select {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  outline: none;
  width: 100%; }

input[type="text"], input[type="email"], input[type="number"], input[type="url"], input[type="password"], textarea, select, .custom_select span {
  width: 100%;
  border-radius: 3px;
  padding: 13px 15px;
  line-height: 24px;
  border: 1px solid #E6E6E6;
  -webkit-box-shadow: rgba(255, 255, 255, 0) 0 0 4px;
  box-shadow: rgba(255, 255, 255, 0) 0 0 4px;
  -webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  -o-transition: box-shadow linear 0.2s, border linear 0.2s;
  transition: box-shadow linear 0.2s, border linear 0.2s;
  transition: box-shadow linear 0.2s, border linear 0.2s, -webkit-box-shadow linear 0.2s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus, .custom_select span:focus {
    border: 1px solid #e02323 !important; }

select {
  height: 52px; }

/* ================================= */
/* Custom Checkboxes & Radio Buttons */
/* ================================= */
input[type="radio"].custom_input,
input[type="checkbox"].custom_input {
  display: none;
  /* Large, boxy inputs */ }
  .lt-ie9 input[type="radio"].custom_input, .lt-ie9
  input[type="checkbox"].custom_input {
    width: auto;
    display: block;
    float: left;
    margin: 5px 10px 0px 0px; }
  input[type="radio"].custom_input + label,
  input[type="checkbox"].custom_input + label {
    display: block;
    padding-right: 16px;
    cursor: pointer;
    text-align: left;
    margin-bottom: 6px; }
    input[type="radio"].custom_input + label:before,
    input[type="checkbox"].custom_input + label:before {
      content: "";
      display: block;
      width: 10px;
      height: 10px;
      background: #ffffff;
      border: 2px solid #ffffff;
      -webkit-box-shadow: 0px 0px 0px 1px #BABABA;
      box-shadow: 0px 0px 0px 1px #BABABA;
      float: left;
      margin: 5px 10px 0px 0px;
      -webkit-transition: background 0.1s ease;
      -moz-transition: background 0.1s ease;
      -ms-transition: background 0.1s ease;
      -o-transition: background 0.1s ease;
      transition: background 0.1s ease; }
      .lt-ie9 input[type="radio"].custom_input + label:before, .lt-ie9
      input[type="checkbox"].custom_input + label:before {
        display: none; }
    .no-boxshadow input[type="radio"].custom_input + label:before, .no-boxshadow
    input[type="checkbox"].custom_input + label:before {
      outline: 1px solid #BABABA; }
    input[type="radio"].custom_input + label:hover:before,
    input[type="checkbox"].custom_input + label:hover:before {
      background: #BABABA; }
  input[type="radio"].custom_input + label.active:before,
  input[type="radio"].custom_input:checked + label:before,
  input[type="radio"].custom_input:checked + label:hover:before,
  input[type="checkbox"].custom_input + label.active:before,
  input[type="checkbox"].custom_input:checked + label:before,
  input[type="checkbox"].custom_input:checked + label:hover:before {
    background: #e02323; }
  input[type="radio"].custom_input.box + label,
  input[type="checkbox"].custom_input.box + label {
    border: 1px solid #BABABA;
    padding: 10px; }
  input[type="radio"].custom_input.box + label.active,
  input[type="radio"].custom_input.box:checked + label,
  input[type="radio"].custom_input.box:checked + label:hover,
  input[type="checkbox"].custom_input.box + label.active,
  input[type="checkbox"].custom_input.box:checked + label,
  input[type="checkbox"].custom_input.box:checked + label:hover {
    border-color: #e02323; }

input[type="radio"].custom_input + label:before {
  border-radius: 13px; }

/* ================================= */
/* Tables */
/* ================================= */
table.invisibleTable tr:hover .mceLayout td {
  border-top: 1px solid #CCCCCC; }

table.invisibleTable tr .mceLayout td table {
  margin: 10px 0 5px !important; }

/* ================================= */
/* Buttons */
/* ================================= */
input[type="submit"], button, .button, button.button, .ui-button.ui-state-default {
  padding: 18px 22px;
  border: 0px none transparent;
  display: inline-block;
  line-height: 1em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  width: auto;
  font-weight: bold;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-bottom: 3px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  top: 0px;
  text-decoration: none !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  text-shadow: 0px -1px 0px #e65050;
  background-image: -webkit-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(#e02323), to(#cd1d1d));
  background-image: -o-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
  background-image: linear-gradient(to right, #e02323 0%, #cd1d1d 100%);
  background-color: #e02323;
  -webkit-box-shadow: 0px 3px 0px 0px #b61a1a;
  box-shadow: 0px 3px 0px 0px #b61a1a; }
  input[type="submit"], input[type="submit"]:visited, button, button:visited, .button, button.button, .ui-button.ui-state-default, .button:visited, .ui-button.ui-state-default:visited {
    color: #ffffff; }
  input[type="submit"]:hover, button:hover, .button:hover, .ui-button.ui-state-default:hover {
    color: #ffffff;
    background-color: #e33939;
    background-image: -webkit-linear-gradient(left, #e02323 0%, #e02323 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#e02323), to(#e02323));
    background-image: -o-linear-gradient(left, #e02323 0%, #e02323 100%);
    background-image: linear-gradient(to right, #e02323 0%, #e02323 100%); }
  input[type="submit"]:active, button:active, .button:active, .ui-button.ui-state-default:active {
    color: #ffffff;
    background-color: #e02323;
    background-image: -webkit-linear-gradient(left, #cd1d1d 0%, #cd1d1d 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#cd1d1d), to(#cd1d1d));
    background-image: -o-linear-gradient(left, #cd1d1d 0%, #cd1d1d 100%);
    background-image: linear-gradient(to right, #cd1d1d 0%, #cd1d1d 100%);
    -webkit-box-shadow: 0px 0px 0px 0px #b61a1a;
    box-shadow: 0px 0px 0px 0px #b61a1a; }
  input[type="submit"]:hover, button:hover, .button:hover, .ui-button.ui-state-default:hover {
    text-decoration: none; }
  input[type="submit"]:active, button:active, .button:active, .ui-button.ui-state-default:active {
    top: 3px;
    outline: 0; }
  input[type="submit"]:focus, button:focus, .button:focus, .ui-button.ui-state-default:focus {
    outline: 0; }
  input[type="submit"].button_blue, button.button_blue, .button.button_blue, .button_blue.ui-button.ui-state-default {
    text-shadow: 0px 1px 0px #213765;
    background-image: -webkit-linear-gradient(left, #2D4C8C 0%, #3961b3 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#2D4C8C), to(#3961b3));
    background-image: -o-linear-gradient(left, #2D4C8C 0%, #3961b3 100%);
    background-image: linear-gradient(to right, #2D4C8C 0%, #3961b3 100%);
    background-color: #2D4C8C;
    -webkit-box-shadow: 0px 3px 0px 0px #213765;
    box-shadow: 0px 3px 0px 0px #213765; }
    input[type="submit"].button_blue, input[type="submit"].button_blue:visited, button.button_blue, button.button_blue:visited, .button.button_blue, .button_blue.ui-button.ui-state-default, .button.button_blue:visited, .button_blue.ui-button.ui-state-default:visited {
      color: #ffffff; }
    input[type="submit"].button_blue:hover, button.button_blue:hover, .button.button_blue:hover, .button_blue.ui-button.ui-state-default:hover {
      color: #ffffff;
      background-color: #33569f;
      background-image: -webkit-linear-gradient(left, #2D4C8C 0%, #2D4C8C 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#2D4C8C), to(#2D4C8C));
      background-image: -o-linear-gradient(left, #2D4C8C 0%, #2D4C8C 100%);
      background-image: linear-gradient(to right, #2D4C8C 0%, #2D4C8C 100%); }
    input[type="submit"].button_blue:active, button.button_blue:active, .button.button_blue:active, .button_blue.ui-button.ui-state-default:active {
      color: #ffffff;
      background-color: #2D4C8C;
      background-image: -webkit-linear-gradient(left, #274279 0%, #274279 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#274279), to(#274279));
      background-image: -o-linear-gradient(left, #274279 0%, #274279 100%);
      background-image: linear-gradient(to right, #274279 0%, #274279 100%);
      -webkit-box-shadow: 0px 0px 0px 0px #213765;
      box-shadow: 0px 0px 0px 0px #213765; }
  input[type="submit"].button_grey, button.button_grey, .button.button_grey, .button_grey.ui-button.ui-state-default {
    text-shadow: 0px 1px 0px #1a1a1a;
    background-image: -webkit-linear-gradient(left, #333333 0%, #4d4d4d 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#333333), to(#4d4d4d));
    background-image: -o-linear-gradient(left, #333333 0%, #4d4d4d 100%);
    background-image: linear-gradient(to right, #333333 0%, #4d4d4d 100%);
    background-color: #333333;
    -webkit-box-shadow: 0px 3px 0px 0px #1a1a1a;
    box-shadow: 0px 3px 0px 0px #1a1a1a; }
    input[type="submit"].button_grey, input[type="submit"].button_grey:visited, button.button_grey, button.button_grey:visited, .button.button_grey, .button_grey.ui-button.ui-state-default, .button.button_grey:visited, .button_grey.ui-button.ui-state-default:visited {
      color: #ffffff; }
    input[type="submit"].button_grey:hover, button.button_grey:hover, .button.button_grey:hover, .button_grey.ui-button.ui-state-default:hover {
      color: #ffffff;
      background-color: #404040;
      background-image: -webkit-linear-gradient(left, #333333 0%, #333333 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#333333), to(#333333));
      background-image: -o-linear-gradient(left, #333333 0%, #333333 100%);
      background-image: linear-gradient(to right, #333333 0%, #333333 100%); }
    input[type="submit"].button_grey:active, button.button_grey:active, .button.button_grey:active, .button_grey.ui-button.ui-state-default:active {
      color: #ffffff;
      background-color: #333333;
      background-image: -webkit-linear-gradient(left, #262626 0%, #262626 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#262626), to(#262626));
      background-image: -o-linear-gradient(left, #262626 0%, #262626 100%);
      background-image: linear-gradient(to right, #262626 0%, #262626 100%);
      -webkit-box-shadow: 0px 0px 0px 0px #1a1a1a;
      box-shadow: 0px 0px 0px 0px #1a1a1a; }
  input[type="submit"].button_red, button.button_red, .button.button_red, .button_red.ui-button.ui-state-default {
    text-shadow: 0px -1px 0px #f28a84;
    background-image: -webkit-linear-gradient(left, #ED5E56 0%, #eb483f 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#ED5E56), to(#eb483f));
    background-image: -o-linear-gradient(left, #ED5E56 0%, #eb483f 100%);
    background-image: linear-gradient(to right, #ED5E56 0%, #eb483f 100%);
    background-color: #ED5E56;
    -webkit-box-shadow: 0px 3px 0px 0px #e83228;
    box-shadow: 0px 3px 0px 0px #e83228; }
    input[type="submit"].button_red, input[type="submit"].button_red:visited, button.button_red, button.button_red:visited, .button.button_red, .button_red.ui-button.ui-state-default, .button.button_red:visited, .button_red.ui-button.ui-state-default:visited {
      color: #ffffff; }
    input[type="submit"].button_red:hover, button.button_red:hover, .button.button_red:hover, .button_red.ui-button.ui-state-default:hover {
      color: #ffffff;
      background-color: #ef746d;
      background-image: -webkit-linear-gradient(left, #ED5E56 0%, #ED5E56 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#ED5E56), to(#ED5E56));
      background-image: -o-linear-gradient(left, #ED5E56 0%, #ED5E56 100%);
      background-image: linear-gradient(to right, #ED5E56 0%, #ED5E56 100%); }
    input[type="submit"].button_red:active, button.button_red:active, .button.button_red:active, .button_red.ui-button.ui-state-default:active {
      color: #ffffff;
      background-color: #ED5E56;
      background-image: -webkit-linear-gradient(left, #eb483f 0%, #eb483f 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#eb483f), to(#eb483f));
      background-image: -o-linear-gradient(left, #eb483f 0%, #eb483f 100%);
      background-image: linear-gradient(to right, #eb483f 0%, #eb483f 100%);
      -webkit-box-shadow: 0px 0px 0px 0px #e83228;
      box-shadow: 0px 0px 0px 0px #e83228; }
  input[type="submit"].button_green, button.button_green, .button.button_green, .button_green.ui-button.ui-state-default {
    text-shadow: 0px -1px 0px #cbf190;
    background-image: -webkit-linear-gradient(left, #b6eb63 0%, #abe84c 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#b6eb63), to(#abe84c));
    background-image: -o-linear-gradient(left, #b6eb63 0%, #abe84c 100%);
    background-image: linear-gradient(to right, #b6eb63 0%, #abe84c 100%);
    background-color: #b6eb63;
    -webkit-box-shadow: 0px 3px 0px 0px #a1e536;
    box-shadow: 0px 3px 0px 0px #a1e536;
    -webkit-box-shadow: 0px 3px 0px 0px #88ce1a;
    box-shadow: 0px 3px 0px 0px #88ce1a;
    text-shadow: none; }
    input[type="submit"].button_green, input[type="submit"].button_green:visited, button.button_green, button.button_green:visited, .button.button_green, .button_green.ui-button.ui-state-default, .button.button_green:visited, .button_green.ui-button.ui-state-default:visited {
      color: #ffffff; }
    input[type="submit"].button_green:hover, button.button_green:hover, .button.button_green:hover, .button_green.ui-button.ui-state-default:hover {
      color: #ffffff;
      background-color: #c1ee7a;
      background-image: -webkit-linear-gradient(left, #b6eb63 0%, #b6eb63 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#b6eb63), to(#b6eb63));
      background-image: -o-linear-gradient(left, #b6eb63 0%, #b6eb63 100%);
      background-image: linear-gradient(to right, #b6eb63 0%, #b6eb63 100%); }
    input[type="submit"].button_green:active, button.button_green:active, .button.button_green:active, .button_green.ui-button.ui-state-default:active {
      color: #ffffff;
      background-color: #b6eb63;
      background-image: -webkit-linear-gradient(left, #abe84c 0%, #abe84c 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#abe84c), to(#abe84c));
      background-image: -o-linear-gradient(left, #abe84c 0%, #abe84c 100%);
      background-image: linear-gradient(to right, #abe84c 0%, #abe84c 100%);
      -webkit-box-shadow: 0px 0px 0px 0px #a1e536;
      box-shadow: 0px 0px 0px 0px #a1e536; }
  input[type="submit"].button_white, button.button_white, .button.button_white, .button_white.ui-button.ui-state-default {
    text-shadow: 0px -1px 0px white;
    background-image: -webkit-linear-gradient(left, #ffffff 0%, #f2f2f2 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#f2f2f2));
    background-image: -o-linear-gradient(left, #ffffff 0%, #f2f2f2 100%);
    background-image: linear-gradient(to right, #ffffff 0%, #f2f2f2 100%);
    background-color: #ffffff;
    -webkit-box-shadow: 0px 3px 0px 0px #e6e6e6;
    box-shadow: 0px 3px 0px 0px #e6e6e6; }
    input[type="submit"].button_white, input[type="submit"].button_white:visited, button.button_white, button.button_white:visited, .button.button_white, .button_white.ui-button.ui-state-default, .button.button_white:visited, .button_white.ui-button.ui-state-default:visited {
      color: #e02323; }
    input[type="submit"].button_white:hover, button.button_white:hover, .button.button_white:hover, .button_white.ui-button.ui-state-default:hover {
      color: #e02323;
      background-color: white;
      background-image: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#ffffff));
      background-image: -o-linear-gradient(left, #ffffff 0%, #ffffff 100%);
      background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%); }
    input[type="submit"].button_white:active, button.button_white:active, .button.button_white:active, .button_white.ui-button.ui-state-default:active {
      color: #e02323;
      background-color: #ffffff;
      background-image: -webkit-linear-gradient(left, #f2f2f2 0%, #f2f2f2 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#f2f2f2), to(#f2f2f2));
      background-image: -o-linear-gradient(left, #f2f2f2 0%, #f2f2f2 100%);
      background-image: linear-gradient(to right, #f2f2f2 0%, #f2f2f2 100%);
      -webkit-box-shadow: 0px 0px 0px 0px #e6e6e6;
      box-shadow: 0px 0px 0px 0px #e6e6e6; }
  input[type="submit"].button_transparent, button.button_transparent, .button.button_transparent, .button_transparent.ui-button.ui-state-default {
    background: #ffffff;
    border: 2px solid #e02323;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    margin-bottom: 0px;
    color: #e02323;
    line-height: calc(1em - 1px); }
    input[type="submit"].button_transparent:hover, button.button_transparent:hover, .button.button_transparent:hover, .button_transparent.ui-button.ui-state-default:hover {
      background: #e02323;
      color: #ffffff; }
    input[type="submit"].button_transparent:active, button.button_transparent:active, .button.button_transparent:active, .button_transparent.ui-button.ui-state-default:active {
      top: 0px; }
  input[type="submit"].button_full_width, button.button_full_width, .button.button_full_width, .button_full_width.ui-button.ui-state-default {
    width: 100%;
    text-align: center; }
  input[type="submit"].button_small, button.button_small, .button.button_small, .button_small.ui-button.ui-state-default {
    padding: 9px 10px;
    font-size: 13px; }
  input[type="submit"].button_medium, button.button_medium, .button.button_medium, .button_medium.ui-button.ui-state-default {
    padding: 13px 18px;
    text-transform: none; }
  input[type="submit"].button_large, button.button_large, .button.button_large, .button_large.ui-button.ui-state-default {
    padding: 18px 22px; }

.button a, .ui-button.ui-state-default a,
.button a:hover, .ui-button.ui-state-default a:hover,
.button a:active, .ui-button.ui-state-default a:active {
  color: inherit;
  text-decoration: none !important; }

.delete-button {
  color: #ED5E56; }

/* ================================= */
/* Errors / Info / Caution */
/* ================================= */
.error_box, .info_box {
  margin: 0 0 15px 0;
  padding: 15px;
  color: #555555; }

.error_box {
  padding: 15px;
  background-color: #FFF0F1;
  color: #ED5E56;
  font-weight: bold;
  text-align: left; }
  .error_box h3 {
    margin: -15px -15px 0;
    padding: 15px;
    background: #FFE4E4;
    text-transform: uppercase;
    font-size: 14px;
    color: #ED5E56; }
  .error_box i {
    font-size: 17px;
    vertical-align: middle;
    margin-right: 10px;
    color: #ED5E56; }

.info_box {
  border-color: #D5F296;
  background-color: #F2FCDC;
  padding: 15px;
  color: #7F9E42;
  font-weight: bold;
  text-align: left; }
  .info_box i {
    font-size: 17px;
    vertical-align: middle;
    margin-right: 10px;
    color: #7F9E42;
    margin-top: -3px; }

#content .error_box ul {
  margin-bottom: 0;
  margin-top: 16px;
  font-size: 12px;
  margin-left: 3px; }

/* ================================= */
/* Message Boxes */
/* ================================= */
.msg_box {
  position: relative;
  margin: 20px 0;
  padding: 10px 10px 10px 45px;
  width: 640px;
  border-width: 2px;
  border-style: solid;
  /* border-radius: 5px; */
  color: #555555; }
  .msg_box.info {
    background: #E1F2F7 url("/assets/images/icons/information.png") no-repeat 15px 11px;
    border-color: #C5E4ED; }
  .msg_box.success {
    background: #F2FCDC url("/assets/images/icons/accept.png") no-repeat 15px 11px;
    border-color: #D5F296; }
  .msg_box.caution {
    background: #FFFCD9 url("/assets/images/icons/error.png") no-repeat 15px 11px;
    border-color: #F5F0AE; }
  .msg_box.error {
    background: #FFF2ED url("/assets/images/icons/exclamation.png") no-repeat 15px 11px;
    border-color: #F5C2AE; }
  .msg_box a.close {
    position: absolute;
    top: 3px;
    right: 0px;
    padding: 5px 10px; }

/* ================================= */
/* Icons */
/* ================================= */
.small-icon {
  font-size: 14px; }

.medium-icon {
  font-size: 22px;
  vertical-align: middle; }

.large-icon {
  font-size: 35px;
  vertical-align: middle; }

/* ================================= */
/* bPopup - Default Styling */
/* ================================= */
.js_bPopup {
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  max-width: 90%; }
  .js_bPopup .pop_up_padding {
    padding: 25px 30px;
    position: relative; }
    .js_bPopup .pop_up_padding .close_js {
      position: absolute;
      right: 15px;
      top: 15px;
      font-size: 20px;
      cursor: pointer; }

/* ================================= */
/* Qtip  */
/* ================================= */
.default_qtip {
  background: #e02323;
  padding: 8px 5px;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  color: #e02323;
  /* Arrow Color - Same as background*/
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-left: 4px; }
  .default_qtip .qtip-content {
    color: #fff; }

/* ================================= */
/* TinyMCE */
/* ================================= */
.editor {
  width: 100%; }

#content .mceEditor table {
  margin: 0; }

/* ================================= */
/* Slick slider  */
/* ================================= */
/* Standard Styles */
.slickslider {
  background: url(/assets/images/icons/ajax-loader-alt.gif) no-repeat center center;
  overflow: hidden; }
  .slickslider, .slickslider .banner_text {
    height: 300px; }
  .slickslider .slide_container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    outline: none; }
    .slickslider .slide_container .banner_text h2 {
      font-size: 36px;
      line-height: 40px; }
    .slickslider .slide_container .banner_text .button, .slickslider .slide_container .banner_text .ui-button.ui-state-default {
      margin-top: 20px; }
    @media (max-width: 767px) {
      .slickslider .slide_container .banner_text {
        text-align: center; } }
  .slickslider ul.slick-dots {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center; }
    .slickslider ul.slick-dots li {
      display: inline-block;
      text-indent: 0;
      margin-left: 0;
      padding: 0;
      margin: 0 5px; }
      .slickslider ul.slick-dots li button {
        text-shadow: none !important;
        padding: 0;
        text-indent: -9999px !important;
        height: 15px;
        width: 15px;
        line-height: 15px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-indent: 0;
        background: #404042; }
      .slickslider ul.slick-dots li.slick-active button {
        background: #e02323; }
  .slickslider .slicknav {
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 99;
    color: #fff;
    background: #e02323;
    text-align: center;
    font-size: 30px; }
    .slickslider .slicknav.next_arrow {
      right: 0; }
      .slickslider .slicknav.next_arrow:before {
        margin-left: 5px;
        content: "\f105";
        font-family: "FontAwesome"; }
    .slickslider .slicknav.prev_arrow {
      left: 0; }
      .slickslider .slicknav.prev_arrow:before {
        margin-right: 5px;
        content: "\f104";
        font-family: "FontAwesome"; }
    .slickslider .slicknav.next_arrow, .slickslider .slicknav.prev_arrow {
      -webkit-backface-visibility: hidden;
      -moz-transition: all 0.25s ease 0s;
      -webkit-transition: all 0.25s ease 0s;
      -o-transition: all 0.25s ease 0s;
      transition: all 0.25s ease 0s;
      display: block; }
      .slickslider .slicknav.next_arrow:hover, .slickslider .slicknav.prev_arrow:hover {
        background: #e65050; }
      .slickslider .slicknav.next_arrow:active, .slickslider .slicknav.prev_arrow:active {
        background: #e96666; }
    @media (max-width: 767px) {
      .slickslider .slicknav {
        display: none !important; } }

.slickslider_gallery, .slickslider_gallery .slide_container, .slickslider_gallery .slide_container a {
  height: auto;
  max-height: 661px; }

.slickslider_gallery .slide_container a {
  display: block; }
  .slickslider_gallery .slide_container a img {
    width: 100%;
    height: auto; }

.slickslider_gallery_thumbs {
  max-height: 150px;
  background: none; }
  .slickslider_gallery_thumbs .slide_container {
    height: 150px;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s; }
    .slickslider_gallery_thumbs .slide_container:hover {
      opacity: 0.8;
      cursor: pointer; }
    .slickslider_gallery_thumbs .slide_container.slick-current {
      opacity: 0.5;
      cursor: pointer; }

/* ================================= */
/* Header */
/* ================================= */
#header {
  height: 100px;
  display: block;
  width: 100%;
  float: left;
  padding: 0px;
  position: relative;
  z-index: 101;
  background-color: #ffffff;
  background-image: url(/assets/images/backgrounds/background_angle.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-position: right calc(50% + 690px) top 15%;
  background-size: 590px 500px; }
  @media (max-width: 767px) {
    #header {
      background-position: left calc(5% - 460px) top 15%;
      border-bottom: 3px solid #e02323; } }
  @media (min-width: 768px) and (max-width: 1023px) {
    #header {
      background-position: right calc(50% + 560px) top 15%; } }
  @media (min-width: 1200px) {
    #header {
      background-position: right calc(50% + 770px) top 15%; } }
  #header .social {
    display: inline-block;
    vertical-align: middle;
    text-align: right; }
    #header .social a {
      margin: 0 10px;
      display: inline-block; }
      #header .social a:hover {
        opacity: 0.5; }
  #header .vert_align_container {
    height: 100px;
    font-size: 0px; }
    @media (max-width: 767px) {
      #header .vert_align_container {
        height: 70px; } }
  #header .vert_align {
    font-size: 14px; }
  #header a.logo {
    display: inline-block;
    max-width: 100%; }
    #header a.logo img {
      max-width: 100%;
      max-height: 62px;
      height: auto;
      width: auto;
      margin-bottom: 1px; }
      @media (max-width: 767px) {
        #header a.logo img {
          max-height: 50px; } }
  #header .global_search_container {
    position: static; }
    @media (max-width: 767px) {
      #header .global_search_container {
        width: 0px; } }
  #header .global_search {
    padding-left: 20px;
    padding-right: 20px; }
    @media (max-width: 767px) {
      #header .global_search {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 100%;
        z-index: 100;
        padding: 5px;
        padding-top: 8px;
        opacity: 0;
        margin-top: 10px;
        visibility: hidden;
        -webkit-transition: opacity 0.2s linear 0s, margin-top 0.2s ease-in 0s, visibility 0s linear 0.2s;
        -o-transition: opacity 0.2s linear 0s, margin-top 0.2s ease-in 0s, visibility 0s linear 0.2s;
        transition: opacity 0.2s linear 0s, margin-top 0.2s ease-in 0s, visibility 0s linear 0.2s; }
        #header .global_search.enabled {
          opacity: 1;
          margin-top: 0px;
          visibility: visible;
          -webkit-transition: opacity 0.2s linear 0s, margin-top 0.2s ease-out 0s, visibility 0s linear 0s;
          -o-transition: opacity 0.2s linear 0s, margin-top 0.2s ease-out 0s, visibility 0s linear 0s;
          transition: opacity 0.2s linear 0s, margin-top 0.2s ease-out 0s, visibility 0s linear 0s; }
        #header .global_search form {
          -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2); }
          #header .global_search form:before {
            display: none; }
        #header .global_search input {
          padding-left: 18px; }
        #header .global_search input,
        #header .global_search button {
          border-radius: 0px; } }
  #header .mobile_icons {
    margin-right: -10px;
    float: right;
    width: auto; }
    #header .mobile_icons a {
      color: #000000;
      padding: 0px 10px;
      font-size: 24px; }
  @media (max-width: 767px) {
    #header {
      height: 70px; } }

.global_search,
#header .global_search {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

.global_search form {
  padding-right: 50px;
  width: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  .global_search form:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    line-height: 50px;
    width: 50px;
    text-align: center;
    font-family: FontAwesome;
    content: "\f002";
    font-size: 18px;
    color: #999999;
    pointer-events: none; }
  .global_search form input,
  .global_search form button {
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px; }
  .global_search form input {
    padding-left: 45px;
    border-radius: 5px 0px 0px 5px;
    background: #fcfcfc;
    float: left;
    margin-right: 0px !important; }
    .global_search form input, .global_search form input:focus {
      border-right: 0px !important; }
  .global_search form button {
    float: right;
    width: 50px;
    padding-left: 0px;
    padding-right: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0px;
    margin-right: -50px;
    border-radius: 0px 5px 5px 0px;
    background-image: none; }
    .global_search form button:active {
      top: 0px; }

#minicart {
  text-align: right; }
  #minicart .vert_align_container {
    display: inline-block;
    width: auto; }
  #minicart .cart_icon_holder, #minicart a, #minicart strong {
    padding: 5px 10px;
    display: inline-block; }
  #minicart strong {
    color: #000000; }
  #minicart a {
    font-weight: 600; }
  #minicart .top_minicart_item {
    padding: 0px 10px;
    position: relative; }
    #minicart .top_minicart_item:first-child {
      padding-left: 0px; }
    #minicart .top_minicart_item:last-child {
      margin-right: -10px;
      padding-right: 0px; }
    @media (max-width: 767px) {
      #minicart .top_minicart_item:nth-child(n) {
        margin: 0px;
        padding: 0px; }
      #minicart .top_minicart_item .fa {
        font-size: 24px;
        color: #000000;
        vertical-align: middle; } }
  #minicart .top_minicart_item + .top_minicart_item {
    border-left: 1px solid #E6E6E6; }
    @media (max-width: 767px) {
      #minicart .top_minicart_item + .top_minicart_item {
        border: 0px none transparent; } }
  #minicart .member_dropdown {
    position: absolute;
    background: #ffffff;
    border: 1px solid #E6E6E6;
    padding: 5px 0px;
    top: 110%;
    left: 50%;
    text-align: left;
    width: 120px;
    margin-left: -60px;
    opacity: 0;
    margin-top: 10px;
    visibility: hidden;
    -webkit-transition: opacity 0.2s linear 0s, margin-top 0.2s ease-in 0s, visibility 0s linear 0.2s;
    -o-transition: opacity 0.2s linear 0s, margin-top 0.2s ease-in 0s, visibility 0s linear 0.2s;
    transition: opacity 0.2s linear 0s, margin-top 0.2s ease-in 0s, visibility 0s linear 0.2s; }
    #minicart .member_dropdown.active {
      opacity: 1;
      margin-top: 0px;
      visibility: visible;
      -webkit-transition: opacity 0.2s linear 0s, margin-top 0.2s ease-out 0s, visibility 0s linear 0s;
      -o-transition: opacity 0.2s linear 0s, margin-top 0.2s ease-out 0s, visibility 0s linear 0s;
      transition: opacity 0.2s linear 0s, margin-top 0.2s ease-out 0s, visibility 0s linear 0s; }
    #minicart .member_dropdown a {
      padding: 5px 15px;
      display: block;
      color: #333333; }
      #minicart .member_dropdown a:hover {
        background: #FAFAFA;
        color: #000000; }
  #minicart .cart_icon_holder {
    position: relative; }
    #minicart .cart_icon_holder .cart_info {
      position: absolute;
      right: 2px;
      top: 2px;
      background: #e02323;
      width: 16px;
      height: 16px;
      line-height: 16px;
      font-weight: bold;
      font-size: 9px;
      text-align: center;
      display: block;
      border-radius: 50%;
      color: #ffffff; }
  @media (max-width: 767px) {
    #minicart {
      float: right;
      width: auto; }
      #minicart .cart_icon_holder img {
        width: 25px;
        height: 20px; } }

/* ================================= */
/* Navigation Menu DROP DOWN MENU */
/* ================================= */
/* Superfish Default */
#navigation {
  background: #e02323;
  border-bottom: 3px solid #ad1818;
  height: 48px;
  clear: both;
  float: left;
  width: 100%; }

ul#mainNav, ul#mainNav * {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative; }

ul#mainNav li {
  position: relative;
  /* Change to position: static; for left aligned menu */ }

ul#mainNav li.sf-mega-wrap {
  position: static;
  /* OR put this class on the parent (of .sf-mega) li to left align */ }

ul#mainNav ul,
ul#mainNav .sf-mega {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99; }

ul#mainNav .sf-mega ul {
  display: block;
  float: left;
  width: 100%;
  position: relative; }

ul#mainNav > li {
  float: left; }

ul#mainNav li:hover > ul,
ul#mainNav li.sfHover > ul,
ul#mainNav li:hover > .sf-mega,
ul#mainNav li.sfHover > .sf-mega {
  display: block; }

ul#mainNav a {
  display: block;
  position: relative; }

ul#mainNav ul ul {
  top: 0;
  left: 100%; }

ul#mainNav .sf-mega {
  display: none;
  position: absolute;
  float: left;
  top: 100%;
  left: 0;
  z-index: 99;
  width: 100%;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

ul#mainNav .sf-mega ul ul {
  left: 0;
  display: none !important;
  /* Hides 3x level deep under mega */ }

ul#mainNav .sf-mega > ul > li > ul {
  opacity: 1 !important;
  display: block !important;
  /* Shows 2x level deep under mega */ }

/* Superfish Skin */
ul#mainNav {
  float: left;
  width: 100%; }

ul#mainNav ul ul#mainNav .sf-mega {
  min-width: 200px;
  *width: 100%; }

ul#mainNav li {
  -webkit-transition: background .2s;
  -o-transition: background .2s;
  transition: background .2s; }

ul#mainNav ul li {
  white-space: nowrap;
  *white-space: normal; }

ul#mainNav li:hover,
ul#mainNav li.sfHover {
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }

ul#mainNav > li {
  width: 14.28571%;
  max-width: 14.28571%;
  display: block;
  float: left; }

ul#mainNav > li > a {
  display: table;
  position: relative;
  text-align: center;
  height: 48px;
  float: left;
  line-height: 1.2;
  font-weight: bold;
  font-size: 12px;
  padding-top: 0px;
  padding-bottom: 0px; }

ul#mainNav a {
  background: #e02323;
  color: #FFFFFF;
  border-right: 1px solid #ad1818;
  padding: 5px 10px;
  text-decoration: none;
  zoom: 1;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

ul#mainNav a:hover, ul#mainNav li.current > a {
  background: #e54747; }

ul#mainNav li:first-child a {
  border-left: 1px solid #ad1818; }

ul#mainNav > li > a > span {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/* Drop downs */
ul#mainNav > li > ul {
  padding-top: 3px; }

ul#mainNav ul a {
  border: 0;
  padding: 13px 25px;
  background: #FAFAFA;
  color: #666666;
  font-weight: bold; }

ul#mainNav ul li {
  position: static; }
  ul#mainNav ul li a, ul#mainNav ul li a:first-child {
    border-bottom: 1px solid #E6E6E6;
    border-left: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6; }
  ul#mainNav ul li.sfHover a,
  ul#mainNav ul li:hover a {
    color: #e02323;
    background: #ffffff; }
    ul#mainNav ul li.sfHover a.sf-with-ul,
    ul#mainNav ul li:hover a.sf-with-ul {
      border-right-color: #ffffff; }
  ul#mainNav ul li ul {
    top: 3px;
    margin-left: -1px;
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-top: 0px none transparent;
    z-index: -1;
    min-height: calc(100% - 24px);
    padding: 10px 0px; }
    ul#mainNav ul li ul li a, ul#mainNav ul li ul li a:first-child {
      border: 0px none transparent;
      padding: 5px 20px;
      background: transparent;
      font-weight: normal;
      color: #666666; }
      ul#mainNav ul li ul li a:hover, ul#mainNav ul li ul li a:first-child:hover {
        color: #e02323; }
    ul#mainNav ul li ul ul {
      top: 0px;
      margin-left: 0px;
      min-height: calc(100% - 20px); }

.flexbox ul#mainNav {
  display: -ms-flexbox;
  -ms-flex-pack: justify;
  -ms-flex-wrap: none;
  display: -webkit-flex;
  -webkit-flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between; }
  .flexbox ul#mainNav > li {
    width: auto;
    max-width: none;
    float: none;
    width: -ms-flex(1);
    -webkit-flex-grow: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }
    .flexbox ul#mainNav > li > a {
      padding-left: 5px;
      padding-right: 5px;
      font-size: 14px; }

/* ================================= */
/* Footer */
/* ================================= */
#footer {
  clear: both;
  background-color: #333333;
  display: block;
  width: 100%;
  float: left;
  padding: 0px;
  color: #ffffff;
  /* Footer Top */
  /* ================================= */
  /* Footer Middle */
  /* ================================= */
  /* Footer Bottom */
  /* ================================= */ }
  #footer .footer_top {
    background: #e02323;
    color: #ffffff;
    border-bottom: 3px solid #1a1a1a;
    overflow: hidden; }
    #footer .footer_top .container_24 {
      display: table;
      height: 70px; }
      #footer .footer_top .container_24 > div {
        display: table-cell;
        height: 70px;
        vertical-align: middle; }
    #footer .footer_top .footer_message {
      background: #b61a1a;
      text-align: left;
      position: relative;
      padding-right: 10px;
      line-height: 1.3;
      font-weight: bold; }
      #footer .footer_top .footer_message:before {
        content: '';
        background: #b61a1a;
        position: absolute;
        right: 100%;
        top: 0px;
        width: 1000%;
        height: 70px; }
    #footer .footer_top.logged_in .footer_message {
      font-weight: normal; }
    #footer .footer_top .middlebit {
      position: relative;
      width: 50px;
      background: #cd1d1d; }
      #footer .footer_top .middlebit:before, #footer .footer_top .middlebit:after {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 35px 0 35px 20px;
        border-color: transparent transparent transparent #007bff; }
      #footer .footer_top .middlebit:before {
        border-left-color: #b61a1a; }
      #footer .footer_top .middlebit:after {
        left: 100%;
        border-left-color: #cd1d1d; }
    #footer .footer_top .footer_button {
      text-align: right;
      padding-left: 50px; }
      #footer .footer_top .footer_button .button, #footer .footer_top .footer_button .ui-button.ui-state-default {
        font-size: 14px;
        text-transform: uppercase;
        color: #ffffff;
        white-space: nowrap; }
    @media screen and (max-width: 767px) {
      #footer .footer_top {
        padding: 10px 0px; }
        #footer .footer_top .container_24, #footer .footer_top .container_24 > div {
          display: block;
          height: auto;
          background: transparent;
          text-align: center; }
        #footer .footer_top .container_24 .middlebit {
          display: none; }
        #footer .footer_top .footer_message {
          padding-right: 0px;
          margin-bottom: 10px; }
          #footer .footer_top .footer_message:before {
            display: none; }
        #footer .footer_top .footer_button {
          padding-left: 0px; } }
  #footer .social {
    border-top: 1px solid #4d4d4d;
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
    width: 100%; }
    #footer .social a, #footer .social p {
      float: right;
      margin: 0 10px; }
      #footer .social a:hover, #footer .social p:hover {
        opacity: 0.5; }
    #footer .social p {
      font-weight: bold; }
      #footer .social p:hover {
        opacity: 1; }
    @media screen and (max-width: 767px) {
      #footer .social span p {
        float: none; } }
  #footer .footer_middle {
    padding-top: 20px; }
    #footer .footer_middle a {
      color: #ffffff; }
      #footer .footer_middle a:hover {
        color: #f09191; }
    #footer .footer_middle .footer_navigation {
      display: table;
      margin-top: 10px; }
      #footer .footer_middle .footer_navigation .nav_column {
        display: table-cell;
        vertical-align: top; }
        #footer .footer_middle .footer_navigation .nav_column a {
          display: inline-block; }
      @media screen and (max-width: 767px) {
        #footer .footer_middle .footer_navigation {
          display: block; }
          #footer .footer_middle .footer_navigation .nav_column {
            display: block; }
            #footer .footer_middle .footer_navigation .nav_column ul {
              -webkit-column-count: 3;
              -moz-column-count: 3;
              column-count: 3;
              -webkit-column-width: 100px;
              -moz-column-width: 100px;
              column-width: 100px;
              -webkit-column-gap: 20px;
              -moz-column-gap: 20px;
              column-gap: 20px;
              margin-bottom: 10px; }
              #footer .footer_middle .footer_navigation .nav_column ul li {
                width: 100%;
                float: none;
                display: inline-block;
                margin-bottom: 5px; } }
      #footer .footer_middle .footer_navigation .nav_heading {
        color: #e02323;
        margin-bottom: 10px;
        display: block;
        font-weight: bold; }
      #footer .footer_middle .footer_navigation ul {
        margin-bottom: 25px; }
        #footer .footer_middle .footer_navigation ul li {
          line-height: 20px;
          margin-bottom: 10px;
          list-style: none; }
    #footer .footer_middle .footer_testimonials {
      margin-bottom: 20px; }
    #footer .footer_middle .footer_testimonial, #footer .footer_middle .footer_testimonial:hover {
      color: #ffffff; }
    #footer .footer_middle .footer_testimonial .testimonial_content {
      position: relative;
      border: 1px solid #666666;
      background: #4d4d4d;
      border-radius: 3px;
      margin: 0px;
      padding: 25px;
      font-style: italic; }
      #footer .footer_middle .footer_testimonial .testimonial_content:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 20px;
        display: block;
        width: 15px;
        height: 15px;
        background: transparent url(/assets/images/backgrounds/testimonial_tip.png) no-repeat right bottom;
        background: transparent url(/assets/images/backgrounds/testimonial_tip@2x.png) no-repeat right bottom/15px 15px; }
    #footer .footer_middle .footer_testimonial .testimonial_name {
      font-weight: bold;
      padding: 3px 0px 3px 45px; }
  #footer .footer_bottom {
    background-color: #1a1a1a;
    color: #808080;
    padding: 9px 0px; }
    #footer .footer_bottom a {
      color: #808080; }
      #footer .footer_bottom a:hover {
        color: #ffffff; }
    #footer .footer_bottom ul {
      display: inline-block;
      float: left; }
    #footer .footer_bottom li {
      display: inline-block; }
      #footer .footer_bottom li + li:before {
        content: '|';
        margin-right: 0.2em; }
    #footer .footer_bottom .footer_credits {
      float: right;
      text-align: right; }
      #footer .footer_bottom .footer_credits a {
        color: #ffffff; }
      #footer .footer_bottom .footer_credits .semicolon {
        color: #feba11;
        font-weight: bold; }
    @media screen and (max-width: 767px) {
      #footer .footer_bottom ul, #footer .footer_bottom .footer_credits {
        width: 100%;
        float: none;
        text-align: center;
        padding: 2px 0px; } }

/* ================================= */
/* Home */
/* ================================= */
#content ul#homeNav {
  margin: 0 0 15px;
  padding: 7px;
  background: #CCCCCC;
  border-radius: 8px; }

#content #homeNav li {
  margin: 0;
  padding: 1px 0;
  text-align: center;
  text-indent: 0;
  margin-left: 0 !important; }

#content #homeNav li:before {
  content: '' !important; }

#homeNav a {
  display: block;
  background: #FAFAFA;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#323232), to(#464646));
  background-image: linear-gradient(bottom, #323232 0%, #464646 100%);
  background-image: -o-linear-gradient(bottom, #323232 0%, #464646 100%);
  background-image: -moz-linear-gradient(bottom, #323232 0%, #464646 100%);
  background-image: -webkit-linear-gradient(bottom, #323232 0%, #464646 100%);
  background-image: -ms-linear-gradient(bottom, #323232 0%, #464646 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #323232), color-stop(1, #464646));
  padding: 13px 15px;
  text-decoration: none;
  margin: 0;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  text-shadow: -1px -1px 3px rgba(0, 0, 0, 0.2); }

#homeNav a:active, #homeNav a:focus, #homeNav a:hover {
  -webkit-box-shadow: inset -2px -2px 5px rgba(255, 255, 255, 0.08), inset 2px 2px 5px rgba(0, 0, 0, 0.5) !important;
  box-shadow: inset -2px -2px 5px rgba(255, 255, 255, 0.08), inset 2px 2px 5px rgba(0, 0, 0, 0.5) !important;
  outline: none !important; }

#homeNav li:first-child a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px; }

#homeNav li:last-child a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px; }

/* Home Page Banner */
#homeBanner, #homeBanner .slide_container {
  height: auto;
  height: 400px; }

.home_banners {
  display: table;
  table-layout: fixed;
  width: 100%;
  background: #1a1a1a; }
  .home_banners .home_banner {
    display: table-cell;
    padding: 70px 10%;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
    position: relative; }
    .home_banners .home_banner + .home_banner {
      border-left: 1px solid #ffffff; }
    .home_banners .home_banner .home_banner_content {
      position: relative;
      z-index: 2; }
    .home_banners .home_banner .banner_icon {
      display: inline-block;
      width: 80px;
      max-width: 100%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      margin-bottom: 30px; }
      .home_banners .home_banner .banner_icon:after {
        content: '';
        width: 100%;
        padding-top: 80%;
        display: block; }
    .home_banners .home_banner h1, .home_banners .home_banner h2, .home_banners .home_banner h3, .home_banners .home_banner a {
      color: inherit; }
    .home_banners .home_banner .down_arrow {
      width: 100%;
      padding: 20px 0px;
      font-size: 30px; }
    .home_banners .home_banner .underlay {
      position: absolute;
      top: 0px;
      left: 0px;
      bottom: 0px;
      right: 0px;
      z-index: 1;
      opacity: 0.5;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      -webkit-transition: opacity 0.2s linear;
      -o-transition: opacity 0.2s linear;
      transition: opacity 0.2s linear; }
    .home_banners .home_banner:hover .underlay {
      opacity: 0.3; }
  @media (max-width: 767px) {
    .home_banners {
      display: block; }
      .home_banners .home_banner {
        display: block;
        padding: 30px 10%; }
        .home_banners .home_banner + .home_banner {
          border-left: 0px none transparent;
          border-top: 1px solid #ffffff; }
        .home_banners .home_banner .banner_icon, .home_banners .home_banner .down_arrow {
          display: none; }
        .home_banners .home_banner .button, .home_banners .home_banner .ui-button.ui-state-default {
          margin-top: 10px;
          padding: 10px 20px;
          line-height: 1.4; } }

/* Homepage Content */
.home_content {
  clear: both;
  width: 100%;
  padding: 75px 0px;
  border-bottom: 1px solid #E6E6E6;
  background-color: #ffffff;
  background-image: url(/assets/images/backgrounds/background_angle.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-position: 5% bottom;
  background-size: contain; }
  @media (max-width: 767px) {
    .home_content {
      padding: 40px 0px; } }
  .home_content .home_content_link {
    clear: both;
    display: inline-block;
    font-weight: bold;
    color: #e02323;
    margin-top: 10px; }

.home_categories {
  padding: 50px 0px 40px 0px;
  text-align: center; }
  .home_categories h2 {
    margin-bottom: 50px; }
  @media (max-width: 767px) {
    .home_categories .home_category + .home_category {
      margin-top: 20px; } }
  .home_categories .home_category_bg {
    display: block;
    border-top: 3px solid #e02323;
    position: relative;
    background-color: #333333;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    cursor: default; }
    .home_categories .home_category_bg:before {
      content: '';
      width: 100%;
      height: 0px;
      padding-top: 100%;
      display: block; }
      @media (max-width: 767px) {
        .home_categories .home_category_bg:before {
          display: none; } }
    .touch .home_categories .home_category_bg .home_category_title, .home_categories .home_category_bg:hover .home_category_title {
      bottom: 80%;
      opacity: 0; }
    .touch .home_categories .home_category_bg .home_category_content, .home_categories .home_category_bg:hover .home_category_content {
      top: 0px;
      opacity: 1; }
  .home_categories .home_category_title,
  .home_categories .home_category_content {
    background: #000000;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    position: absolute;
    left: 0px;
    right: 0px;
    padding: 20px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .home_categories .home_category_title h3,
    .home_categories .home_category_content h3 {
      color: inherit;
      margin-bottom: 0px; }
    @media (min-width: 1200px) {
      .home_categories .home_category_title,
      .home_categories .home_category_content {
        padding: 30px; } }
    @media (min-width: 768px) and (max-width: 1023px) {
      .home_categories .home_category_title,
      .home_categories .home_category_content {
        padding: 10px; } }
  .home_categories .home_category_title {
    bottom: 0px;
    opacity: 1;
    z-index: 1; }
    .home_categories .home_category_title h3 {
      margin: -5px 0px; }
      @media (min-width: 768px) and (max-width: 1023px) {
        .home_categories .home_category_title h3 {
          font-size: 14px;
          margin: 0px 0px; } }
    .home_categories .home_category_title:after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0px;
      right: 0px;
      padding-top: 100%;
      background: #000000;
      background: rgba(0, 0, 0, 0.6); }
    @media (max-width: 767px) {
      .home_categories .home_category_title {
        display: none; } }
  .home_categories .home_category_content {
    top: 80%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    font-size: 13px;
    line-height: 1.7; }
    .home_categories .home_category_content h3 {
      margin-bottom: 10px; }
    .home_categories .home_category_content .button, .home_categories .home_category_content .ui-button.ui-state-default {
      cursor: pointer;
      margin-top: 15px; }
    @media (min-width: 1200px) {
      .home_categories .home_category_content {
        font-size: 14px; }
        .home_categories .home_category_content h3 {
          margin-bottom: 30px; }
        .home_categories .home_category_content .button, .home_categories .home_category_content .ui-button.ui-state-default {
          margin-top: 30px; } }
    @media (min-width: 768px) and (max-width: 1023px) {
      .home_categories .home_category_content {
        font-size: 12px;
        line-height: 1.5; }
        .home_categories .home_category_content h3 {
          margin-bottom: 5px;
          font-size: 14px; }
        .home_categories .home_category_content .button, .home_categories .home_category_content .ui-button.ui-state-default {
          margin-top: 5px;
          padding: 10px; } }
    @media (max-width: 767px) {
      .home_categories .home_category_content {
        opacity: 1;
        position: static; } }

.home_widgets {
  padding-bottom: 40px; }
  .home_widgets hr {
    margin-top: 0px;
    margin-bottom: 30px; }

.home_news_box h2 {
  display: inline; }

.home_news_box small {
  display: block;
  font-size: 14px;
  color: #262626;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: -2px; }

.home_news_box .view_link {
  float: right;
  font-weight: bold;
  margin: 5px 0px; }

.home_news_box .featured_articles {
  clear: both;
  margin: 20px -10px 0px -10px;
  font-size: 0px; }
  .home_news_box .featured_articles .featured_article_padding {
    display: inline-block;
    vertical-align: top;
    padding: 0px 10px;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
    @media (max-width: 767px) {
      .home_news_box .featured_articles .featured_article_padding {
        width: 100%;
        margin-bottom: 20px; } }
  .home_news_box .featured_articles .featured_article {
    display: block; }
  .home_news_box .featured_articles img {
    width: 100%;
    height: auto; }
    .home_news_box .featured_articles img + .article_text {
      border-top: 0px none transparent; }
  .home_news_box .featured_articles .article_text {
    border: 1px solid #E6E6E6;
    padding: 20px;
    color: #666666;
    font-size: 14px; }
    .home_news_box .featured_articles .article_text h4 {
      color: #e02323;
      margin-bottom: 5px; }

.home_faqs_box .view_link {
  float: right;
  font-weight: bold;
  margin: 5px 0px; }

.home_faqs_box h2 {
  color: #000000;
  display: inline; }

.home_faqs {
  border-top: 3px solid #e02323;
  clear: both;
  margin-top: 20px; }
  .home_faqs a {
    display: block;
    background: #ffffff;
    padding: 20px 30px;
    color: #666666;
    border-bottom: 1px solid #E6E6E6; }
    .home_faqs a:nth-child(odd) {
      background: #FAFAFA; }
    .home_faqs a:hover {
      color: #000000; }

/* Secondary Page Banner */
.secondary_banner {
  display: block;
  float: left;
  width: 100%;
  background-size: 100% auto;
  background-position: center;
  background-position-x: center !important;
  background-color: #333333;
  height: 350px;
  font-size: 0px;
  text-align: center; }
  @media (max-width: 1023px) {
    .secondary_banner {
      background-size: cover; } }
  .secondary_banner .inner_banner_text {
    font-size: 14px;
    color: #ffffff;
    width: 100%; }
    .secondary_banner .inner_banner_text h1 {
      color: inherit;
      margin-bottom: 0px; }
  .secondary_banner #breadcrumbs {
    background: transparent;
    border-bottom: 0px none transparent;
    margin-top: 0px;
    margin-bottom: 0px; }
    .secondary_banner #breadcrumbs ul {
      margin: 0px; }
      .secondary_banner #breadcrumbs ul li a, .secondary_banner #breadcrumbs ul li span {
        color: #ffffff; }
        .secondary_banner #breadcrumbs ul li a.currentBreadcrumb, .secondary_banner #breadcrumbs ul li span.currentBreadcrumb {
          color: #e02323; }

/* ================================= */
/* Blog */
/* ================================= */
.displaying {
  text-align: center;
  margin-bottom: 10px !important; }

.nextprevnav {
  display: inline-block;
  text-align: center;
  margin: 0px;
  font-size: 0px;
  padding: 0;
  height: 34px;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  .nextprevnav a, .nextprevnav span {
    display: inline-block;
    font-size: 14px;
    width: 34px;
    height: 32px;
    line-height: 32px;
    font-weight: bold;
    border-left: 1px solid #E6E6E6; }
    .nextprevnav a:first-child, .nextprevnav span:first-child {
      border-left: 0px none transparent;
      border-top-left-radius: 3px;
      border-bottom-left-radius: 3px; }
    .nextprevnav a:last-child, .nextprevnav span:last-child {
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px; }
  .nextprevnav a {
    text-decoration: none !important;
    color: #999999 !important; }

.nextprevnav a:hover {
  color: #e02323; }

.nextprevcurrentpage {
  color: #e02323;
  background: #FAFAFA; }

.nextprevdisabled {
  color: #CCCCCC; }

/* Blog Listing */
.blogListingContainer {
  clear: both;
  margin-bottom: 40px; }

.blogListingThumb,
.blogListingText {
  margin-bottom: 20px; }

.blogListingThumb {
  padding-right: 30px; }
  @media screen and (min-width: 768px) and (max-width: 1023px), screen and (max-width: 479px) {
    .blogListingThumb {
      padding-right: 0px; } }
  .blogListingThumb img {
    width: 100%;
    height: auto; }

.blogListingText h2 {
  margin-top: -0.3em;
  margin-bottom: 10px; }

.blogListingText p {
  margin: 0 0 10px 0; }

.blogListingText .button, .blogListingText .ui-button.ui-state-default {
  margin-top: 4px; }

.blogDate {
  color: #CCCCCC; }

.blogAddThisTop {
  float: right;
  width: 124px; }

.blogMetaInfo {
  background-color: #FAFAFA;
  margin: 0px;
  overflow: hidden;
  padding: 5px 10px;
  font-size: 12px; }

.blogMetaInfo,
.blogMetaInfo a, .blogMetaInfo a:link, .blogMetaInfo a:visited {
  color: #999999; }

.blog_view h1 {
  margin-bottom: 0px; }
  @media screen and (min-width: 768px) and (max-width: 1023px) {
    .blog_view h1 {
      font-size: 28px; } }
  @media screen and (max-width: 767px) {
    .blog_view h1 {
      font-size: 24px; } }

.blog_view_banner {
  width: 100%;
  height: auto;
  margin-bottom: 30px; }
  @media screen and (max-width: 1023px) {
    .blog_view_banner {
      margin-bottom: 20px; } }

/* Circle Image*/
.cricle_image_style {
  overflow: hidden;
  width: 100%;
  margin-right: 5%;
  float: left; }
  @media (max-width: 479px) {
    .cricle_image_style {
      width: 70%;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 20px;
      float: none; } }

.test_cricle_content_style {
  padding-bottom: 30px;
  border-bottom: 3px solid #F7F7F7;
  margin-bottom: 40px; }
  .test_cricle_content_style .cricle_image_style {
    max-width: 194px;
    float: none;
    margin: 0 auto; }
    @media (max-width: 479px) {
      .test_cricle_content_style .cricle_image_style {
        margin-bottom: 20px; } }
  .test_cricle_content_style.last {
    border-bottom: none;
    margin-bottom: 0; }

.testimonial_content {
  margin-top: 0px; }
  .testimonial_content h2 {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-style: italic;
    text-transform: capitalize; }
    .testimonial_content h2 span {
      color: #e02323; }
  @media (max-width: 479px) {
    .testimonial_content {
      text-align: center; } }

/* ================================= */
/* FAQs Module */
/* ================================= */
#content .faqs, #content .faqs li {
  margin: 0;
  padding: 0; }

#content .faqs {
  margin-bottom: 20px; }

.faq_title {
  -webkit-backface-visibility: hidden;
  -moz-transition: background 0.25s ease 0s;
  -webkit-transition: background 0.25s ease 0s;
  -o-transition: background 0.25s ease 0s;
  transition: background 0.25s ease 0s;
  cursor: pointer;
  background: #e02323;
  border-bottom: 1px solid #e65050;
  padding: 12px;
  margin: 0;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: none; }
  .faq_title:hover {
    background: #e65050; }
  .faq_title i {
    float: right;
    margin: 2px 4px 0 0; }

.faq_content {
  display: none;
  padding: 10px 10px 0; }

/* ================================= */
/* Category Listing */
/* ================================= */
.content .categories,
.categories {
  margin: 0px -10px; }

.categories {
  font-size: 0px; }
  .categories .category_wrapper {
    padding: 0px 10px 20px 10px;
    margin: 0px;
    list-style: none;
    float: none;
    display: inline-block;
    vertical-align: top;
    font-size: 14px; }
    .categories .category_wrapper:before {
      display: none; }
    .categories .category_wrapper .category {
      display: block;
      position: relative; }
      .categories .category_wrapper .category .category_image {
        width: 100%;
        position: relative;
        background-color: #FAFAFA;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 3px 3px 0px 0px;
        -webkit-box-shadow: inset 0px 0px 0px 1px #E6E6E6;
        box-shadow: inset 0px 0px 0px 1px #E6E6E6; }
        .categories .category_wrapper .category .category_image:before {
          content: '';
          display: block;
          width: 100%;
          padding-top: 50%;
          height: 0px; }
      .categories .category_wrapper .category:hover .hover_overlay {
        background-color: rgba(0, 0, 0, 0.5); }
      .categories .category_wrapper .category .category_details {
        text-align: left;
        padding: 20px;
        color: #000000;
        font-size: 18px;
        margin-bottom: 0px;
        border-radius: 0px 0px 3px 3px;
        border: 1px solid #E6E6E6;
        margin-top: -1px; }
        .categories .category_wrapper .category .category_details .category_title {
          font-family: "Open Sans", Arial, Helvetica, sans-serif;
          font-weight: normal;
          color: #000000;
          margin: 0px;
          text-transform: none;
          font-weight: bold; }
          @media screen and (max-width: 767px) {
            .categories .category_wrapper .category .category_details .category_title {
              font-size: 16px; } }
    @media screen and (max-width: 1023px) {
      .categories .category_wrapper.small .category_title {
        font-size: 16px; } }

/* ================================= */
/* Product Listing */
/* ================================= */
.products-list {
  margin: 0px -5px;
  font-size: 0px; }
  .products-list .item {
    padding: 0px 5px 20px 5px;
    margin-bottom: 0px;
    font-size: 14px;
    vertical-align: top;
    display: inline-block;
    float: none; }
    .products-list .item .item-box {
      border-radius: 3px; }
      .products-list .item .item-box .image {
        width: 100%;
        display: block;
        float: none;
        position: relative;
        background-color: #ffffff;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        padding: 0px;
        border-radius: 3px 3px 0px 0px;
        -webkit-box-shadow: inset 0px 0px 0px 1px #E6E6E6;
        box-shadow: inset 0px 0px 0px 1px #E6E6E6; }
        .products-list .item .item-box .image:before {
          content: '';
          display: block;
          width: 100%;
          padding-top: 75%;
          height: 0px; }
        .products-list .item .item-box .image .image_stretcher {
          display: block;
          position: absolute;
          z-index: 3;
          left: 0px;
          right: 0px;
          top: 0px;
          bottom: 0px;
          width: 100%;
          height: 100%;
          font-size: 0px;
          overflow: hidden;
          border-radius: 3px 3px 0px 0px; }
          .products-list .item .item-box .image .image_stretcher .image_holder {
            width: 100%;
            max-height: 100%;
            text-align: center; }
        .products-list .item .item-box .image .image_overlay {
          position: absolute;
          left: 0px;
          right: 0px;
          top: 0px;
          bottom: 0px;
          z-index: 4;
          background: rgba(0, 0, 0, 0.5);
          opacity: 0;
          visibility: hidden;
          border-radius: 3px 3px 0px 0px;
          -webkit-transition: opacity 0.2s linear 0s, visibility 0s linear 0.2s;
          -moz-transition: opacity 0.2s linear 0s, visibility 0s linear 0.2s;
          -ms-transition: opacity 0.2s linear 0s, visibility 0s linear 0.2s;
          -o-transition: opacity 0.2s linear 0s, visibility 0s linear 0.2s;
          transition: opacity 0.2s linear 0s, visibility 0s linear 0.2s; }
          .products-list .item .item-box .image .image_overlay .button_holder {
            width: 100%; }
          .products-list .item .item-box .image .image_overlay .button, .products-list .item .item-box .image .image_overlay .ui-button.ui-state-default {
            min-width: 50%;
            margin: 5px 0px; }
      .products-list .item .item-box:hover .image_overlay {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.2s linear 0s, visibility 0s linear 0s;
        -moz-transition: opacity 0.2s linear 0s, visibility 0s linear 0s;
        -ms-transition: opacity 0.2s linear 0s, visibility 0s linear 0s;
        -o-transition: opacity 0.2s linear 0s, visibility 0s linear 0s;
        transition: opacity 0.2s linear 0s, visibility 0s linear 0s; }
      .products-list .item .item-box .details {
        border: 1px solid #E6E6E6;
        margin-top: -1px;
        padding: 20px;
        border-radius: 0px 0px 3px 3px; }
        .products-list .item .item-box .details .product-title {
          font-size: 14px;
          font-weight: bold;
          text-decoration: none;
          line-height: 1.2;
          display: inline-block;
          margin-bottom: 10px;
          font-size: 18px;
          color: #000000;
          word-break: break-word; }
        .products-list .item .item-box .details .product-sku {
          margin-top: -15px;
          margin-bottom: 5px;
          color: #aaaaaa;
          font-size: 11px; }
        .products-list .item .item-box .details .product-description {
          margin-bottom: 10px;
          word-break: break-word; }
        .products-list .item .item-box .details .price-cell {
          font-weight: bold;
          color: #000000;
          margin-bottom: 10px; }
          .products-list .item .item-box .details .price-cell .price-row,
          .products-list .item .item-box .details .price-cell .taxes {
            display: inline-block; }
          .products-list .item .item-box .details .price-cell .taxes {
            padding: 0px; }
          .products-list .item .item-box .details .price-cell .market-price {
            text-decoration: line-through;
            display: inline-block;
            margin-left: 5px;
            margin-top: 0px;
            color: #cccccc; }
        .products-list .item .item-box .details .buy-now {
          margin: 0px 0px 10px 0px; }
          .products-list .item .item-box .details .buy-now .quantity-title {
            display: none; }
          .products-list .item .item-box .details .buy-now .quantity {
            width: 45%;
            float: left; }
            .products-list .item .item-box .details .buy-now .quantity select,
            .products-list .item .item-box .details .buy-now .quantity .custom_select span {
              height: 53px; }
            .products-list .item .item-box .details .buy-now .quantity .custom_select span:after {
              height: 50px;
              width: 40px; }
          .products-list .item .item-box .details .buy-now .buttons-row {
            width: 55%;
            float: left;
            padding-left: 10px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            -o-box-sizing: border-box;
            -ms-box-sizing: border-box;
            box-sizing: border-box; }
            .products-list .item .item-box .details .buy-now .buttons-row .button, .products-list .item .item-box .details .buy-now .buttons-row .ui-button.ui-state-default {
              padding-left: 0px;
              padding-right: 0px; }
        .products-list .item .item-box .details .login_reminder {
          clear: both;
          border-top: 1px solid #E6E6E6;
          font-style: italic;
          margin: 20px -20px -20px -20px;
          padding: 5px;
          border-radius: 0px 0px 3px 3px;
          background: #FAFAFA;
          color: #000000;
          text-align: center; }

/* ================================= */
/* Product Sidebar */
/* ================================= */
#cat_id_245 {
  display: none; }

.sidebar_menu .collapse_header, .sidebar_menu .fancycat-icons-e ul li a.collapse_header {
  border-bottom: 3px solid #b61a1a;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 45px 15px 15px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background-color: #e02323;
  background-image: -webkit-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(#e02323), to(#cd1d1d));
  background-image: -o-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
  background-image: linear-gradient(to right, #e02323 0%, #cd1d1d 100%);
  background-position: left top; }
  .sidebar_menu .collapse_header:hover, .sidebar_menu .fancycat-icons-e ul li a.collapse_header:hover {
    background-color: #e33939;
    background-image: -webkit-linear-gradient(left, #e02323 0%, #e02323 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#e02323), to(#e02323));
    background-image: -o-linear-gradient(left, #e02323 0%, #e02323 100%);
    background-image: linear-gradient(to right, #e02323 0%, #e02323 100%); }
  .sidebar_menu .collapse_header:after, .sidebar_menu .fancycat-icons-e ul li a.collapse_header:after {
    right: 15px; }

.sidebar_menu {
  padding-bottom: 0px;
  background: transparent;
  /*
	background:    $grey_bg;
	padding:       20px 30px;
	box-shadow:    0px 1px 1px 0px rgba(0, 0, 0, 0.3);
	margin:        30px 0px 30px 0px;
	border:        0px none transparent;
	*/ }
  .sidebar_menu.menu-fancy-categories-list {
    background: transparent; }
  @media screen and (min-width: 768px) {
    .sidebar_menu .sub_nav_heading {
      padding-bottom: 5px;
      margin-bottom: 15px; }
      .sidebar_menu .sub_nav_heading:after {
        border-bottom: 0px none transparent;
        display: block;
        content: '';
        position: absolute;
        top: 100%;
        left: 0px;
        right: 0px;
        bottom: auto;
        width: 100%;
        padding-top: 15%;
        margin-top: -6px; } }
  .sidebar_menu li {
    margin-left: -30px;
    margin-right: -30px;
    list-style: none;
    font-weight: bold;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #666666; }
    .sidebar_menu li a {
      padding: 7px 30px;
      color: inherit;
      display: block;
      line-height: 1.5; }
      .sidebar_menu li a:hover {
        background: #FFFFFF; }
  .sidebar_menu .collapse_wrap {
    border-bottom: 1px solid #E6E6E6; }
  .sidebar_menu .collapse_header,
  .sidebar_menu .collapse_content {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
    .sidebar_menu .collapse_header[style*="width"],
    .sidebar_menu .collapse_content[style*="width"] {
      width: 100% !important;
      /* Take that, jQuery! */ }
  .sidebar_menu .collapse_content {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-top: 0px none transparent;
    padding: 15px;
    position: relative; }
    .sidebar_menu .collapse_content:first-child {
      border-top: 0px none transparent; }
  .sidebar_menu .filter_elements {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: normal; }
    .sidebar_menu .filter_elements label {
      margin: 2px 0px; }
      .sidebar_menu .filter_elements label span {
        color: inherit;
        font-size: inherit;
        font-weight: inherit; }
    .sidebar_menu .filter_elements .rf-element-title-box {
      font-weight: bold;
      color: #000000;
      margin-bottom: 5px; }
    .sidebar_menu .filter_elements .rf-element-box {
      margin-bottom: 15px;
      padding: 0px; }
    .sidebar_menu .filter_elements .rf-ms-cb.custom_input {
      display: inline-block; }
  .sidebar_menu .fancycat-icons-e .fancycat-icons-level-0 > li {
    margin-bottom: 20px; }
  .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 {
    border-left: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6; }
    .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 > li {
      border-bottom: 1px solid #E6E6E6; }
    .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_header,
    .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_content {
      -webkit-transition: background 0.1s linear;
      -o-transition: background 0.1s linear;
      transition: background 0.1s linear; }
    .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_header {
      background: transparent;
      color: #000000;
      border-bottom: 0px none transparent;
      font-size: 14px; }
      .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_header, .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_header:hover,
      .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_header + .collapse_content, .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_header + .collapse_content {
        background: #FAFAFA; }
      .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_header.closed,
      .sidebar_menu .fancycat-icons-e .fancycat-icons-level-1 .collapse_header.closed + .collapse_content {
        background: transparent; }
  .sidebar_menu .fancycat-icons-e .fancycat-icons-level-2 {
    margin-top: -5px; }
    .sidebar_menu .fancycat-icons-e .fancycat-icons-level-2 .collapse_header {
      padding: 6px 10px; }
  .sidebar_menu .fancycat-icons-e ul {
    margin: 0px;
    padding: 0px;
    width: auto; }
    .sidebar_menu .fancycat-icons-e ul li {
      background: transparent;
      margin: 0px;
      padding: 0px !important;
      text-indent: 0px !important;
      float: none; }
      .sidebar_menu .fancycat-icons-e ul li:before {
        display: none !important; }
      .sidebar_menu .fancycat-icons-e ul li ul {
        position: static;
        display: block;
        border: 0px none transparent;
        background: transparent;
        padding: 0px; }
        .sidebar_menu .fancycat-icons-e ul li ul ul {
          padding-left: 10px;
          padding-bottom: 5px; }
          .sidebar_menu .fancycat-icons-e ul li ul ul a {
            padding: 6px 10px;
            font-style: italic;
            font-weight: normal;
            color: #666666; }
      .sidebar_menu .fancycat-icons-e ul li a {
        padding: 15px 15px;
        margin-left: 0px !important;
        position: relative;
        color: #000000;
        background: transparent;
        font-size: 14px; }
        .sidebar_menu .fancycat-icons-e ul li a:hover {
          text-decoration: none;
          background: #FAFAFA; }
        .sidebar_menu .fancycat-icons-e ul li a img {
          display: none;
          position: absolute;
          top: 5px;
          left: 0px; }
  .sidebar_menu .rf-slider-wrap {
    margin-top: 10px; }

.range_labels {
  padding: 5px 0px; }
  .range_labels .currency_symbol {
    display: inline-block;
    float: left;
    width: 15px;
    margin-right: -25px;
    line-height: 24px;
    padding: 5px;
    text-align: left;
    margin-top: 1px; }
  .range_labels input,
  .range_labels input[type="text"] {
    width: 100% !important;
    color: #666666;
    font-size: 14px;
    padding: 5px;
    border-color: transparent;
    background: transparent;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    -webkit-box-shadow: none;
    box-shadow: none;
    min-height: 0px;
    line-height: 24px;
    height: auto; }
    .range_labels input:hover,
    .range_labels input[type="text"]:hover {
      border-color: #E6E6E6; }
    .range_labels input:active,
    .range_labels input[type="text"]:active {
      border-color: #129AD4; }
  .range_labels .min_label {
    float: left;
    text-align: left;
    margin-left: -5px; }
  .range_labels .max_label {
    float: right;
    text-align: right;
    margin-right: -5px; }
    .range_labels .max_label input {
      text-align: right; }

.filter_shortcut {
  margin: 0px;
  float: left; }

html #rf_found_box {
  border-radius: 5px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px -1px 1px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px -1px 1px -1px rgba(0, 0, 0, 0.2);
  border: 0px none transparent;
  height: auto; }
  html #rf_found_box:before {
    border-color: #E6E6E6; }

html #rf_num_found_products_txt,
html #rf_found_box_show_link {
  margin-bottom: 0px; }

.filter_submit_wrapper {
  border-top: 1px solid #E6E6E6;
  padding: 20px 0px;
  text-align: center;
  min-height: 43px;
  margin: 0px -15px -15px -15px; }
  .filter_submit_wrapper .rf-reset-all-link {
    padding: 0px;
    display: inline-block;
    margin-right: 0.8em;
    font-weight: bold;
    color: #999999; }
    .filter_submit_wrapper .rf-reset-all-link i {
      margin-right: 0.2em;
      font-size: 1.3em; }

#rf_filter_button {
  margin-bottom: 0px; }

/* ================================= */
/* Product View */
/* ================================= */
.product_back_button {
  float: right;
  text-align: right;
  margin: 13px 0px;
  white-space: nowrap;
  position: relative;
  z-index: 2; }
  .product_back_button .fa {
    font-size: 1.5em;
    line-height: 0.5em;
    margin-right: 0.2em;
    vertical-align: middle; }

#content.product_view {
  margin-bottom: 0px; }
  #content.product_view .page_heading {
    width: 100%; }
  #content.product_view .dietary_options_container {
    float: left;
    clear: left; }
    #content.product_view .dietary_options_container .pd_types {
      padding: 0px 0px 15px 0px;
      position: relative; }
      #content.product_view .dietary_options_container .pd_types .type {
        margin: 0px 5px 0px 0px; }

.product-details .image {
  margin-bottom: 20px; }

.image-box, .product-details .dpimages-icons-box a, .product-details .dpimages-icons-box a:link {
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  background: #ffffff;
  overflow: hidden;
  padding: 3px; }

.image-box {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer; }
  .image-box img {
    max-height: 520px; }

.product-details .dpimages-icons-box {
  font-size: 0px;
  text-align: left;
  margin: 0px -5px;
  width: auto;
  display: block; }
  .product-details .dpimages-icons-box a, .product-details .dpimages-icons-box a:link {
    display: inline-block;
    margin: 0px 5px 10px 5px;
    width: auto;
    height: auto;
    vertical-align: top; }
  .product-details .dpimages-icons-box .image-box-inner {
    display: inline-block;
    padding: 0px 5px 20px 5px;
    width: 50%;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
    .product-details .dpimages-icons-box .image-box-inner a, .product-details .dpimages-icons-box .image-box-inner a:link {
      margin: 0px;
      display: block; }
    .product-details .dpimages-icons-box .image-box-inner a {
      position: relative; }
      .product-details .dpimages-icons-box .image-box-inner a .image-box-positioner {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat; }
        .product-details .dpimages-icons-box .image-box-inner a .image-box-positioner:before {
          content: '';
          display: block;
          width: 100%;
          height: 0px;
          padding-top: 75%; }

#extraImagesTrigger {
  cursor: pointer; }

.product_buttons {
  font-size: 0px;
  margin: 10px -5px 30px -5px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .product_buttons .button, .product_buttons .ui-button.ui-state-default {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 10px 5px 0px 5px;
    vertical-align: middle;
    font-size: 14px; }

.product-details {
  /*
	.quantity-row {
		margin-bottom: 20px;

		@media screen and (max-width: $grid_m_max) {
			margin-bottom: 20px;
		}
	}
	*/ }
  .product-details .page_heading {
    margin-bottom: 15px;
    width: 100%; }
  .product-details .detail_section {
    padding: 0px 0px 20px 0px;
    clear: both;
    float: none; }
    .product-details .detail_section:first-child {
      padding-top: 0px; }
    .product-details .detail_section .product_calories {
      font-size: 18px;
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      color: #666666;
      float: left; }
      .product-details .detail_section .product_calories strong {
        font-family: "Open Sans", Arial, Helvetica, sans-serif;
        font-weight: normal; }
    .product-details .detail_section .buttons-row.soc-buttons-row {
      margin: 0px 0px 10px 0px;
      float: right; }
      @media screen and (max-width: 1023px) {
        .product-details .detail_section .buttons-row.soc-buttons-row {
          float: left;
          margin-top: 10px;
          clear: left; } }
    .product-details .detail_section .product_buttons {
      margin-top: 10px;
      margin-bottom: 0px; }
  .product-details #orderform {
    border-top: 1px solid #E6E6E6;
    padding-top: 20px;
    padding-bottom: 10px; }
  .product-details .product-properties {
    margin: 0px -10px; }
  .product-details table.product-properties {
    margin: 0px; }
  .product-details .option-row,
  .product-details .quantity-row {
    margin-bottom: 10px;
    height: 52px;
    width: 50%;
    float: left;
    padding: 0px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
    .product-details .option-row label,
    .product-details .quantity-row label {
      height: 100%;
      color: #000000;
      font-weight: bold; }
    .product-details .option-row .vert_align_container,
    .product-details .quantity-row .vert_align_container {
      font-size: 0px; }
    .product-details .option-row .vert_align,
    .product-details .quantity-row .vert_align {
      font-size: 14px; }
    @media screen and (max-width: 479px), screen and (min-width: 768px) and (max-width: 1023px) {
      .product-details .option-row,
      .product-details .quantity-row {
        width: 100%; } }
    @media screen and (max-width: 479px) {
      .product-details .option-row,
      .product-details .quantity-row {
        height: auto; }
        .product-details .option-row label,
        .product-details .quantity-row label {
          height: auto;
          padding: 5px 0px; } }
  .product-details .buy_side {
    background: #333333 url(/assets/images/backgrounds/buy_bg.png) no-repeat left center;
    padding: 0px 20px;
    height: 100px;
    font-size: 0px;
    border-radius: 3px;
    margin-top: 10px;
    clear: both; }
    @media screen and (min-width: 768px) and (max-width: 1023px) {
      .product-details .buy_side {
        background-position: -60px center; } }
    @media screen and (max-width: 479px) {
      .product-details .buy_side {
        height: 140px;
        padding: 10px 20px;
        background-position: 50% center; } }
    .product-details .buy_side .buy_side_section {
      height: 100%;
      float: none;
      font-size: 0px; }
      .product-details .buy_side .buy_side_section .vert_align {
        font-size: 14px;
        width: 100%; }
      @media screen and (max-width: 479px) {
        .product-details .buy_side .buy_side_section {
          height: 50px;
          margin: 10px 0px; } }
    .product-details .buy_side .product-price-value {
      color: #ffffff;
      font-weight: bold;
      font-size: 42px;
      line-height: 1;
      font-family: "Open Sans", Arial, Helvetica, sans-serif; }
      @media screen and (min-width: 1200px) {
        .product-details .buy_side .product-price-value {
          font-size: 48px; } }
      @media screen and (max-width: 1023px) {
        .product-details .buy_side .product-price-value {
          font-size: 30px; } }
      @media screen and (max-width: 479px) {
        .product-details .buy_side .product-price-value {
          font-size: 26px; } }
    .product-details .buy_side .save,
    .product-details .buy_side .product-taxed-price .currency {
      font-weight: bold;
      font-size: 24px;
      text-align: center;
      display: block;
      text-transform: uppercase;
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      width: 100%; }
      @media screen and (max-width: 1023px) {
        .product-details .buy_side .save,
        .product-details .buy_side .product-taxed-price .currency {
          font-size: 16px; } }
    .product-details .buy_side .save {
      height: auto;
      color: #9ad143;
      float: none;
      padding: 0px;
      background: transparent; }
    .product-details .buy_side .product-taxed-price .currency {
      text-decoration: line-through;
      color: #ffffff; }
    .product-details .buy_side .button, .product-details .buy_side .ui-button.ui-state-default {
      padding-left: 0px;
      padding-right: 0px;
      width: 100%; }
      .product-details .buy_side .button + .button, .product-details .buy_side .ui-button.ui-state-default + .button, .product-details .buy_side .button + .ui-button.ui-state-default, .product-details .buy_side .ui-button.ui-state-default + .ui-button.ui-state-default {
        margin-top: 10px; }
  .product-details .ask-question {
    margin: 0px;
    text-align: center;
    color: #000000;
    font-size: 14px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 10px 0px; }
    .product-details .ask-question a {
      color: inherit;
      -webkit-transition: color 0.1s linear;
      -o-transition: color 0.1s linear;
      transition: color 0.1s linear; }
      .product-details .ask-question a:hover {
        color: #a01717; }
    .product-details .ask-question .fa {
      color: #e02323;
      font-size: 1.3em;
      margin-right: 5px;
      vertical-align: middle; }
  .product-details .detail_section + .login_reminder {
    clear: both;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
    background: #FAFAFA;
    margin: 0px 0px 10px 0px;
    padding: 15px 15px;
    text-align: center;
    font-weight: bold; }
  .product-details .collapse_wrap {
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    overflow: hidden; }
    .product-details .collapse_wrap .collapse_header {
      border-top: 1px solid #E6E6E6;
      background-color: #e02323;
      color: #ffffff;
      padding: 20px;
      position: relative;
      -webkit-transition: color 0.2s linear, background-color 0.2s linear;
      -moz-transition: color 0.2s linear, background-color 0.2s linear;
      -ms-transition: color 0.2s linear, background-color 0.2s linear;
      -o-transition: color 0.2s linear, background-color 0.2s linear;
      transition: color 0.2s linear, background-color 0.2s linear; }
      .product-details .collapse_wrap .collapse_header:after {
        content: '';
        height: 2px;
        width: 100%;
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 4px;
        float: none;
        background: #ffffff;
        margin: 0px;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        -webkit-transition: background-color 0.2s linear;
        -moz-transition: background-color 0.2s linear;
        -ms-transition: background-color 0.2s linear;
        -o-transition: background-color 0.2s linear;
        transition: background-color 0.2s linear; }
      .product-details .collapse_wrap .collapse_header h1, .product-details .collapse_wrap .collapse_header h2, .product-details .collapse_wrap .collapse_header h3, .product-details .collapse_wrap .collapse_header h4, .product-details .collapse_wrap .collapse_header a, .product-details .collapse_wrap .collapse_header a:hover {
        color: inherit;
        text-transform: none;
        margin: 0px; }
      .product-details .collapse_wrap .collapse_header .info_link {
        float: right; }
      .product-details .collapse_wrap .collapse_header.locked {
        background-color: #FAFAFA;
        color: #b0aeae; }
        .product-details .collapse_wrap .collapse_header.locked:after {
          background-color: transparent; }
    .product-details .collapse_wrap .collapse_content {
      padding: 15px 10px; }
      .product-details .collapse_wrap .collapse_content .option-row {
        display: block;
        float: left;
        width: 50%;
        padding: 0px 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box; }
        @media screen and (max-width: 1023px) {
          .product-details .collapse_wrap .collapse_content .option-row {
            width: 100%; } }
    .product-details .collapse_wrap > *:first-child {
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      border-top: 0px; }
    .product-details .collapse_wrap > *:last-child {
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px; }

#product-tabs-container {
  margin-top: 10px; }

/* ================================= */
/* Related Products (Tab) */
/* ================================= */
#product-tabs-related .products-list .item {
  width: 50%; }
  @media screen and (max-width: 479px) {
    #product-tabs-related .products-list .item {
      width: 100%; } }
  #product-tabs-related .products-list .item .item-box .image {
    margin-bottom: 0px; }
  #product-tabs-related .products-list .item .details .button, #product-tabs-related .products-list .item .details .ui-button.ui-state-default {
    color: #ffffff; }

/* ================================= */
/* Related Products (Bottom Section) */
/* ================================= */
.product-related {
  border-top: 1px solid #E6E6E6;
  border-bottom: 0px none transparent;
  padding: 40px 0px 30px 0px; }
  .product-related h2 {
    text-align: center;
    text-transform: none;
    margin-bottom: 40px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 30px;
    color: #000000; }

/* ================================= */
/* Navigation */
/* ================================= */
.navigation {
  margin-bottom: 20px; }
  @media screen and (min-width: 600px) and (max-width: 767px) {
    .navigation {
      text-align: center; } }
  .navigation.top {
    margin-bottom: 10px; }
    @media screen and (min-width: 768px) {
      .navigation.top {
        margin-top: -10px; } }
  .navigation .sortByContainer {
    float: right;
    margin-bottom: 10px; }
    .navigation .sortByContainer .search-sort-bar {
      margin: 0px;
      height: auto;
      padding-right: 0px; }
    .navigation .sortByContainer .search-sort-title {
      float: left;
      display: block;
      height: 34px;
      line-height: 32px;
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      font-weight: bold;
      color: #000000;
      padding-right: 10px; }
    .navigation .sortByContainer .custom_select {
      float: left; }
    .navigation .sortByContainer select,
    .navigation .sortByContainer .custom_select span {
      background: #ffffff;
      line-height: 24px;
      height: 34px;
      padding-top: 5px;
      padding-bottom: 5px;
      padding-right: 34px; }
      .navigation .sortByContainer select:after,
      .navigation .sortByContainer .custom_select span:after {
        height: 31px;
        line-height: 34px;
        width: 34px; }
  .navigation .show_all_button {
    vertical-align: top;
    text-align: center; }
    .navigation .show_all_button.mobile {
      display: none; }
  .navigation .filter_shortcut {
    margin-bottom: 13px; }
  @media screen and (max-width: 599px) {
    .navigation .nextprevnav {
      width: 75%;
      display: inline-table;
      table-layout: fixed;
      margin-bottom: 10px;
      float: left;
      clear: both; }
      .navigation .nextprevnav a, .navigation .nextprevnav span {
        display: table-cell;
        width: auto;
        height: 30px;
        line-height: 30px; }
    .navigation .show_all_button {
      vertical-align: top;
      width: 20%;
      float: right; }
      .navigation .show_all_button.desktop {
        display: none; }
      .navigation .show_all_button.mobile {
        display: inline-block; } }

/* ================================= */
/* Add to Cart Popup */
/* ================================= */
.cart .meal_choice_container {
  padding: 15px; }
  @media screen and (max-width: 767px) {
    .cart .meal_choice_container {
      padding-top: 0px; } }

.cart .meal_choice_container .meal_choices + .meal_choices {
  margin-top: 10px; }

.cart .meal_choice_container .meal_choices strong {
  text-transform: uppercase;
  color: #333333; }

.cart .meal_choice_container .meal_choices span {
  color: #e02323; }

/* ================================= */
/* Quickview */
/* ================================= */
.product-quick-view .dialog, .product-quick-view .product-details {
  margin: 0; }

.quick-view {
  display: none;
  background: #F5F5F5;
  border: 1px solid #DBDBDB;
  left: 10px;
  padding: 5px 10px;
  position: absolute;
  top: 45px; }

.quick-view-link {
  background: #f7f7f7;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkOGQ4ZDgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #f7f7f7 0%, #d8d8d8 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #d8d8d8));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f7f7f7 0%, #d8d8d8 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f7f7f7 0%, #d8d8d8 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f7f7f7 0%, #d8d8d8 100%);
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#d8d8d8));
  background: linear-gradient(to bottom, #f7f7f7 0%, #d8d8d8 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#d8d8d8',GradientType=0 );
  /* IE6-8 */
  top: 60%;
  padding: 5px 0;
  position: absolute;
  width: 40%;
  left: 30%;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border: 1px solid #ccc;
  display: none; }
  .quick-view-link a {
    text-decoration: none;
    color: #444444; }
    .quick-view-link a:hover {
      color: #111111; }

.quick-view-product-btn {
  margin-right: 10px; }

.products-table .image {
  position: relative; }

/* ================================= */
/* Gift Certificates */
/* ================================= */
.register_giftcert .iv-box {
  margin: 0px; }
  .register_giftcert .iv-box hr {
    display: none; }
  .register_giftcert .iv-box .verification_header {
    display: none; }
  .register_giftcert .iv-box .verification_instructions {
    color: #f03b34;
    font-weight: normal;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    display: block; }
  .register_giftcert .iv-box .iv-input .valign-middle-adv-lvl2 {
    vertical-align: top; }
  .register_giftcert .iv-box .iv-input input {
    width: 100px; }
    @media screen and (max-width: 479px) {
      .register_giftcert .iv-box .iv-input input {
        width: 80px;
        padding-left: 8px;
        padding-right: 8px; } }
  .register_giftcert .iv-box .iv-input .button_code {
    display: inline-block; }

.giftcert-table {
  width: 100%; }
  .giftcert-table .giftcert-title {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px; }
  .giftcert-table .giftcert-subtitle {
    padding-bottom: 10px; }
  .giftcert-table td.data-name,
  .giftcert-table td.data-required {
    padding-top: 16px;
    color: inherit; }
  .giftcert-table td.data-required {
    color: #ED5E56; }
  .giftcert-table .giftcert-h-separator hr {
    border-color: #E6E6E6;
    border-bottom: 0px none transparent;
    height: 0px; }
  .giftcert-table .giftcert-h-separator .or_separator {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #E6E6E6;
    border-radius: 50%;
    margin: -35px auto 10px auto;
    background: #ffffff; }

.cart .giftcert-item td.image {
  width: 20%;
  max-width: 150px; }
  @media screen and (max-width: 479px) {
    .cart .giftcert-item td.image {
      display: none; } }

.cart .giftcert-item td.details {
  padding: 15px; }

/* ================================= */
/* Shopping Cart */
/* ================================= */
.checkout-buttons {
  float: right; }
  @media screen and (max-width: 767px) {
    .checkout-buttons {
      float: none;
      margin: -15px 0px 10px 0px; } }

.cart-content .cart-column-product {
  width: auto; }

.cart .item {
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  border-radius: 5px;
  border: 1px solid #E6E6E6;
  margin-bottom: 20px; }
  #content .cart .item table {
    margin: 0; }
  .cart .item > tbody > tr:nth-child(odd) > td {
    background: #FAFAFA; }
  .cart .item td {
    border: 1px solid #E6E6E6;
    padding: 15px;
    vertical-align: middle; }

.cart td, .cart th {
  font-family: "Open Sans", Arial, Helvetica, sans-serif; }
  .cart td.details, .cart th.details {
    text-align: left;
    vertical-align: middle;
    padding: 0px;
    width: 50%; }

.cart th.details {
  padding-left: 15px; }

.cart td a {
  color: inherit; }

.cart th, .cart .head-row th {
  background: #FAFAFA;
  vertical-align: middle;
  white-space: nowrap;
  padding: 0px 0px 0px 15px;
  text-align: left;
  height: 50px;
  border: 1px solid #E6E6E6;
  border-left: 0px none transparent;
  border-right: 0px none transparent;
  font-size: 18px; }
  .cart th:first-child, .cart .head-row th:first-child {
    border-left: 1px solid #E6E6E6; }
  .cart th:last-child, .cart .head-row th:last-child {
    border-right: 1px solid #E6E6E6; }
  @media screen and (max-width: 767px) {
    .cart th, .cart .head-row th {
      height: 35px;
      font-size: 14px;
      padding: 0px 5px 0px 0px; }
      .cart th:first-child, .cart .head-row th:first-child {
        padding-left: 5px; } }

@media screen and (max-width: 767px) {
  .cart table.cart-content tr td {
    padding: 5px; } }

.cart .cart_image {
  position: relative;
  padding-bottom: 1px; }

.cart .details .delete-button {
  display: none;
  position: absolute;
  top: 50%;
  left: -12px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  margin-top: -12px;
  border: 1px solid #E6E6E6;
  color: #666666 !important;
  background: #ffffff;
  text-align: center;
  border-radius: 50%; }
  .cart .details .delete-button:hover {
    color: #333333 !important; }

.cart .item tr:hover .delete-button,
.touch .cart .delete-button {
  display: block; }

.cart .cart_text {
  padding: 15px; }
  .cart .cart_text p {
    margin-bottom: 0px; }
  .cart .cart_text .poptions-list {
    margin-bottom: 5px; }
    .cart .cart_text .poptions-list td {
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      border: 0px none transparent;
      padding: 0px 5px 0px 0px; }

.cart .price_mobile {
  margin-bottom: 30px;
  line-height: 18px; }

.cart .mobile-price {
  display: block; }
  .cart .mobile-price, .cart .mobile-price .currency {
    font-size: 12px;
    color: #bbbbbb;
    font-weight: normal;
    font-family: "Open Sans", Arial, Helvetica, sans-serif; }

.cart .taxes {
  padding: 0;
  font-size: 12px; }

.cart input[type="text"] {
  width: auto;
  background: #ffffff; }

.cart .update-item {
  font-size: 12px; }

.cart .currency {
  font-size: 14px;
  font-weight: normal;
  font-family: "Open Sans", Arial, Helvetica, sans-serif; }

.cart .buttons {
  height: auto;
  margin-top: 0px;
  margin-bottom: 20px; }
  .cart .buttons .button, .cart .buttons .ui-button.ui-state-default {
    margin: 0px;
    display: inline-block; }
  .cart .buttons .delete-button {
    color: #ED5E56;
    margin-left: 20px; }
    .cart .buttons .delete-button .fa {
      margin-left: 5px; }
  .cart .buttons .offers-cart-button {
    padding-top: 14px; }
    @media screen and (max-width: 767px) {
      .cart .buttons .offers-cart-button {
        float: none; } }

.cart .cart_product_options tr, .cart .cart_product_options tr:last-child,
.cart .cart_product_options tr td {
  background: transparent;
  border: 0px none transparent; }

.cart .cart_product_options tr td {
  vertical-align: top;
  padding: 0px; }

.cart .cart_product_options tr .poptions-options-list td {
  font-size: 12px;
  line-height: 16px;
  padding: 2px 0px; }

.cart .cart_product_options tr .poptions-options-list td:first-child {
  font-weight: bold;
  padding-right: 10px; }

.cart .cart_product_options > tbody > tr,
.cart .cart_product_options > tbody > tr > td {
  display: block; }

/* Totals */
.totals.checkout_totals {
  padding-bottom: 30px; }

.totals .error-message,
.totals .totals_shipping_error {
  padding: 0px 20px;
  text-align: left; }

.totals .totals_shipping_error {
  padding-bottom: 10px; }
  .totals .totals_shipping_error .button, .totals .totals_shipping_error .ui-button.ui-state-default {
    margin-top: 10px; }

.totals .shipping-method {
  padding: 0px 20px;
  font-weight: normal;
  color: inherit;
  margin-bottom: 10px; }
  .totals .shipping-method a {
    font-size: inherit;
    text-decoration: none;
    font-weight: normal; }
  .totals .shipping-method select, .totals .shipping-method .custom_select span {
    background: #ffffff; }

.totals .cart-total-row {
  background: #FAFAFA;
  padding: 15px 0px;
  margin-bottom: 10px; }
  .totals .cart-total-row table {
    width: 100%;
    margin-bottom: 0px; }

.totals td {
  padding: 0;
  color: #666666; }
  .totals td.total {
    text-align: right;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    padding-right: 20px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: bold; }

.totals .total {
  padding-right: 0px;
  color: inherit; }

.totals .total-name {
  text-align: right;
  font-weight: normal;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: inherit; }

.totals .total-value {
  color: inherit;
  padding-right: 20px; }

.totals .total-alt-value {
  padding-left: 0; }

.totals .total-line {
  padding: 0px; }
  .totals .total-line img {
    background: #E6E6E6; }

.totals hr {
  border-color: #E6E6E6;
  margin: 15px 0px; }

.totals .unset-coupon {
  color: #ED5E56; }

.totals .totals_gift_certs {
  padding-right: 20px;
  margin-top: 10px; }
  .totals .totals_gift_certs .total-name {
    padding-right: 0px; }

.cart_total .cart_total_value .currency {
  font-weight: bold;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 30px; }

.estimator-container {
  width: auto;
  font-size: 12px;
  text-align: right;
  /*margin-bottom:10px;*/ }

.checkout-button {
  margin-bottom: 10px; }
  .checkout-button .button, .checkout-button .ui-button.ui-state-default {
    text-align: left; }
    .checkout-button .button .button_after, .checkout-button .ui-button.ui-state-default .button_after {
      width: 50px; }
    .checkout-button .button a, .checkout-button .ui-button.ui-state-default a {
      font-size: 14px;
      line-height: 1 !important;
      display: inline-block;
      float: left;
      margin: -3px 0px 0px 0px;
      position: relative;
      top: 2px; }
    .checkout-button .button .button_text, .checkout-button .ui-button.ui-state-default .button_text {
      display: block; }
    .checkout-button .button small, .checkout-button .ui-button.ui-state-default small {
      font-size: 11px;
      font-style: italic;
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      font-weight: normal; }

.paypal-cart-button {
  text-align: inherit;
  height: auto; }
  .paypal-cart-button div {
    width: auto;
    height: auto;
    text-align: auto; }

.couponform .input_holder {
  overflow: hidden;
  padding-right: 10px; }
  .couponform .input_holder input {
    width: 100%; }

/*
.dialog.redeemDiscount {
	margin-bottom: 0px !important;
	margin-top: 0px;

	.title {
		background: #999999;
	}
}
*/
.cartSpecialOffers a {
  color: inherit;
  text-decoration: none; }

.cartSpecialOffers strong {
  display: block;
  font-weight: normal; }

/* ================================= */
/* Checkout */
/* ================================= */
.dialog .flc-login-text a {
  text-decoration: none; }

.dialog .flc-login-text p {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 15px;
  margin-top: 0px; }

div.flc-tabs-container {
  height: auto;
  margin-bottom: 20px; }

div.flc-tabs {
  position: static;
  width: 100%;
  text-align: center;
  font-size: 0px; }
  div.flc-tabs .flc-tab {
    font-size: 14px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: normal;
    display: inline-block;
    margin: 0px 10px; }
    @media (max-width: 767px) {
      div.flc-tabs .flc-tab {
        width: 50%;
        text-align: left;
        margin: 5px 0px; } }
    @media (max-width: 479px) {
      div.flc-tabs .flc-tab {
        width: 100%; } }
    div.flc-tabs .flc-tab .flc-tab-num {
      margin-right: 4px;
      background: #666666;
      color: #ffffff;
      display: inline-block;
      width: 24px;
      height: 24px;
      line-height: 24px;
      vertical-align: middle;
      border-radius: 50%;
      text-align: center; }
    div.flc-tabs .flc-tab a .flc-tab-num {
      background: #e02323; }

.flc-container .flc-or-column {
  text-align: center;
  padding-top: 40px; }
  @media (max-width: 767px) {
    .flc-container .flc-or-column {
      padding: 0px 0px 30px 0px; } }
  .flc-container .flc-or-column h3 {
    margin-bottom: 0px; }

.flc-container .flc-header,
.flc-container .content .flc-header {
  margin-top: 30px;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: #e02323;
  line-height: 1; }

.flc-container h1.flc-header {
  font-size: 30px; }

.flc-container h2.flc-header {
  font-size: 24px; }

.flc-container h3.flc-header {
  font-size: 18px; }

.flc-checkout-container {
  margin: 0px -10px; }
  .flc-checkout-container .flc-checkout-item {
    padding: 0px 10px 20px 10px; }
  .flc-checkout-container .flc-address,
  .flc-checkout-container .flc-checkout-options {
    margin-bottom: 30px; }
  .flc-checkout-container .checkout-shippings .shipping-method,
  .flc-checkout-container .checkout-payments tr td {
    padding: 5px 0px; }
  .flc-checkout-container h3 {
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 5px; }

.flc-checkout-box-info table.flc-checkout-address td {
  padding: 0px 20px 5px 0px; }
  .flc-checkout-box-info table.flc-checkout-address td:first-child {
    font-weight: bold;
    text-align: right; }
  .flc-checkout-box-info table.flc-checkout-address td.modify-row {
    padding: 10px 0px 0px 0px;
    text-align: center; }
  .flc-checkout-box-info table.flc-checkout-address td.modify_row {
    padding-right: 0px;
    padding-top: 10px;
    text-align: center; }

.flc-checkout-products table .meal_choice_container {
  padding: 10px 0px 0px 0px; }
  .flc-checkout-products table .meal_choice_container strong {
    font-size: 14px;
    margin: 10px 0px 0px 0px; }

/* Dialog Stuff */
.dialog {
  border-width: 0px; }
  .dialog .content .button, .dialog .content .ui-button.ui-state-default {
    float: none;
    margin-top: auto; }
  .dialog .title-bar, .dialog .title {
    border-width: 0px; }
  .dialog.noborder {
    border: 0px none transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .dialog.noborder > .content {
      padding: 0px;
      background: transparent;
      border: 0px none transparent; }

/* ================================= */
/* Rego Forms */
/* ================================= */
.login_form .content .table {
  margin-bottom: 0px; }

.login_form .content .button, .login_form .content .ui-button.ui-state-default {
  margin: 0px; }

#content .validate-mark {
  content: '';
  font-family: FontAwesome;
  display: none; }
  #content .validate-mark.validate-non-matched {
    color: #ED5E56;
    display: block; }
    #content .validate-mark.validate-non-matched:before {
      content: "\f00d"; }
  #content .validate-mark.validate-matched {
    color: #e02323;
    display: block; }
    #content .validate-mark.validate-matched:before {
      content: "\f00c"; }

.or_column {
  padding-top: 30px; }
  @media screen and (max-width: 767px) {
    .or_column {
      padding: 20px 0px 20px 0px; } }
  .or_column h3 {
    margin-bottom: 0px; }

#copy .iv-box {
  margin: 20px 0px 0px 0px;
  padding: 0px;
  font-size: 14px; }

/* ================================= */
/* Address Book */
/* ================================= */
#content ul.address-container {
  margin: 0px -10px;
  text-align: center; }

.address-container {
  text-align: center;
  font-size: 0px; }
  .address-container.popup-address {
    margin: 0px -10px;
    min-width: 700px; }
    .address-container.popup-address .address-box {
      width: 230px;
      float: left; }
    @media screen and (max-width: 767px) {
      .address-container.popup-address {
        min-width: 450px; }
        .address-container.popup-address .address-box {
          width: 50%; } }
    @media screen and (max-width: 550px) {
      .address-container.popup-address {
        min-width: 200px; }
        .address-container.popup-address .address-box {
          width: 100%; } }
  .address-container li.address-box {
    padding: 0px 10px 20px 10px;
    margin: 0px !important;
    min-height: 50px;
    max-width: 100%;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
    border: 0px none transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
    @media (min-width: 768px) and (max-width: 1023px) {
      .address-container li.address-box {
        width: 33%; } }
    @media (min-width: 550px) and (max-width: 767px) {
      .address-container li.address-box {
        width: 50%; } }
    @media (max-width: 549px) {
      .address-container li.address-box {
        width: 100%; } }
    .address-container li.address-box:before {
      content: '';
      display: none; }
    .address-container li.address-box .address-bg {
      margin: 0px;
      padding: 0px;
      width: auto;
      border: 1px solid #E6E6E6; }
    .address-container li.address-box .address-main {
      font-weight: normal;
      padding: 20px; }
      .address-container li.address-box .address-main .new-address-label {
        padding: 0px;
        font-weight: bold; }
        .address-container li.address-box .address-main .new-address-label a {
          display: block;
          padding: 10px 0px; }
      .address-container li.address-box .address-main .button, .address-container li.address-box .address-main .ui-button.ui-state-default {
        float: none;
        margin: 0px; }
    .address-container li.address-box .address-default {
      font-weight: bold;
      color: #e02323; }

@media (max-width: 1023px) {
  #address_box_0 {
    width: 100%; }
    #address_box_0 .address-main {
      padding: 0px; } }

/* ================================= */
/* Orders */
/* ================================= */
.order_status_dropdown .xostatus-search-status-indicator {
  display: none; }

/* ================================= */
/* Wishlist */
/* ================================= */
.wishlist_item {
  margin-bottom: 30px; }
  .wishlist_item .image img {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px -1px 1px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px -1px 1px -1px rgba(0, 0, 0, 0.2);
    border-radius: 5px; }
  .wishlist_item .poptions-list {
    margin-bottom: 15px; }
  .wishlist_item .poptions-options-list {
    margin-bottom: 0px; }
    .wishlist_item .poptions-options-list td:first-child {
      font-weight: bold; }
  .wishlist_item .price-box {
    margin-bottom: 15px; }
  .wishlist_item .product-price-text input {
    width: 80px; }
  .wishlist_item .taxes {
    padding: 0px;
    display: inline-block;
    font-size: 12px; }
  .wishlist_item .wishlist-buttons input, .wishlist_item .wishlist-buttons a {
    vertical-align: middle; }

.wishlist-sendlist {
  margin-top: 0px; }
  .wishlist-sendlist label {
    margin-right: 10px;
    font-weight: bold; }
  .wishlist-sendlist .button, .wishlist-sendlist .ui-button.ui-state-default {
    margin-top: 0px; }

.wishlist-sendlist-buttons {
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px; }

.button.clear-wishlist, .clear-wishlist.ui-button.ui-state-default {
  float: right; }

/* Wishlist Popup */
.product-options-popup .property-row {
  width: 100%;
  padding-bottom: 10px; }

.product-options-popup .property-name {
  height: 53px;
  font-weight: bold; }

@media (max-width: 479px) {
  .button.clear-wishlist, .clear-wishlist.ui-button.ui-state-default {
    float: none; }
  .wishlist_item .product_thumbnail {
    margin-bottom: 20px; } }

/* ================================= */
/* Favourites */
/* ================================= */
.tree-categories-list.favourites_list {
  margin: 20px 0px; }
  .tree-categories-list.favourites_list ul {
    margin-bottom: 0px;
    -webkit-box-shadow: inset 0px 1px 0px 0px #E6E6E6;
    box-shadow: inset 0px 1px 0px 0px #E6E6E6; }
    .tree-categories-list.favourites_list ul li {
      border-top: 1px solid #E6E6E6;
      -webkit-box-shadow: 0px 1px 0px 0px #E6E6E6;
      box-shadow: 0px 1px 0px 0px #E6E6E6; }
      .tree-categories-list.favourites_list ul li:before {
        display: none !important; }
      .tree-categories-list.favourites_list ul li .category-fave-icon {
        line-height: 24px;
        font-size: 18px;
        margin-top: 0px;
        vertical-align: middle; }
  .tree-categories-list.favourites_list .hover-div {
    padding: 10px 15px;
    line-height: 24px; }
    .tree-categories-list.favourites_list .hover-div:hover {
      background: #FAFAFA; }

/* ================================= */
/* Custom Select Boxes */
/* ================================= */
.custom_select {
  position: relative; }
  .custom_select select {
    position: relative;
    z-index: 10;
    width: 100%;
    -webkit-appearance: none; }
  .custom_select span {
    position: absolute;
    bottom: 0;
    top: 0;
    float: left;
    left: 0;
    right: 0;
    cursor: default;
    z-index: 1;
    text-align: left;
    height: 52px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    background: #ffffff;
    border: 0px none transparent;
    -webkit-box-shadow: inset 0px 0px 0px 1px #E6E6E6;
    box-shadow: inset 0px 0px 0px 1px #E6E6E6;
    padding: 14px 15px;
    padding-right: 52px; }
    .custom_select span:after {
      font-family: FontAwesome;
      content: "\f107";
      display: block;
      position: absolute;
      font-size: 2em;
      line-height: 52px;
      height: 49px;
      width: 52px;
      right: 0px;
      top: 0px;
      text-align: center;
      color: #ffffff;
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px;
      background-color: #e02323;
      background-image: -webkit-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
      background-image: -webkit-gradient(linear, left top, right top, from(#e02323), to(#cd1d1d));
      background-image: -o-linear-gradient(left, #e02323 0%, #cd1d1d 100%);
      background-image: linear-gradient(to right, #e02323 0%, #cd1d1d 100%);
      background-position: left top;
      -webkit-box-shadow: 0px 3px 0px 0px #b61a1a;
      box-shadow: 0px 3px 0px 0px #b61a1a; }

/* ================================= */
/* Custom Checkboxes & Radio Buttons */
/* ================================= */
input[type="radio"].custom_input,
input[type="checkbox"].custom_input {
  opacity: 0;
  width: 12px;
  margin-top: 5px;
  margin-right: -12px;
  min-height: 12px;
  float: left;
  cursor: pointer; }
  .lt-ie9 input[type="radio"].custom_input, .lt-ie9
  input[type="checkbox"].custom_input {
    display: block;
    visibility: visible;
    width: auto;
    float: left;
    margin: 5px 10px 0px 0px; }
  input[type="radio"].custom_input + label,
  input[type="checkbox"].custom_input + label {
    display: block;
    cursor: pointer;
    text-align: left; }
  input[type="radio"].custom_input + label.active:before,
  input[type="radio"].custom_input:checked + label:before,
  input[type="radio"].custom_input:checked + label:hover:before,
  input[type="checkbox"].custom_input + label.active:before,
  input[type="checkbox"].custom_input:checked + label:before,
  input[type="checkbox"].custom_input:checked + label:hover:before {
    background: #e02323; }
  .lt-ie9 input[type="radio"].custom_input.box, .lt-ie9
  input[type="checkbox"].custom_input.box {
    display: block;
    margin: 12px;
    margin-top: 19px;
    margin-right: -24px;
    float: left; }
    .lt-ie9 input[type="radio"].custom_input.box + label, .lt-ie9
    input[type="checkbox"].custom_input.box + label {
      padding-left: 36px; }
  input[type="radio"].custom_input.box + label,
  input[type="checkbox"].custom_input.box + label {
    border: 1px solid #E6E6E6;
    padding: 12px; }
  input[type="radio"].custom_input.box + label.active,
  input[type="radio"].custom_input.box:checked + label,
  input[type="radio"].custom_input.box:checked + label:hover,
  input[type="checkbox"].custom_input.box + label.active,
  input[type="checkbox"].custom_input.box:checked + label,
  input[type="checkbox"].custom_input.box:checked + label:hover {
    border-color: #e02323; }

.custom_input_standalone, input[type="radio"].custom_input + label:before,
input[type="checkbox"].custom_input + label:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0px 0px 0px 2px #000000;
  box-shadow: 0px 0px 0px 2px #000000;
  float: left;
  margin: 0.4em 10px 0px 2px;
  cursor: pointer;
  border-collapse: separate;
  -webkit-backface-visibility: hidden;
  -moz-transition: background 0.1s ease 0s;
  -webkit-transition: background 0.1s ease 0s;
  -o-transition: background 0.1s ease 0s;
  transition: background 0.1s ease 0s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  .lt-ie9 .custom_input_standalone, .lt-ie9 input[type="radio"].custom_input + label:before, .lt-ie9
  input[type="checkbox"].custom_input + label:before {
    display: none; }

input.custom_input:hover + label:before,
input.custom_input:hover + .custom_input_standalone,
input[type="radio"].custom_input:hover + label:before,
input[type="checkbox"].custom_input:hover + label:before,
.custom_input_standalone:hover,
input[type="radio"].custom_input + label:hover:before,
input[type="checkbox"].custom_input + label:hover:before {
  background: #E6E6E6; }

.custom_input:checked + .custom_input_standalone, input[type="radio"].custom_input:checked + label:before, input[type="checkbox"].custom_input:checked + label:before,
.custom_input:checked + .custom_input_standalone:hover,
input[type="radio"].custom_input:checked + label:hover:before,
input[type="checkbox"].custom_input:checked + label:hover:before,
.custom_input:checked:hover + .custom_input_standalone,
input[type="radio"].custom_input:checked:hover + label:before,
input[type="checkbox"].custom_input:checked:hover + label:before {
  background: #e02323; }

.no-boxshadow .custom_input_standalone, .no-boxshadow input[type="radio"].custom_input + label:before, .no-boxshadow
input[type="checkbox"].custom_input + label:before {
  outline: 1px solid #E6E6E6; }

input[type="radio"].custom_input + label:before,
.custom_input_standalone.radio,
input[type="radio"].custom_input + label.radio:before,
input[type="checkbox"].custom_input + label.radio:before,
input[type="radio"].custom_input + .custom_input_standalone,
input[type="radio"].custom_input + label:before {
  border-radius: 50%; }

/* ================================= */
/* Fancy Inputs */
/* ================================= */
.form_row {
  padding: 10px 0px; }
  .form_row label {
    color: #e02323;
    font-weight: normal;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: bold; }
  .form_row .imageVerification {
    padding-top: 5px; }

.form_input_wrap {
  position: relative; }

.form_input_wrap.fancy input,
.form_input_wrap.fancy textarea {
  width: 100%;
  padding: 13px 15px;
  line-height: 24px;
  height: 52px;
  -webkit-transition: padding 0.2s ease;
  -moz-transition: padding 0.2s ease;
  -ms-transition: padding 0.2s ease;
  -o-transition: padding 0.2s ease;
  transition: padding 0.2s ease; }

.form_input_wrap.fancy textarea {
  height: auto; }

.form_input_wrap.fancy input[type="radio"],
.form_input_wrap.fancy input[type="checkbox"] {
  width: auto; }

.form_input_wrap.fancy .fancy_label {
  position: absolute;
  font-size: 12px;
  display: block !important;
  left: 16px;
  top: 0px;
  opacity: 0;
  font-weight: normal;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #e02323;
  line-height: 15.6px;
  cursor: default;
  -webkit-transition: top 0.2s ease, opacity 0.2s linear;
  -moz-transition: top 0.2s ease, opacity 0.2s linear;
  -ms-transition: top 0.2s ease, opacity 0.2s linear;
  -o-transition: top 0.2s ease, opacity 0.2s linear;
  transition: top 0.2s ease, opacity 0.2s linear; }
  .form_input_wrap.fancy .fancy_label.errorText {
    color: #ED5E56; }

.form_input_wrap.fancy .required, .form_input_wrap.fancy .note {
  position: absolute;
  z-index: 4;
  left: 0px;
  top: 50%;
  line-height: 18px;
  height: 20px;
  width: 20px;
  margin-top: -10px;
  margin-left: -10px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  background: #FFFFFF;
  font-size: 0.8em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.form_input_wrap.fancy .required {
  color: #ED5E56; }

.form_input_wrap.fancy .note {
  color: #0077c1;
  left: 100%; }

.form_input_wrap.fancy .right_overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 52px;
  line-height: 52px;
  padding: 0px 15px;
  color: #e02323;
  font-size: 1.5em; }

.form_input_wrap.fancy.focused .fancy_label + input[type="text"],
.form_input_wrap.fancy.focused .fancy_label + input[type="email"],
.form_input_wrap.fancy.focused .fancy_label + input[type="number"],
.form_input_wrap.fancy.focused .fancy_label + input[type="url"],
.form_input_wrap.fancy.focused .fancy_label + input[type="password"],
.form_input_wrap.fancy.focused .fancy_label + textarea,
.no-placeholder .form_input_wrap.fancy .fancy_label + input[type="text"],
.no-placeholder .form_input_wrap.fancy .fancy_label + input[type="email"],
.no-placeholder .form_input_wrap.fancy .fancy_label + input[type="number"],
.no-placeholder .form_input_wrap.fancy .fancy_label + input[type="url"],
.no-placeholder .form_input_wrap.fancy .fancy_label + input[type="password"],
.no-placeholder .form_input_wrap.fancy .fancy_label + textarea {
  padding-top: 19.5px;
  padding-bottom: 6.5px; }

.form_input_wrap.fancy.focused .fancy_label,
.no-placeholder .form_input_wrap.fancy .fancy_label {
  top: 6.5px;
  opacity: 1; }

/* ================================= */
/* General Stuff */
/* ================================= */
.ui-corner-bottom {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px; }

/* ================================= */
/* Dialogs */
/* ================================= */
.ui-dialog {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0px; }
  .ui-dialog .ui-dialog-title {
    font-weight: bold;
    color: #666666; }
  .ui-dialog .ui-dialog-titlebar {
    margin-bottom: 0px;
    background: #FAFAFA; }
  .ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px !important;
    margin: -10px 0 0 0;
    padding: 1px 4px !important;
    height: 20px;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px none transparent; }
    .ui-dialog .ui-dialog-titlebar-close:active {
      top: 50%; }
    .ui-dialog .ui-dialog-titlebar-close:hover {
      background: rgba(0, 0, 0, 0.1); }
    .ui-dialog .ui-dialog-titlebar-close .ui-button-text {
      display: none; }
  .ui-dialog .ui-dialog-content {
    padding: 10px; }
  .ui-dialog .ui-dialog-buttonpane {
    margin: 0px;
    padding: 10px; }

/* ================================= */
/* Popups */
/* ================================= */
.ui-dialog div.popup-dialog {
  padding: 20px;
  min-height: 40px; }

/* ================================= */
/* UI Tabs */
/* ================================= */
.ui-tabs {
  padding: 0px;
  border-radius: 3px;
  border: 1px solid #E6E6E6; }
  .ui-tabs .ui-tabs-nav {
    display: table;
    width: 100%;
    padding: 0px; }
    .ui-tabs .ui-tabs-nav.ui-helper-clearfix:before, .ui-tabs .ui-tabs-nav.ui-helper-clearfix:after {
      display: none; }
    .ui-tabs .ui-tabs-nav li {
      border-color: #E6E6E6;
      background: #FAFAFA;
      display: table-cell;
      vertical-align: middle;
      white-space: normal;
      text-align: center;
      margin-top: 0px;
      margin-right: 0px;
      border-radius: 0px;
      float: none;
      border-top-width: 0px;
      border-bottom-width: 1px;
      text-indent: 0px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box; }
      .ui-tabs .ui-tabs-nav li + li {
        border-left: 0px none transparent; }
      .ui-tabs .ui-tabs-nav li:before {
        display: none; }
      .ui-tabs .ui-tabs-nav li:first-child {
        border-top-left-radius: 3px;
        border-left-width: 0px; }
      .ui-tabs .ui-tabs-nav li:last-child {
        border-top-right-radius: 3px;
        border-right-width: 0px; }
      .ui-tabs .ui-tabs-nav li.ui-state-active {
        background: #ffffff;
        border-top-width: 0px;
        border-bottom-width: 0px; }
        .ui-tabs .ui-tabs-nav li.ui-state-active a {
          color: #e02323; }
    .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
      padding: 0px 5%;
      width: 90%;
      height: 50px;
      float: none;
      display: block;
      color: #000000;
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      font-weight: bold; }
      .ui-tabs .ui-tabs-nav .ui-tabs-anchor.vert_align_container {
        font-size: 0px; }
        .ui-tabs .ui-tabs-nav .ui-tabs-anchor.vert_align_container .vert_align {
          font-size: 14px;
          width: 100%; }
  .ui-tabs .ui-tabs-panel {
    border-width: 0px; }
  .ui-tabs .widget_content, .ui-tabs .dialog .content, .dialog .ui-tabs .content {
    background: #ffffff; }

/* ================================= */
/* Widgets */
/* ================================= */
.ui-widget {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px; }

.ui-widget-content {
  border-color: #E6E6E6;
  background: #ffffff; }

/* ================================= */
/* Slider */
/* ================================= */
html .ui-slider-horizontal {
  height: 12px; }
  html .ui-slider-horizontal .ui-slider-handle {
    top: -4px;
    margin-left: -10px; }

html .ui-slider {
  background: #e02323;
  border-radius: 6px;
  border: 0px none transparent; }
  html .ui-slider .ui-slider-handle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
    html .ui-slider .ui-slider-handle.ui-state-default {
      background: #ffffff;
      border: 3px solid #000000; }
  html .ui-slider .ui-slider-range,
  html .ui-slider .rf-slider-mark {
    border-radius: 6px; }
  html .ui-slider .ui-slider-range {
    background: #e1e1e1; }
  html .ui-slider .rf-slider-mark {
    background: #ededed; }

/* ================================= */
/* Buttons */
/* ================================= */
.button.ui-button, .ui-button.ui-state-default {
  background-image: none; }
