@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

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

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

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

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

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

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

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

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes elxr_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);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

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

@-webkit-keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

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



@charset "UTF-8";/*!
Magic - http://minimamente.com
Licensed under the MIT license

Copyright (c) 2014 Christian Pucci

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.magictime {
  -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;
}

.elxr_elxr_perspectiveDownRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveDownRetourn;
  -moz-animation-name: elxr_perspectiveDownRetourn;
  -ms-animation-name: elxr_perspectiveDownRetourn;
  -o-animation-name: elxr_perspectiveDownRetourn;
  animation-name: elxr_perspectiveDownRetourn;
}
.elxr_elxr_perspectiveLeftRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveLeftRetourn;
  -moz-animation-name: elxr_perspectiveLeftRetourn;
  -ms-animation-name: elxr_perspectiveLeftRetourn;
  -o-animation-name: elxr_perspectiveLeftRetourn;
  animation-name: elxr_perspectiveLeftRetourn;
}
.elxr_elxr_perspectiveRightRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveRightRetourn;
  -moz-animation-name: elxr_perspectiveRightRetourn;
  -ms-animation-name: elxr_perspectiveRightRetourn;
  -o-animation-name: elxr_perspectiveRightRetourn;
  animation-name: elxr_perspectiveRightRetourn;
}
.elxr_elxr_perspectiveUpRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveUpRetourn;
  -moz-animation-name: elxr_perspectiveUpRetourn;
  -ms-animation-name: elxr_perspectiveUpRetourn;
  -o-animation-name: elxr_perspectiveUpRetourn;
  animation-name: elxr_perspectiveUpRetourn;
}
.elxr_elxr_puffIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
  -webkit-animation-fill-mode: none;
  -moz-animation-fill-mode: none;
  -ms-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  animation-fill-mode: none;
}
.elxr_elxr_twisterInUp {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_twisterInUp;
  -moz-animation-name: elxr_twisterInUp;
  -ms-animation-name: elxr_twisterInUp;
  -o-animation-name: elxr_twisterInUp;
  animation-name: elxr_twisterInUp;
}
.elxr_elxr_vanishIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_vanishIn;
  -moz-animation-name: elxr_vanishIn;
  -ms-animation-name: elxr_vanishIn;
  -o-animation-name: elxr_vanishIn;
  animation-name: elxr_vanishIn;
}
.elxr_elxr_tinRightIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinRightIn;
  -moz-animation-name: elxr_tinRightIn;
  -ms-animation-name: elxr_tinRightIn;
  -o-animation-name: elxr_tinRightIn;
  animation-name: elxr_tinRightIn;
}
.elxr_elxr_tinLeftIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinLeftIn;
  -moz-animation-name: elxr_tinLeftIn;
  -ms-animation-name: elxr_tinLeftIn;
  -o-animation-name: elxr_tinLeftIn;
  animation-name: elxr_tinLeftIn;
}


@-moz-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_puffIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-moz-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-webkit-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-o-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-ms-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {;
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 0 0;
    -ms-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-moz-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-moz-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}


/* Start doobox Chauffeur css */

.stacks_in_724_page1wrapper{
width: 35px;
margin: 0 auto;

display : none;

opacity:0.7;
}

.stacks_in_724_page1bulter{
cursor: pointer;
border: 1px solid #378D9B;
background: #4BA1AF;
width: 35px;
height: 35px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #FFFFFF;
text-align: center;
line-height: 35px;
margin: 5px;
z-index: 1000001;
background: #4BA1AF;
}


.stacks_in_724_page1bulter i {
	display: block;
	margin: 0 auto 0 auto;
	font-size: 20px;
	line-height: 33px; 
	vertical-align: middle;
}


.stacks_in_724_page1bulter:hover{
color: #EBEBEB;
background: #5AB0BE; /* Old browsers */
}

/* end doobox Chauffeur css */

/* Start Agent-X stack CSS code */.stacks_in_471_page1label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_471_page1iPhoneContent, .stacks_in_471_page1iPadContent, .stacks_in_471_page1AndroidContent, .stacks_in_471_page1BlackberryContent, .stacks_in_471_page1DesktopContent {	display: none;}.stacks_in_471_page1label{	display: none;}/* End Agent-X stack CSS code *//* Start Toggle stack CSS code */.stacks_in_481_page1sliceWrappper2{	display: none;}#stacks_in_481_page1iconWrapper{	text-align: center;	font-size: 200%;}#stacks_in_481_page1iconWrapper i{	color: #FFFFFF;	cursor: pointer;}#stacks_in_481_page1iconWrapper i:hover{	color: #FFFFFF;	cursor: pointer;}.stacks_in_481_page1sliceWrappper1{	display: none;}@-webkit-keyframes toggleFadeOut{50%{opacity:0}100%{opacity:1}}@-moz-keyframes toggleFadeOut{50%{opacity:0}100%{opacity:1}}@-o-keyframes toggleFadeOut{50%{opacity:0}100%{opacity:1}}@keyframes toggleFadeOut{50%{opacity:0}100%{opacity:1}}@-webkit-keyframes toggleRubberBand{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-moz-keyframes toggleRubberBand{0%,100%{-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-moz-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-moz-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-moz-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-o-keyframes toggleRubberBand{0%,100%{transform:scale3d(1,1,1)}30%,60%{transform:scale3d(1.25,.75,1)}40%,80%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}}@keyframes toggleRubberBand{0%,100%{-webkit-transform:scale3d(1,1,1);-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-webkit-transform:scale3d(1.25,.75,1);-moz-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-webkit-transform:scale3d(.75,1.25,1);-moz-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);-moz-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-webkit-keyframes toggleVerticalFlip{50%{-webkit-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-webkit-transform:rotateX(0deg);transform:rotateX(0deg)}}@-moz-keyframes toggleVerticalFlip{50%{-moz-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-moz-transform:rotateX(0deg);transform:rotateX(0deg)}}@-o-keyframes toggleVerticalFlip{50%{transform:rotateX(90deg)}100%{transform:rotateX(0deg)}}@keyframes toggleVerticalFlip{50%{-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-webkit-transform:rotateX(0deg);-moz-transform:rotateX(0deg);transform:rotateX(0deg)}}@-webkit-keyframes toggleZoom{50%{-webkit-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-webkit-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-moz-keyframes toggleZoom{50%{-moz-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-moz-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-o-keyframes toggleZoom{50%{-o-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-o-transform:scale(1,1);transform:scale(1,1);opacity:1}}@keyframes toggleZoom{50%{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-webkit-keyframes toggleTada{50%{-webkit-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;transform-origin:center}70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-webkit-transform-origin:center;transform-origin:center}60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;transform-origin:center}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transform-origin:center;transform-origin:center}}@-moz-keyframes toggleTada{50%{-moz-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-moz-transform-origin:center;transform-origin:center}70%,90%{-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-moz-transform-origin:center;transform-origin:center}60%,80%{-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-moz-transform-origin:center;transform-origin:center}100%{-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-moz-transform-origin:center;transform-origin:center}}@-o-keyframes toggleTada{50%{transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-o-transform-origin:center;transform-origin:center}70%,90%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-o-transform-origin:center;transform-origin:center}60%,80%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-o-transform-origin:center;transform-origin:center}100%{transform:scale3d(1,1,1);-o-transform-origin:center;transform-origin:center}}@keyframes toggleTada{50%{-webkit-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-moz-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}100%{-webkit-transform:scale3d(1,1,1);-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}}@-webkit-keyframes toggleRotate{0%{opacity:1;-webkit-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg);-webkit-transform-origin:center;transform-origin:center;opacity:1}}@-moz-keyframes toggleRotate{0%{opacity:1;-moz-transform-origin:center;transform-origin:center}50%{opacity:0;-moz-transform-origin:center;transform-origin:center}100%{-moz-transform:rotateZ(360deg);transform:rotateZ(360deg);-moz-transform-origin:center;transform-origin:center;opacity:1}}@-o-keyframes toggleRotate{0%{opacity:1;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-o-transform-origin:center;transform-origin:center}100%{transform:rotateZ(360deg);-o-transform-origin:center;transform-origin:center;opacity:1}}@keyframes toggleRotate{0%{opacity:1;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(360deg);-moz-transform:rotateZ(360deg);transform:rotateZ(360deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center;opacity:1}}/* End Toggle stack CSS code */
#stacks_in_481_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}
#stacks_in_484_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_484_page1>.s3_row>.s3_column_left {
	width: 29.00%;
}

#stacks_in_484_page1>.s3_row>.s3_column_center {
	width: 42.000000%;
}

#stacks_in_484_page1>.s3_row>.s3_column_right {
	width: 29.00%;
}




#stacks_in_484_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_484_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 0px 10px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1325_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1325_page1, #stacks_in_1325_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1325_page1, #stacks_in_1325_page1:hover{	background-color: #2C6871;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1325_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1325_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1325_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1325_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1325_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_488_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1323_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1323_page1, #stacks_in_1323_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1323_page1, #stacks_in_1323_page1:hover{	background-color: #2C6871;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1323_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1323_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1323_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1323_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1323_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1327_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1327_page1, #stacks_in_1327_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1327_page1, #stacks_in_1327_page1:hover{	background-color: #2C6871;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1327_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1327_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1327_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1327_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1327_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1329_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1329_page1, #stacks_in_1329_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1329_page1, #stacks_in_1329_page1:hover{	background-color: #2C6871;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1329_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1329_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1329_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1329_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1329_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1319_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1319_page1, #stacks_in_1319_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1319_page1, #stacks_in_1319_page1:hover{	background-color: #2C6871;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1319_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1319_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1319_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1319_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1319_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1333_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1333_page1, #stacks_in_1333_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1333_page1, #stacks_in_1333_page1:hover{	background-color: #2C6871;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1333_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1333_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1333_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1333_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1333_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1335_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1335_page1, #stacks_in_1335_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1335_page1, #stacks_in_1335_page1:hover{	background-color: #2C6871;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1335_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1335_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1335_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1335_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1335_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 15px 0px 0px 0px;
}
#stacks_in_626_page1 *,
#stacks_in_626_page1 *:before,
#stacks_in_626_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1199_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 15px 8px 15px 8px;
}
/* @group Font Icons */

@font-face {
  font-family: 'fontello';
  src: url('font-icons/fontello.eot?19778278');
  src: url('font-icons/fontello.eot?19778278#iefix') format('embedded-opentype'),
	   url('font-icons/fontello.woff?19778278') format('woff'),
	   url('font-icons/fontello.ttf?19778278') format('truetype'),
	   url('font-icons/fontello.svg?19778278#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

#freeStyleWrapperstacks_in_517_page1 [class^="freestyle-icon-"]:before,
#freeStyleWrapperstacks_in_517_page1 [class*=" freestyle-icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */
	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;
	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;
	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
#freeStyleWrapperstacks_in_517_page1 .freestyle-icon-left-open:before { content: '\e800'; }
#freeStyleWrapperstacks_in_517_page1 .freestyle-icon-right-open:before { content: '\e801'; }
#freeStyleWrapperstacks_in_517_page1 .freestyle-icon-play:before { content: '\e802'; }
#freeStyleWrapperstacks_in_517_page1 .freestyle-icon-pause:before { content: '\e803'; }

/* @end */

/* @group General / CSS reset */

#freeStyleWrapperstacks_in_517_page1 {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

#freeStyleWrapperstacks_in_517_page1 a {
	outline: none;
}

#freeStyleWrapperstacks_in_517_page1 ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#freeStyleWrapperstacks_in_517_page1 li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* @end */

%[if 1 ]%

/* @group BX Slider */

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/freestyle-bx-loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/* WW Reset */

.bx-wrapper {
	margin: 0px;
}

.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: 0px;
}

.bx-wrapper ul,
.bx-wrapper li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bx-wrapper img {
	max-width: none;
	width: 100%;
	height: auto;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 60;
}

/* Added by WW */

/* Hide slider until loaded */
#freeStyleSliderstacks_in_517_page1 {
	display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #4BA1AF;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #FFFFFF;
}

.bx-wrapper .bx-controls a {
	text-decoration: none;
}

.bx-wrapper .bx-controls-direction [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #4BA1AF;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-prev {
	left: 10px;
	width: 32px;
	height: 32px;
	text-align: left;
	border-radius: 16px;
	background: #FFFFFF;
	opacity: 0.80;
}

.bx-wrapper .bx-prev:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-next {
	right: 10px;
	width: 32px;
	height: 32px;
	text-align: right;
	border-radius: 16px;
	background: #FFFFFF;
	opacity: 0.80;
}

.bx-wrapper .bx-next:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-controls-direction a {
	text-indent: 0;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	margin-left: 10px;
}

.bx-wrapper .bx-controls-auto [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #FFFFFF;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-start.active [class^="freestyle-icon-"] {
	background: none;
	color: #4BA1AF;
	text-shadow: none;
}

.bx-controls-auto,
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	width: 85px;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-stop.active [class^="freestyle-icon-"] {
	background: none;
	color: #4BA1AF;
	text-shadow: none;
}




/* @end */









/* @group Maps */

.freeStyleMapContainer {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* @end */

/* @group Video */

.freeStyleMapContainer iframe {
	max-width: 100%;
	max-height: 100%;
}

.freeStyleVideoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px; 
	height: 0;
	overflow: hidden;
}
 
.freeStyleVideoContainer iframe,
.freeStyleVideoContainer object,
.freeStyleVideoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* @end */

/* @group HTML5 Video */

.html5VideoContainer {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.html5VideoContainer video,
.html5VideoContainer canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
 }
 
.html5VideoContainer video {
	height: 100% !important;
	position: absolute;
	-webkit-transform-style: preserve-3d;
}

/* @end */

/* @group Vine Video */





.vineVideoContainer iframe {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
}





/* @end */

/* @group Overlay */

#freeStyleOverlaystacks_in_517_page1 {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 55;
	display: block;
	width: 33%;
}

#overlayFillstacks_in_517_page1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.80;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

#overlayContentstacks_in_517_page1 {
	position: relative;
	display: block;
	z-index: 5;
	padding: 2%;
	margin: 0;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 100%;
}

/* @end */

@media screen and (max-width: 569px) {
	#freeStyleOverlaystacks_in_517_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		display: block;
		width: 100%;
	}
	
	#overlayFillstacks_in_517_page1,
	#overlayContentstacks_in_517_page1 {
		opacity: 1.00;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}
#stacks_in_703_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_703_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_703_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_703_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_703_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 10px 10px 0px 0px;
}
#stacks_in_506_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_506_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_506_page1>.s3_row>.s3_column_center {
	width: 60.000000%;
}

#stacks_in_506_page1>.s3_row>.s3_column_right {
	width: 20.00%;
}




#stacks_in_506_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_506_page1 {
	background-color: rgba(255, 255, 255, 1.00);
	padding: 15px 0px 0px 0px;
}

/* START ICONZ CSS */

#stacks_in_510_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #4BA1AF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_510_page1 {
	text-align: center;
}

#stacks_in_510_page1 a{
	text-decoration: none;
}


	
		#stacks_in_510_page1 a i:hover{
			color: #5AB0BE !important;
		}
		
		
	




#stacks_in_510_page1 .stacks_in_510_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_510_page1 .stacks_in_510_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_510_page1 .stacks_in_510_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_510_page1 {
	padding: 10px 0px 0px 0px;
}
#stacks_in_549_page1 *,
#stacks_in_549_page1 *:before,
#stacks_in_549_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_551_page1 {
	padding: 0px 15px 0px 15px;
}

/* START ICONZ CSS */

#stacks_in_512_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #4BA1AF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_512_page1 {
	text-align: center;
}

#stacks_in_512_page1 a{
	text-decoration: none;
}


	
		#stacks_in_512_page1 a i:hover{
			color: #5AB0BE !important;
		}
		
		
	




#stacks_in_512_page1 .stacks_in_512_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_512_page1 .stacks_in_512_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_512_page1 .stacks_in_512_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_512_page1 {
	padding: 10px 0px 0px 0px;
}
#stacks_in_718_page1 *,
#stacks_in_718_page1 *:before,
#stacks_in_718_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_720_page1 {
	padding: 0px 15px 0px 15px;
}

#stacks_in_553_page1 {
	padding: 0px 15px 0px 15px;
}
#stacks_in_622_page1 *,
#stacks_in_622_page1 *:before,
#stacks_in_622_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_605_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 10px 0px 0px 0px;
}

#stacks_in_607_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 0px 15px 5px 15px;
}
#stacks_in_555_page1>.s3_row {
	margin: 0 -1px;
}

#stacks_in_555_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_555_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_555_page1>.s3_row>.s3_column {
	padding: 0 1px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_555_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 0px 5px 0px 5px;
}
#highLightStackstacks_in_570_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_570_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_570_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_570_page1,
#highLightStackCaptionstacks_in_570_page1 h1,
#highLightStackCaptionstacks_in_570_page1 h2,
#highLightStackCaptionstacks_in_570_page1 h3,
#highLightStackCaptionstacks_in_570_page1 h4,
#highLightStackCaptionstacks_in_570_page1 h5,
#highLightStackCaptionstacks_in_570_page1 h6,
#highLightStackCaptionstacks_in_570_page1 strong,
#highLightStackCaptionstacks_in_570_page1 a,
#highLightStackCaptionstacks_in_570_page1 a:visited,
#highLightStackCaptionstacks_in_570_page1 a:hover,
#highLightStackCaptionstacks_in_570_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_570_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_570_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_570_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_570_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_570_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */
#stacks_in_570_page1 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
#highLightStackstacks_in_578_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_578_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_578_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_578_page1,
#highLightStackCaptionstacks_in_578_page1 h1,
#highLightStackCaptionstacks_in_578_page1 h2,
#highLightStackCaptionstacks_in_578_page1 h3,
#highLightStackCaptionstacks_in_578_page1 h4,
#highLightStackCaptionstacks_in_578_page1 h5,
#highLightStackCaptionstacks_in_578_page1 h6,
#highLightStackCaptionstacks_in_578_page1 strong,
#highLightStackCaptionstacks_in_578_page1 a,
#highLightStackCaptionstacks_in_578_page1 a:visited,
#highLightStackCaptionstacks_in_578_page1 a:hover,
#highLightStackCaptionstacks_in_578_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_578_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_578_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_578_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_578_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_578_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */
#stacks_in_578_page1 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
#highLightStackstacks_in_584_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_584_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_584_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_584_page1,
#highLightStackCaptionstacks_in_584_page1 h1,
#highLightStackCaptionstacks_in_584_page1 h2,
#highLightStackCaptionstacks_in_584_page1 h3,
#highLightStackCaptionstacks_in_584_page1 h4,
#highLightStackCaptionstacks_in_584_page1 h5,
#highLightStackCaptionstacks_in_584_page1 h6,
#highLightStackCaptionstacks_in_584_page1 strong,
#highLightStackCaptionstacks_in_584_page1 a,
#highLightStackCaptionstacks_in_584_page1 a:visited,
#highLightStackCaptionstacks_in_584_page1 a:hover,
#highLightStackCaptionstacks_in_584_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_584_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_584_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_584_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_584_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_584_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_575_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_575_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_575_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_575_page1,
#highLightStackCaptionstacks_in_575_page1 h1,
#highLightStackCaptionstacks_in_575_page1 h2,
#highLightStackCaptionstacks_in_575_page1 h3,
#highLightStackCaptionstacks_in_575_page1 h4,
#highLightStackCaptionstacks_in_575_page1 h5,
#highLightStackCaptionstacks_in_575_page1 h6,
#highLightStackCaptionstacks_in_575_page1 strong,
#highLightStackCaptionstacks_in_575_page1 a,
#highLightStackCaptionstacks_in_575_page1 a:visited,
#highLightStackCaptionstacks_in_575_page1 a:hover,
#highLightStackCaptionstacks_in_575_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_575_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_575_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_575_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_575_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_575_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */
#stacks_in_575_page1 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
#highLightStackstacks_in_587_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_587_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_587_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_587_page1,
#highLightStackCaptionstacks_in_587_page1 h1,
#highLightStackCaptionstacks_in_587_page1 h2,
#highLightStackCaptionstacks_in_587_page1 h3,
#highLightStackCaptionstacks_in_587_page1 h4,
#highLightStackCaptionstacks_in_587_page1 h5,
#highLightStackCaptionstacks_in_587_page1 h6,
#highLightStackCaptionstacks_in_587_page1 strong,
#highLightStackCaptionstacks_in_587_page1 a,
#highLightStackCaptionstacks_in_587_page1 a:visited,
#highLightStackCaptionstacks_in_587_page1 a:hover,
#highLightStackCaptionstacks_in_587_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_587_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_587_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_587_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_587_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_587_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */
#stacks_in_587_page1 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
#highLightStackstacks_in_581_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_581_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_581_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_581_page1,
#highLightStackCaptionstacks_in_581_page1 h1,
#highLightStackCaptionstacks_in_581_page1 h2,
#highLightStackCaptionstacks_in_581_page1 h3,
#highLightStackCaptionstacks_in_581_page1 h4,
#highLightStackCaptionstacks_in_581_page1 h5,
#highLightStackCaptionstacks_in_581_page1 h6,
#highLightStackCaptionstacks_in_581_page1 strong,
#highLightStackCaptionstacks_in_581_page1 a,
#highLightStackCaptionstacks_in_581_page1 a:visited,
#highLightStackCaptionstacks_in_581_page1 a:hover,
#highLightStackCaptionstacks_in_581_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_581_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_581_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_581_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_581_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_581_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */
#stacks_in_1349_page1 {
	padding: 10px 15px 0px 15px;
}
#stacks_in_624_page1 *,
#stacks_in_624_page1 *:before,
#stacks_in_624_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_624_page1 {
	background-color: rgba(239, 239, 239, 1.00);
}

#stacks_in_603_page1 {
	padding: 15px 0px 0px 0px;
}

#stacks_in_613_page1 {
	padding: 0px 15px 5px 15px;
}
#stacks_in_619_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_619_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_619_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_619_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
#stacks_in_628_page1 *,
#stacks_in_628_page1 *:before,
#stacks_in_628_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_637_page1 *,
#stacks_in_637_page1 *:before,
#stacks_in_637_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* @group Font Icons */

@font-face {
  font-family: 'fontello';
  src: url('font-icons/fontello.eot?19778278');
  src: url('font-icons/fontello.eot?19778278#iefix') format('embedded-opentype'),
	   url('font-icons/fontello.woff?19778278') format('woff'),
	   url('font-icons/fontello.ttf?19778278') format('truetype'),
	   url('font-icons/fontello.svg?19778278#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

#freeStyleWrapperstacks_in_641_page1 [class^="freestyle-icon-"]:before,
#freeStyleWrapperstacks_in_641_page1 [class*=" freestyle-icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */
	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;
	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;
	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
#freeStyleWrapperstacks_in_641_page1 .freestyle-icon-left-open:before { content: '\e800'; }
#freeStyleWrapperstacks_in_641_page1 .freestyle-icon-right-open:before { content: '\e801'; }
#freeStyleWrapperstacks_in_641_page1 .freestyle-icon-play:before { content: '\e802'; }
#freeStyleWrapperstacks_in_641_page1 .freestyle-icon-pause:before { content: '\e803'; }

/* @end */

/* @group General / CSS reset */

#freeStyleWrapperstacks_in_641_page1 {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

#freeStyleWrapperstacks_in_641_page1 a {
	outline: none;
}

#freeStyleWrapperstacks_in_641_page1 ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#freeStyleWrapperstacks_in_641_page1 li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* @end */

%[if 1 ]%

/* @group BX Slider */

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/freestyle-bx-loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/* WW Reset */

.bx-wrapper {
	margin: 0px;
}

.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: 0px;
}

.bx-wrapper ul,
.bx-wrapper li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bx-wrapper img {
	max-width: none;
	width: 100%;
	height: auto;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 60;
}

/* Added by WW */

/* Hide slider until loaded */
#freeStyleSliderstacks_in_641_page1 {
	display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666666;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000000;
}

.bx-wrapper .bx-controls a {
	text-decoration: none;
}

.bx-wrapper .bx-controls-direction [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-prev {
	left: 10px;
	width: 32px;
	height: 32px;
	text-align: left;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-prev:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-next {
	right: 10px;
	width: 32px;
	height: 32px;
	text-align: right;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-next:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-controls-direction a {
	text-indent: 0;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	margin-left: 10px;
}

.bx-wrapper .bx-controls-auto [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-start.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}

.bx-controls-auto,
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	width: 85px;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-stop.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}




/* @end */









/* @group Maps */

.freeStyleMapContainer {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* @end */

/* @group Video */

.freeStyleMapContainer iframe {
	max-width: 100%;
	max-height: 100%;
}

.freeStyleVideoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px; 
	height: 0;
	overflow: hidden;
}
 
.freeStyleVideoContainer iframe,
.freeStyleVideoContainer object,
.freeStyleVideoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* @end */

/* @group HTML5 Video */

.html5VideoContainer {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.html5VideoContainer video,
.html5VideoContainer canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
 }
 
.html5VideoContainer video {
	height: 100% !important;
	position: absolute;
	-webkit-transform-style: preserve-3d;
}

/* @end */

/* @group Vine Video */





.vineVideoContainer iframe {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
}





/* @end */

/* @group Overlay */

#freeStyleOverlaystacks_in_641_page1 {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 55;
	display: block;
	width: 33%;
}

#overlayFillstacks_in_641_page1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.80;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

#overlayContentstacks_in_641_page1 {
	position: relative;
	display: block;
	z-index: 5;
	padding: 2%;
	margin: 0;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 100%;
}

/* @end */

@media screen and (max-width: 569px) {
	#freeStyleOverlaystacks_in_641_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		display: block;
		width: 100%;
	}
	
	#overlayFillstacks_in_641_page1,
	#overlayContentstacks_in_641_page1 {
		opacity: 1.00;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}

#stacks_in_641_page1 {
	padding: 0px 10px 0px 10px;
}

#stacks_in_676_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_678_page1 {
	padding: 10px 0px 10px 0px;
}
#stacks_in_1379_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1379_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1379_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1379_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1379_page1 {
	padding: 0px 10px 0px 0px;
}

#stacks_in_1371_page1 {
	padding: 0px 0px 15px 0px;
}

#stacks_in_1382_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_684_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 5px 0px 0px 0px;
}
#stacks_in_710_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_710_page1>.s3_row>.s3_column_left {
	width: 25.00%;
}

#stacks_in_710_page1>.s3_row>.s3_column_center {
	width: 50.000000%;
}

#stacks_in_710_page1>.s3_row>.s3_column_right {
	width: 25.00%;
}




#stacks_in_710_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_710_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

/* START ICONZ CSS */

#stacks_in_686_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_686_page1 {
	text-align: left;
}

#stacks_in_686_page1 a{
	text-decoration: none;
}


	
		#stacks_in_686_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_686_page1 .stacks_in_686_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_686_page1 .stacks_in_686_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_686_page1 .stacks_in_686_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
/* START ICONZ CSS */

#stacks_in_688_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_688_page1 {
	text-align: right;
}

#stacks_in_688_page1 a{
	text-decoration: none;
}


	
		#stacks_in_688_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_688_page1 .stacks_in_688_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_688_page1 .stacks_in_688_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_688_page1 .stacks_in_688_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_708_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 5px 0px 0px 0px;
}
#stacks_in_884_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_884_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_884_page1>.s3_row>.s3_column_center {
	width: 60.000000%;
}

#stacks_in_884_page1>.s3_row>.s3_column_right {
	width: 20.00%;
}




#stacks_in_884_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_884_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 15px 0px 15px 0px;
}

/* START ICONZ CSS */

#stacks_in_788_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_788_page1 {
	text-align: center;
}

#stacks_in_788_page1 a{
	text-decoration: none;
}


	
		#stacks_in_788_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_788_page1 .stacks_in_788_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_788_page1 .stacks_in_788_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_788_page1 .stacks_in_788_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_788_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_1265_page1 *,
#stacks_in_1265_page1 *:before,
#stacks_in_1265_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1201_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 0px 0px 10px 0px;
}
#stacks_in_888_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_888_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_888_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_888_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
#stacks_in_891_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_891_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_891_page1>.s3_row>.s3_column_right {
	width: 80.000000%;
}




#stacks_in_891_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

/* START ICONZ CSS */

#stacks_in_871_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_871_page1 {
	text-align: right;
}

#stacks_in_871_page1 a{
	text-decoration: none;
}


	
		#stacks_in_871_page1 a i:hover{
			color: #FFFFFF !important;
		}
		
		
	




#stacks_in_871_page1 .stacks_in_871_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_871_page1 .stacks_in_871_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_871_page1 .stacks_in_871_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 #stacks_in_894_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_894_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_894_page1>.s3_row>.s3_column_right {
	width: 80.000000%;
}




#stacks_in_894_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

/* START ICONZ CSS */

#stacks_in_873_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_873_page1 {
	text-align: right;
}

#stacks_in_873_page1 a{
	text-decoration: none;
}


	
		#stacks_in_873_page1 a i:hover{
			color: #FFFFFF !important;
		}
		
		
	




#stacks_in_873_page1 .stacks_in_873_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_873_page1 .stacks_in_873_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_873_page1 .stacks_in_873_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
/* START ICONZ CSS */

#stacks_in_790_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_790_page1 {
	text-align: center;
}

#stacks_in_790_page1 a{
	text-decoration: none;
}


	
		#stacks_in_790_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_790_page1 .stacks_in_790_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_790_page1 .stacks_in_790_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_790_page1 .stacks_in_790_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_790_page1 {
	padding: 15px 0px 0px 0px;
}
/* @group Font Icons */

@font-face {
  font-family: 'fontello';
  src: url('font-icons/fontello.eot?19778278');
  src: url('font-icons/fontello.eot?19778278#iefix') format('embedded-opentype'),
	   url('font-icons/fontello.woff?19778278') format('woff'),
	   url('font-icons/fontello.ttf?19778278') format('truetype'),
	   url('font-icons/fontello.svg?19778278#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

#freeStyleWrapperstacks_in_763_page1 [class^="freestyle-icon-"]:before,
#freeStyleWrapperstacks_in_763_page1 [class*=" freestyle-icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */
	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;
	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;
	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
#freeStyleWrapperstacks_in_763_page1 .freestyle-icon-left-open:before { content: '\e800'; }
#freeStyleWrapperstacks_in_763_page1 .freestyle-icon-right-open:before { content: '\e801'; }
#freeStyleWrapperstacks_in_763_page1 .freestyle-icon-play:before { content: '\e802'; }
#freeStyleWrapperstacks_in_763_page1 .freestyle-icon-pause:before { content: '\e803'; }

/* @end */

/* @group General / CSS reset */

#freeStyleWrapperstacks_in_763_page1 {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

#freeStyleWrapperstacks_in_763_page1 a {
	outline: none;
}

#freeStyleWrapperstacks_in_763_page1 ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#freeStyleWrapperstacks_in_763_page1 li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* @end */

%[if 1 ]%

/* @group BX Slider */

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/freestyle-bx-loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/* WW Reset */

.bx-wrapper {
	margin: 0px;
}

.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: 0px;
}

.bx-wrapper ul,
.bx-wrapper li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bx-wrapper img {
	max-width: none;
	width: 100%;
	height: auto;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 60;
}

/* Added by WW */

/* Hide slider until loaded */
#freeStyleSliderstacks_in_763_page1 {
	display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666666;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000000;
}

.bx-wrapper .bx-controls a {
	text-decoration: none;
}

.bx-wrapper .bx-controls-direction [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-prev {
	left: 10px;
	width: 32px;
	height: 32px;
	text-align: left;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-prev:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-next {
	right: 10px;
	width: 32px;
	height: 32px;
	text-align: right;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-next:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-controls-direction a {
	text-indent: 0;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	margin-left: 10px;
}

.bx-wrapper .bx-controls-auto [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-start.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}

.bx-controls-auto,
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	width: 85px;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-stop.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}




/* @end */









/* @group Maps */

.freeStyleMapContainer {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* @end */

/* @group Video */

.freeStyleMapContainer iframe {
	max-width: 100%;
	max-height: 100%;
}

.freeStyleVideoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px; 
	height: 0;
	overflow: hidden;
}
 
.freeStyleVideoContainer iframe,
.freeStyleVideoContainer object,
.freeStyleVideoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* @end */

/* @group HTML5 Video */

.html5VideoContainer {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.html5VideoContainer video,
.html5VideoContainer canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
 }
 
.html5VideoContainer video {
	height: 100% !important;
	position: absolute;
	-webkit-transform-style: preserve-3d;
}

/* @end */

/* @group Vine Video */





.vineVideoContainer iframe {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
}





/* @end */

/* @group Overlay */

#freeStyleOverlaystacks_in_763_page1 {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 55;
	display: block;
	width: 33%;
}

#overlayFillstacks_in_763_page1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.80;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

#overlayContentstacks_in_763_page1 {
	position: relative;
	display: block;
	z-index: 5;
	padding: 2%;
	margin: 0;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 100%;
}

/* @end */

@media screen and (max-width: 569px) {
	#freeStyleOverlaystacks_in_763_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		display: block;
		width: 100%;
	}
	
	#overlayFillstacks_in_763_page1,
	#overlayContentstacks_in_763_page1 {
		opacity: 1.00;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}
#stacks_in_1213_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1213_page1>.s3_row>.s3_column_left {
	width: 23.13%;
}

#stacks_in_1213_page1>.s3_row>.s3_column_center {
	width: 36.870003%;
}

#stacks_in_1213_page1>.s3_row>.s3_column_right {
	width: 40.00%;
}




#stacks_in_1213_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1213_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}
#stacks_in_1351_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1351_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1351_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1351_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1229_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1229_page1, #stacks_in_1229_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1229_page1, #stacks_in_1229_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1229_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1229_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1229_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1229_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1229_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1247_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1231_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1231_page1, #stacks_in_1231_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1231_page1, #stacks_in_1231_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1231_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1231_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1231_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1231_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1231_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1249_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_1354_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1354_page1>.s3_row>.s3_column_left {
	width: 62.00%;
}

#stacks_in_1354_page1>.s3_row>.s3_column_right {
	width: 38.000000%;
}




#stacks_in_1354_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1233_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1233_page1, #stacks_in_1233_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1233_page1, #stacks_in_1233_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1233_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1233_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1233_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1233_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1233_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1251_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1237_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1237_page1, #stacks_in_1237_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1237_page1, #stacks_in_1237_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1237_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1237_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1237_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1237_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1237_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1255_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_1225_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1225_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_1225_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_1225_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_1225_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1239_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1239_page1, #stacks_in_1239_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1239_page1, #stacks_in_1239_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1239_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1239_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1239_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1239_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1239_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1257_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1243_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1243_page1, #stacks_in_1243_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1243_page1, #stacks_in_1243_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1243_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1243_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1243_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1243_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1243_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1261_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1245_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1245_page1, #stacks_in_1245_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1245_page1, #stacks_in_1245_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1245_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1245_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1245_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1245_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1245_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1263_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_794_page1 *,
#stacks_in_794_page1 *:before,
#stacks_in_794_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_792_page1 {
	padding: 5px 10px 0px 10px;
}
#stacks_in_796_page1 *,
#stacks_in_796_page1 *:before,
#stacks_in_796_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_800_page1 {
	padding: 0px 15px 0px 15px;
}
#stacks_in_802_page1 *,
#stacks_in_802_page1 *:before,
#stacks_in_802_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_804_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 10px 0px 0px 0px;
}

#stacks_in_806_page1 {
	background-color: rgba(239, 239, 239, 1.00);
}
#stacks_in_1337_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1337_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_1337_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_1337_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_1337_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {


	#stacks_in_1337_page1>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_1337_page1>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}




  
#highLightStackstacks_in_811_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_811_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_811_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_811_page1,
#highLightStackCaptionstacks_in_811_page1 h1,
#highLightStackCaptionstacks_in_811_page1 h2,
#highLightStackCaptionstacks_in_811_page1 h3,
#highLightStackCaptionstacks_in_811_page1 h4,
#highLightStackCaptionstacks_in_811_page1 h5,
#highLightStackCaptionstacks_in_811_page1 h6,
#highLightStackCaptionstacks_in_811_page1 strong,
#highLightStackCaptionstacks_in_811_page1 a,
#highLightStackCaptionstacks_in_811_page1 a:visited,
#highLightStackCaptionstacks_in_811_page1 a:hover,
#highLightStackCaptionstacks_in_811_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_811_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_811_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_811_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_811_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_811_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_826_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_826_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_826_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_826_page1,
#highLightStackCaptionstacks_in_826_page1 h1,
#highLightStackCaptionstacks_in_826_page1 h2,
#highLightStackCaptionstacks_in_826_page1 h3,
#highLightStackCaptionstacks_in_826_page1 h4,
#highLightStackCaptionstacks_in_826_page1 h5,
#highLightStackCaptionstacks_in_826_page1 h6,
#highLightStackCaptionstacks_in_826_page1 strong,
#highLightStackCaptionstacks_in_826_page1 a,
#highLightStackCaptionstacks_in_826_page1 a:visited,
#highLightStackCaptionstacks_in_826_page1 a:hover,
#highLightStackCaptionstacks_in_826_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_826_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_826_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_826_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_826_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_826_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_820_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_820_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_820_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_820_page1,
#highLightStackCaptionstacks_in_820_page1 h1,
#highLightStackCaptionstacks_in_820_page1 h2,
#highLightStackCaptionstacks_in_820_page1 h3,
#highLightStackCaptionstacks_in_820_page1 h4,
#highLightStackCaptionstacks_in_820_page1 h5,
#highLightStackCaptionstacks_in_820_page1 h6,
#highLightStackCaptionstacks_in_820_page1 strong,
#highLightStackCaptionstacks_in_820_page1 a,
#highLightStackCaptionstacks_in_820_page1 a:visited,
#highLightStackCaptionstacks_in_820_page1 a:hover,
#highLightStackCaptionstacks_in_820_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_820_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_820_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_820_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_820_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_820_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_814_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_814_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_814_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_814_page1,
#highLightStackCaptionstacks_in_814_page1 h1,
#highLightStackCaptionstacks_in_814_page1 h2,
#highLightStackCaptionstacks_in_814_page1 h3,
#highLightStackCaptionstacks_in_814_page1 h4,
#highLightStackCaptionstacks_in_814_page1 h5,
#highLightStackCaptionstacks_in_814_page1 h6,
#highLightStackCaptionstacks_in_814_page1 strong,
#highLightStackCaptionstacks_in_814_page1 a,
#highLightStackCaptionstacks_in_814_page1 a:visited,
#highLightStackCaptionstacks_in_814_page1 a:hover,
#highLightStackCaptionstacks_in_814_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_814_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_814_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_814_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_814_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_814_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_817_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_817_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_817_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_817_page1,
#highLightStackCaptionstacks_in_817_page1 h1,
#highLightStackCaptionstacks_in_817_page1 h2,
#highLightStackCaptionstacks_in_817_page1 h3,
#highLightStackCaptionstacks_in_817_page1 h4,
#highLightStackCaptionstacks_in_817_page1 h5,
#highLightStackCaptionstacks_in_817_page1 h6,
#highLightStackCaptionstacks_in_817_page1 strong,
#highLightStackCaptionstacks_in_817_page1 a,
#highLightStackCaptionstacks_in_817_page1 a:visited,
#highLightStackCaptionstacks_in_817_page1 a:hover,
#highLightStackCaptionstacks_in_817_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_817_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_817_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_817_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_817_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_817_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_823_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_823_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_823_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_823_page1,
#highLightStackCaptionstacks_in_823_page1 h1,
#highLightStackCaptionstacks_in_823_page1 h2,
#highLightStackCaptionstacks_in_823_page1 h3,
#highLightStackCaptionstacks_in_823_page1 h4,
#highLightStackCaptionstacks_in_823_page1 h5,
#highLightStackCaptionstacks_in_823_page1 h6,
#highLightStackCaptionstacks_in_823_page1 strong,
#highLightStackCaptionstacks_in_823_page1 a,
#highLightStackCaptionstacks_in_823_page1 a:visited,
#highLightStackCaptionstacks_in_823_page1 a:hover,
#highLightStackCaptionstacks_in_823_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_823_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_823_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_823_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_823_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_823_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#stacks_in_906_page1 *,
#stacks_in_906_page1 *:before,
#stacks_in_906_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_908_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_908_page1>.s3_row>.s3_column_left {
	width: 28.00%;
}

#stacks_in_908_page1>.s3_row>.s3_column_center {
	width: 44.000000%;
}

#stacks_in_908_page1>.s3_row>.s3_column_right {
	width: 28.00%;
}




#stacks_in_908_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_908_page1 {
	padding: 2px 0px 0px 0px;
}

#stacks_in_912_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_918_page1 {
	padding: 0px 5px 0px 5px;
}
#stacks_in_920_page1 *,
#stacks_in_920_page1 *:before,
#stacks_in_920_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_922_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 10px 0px 0px 0px;
}

#stacks_in_929_page1 {
	background-color: rgba(239, 239, 239, 1.00);
}
#stacks_in_931_page1 *,
#stacks_in_931_page1 *:before,
#stacks_in_931_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_933_page1 {
	padding: 5px 0px 0px 0px;
}
/* @group Font Icons */

@font-face {
  font-family: 'fontello';
  src: url('font-icons/fontello.eot?19778278');
  src: url('font-icons/fontello.eot?19778278#iefix') format('embedded-opentype'),
	   url('font-icons/fontello.woff?19778278') format('woff'),
	   url('font-icons/fontello.ttf?19778278') format('truetype'),
	   url('font-icons/fontello.svg?19778278#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

#freeStyleWrapperstacks_in_935_page1 [class^="freestyle-icon-"]:before,
#freeStyleWrapperstacks_in_935_page1 [class*=" freestyle-icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */
	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;
	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;
	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
#freeStyleWrapperstacks_in_935_page1 .freestyle-icon-left-open:before { content: '\e800'; }
#freeStyleWrapperstacks_in_935_page1 .freestyle-icon-right-open:before { content: '\e801'; }
#freeStyleWrapperstacks_in_935_page1 .freestyle-icon-play:before { content: '\e802'; }
#freeStyleWrapperstacks_in_935_page1 .freestyle-icon-pause:before { content: '\e803'; }

/* @end */

/* @group General / CSS reset */

#freeStyleWrapperstacks_in_935_page1 {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

#freeStyleWrapperstacks_in_935_page1 a {
	outline: none;
}

#freeStyleWrapperstacks_in_935_page1 ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#freeStyleWrapperstacks_in_935_page1 li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* @end */

%[if 1 ]%

/* @group BX Slider */

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/freestyle-bx-loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/* WW Reset */

.bx-wrapper {
	margin: 0px;
}

.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: 0px;
}

.bx-wrapper ul,
.bx-wrapper li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bx-wrapper img {
	max-width: none;
	width: 100%;
	height: auto;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 60;
}

/* Added by WW */

/* Hide slider until loaded */
#freeStyleSliderstacks_in_935_page1 {
	display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666666;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000000;
}

.bx-wrapper .bx-controls a {
	text-decoration: none;
}

.bx-wrapper .bx-controls-direction [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-prev {
	left: 10px;
	width: 32px;
	height: 32px;
	text-align: left;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-prev:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-next {
	right: 10px;
	width: 32px;
	height: 32px;
	text-align: right;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-next:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-controls-direction a {
	text-indent: 0;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	margin-left: 10px;
}

.bx-wrapper .bx-controls-auto [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-start.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}

.bx-controls-auto,
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	width: 85px;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-stop.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}




/* @end */









/* @group Maps */

.freeStyleMapContainer {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* @end */

/* @group Video */

.freeStyleMapContainer iframe {
	max-width: 100%;
	max-height: 100%;
}

.freeStyleVideoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px; 
	height: 0;
	overflow: hidden;
}
 
.freeStyleVideoContainer iframe,
.freeStyleVideoContainer object,
.freeStyleVideoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* @end */

/* @group HTML5 Video */

.html5VideoContainer {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.html5VideoContainer video,
.html5VideoContainer canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
 }
 
.html5VideoContainer video {
	height: 100% !important;
	position: absolute;
	-webkit-transform-style: preserve-3d;
}

/* @end */

/* @group Vine Video */





.vineVideoContainer iframe {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
}





/* @end */

/* @group Overlay */

#freeStyleOverlaystacks_in_935_page1 {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 55;
	display: block;
	width: 33%;
}

#overlayFillstacks_in_935_page1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.80;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

#overlayContentstacks_in_935_page1 {
	position: relative;
	display: block;
	z-index: 5;
	padding: 2%;
	margin: 0;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 100%;
}

/* @end */

@media screen and (max-width: 569px) {
	#freeStyleOverlaystacks_in_935_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		display: block;
		width: 100%;
	}
	
	#overlayFillstacks_in_935_page1,
	#overlayContentstacks_in_935_page1 {
		opacity: 1.00;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}

#stacks_in_935_page1 {
	padding: 0px 15px 0px 15px;
}

#stacks_in_952_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_954_page1 {
	padding: 5px 0px 10px 0px;
}
#stacks_in_1384_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1384_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1384_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1384_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1384_page1 {
	padding: 0px 100px 0px 100px;
}

#stacks_in_1373_page1 {
	padding: 0px 0px 15px 0px;
}

#stacks_in_1387_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_956_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 5px 0px 0px 0px;
}
#stacks_in_960_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_960_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_960_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_960_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_960_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_960_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

/* START ICONZ CSS */

#stacks_in_966_page1 i {
	font-size: 3em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_966_page1 {
	text-align: center;
}

#stacks_in_966_page1 a{
	text-decoration: none;
}


	
		#stacks_in_966_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_966_page1 .stacks_in_966_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_966_page1 .stacks_in_966_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_966_page1 .stacks_in_966_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
/* START ICONZ CSS */

#stacks_in_968_page1 i {
	font-size: 3em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_968_page1 {
	text-align: center;
}

#stacks_in_968_page1 a{
	text-decoration: none;
}


	
		#stacks_in_968_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_968_page1 .stacks_in_968_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_968_page1 .stacks_in_968_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_968_page1 .stacks_in_968_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_958_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}
#stacks_in_1032_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1032_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_1032_page1>.s3_row>.s3_column_center {
	width: 60.000000%;
}

#stacks_in_1032_page1>.s3_row>.s3_column_right {
	width: 20.00%;
}




#stacks_in_1032_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1032_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

/* START ICONZ CSS */

#stacks_in_1036_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_1036_page1 {
	text-align: center;
}

#stacks_in_1036_page1 a{
	text-decoration: none;
}


	
		#stacks_in_1036_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_1036_page1 .stacks_in_1036_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_1036_page1 .stacks_in_1036_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_1036_page1 .stacks_in_1036_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 #stacks_in_1013_page1 *,
#stacks_in_1013_page1 *:before,
#stacks_in_1013_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1013_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1203_page1 {
	padding: 5px 0px 10px 0px;
}
#stacks_in_1040_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1040_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1040_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1040_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
#stacks_in_1043_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1043_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_1043_page1>.s3_row>.s3_column_right {
	width: 80.000000%;
}




#stacks_in_1043_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

/* START ICONZ CSS */

#stacks_in_1053_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_1053_page1 {
	text-align: center;
}

#stacks_in_1053_page1 a{
	text-decoration: none;
}


	
		#stacks_in_1053_page1 a i:hover{
			color: #FFFFFF !important;
		}
		
		
	




#stacks_in_1053_page1 .stacks_in_1053_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_1053_page1 .stacks_in_1053_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_1053_page1 .stacks_in_1053_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 #stacks_in_1046_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1046_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_1046_page1>.s3_row>.s3_column_right {
	width: 80.000000%;
}




#stacks_in_1046_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

/* START ICONZ CSS */

#stacks_in_1055_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_1055_page1 {
	text-align: center;
}

#stacks_in_1055_page1 a{
	text-decoration: none;
}


	
		#stacks_in_1055_page1 a i:hover{
			color: #FFFFFF !important;
		}
		
		
	




#stacks_in_1055_page1 .stacks_in_1055_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_1055_page1 .stacks_in_1055_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_1055_page1 .stacks_in_1055_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
/* START ICONZ CSS */

#stacks_in_1038_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_1038_page1 {
	text-align: center;
}

#stacks_in_1038_page1 a{
	text-decoration: none;
}


	
		#stacks_in_1038_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_1038_page1 .stacks_in_1038_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_1038_page1 .stacks_in_1038_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_1038_page1 .stacks_in_1038_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 /* @group Font Icons */

@font-face {
  font-family: 'fontello';
  src: url('font-icons/fontello.eot?19778278');
  src: url('font-icons/fontello.eot?19778278#iefix') format('embedded-opentype'),
	   url('font-icons/fontello.woff?19778278') format('woff'),
	   url('font-icons/fontello.ttf?19778278') format('truetype'),
	   url('font-icons/fontello.svg?19778278#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

#freeStyleWrapperstacks_in_1017_page1 [class^="freestyle-icon-"]:before,
#freeStyleWrapperstacks_in_1017_page1 [class*=" freestyle-icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */
	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;
	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;
	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
#freeStyleWrapperstacks_in_1017_page1 .freestyle-icon-left-open:before { content: '\e800'; }
#freeStyleWrapperstacks_in_1017_page1 .freestyle-icon-right-open:before { content: '\e801'; }
#freeStyleWrapperstacks_in_1017_page1 .freestyle-icon-play:before { content: '\e802'; }
#freeStyleWrapperstacks_in_1017_page1 .freestyle-icon-pause:before { content: '\e803'; }

/* @end */

/* @group General / CSS reset */

#freeStyleWrapperstacks_in_1017_page1 {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

#freeStyleWrapperstacks_in_1017_page1 a {
	outline: none;
}

#freeStyleWrapperstacks_in_1017_page1 ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#freeStyleWrapperstacks_in_1017_page1 li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* @end */

%[if 1 ]%

/* @group BX Slider */

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/freestyle-bx-loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/* WW Reset */

.bx-wrapper {
	margin: 0px;
}

.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: 0px;
}

.bx-wrapper ul,
.bx-wrapper li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bx-wrapper img {
	max-width: none;
	width: 100%;
	height: auto;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 60;
}

/* Added by WW */

/* Hide slider until loaded */
#freeStyleSliderstacks_in_1017_page1 {
	display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666666;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000000;
}

.bx-wrapper .bx-controls a {
	text-decoration: none;
}

.bx-wrapper .bx-controls-direction [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-prev {
	left: 10px;
	width: 32px;
	height: 32px;
	text-align: left;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-prev:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-next {
	right: 10px;
	width: 32px;
	height: 32px;
	text-align: right;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-next:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-controls-direction a {
	text-indent: 0;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	margin-left: 10px;
}

.bx-wrapper .bx-controls-auto [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-start.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}

.bx-controls-auto,
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	width: 85px;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-stop.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}




/* @end */









/* @group Maps */

.freeStyleMapContainer {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* @end */

/* @group Video */

.freeStyleMapContainer iframe {
	max-width: 100%;
	max-height: 100%;
}

.freeStyleVideoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px; 
	height: 0;
	overflow: hidden;
}
 
.freeStyleVideoContainer iframe,
.freeStyleVideoContainer object,
.freeStyleVideoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* @end */

/* @group HTML5 Video */

.html5VideoContainer {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.html5VideoContainer video,
.html5VideoContainer canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
 }
 
.html5VideoContainer video {
	height: 100% !important;
	position: absolute;
	-webkit-transform-style: preserve-3d;
}

/* @end */

/* @group Vine Video */





.vineVideoContainer iframe {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
}





/* @end */

/* @group Overlay */

#freeStyleOverlaystacks_in_1017_page1 {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 55;
	display: block;
	width: 33%;
}

#overlayFillstacks_in_1017_page1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.80;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

#overlayContentstacks_in_1017_page1 {
	position: relative;
	display: block;
	z-index: 5;
	padding: 2%;
	margin: 0;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 100%;
}

/* @end */

@media screen and (max-width: 569px) {
	#freeStyleOverlaystacks_in_1017_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		display: block;
		width: 100%;
	}
	
	#overlayFillstacks_in_1017_page1,
	#overlayContentstacks_in_1017_page1 {
		opacity: 1.00;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}
#stacks_in_1267_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1267_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_1267_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_1267_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_1267_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1267_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}
#stacks_in_1357_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1357_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1357_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1357_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1283_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1283_page1, #stacks_in_1283_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1283_page1, #stacks_in_1283_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1283_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1283_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1283_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1283_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1283_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1301_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1285_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1285_page1, #stacks_in_1285_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1285_page1, #stacks_in_1285_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1285_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1285_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1285_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1285_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1285_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1303_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_1360_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1360_page1>.s3_row>.s3_column_left {
	width: 62.00%;
}

#stacks_in_1360_page1>.s3_row>.s3_column_right {
	width: 38.000000%;
}




#stacks_in_1360_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1287_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1287_page1, #stacks_in_1287_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1287_page1, #stacks_in_1287_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_1287_page1 a:link{			text-decoration: none !important;		}				#stacks_in_1287_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_1287_page1 a:active{			text-decoration: none !important;		}				#stacks_in_1287_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_1287_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1305_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1291_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1291_page1, #stacks_in_1291_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1291_page1, #stacks_in_1291_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Eternity stack CSS code */
#stacks_in_1291_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1309_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_1279_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1279_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_1279_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_1279_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_1279_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1279_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1293_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1293_page1, #stacks_in_1293_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1293_page1, #stacks_in_1293_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Eternity stack CSS code */
#stacks_in_1293_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1311_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1297_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1297_page1, #stacks_in_1297_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1297_page1, #stacks_in_1297_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Eternity stack CSS code */
#stacks_in_1297_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1315_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_1299_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_1299_page1, #stacks_in_1299_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_1299_page1, #stacks_in_1299_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Eternity stack CSS code */
#stacks_in_1299_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_1317_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_1057_page1 *,
#stacks_in_1057_page1 *:before,
#stacks_in_1057_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1059_page1 {
	padding: 5px 10px 0px 10px;
}

#stacks_in_1061_page1 {
	padding: 0px 15px 0px 15px;
}
#stacks_in_1063_page1 *,
#stacks_in_1063_page1 *:before,
#stacks_in_1063_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1065_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 10px 15px 0px 15px;
}

#stacks_in_1067_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 0px 15px 0px 15px;
}
#stacks_in_1341_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1341_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_1341_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_1341_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_1341_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  
#highLightStackstacks_in_1078_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_1078_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_1078_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_1078_page1,
#highLightStackCaptionstacks_in_1078_page1 h1,
#highLightStackCaptionstacks_in_1078_page1 h2,
#highLightStackCaptionstacks_in_1078_page1 h3,
#highLightStackCaptionstacks_in_1078_page1 h4,
#highLightStackCaptionstacks_in_1078_page1 h5,
#highLightStackCaptionstacks_in_1078_page1 h6,
#highLightStackCaptionstacks_in_1078_page1 strong,
#highLightStackCaptionstacks_in_1078_page1 a,
#highLightStackCaptionstacks_in_1078_page1 a:visited,
#highLightStackCaptionstacks_in_1078_page1 a:hover,
#highLightStackCaptionstacks_in_1078_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_1078_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_1078_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_1078_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_1078_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_1078_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_1087_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_1087_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_1087_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_1087_page1,
#highLightStackCaptionstacks_in_1087_page1 h1,
#highLightStackCaptionstacks_in_1087_page1 h2,
#highLightStackCaptionstacks_in_1087_page1 h3,
#highLightStackCaptionstacks_in_1087_page1 h4,
#highLightStackCaptionstacks_in_1087_page1 h5,
#highLightStackCaptionstacks_in_1087_page1 h6,
#highLightStackCaptionstacks_in_1087_page1 strong,
#highLightStackCaptionstacks_in_1087_page1 a,
#highLightStackCaptionstacks_in_1087_page1 a:visited,
#highLightStackCaptionstacks_in_1087_page1 a:hover,
#highLightStackCaptionstacks_in_1087_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_1087_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_1087_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_1087_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_1087_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_1087_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_1084_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_1084_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_1084_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_1084_page1,
#highLightStackCaptionstacks_in_1084_page1 h1,
#highLightStackCaptionstacks_in_1084_page1 h2,
#highLightStackCaptionstacks_in_1084_page1 h3,
#highLightStackCaptionstacks_in_1084_page1 h4,
#highLightStackCaptionstacks_in_1084_page1 h5,
#highLightStackCaptionstacks_in_1084_page1 h6,
#highLightStackCaptionstacks_in_1084_page1 strong,
#highLightStackCaptionstacks_in_1084_page1 a,
#highLightStackCaptionstacks_in_1084_page1 a:visited,
#highLightStackCaptionstacks_in_1084_page1 a:hover,
#highLightStackCaptionstacks_in_1084_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_1084_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_1084_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_1084_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_1084_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_1084_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_1072_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_1072_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_1072_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_1072_page1,
#highLightStackCaptionstacks_in_1072_page1 h1,
#highLightStackCaptionstacks_in_1072_page1 h2,
#highLightStackCaptionstacks_in_1072_page1 h3,
#highLightStackCaptionstacks_in_1072_page1 h4,
#highLightStackCaptionstacks_in_1072_page1 h5,
#highLightStackCaptionstacks_in_1072_page1 h6,
#highLightStackCaptionstacks_in_1072_page1 strong,
#highLightStackCaptionstacks_in_1072_page1 a,
#highLightStackCaptionstacks_in_1072_page1 a:visited,
#highLightStackCaptionstacks_in_1072_page1 a:hover,
#highLightStackCaptionstacks_in_1072_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_1072_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_1072_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_1072_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_1072_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_1072_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_1075_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_1075_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_1075_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_1075_page1,
#highLightStackCaptionstacks_in_1075_page1 h1,
#highLightStackCaptionstacks_in_1075_page1 h2,
#highLightStackCaptionstacks_in_1075_page1 h3,
#highLightStackCaptionstacks_in_1075_page1 h4,
#highLightStackCaptionstacks_in_1075_page1 h5,
#highLightStackCaptionstacks_in_1075_page1 h6,
#highLightStackCaptionstacks_in_1075_page1 strong,
#highLightStackCaptionstacks_in_1075_page1 a,
#highLightStackCaptionstacks_in_1075_page1 a:visited,
#highLightStackCaptionstacks_in_1075_page1 a:hover,
#highLightStackCaptionstacks_in_1075_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_1075_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_1075_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_1075_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_1075_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_1075_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#highLightStackstacks_in_1081_page1 {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
	border-radius: 0px;
}

#highLightStackstacks_in_1081_page1 img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

#highLightStackCaptionstacks_in_1081_page1 {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(75, 161, 175, 0.80);
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 13px;
}

#highLightStackCaptionstacks_in_1081_page1,
#highLightStackCaptionstacks_in_1081_page1 h1,
#highLightStackCaptionstacks_in_1081_page1 h2,
#highLightStackCaptionstacks_in_1081_page1 h3,
#highLightStackCaptionstacks_in_1081_page1 h4,
#highLightStackCaptionstacks_in_1081_page1 h5,
#highLightStackCaptionstacks_in_1081_page1 h6,
#highLightStackCaptionstacks_in_1081_page1 strong,
#highLightStackCaptionstacks_in_1081_page1 a,
#highLightStackCaptionstacks_in_1081_page1 a:visited,
#highLightStackCaptionstacks_in_1081_page1 a:hover,
#highLightStackCaptionstacks_in_1081_page1 a:active {
	font-size: 13px;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.50em;
}

#highLightCaptionContentstacks_in_1081_page1 {
	padding: 3.00%;
}

/*  */

/*  */
#highLightStackCaptionstacks_in_1081_page1 {
	bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
/*  */

#highLightStackstacks_in_1081_page1 a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	border: none;
	outline: none;
	background: transparent;
}

@media screen and (max-width: 480px) {
	#highLightStackstacks_in_1081_page1 {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	
	#highLightStackCaptionstacks_in_1081_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}/*  */#stacks_in_1102_page1 *,
#stacks_in_1102_page1 *:before,
#stacks_in_1102_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_1104_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1104_page1>.s3_row>.s3_column_left {
	width: 28.00%;
}

#stacks_in_1104_page1>.s3_row>.s3_column_center {
	width: 44.000000%;
}

#stacks_in_1104_page1>.s3_row>.s3_column_right {
	width: 28.00%;
}




#stacks_in_1104_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1108_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_1110_page1 {
	padding: 0px 5px 0px 5px;
}
#stacks_in_1118_page1 *,
#stacks_in_1118_page1 *:before,
#stacks_in_1118_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1120_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 10px 0px 0px 0px;
}

#stacks_in_1122_page1 {
	background-color: rgba(239, 239, 239, 1.00);
}
#stacks_in_1124_page1 *,
#stacks_in_1124_page1 *:before,
#stacks_in_1124_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1126_page1 {
	padding: 5px 0px 0px 0px;
}
/* @group Font Icons */

@font-face {
  font-family: 'fontello';
  src: url('font-icons/fontello.eot?19778278');
  src: url('font-icons/fontello.eot?19778278#iefix') format('embedded-opentype'),
	   url('font-icons/fontello.woff?19778278') format('woff'),
	   url('font-icons/fontello.ttf?19778278') format('truetype'),
	   url('font-icons/fontello.svg?19778278#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

#freeStyleWrapperstacks_in_1128_page1 [class^="freestyle-icon-"]:before,
#freeStyleWrapperstacks_in_1128_page1 [class*=" freestyle-icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */
	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;
	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;
	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
#freeStyleWrapperstacks_in_1128_page1 .freestyle-icon-left-open:before { content: '\e800'; }
#freeStyleWrapperstacks_in_1128_page1 .freestyle-icon-right-open:before { content: '\e801'; }
#freeStyleWrapperstacks_in_1128_page1 .freestyle-icon-play:before { content: '\e802'; }
#freeStyleWrapperstacks_in_1128_page1 .freestyle-icon-pause:before { content: '\e803'; }

/* @end */

/* @group General / CSS reset */

#freeStyleWrapperstacks_in_1128_page1 {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

#freeStyleWrapperstacks_in_1128_page1 a {
	outline: none;
}

#freeStyleWrapperstacks_in_1128_page1 ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#freeStyleWrapperstacks_in_1128_page1 li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* @end */

%[if 1 ]%

/* @group BX Slider */

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/freestyle-bx-loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/* WW Reset */

.bx-wrapper {
	margin: 0px;
}

.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: 0px;
}

.bx-wrapper ul,
.bx-wrapper li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bx-wrapper img {
	max-width: none;
	width: 100%;
	height: auto;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 60;
}

/* Added by WW */

/* Hide slider until loaded */
#freeStyleSliderstacks_in_1128_page1 {
	display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666666;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000000;
}

.bx-wrapper .bx-controls a {
	text-decoration: none;
}

.bx-wrapper .bx-controls-direction [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-prev {
	left: 10px;
	width: 32px;
	height: 32px;
	text-align: left;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-prev:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-next {
	right: 10px;
	width: 32px;
	height: 32px;
	text-align: right;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-next:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-controls-direction a {
	text-indent: 0;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	margin-left: 10px;
}

.bx-wrapper .bx-controls-auto [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-start.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}

.bx-controls-auto,
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	width: 85px;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-stop.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}




/* @end */









/* @group Maps */

.freeStyleMapContainer {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* @end */

/* @group Video */

.freeStyleMapContainer iframe {
	max-width: 100%;
	max-height: 100%;
}

.freeStyleVideoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px; 
	height: 0;
	overflow: hidden;
}
 
.freeStyleVideoContainer iframe,
.freeStyleVideoContainer object,
.freeStyleVideoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* @end */

/* @group HTML5 Video */

.html5VideoContainer {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.html5VideoContainer video,
.html5VideoContainer canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
 }
 
.html5VideoContainer video {
	height: 100% !important;
	position: absolute;
	-webkit-transform-style: preserve-3d;
}

/* @end */

/* @group Vine Video */





.vineVideoContainer iframe {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
}





/* @end */

/* @group Overlay */

#freeStyleOverlaystacks_in_1128_page1 {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 55;
	display: block;
	width: 33%;
}

#overlayFillstacks_in_1128_page1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.80;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

#overlayContentstacks_in_1128_page1 {
	position: relative;
	display: block;
	z-index: 5;
	padding: 2%;
	margin: 0;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 100%;
}

/* @end */

@media screen and (max-width: 569px) {
	#freeStyleOverlaystacks_in_1128_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		display: block;
		width: 100%;
	}
	
	#overlayFillstacks_in_1128_page1,
	#overlayContentstacks_in_1128_page1 {
		opacity: 1.00;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}

#stacks_in_1128_page1 {
	padding: 0px 15px 0px 15px;
}

#stacks_in_1145_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_1147_page1 {
	padding: 5px 0px 10px 0px;
}
#stacks_in_1389_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1389_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1389_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1389_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1389_page1 {
	padding: 0px 100px 0px 100px;
}

#stacks_in_1375_page1 {
	padding: 0px 0px 15px 0px;
}

#stacks_in_1392_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_1149_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 5px 0px 0px 0px;
}
#stacks_in_1151_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1151_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_1151_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_1151_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_1151_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {


	#stacks_in_1151_page1>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_1151_page1>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}




  

#stacks_in_1151_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

/* START ICONZ CSS */

#stacks_in_1157_page1 i {
	font-size: 3em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_1157_page1 {
	text-align: center;
}

#stacks_in_1157_page1 a{
	text-decoration: none;
}


	
		#stacks_in_1157_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_1157_page1 .stacks_in_1157_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_1157_page1 .stacks_in_1157_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_1157_page1 .stacks_in_1157_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
/* START ICONZ CSS */

#stacks_in_1159_page1 i {
	font-size: 3em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_1159_page1 {
	text-align: center;
}

#stacks_in_1159_page1 a{
	text-decoration: none;
}


	
		#stacks_in_1159_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_1159_page1 .stacks_in_1159_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_1159_page1 .stacks_in_1159_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_1159_page1 .stacks_in_1159_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_1161_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}
#stacks_in_32_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_32_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_32_page1>.s3_row>.s3_column_center {
	width: 49.510002%;
}

#stacks_in_32_page1>.s3_row>.s3_column_right {
	width: 30.49%;
}




#stacks_in_32_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_32_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	border: solid rgba(254, 254, 254, 1.00);
	border-width: 0px 0px 3px 0px;
	padding: 15px 60px 20px 45px;
}
#stacks_in_1345_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1345_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_1345_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_1345_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_1345_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1345_page1 {
	padding: 30px 0px 0px 0px;
}

/* START ICONZ CSS */

#stacks_in_26_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_26_page1 {
	text-align: center;
}

#stacks_in_26_page1 a{
	text-decoration: none;
}


	
		#stacks_in_26_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_26_page1 .stacks_in_26_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_26_page1 .stacks_in_26_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_26_page1 .stacks_in_26_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
/* START ICONZ CSS */

#stacks_in_22_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_22_page1 {
	text-align: center;
}

#stacks_in_22_page1 a{
	text-decoration: none;
}


	
		#stacks_in_22_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_22_page1 .stacks_in_22_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_22_page1 .stacks_in_22_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_22_page1 .stacks_in_22_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
/* START ICONZ CSS */

#stacks_in_20_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_20_page1 {
	text-align: center;
}

#stacks_in_20_page1 a{
	text-decoration: none;
}


	
		#stacks_in_20_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_20_page1 .stacks_in_20_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_20_page1 .stacks_in_20_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_20_page1 .stacks_in_20_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_1205_page1 {
	padding: 25px 0px 0px 5px;
}

#stacks_in_28_page1 {
	padding: 10px 0px 0px 0px;
}
/* @group Font Icons */

@font-face {
  font-family: 'fontello';
  src: url('font-icons/fontello.eot?19778278');
  src: url('font-icons/fontello.eot?19778278#iefix') format('embedded-opentype'),
	   url('font-icons/fontello.woff?19778278') format('woff'),
	   url('font-icons/fontello.ttf?19778278') format('truetype'),
	   url('font-icons/fontello.svg?19778278#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

#freeStyleWrapperstacks_in_44_page1 [class^="freestyle-icon-"]:before,
#freeStyleWrapperstacks_in_44_page1 [class*=" freestyle-icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */
	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;
	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;
	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
#freeStyleWrapperstacks_in_44_page1 .freestyle-icon-left-open:before { content: '\e800'; }
#freeStyleWrapperstacks_in_44_page1 .freestyle-icon-right-open:before { content: '\e801'; }
#freeStyleWrapperstacks_in_44_page1 .freestyle-icon-play:before { content: '\e802'; }
#freeStyleWrapperstacks_in_44_page1 .freestyle-icon-pause:before { content: '\e803'; }

/* @end */

/* @group General / CSS reset */

#freeStyleWrapperstacks_in_44_page1 {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

#freeStyleWrapperstacks_in_44_page1 a {
	outline: none;
}

#freeStyleWrapperstacks_in_44_page1 ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#freeStyleWrapperstacks_in_44_page1 li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* @end */

%[if 1 ]%

/* @group BX Slider */

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/freestyle-bx-loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/* WW Reset */

.bx-wrapper {
	margin: 0px;
}

.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: 0px;
}

.bx-wrapper ul,
.bx-wrapper li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bx-wrapper img {
	max-width: none;
	width: 100%;
	height: auto;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 60;
}

/* Added by WW */

/* Hide slider until loaded */
#freeStyleSliderstacks_in_44_page1 {
	display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #FFFFFF;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #4BA1AF;
}

.bx-wrapper .bx-controls a {
	text-decoration: none;
}

.bx-wrapper .bx-controls-direction [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #FFFFFF;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-prev {
	left: 10px;
	width: 32px;
	height: 32px;
	text-align: left;
	border-radius: 16px;
	background: #4BA1AF;
	opacity: 0.80;
}

.bx-wrapper .bx-prev:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-next {
	right: 10px;
	width: 32px;
	height: 32px;
	text-align: right;
	border-radius: 16px;
	background: #4BA1AF;
	opacity: 0.80;
}

.bx-wrapper .bx-next:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-controls-direction a {
	text-indent: 0;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	margin-left: 10px;
}

.bx-wrapper .bx-controls-auto [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #4BA1AF;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-start.active [class^="freestyle-icon-"] {
	background: none;
	color: #FFFFFF;
	text-shadow: none;
}

.bx-controls-auto,
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	width: 85px;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-stop.active [class^="freestyle-icon-"] {
	background: none;
	color: #FFFFFF;
	text-shadow: none;
}




/* @end */









/* @group Maps */

.freeStyleMapContainer {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* @end */

/* @group Video */

.freeStyleMapContainer iframe {
	max-width: 100%;
	max-height: 100%;
}

.freeStyleVideoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px; 
	height: 0;
	overflow: hidden;
}
 
.freeStyleVideoContainer iframe,
.freeStyleVideoContainer object,
.freeStyleVideoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* @end */

/* @group HTML5 Video */

.html5VideoContainer {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.html5VideoContainer video,
.html5VideoContainer canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
 }
 
.html5VideoContainer video {
	height: 100% !important;
	position: absolute;
	-webkit-transform-style: preserve-3d;
}

/* @end */

/* @group Vine Video */





.vineVideoContainer iframe {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
}





/* @end */

/* @group Overlay */

#freeStyleOverlaystacks_in_44_page1 {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 55;
	display: block;
	width: 33%;
}

#overlayFillstacks_in_44_page1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.80;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

#overlayContentstacks_in_44_page1 {
	position: relative;
	display: block;
	z-index: 5;
	padding: 2%;
	margin: 0;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 100%;
}

/* @end */

@media screen and (max-width: 569px) {
	#freeStyleOverlaystacks_in_44_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		display: block;
		width: 100%;
	}
	
	#overlayFillstacks_in_44_page1,
	#overlayContentstacks_in_44_page1 {
		opacity: 1.00;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}

#stacks_in_44_page1 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 3px 0px;
}
#stacks_in_150_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_150_page1>.s3_row>.s3_column_left {
	width: 24.44%;
}

#stacks_in_150_page1>.s3_row>.s3_column_center {
	width: 35.559998%;
}

#stacks_in_150_page1>.s3_row>.s3_column_right {
	width: 40.00%;
}




#stacks_in_150_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_150_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	border: solid rgba(75, 161, 175, 1.00);
	border-width: 2px 2px 0px 2px;
	padding: 0px 25px 0px 25px;
}
#stacks_in_1363_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1363_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1363_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1363_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_128_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_128_page1, #stacks_in_128_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_128_page1, #stacks_in_128_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_128_page1 a:link{			text-decoration: none !important;		}				#stacks_in_128_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_128_page1 a:active{			text-decoration: none !important;		}				#stacks_in_128_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_128_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_122_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_130_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_130_page1, #stacks_in_130_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_130_page1, #stacks_in_130_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_130_page1 a:link{			text-decoration: none !important;		}				#stacks_in_130_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_130_page1 a:active{			text-decoration: none !important;		}				#stacks_in_130_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_130_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_124_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_1366_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1366_page1>.s3_row>.s3_column_left {
	width: 59.31%;
}

#stacks_in_1366_page1>.s3_row>.s3_column_right {
	width: 40.689999%;
}




#stacks_in_1366_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_132_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_132_page1, #stacks_in_132_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_132_page1, #stacks_in_132_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_132_page1 a:link{			text-decoration: none !important;		}				#stacks_in_132_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_132_page1 a:active{			text-decoration: none !important;		}				#stacks_in_132_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_132_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_126_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_136_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_136_page1, #stacks_in_136_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_136_page1, #stacks_in_136_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_136_page1 a:link{			text-decoration: none !important;		}				#stacks_in_136_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_136_page1 a:active{			text-decoration: none !important;		}				#stacks_in_136_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_136_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_118_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_162_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_162_page1>.s3_row>.s3_column_left {
	width: 29.43%;
}

#stacks_in_162_page1>.s3_row>.s3_column_center {
	width: 45.290001%;
}

#stacks_in_162_page1>.s3_row>.s3_column_right {
	width: 25.28%;
}




#stacks_in_162_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_162_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_138_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_138_page1, #stacks_in_138_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_138_page1, #stacks_in_138_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_138_page1 a:link{			text-decoration: none !important;		}				#stacks_in_138_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_138_page1 a:active{			text-decoration: none !important;		}				#stacks_in_138_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_138_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_116_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_142_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_142_page1, #stacks_in_142_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_142_page1, #stacks_in_142_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_142_page1 a:link{			text-decoration: none !important;		}				#stacks_in_142_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_142_page1 a:active{			text-decoration: none !important;		}				#stacks_in_142_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_142_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_112_page1 {
	padding: 15px 0px 0px 0px;
}
/* Start Eternity stack CSS code *//* ---------------------------- /// ---------- Base CSS --------- ///------------------------------ */#stacks_in_144_page1{	background: url("");	min-height: 50px;	background-size: auto;	background-color: transparent;	background-repeat: no-repeat;	background-position:50% 50%;	background-attachment: none;	/* -webkit-transition:all 0.2s linear; -moz-transition:all 0.2s linear; -o-transition:all 0.2s linear; transition:all 0.2s linear;  */	background: url("") none; }/* ---------------------------- /// ---------- Repeat --------- ///------------------------------ */#stacks_in_144_page1, #stacks_in_144_page1:hover{	background-repeat: no-repeat !important;}/* ---------------------------- /// --------- Colour ------------ ///------------------------------ */#stacks_in_144_page1, #stacks_in_144_page1:hover{	background-color: #2D6872;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		#stacks_in_144_page1 a:link{			text-decoration: none !important;		}				#stacks_in_144_page1 a:visited{			text-decoration: none !important;		}				#stacks_in_144_page1 a:active{			text-decoration: none !important;		}				#stacks_in_144_page1 a:hover{			text-decoration: none !important;		}/* End Eternity stack CSS code */
#stacks_in_144_page1 {
	background-color: rgba(75, 161, 175, 1.00);
}

#stacks_in_110_page1 {
	padding: 15px 0px 0px 0px;
}
#stacks_in_203_page1>.s3_row {
	margin: 0 -15px;
}

#stacks_in_203_page1>.s3_row>.s3_column_left {
	width: 25.00%;
}

#stacks_in_203_page1>.s3_row>.s3_column_center {
	width: 37.000000%;
}

#stacks_in_203_page1>.s3_row>.s3_column_right {
	width: 38.00%;
}




#stacks_in_203_page1>.s3_row>.s3_column {
	padding: 0 15px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_203_page1 {
	border: solid rgba(75, 161, 175, 1.00);
	border-width: 2px 0px 0px 0px;
	padding: 25px 25px 25px 25px;
}
#stacks_in_213_page1 *,
#stacks_in_213_page1 *:before,
#stacks_in_213_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_215_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 10px 0px 10px 0px;
}

#stacks_in_221_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 0px 0px 15px 0px;
}
#stacks_in_193_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_193_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_193_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_193_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_193_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_193_page1 {
	background-color: rgba(239, 239, 239, 1.00);
}
/* Start Ice stack CSS code */.stacks_in_185_page1ice-overlay{	font-size:150% !important;}.stacks_in_185_page1ice-overlay i{		display:block;	padding-bottom: 7px;		font-size:200% !important;	opacity: 0.9 !important;	color: #4BA1AF !important;}.iceerror{	font-size: 12px !important;}.stacks_in_185_page1editPanel{	position: relative;	height: 50px;	background: #020206 url("../files/iceAssets/topslice.jpg") no-repeat;	padding-left: 20px;	border: 2px solid #2E83F8;	border-radius: 27px;	margin: 15px 0 15px 0;}.stacks_in_185_page1editTopLabel{	position: absolute;	width: 140px;	left: 50%;	margin-left: -70px;	top: -9px;	color: #ffffff;	background: #2E83F8;	font-size: 12px;	padding: 1px 0 1px 0;	text-align: center;	border-radius: 10px;}.stacks_in_185_page1editOverlay{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	background: #000000;	opacity: 0.2;	overflow: hidden;}.stacks_in_185_page1editOverlayInner{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	overflow: hidden;	display: table;	vertical-align: middle;	text-align: center;}.stacks_in_185_page1editName{	display: table-cell;	width: 100px;	vertical-align: middle;	color: #FFFFFF;	font-size: 18px;	padding-left: 15px;}.stacks_in_185_page1editName i{	font-size: 28px;	padding-left: 15px;	color: #4BA1AF;	opacity: 0.9;	padding-right: 15px;}/* End Ice stack CSS code */#stacks_in_175_page1 *,
#stacks_in_175_page1 *:before,
#stacks_in_175_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* Start Smart Image stack CSS code */#stacks_in_187_page1{	text-align: center;}#stacks_in_187_page1 figure a img{	cursor: pointer !important;}.stacks_in_187_page1responsive {  max-width: 100%;  margin: 0;  padding: 0;}.stacks_in_187_page1responsive img, .stacks_in_187_page1warehouseImage img {  max-width: 100%;  height: auto;  margin: 0 auto 0 auto;  display: block;}.stacks_in_187_page1hiddenimage{	display: none;}.stacks_in_187_page1warehouseImage{	display: none;}/* End Smart Image stack CSS code *//* Start Ice stack CSS code */.stacks_in_232_page1ice-overlay{	font-size:150% !important;}.stacks_in_232_page1ice-overlay i{		display:block;	padding-bottom: 7px;		font-size:200% !important;	opacity: 0.9 !important;	color: #4BA1AF !important;}.iceerror{	font-size: 12px !important;}.stacks_in_232_page1editPanel{	position: relative;	height: 50px;	background: #020206 url("../files/iceAssets/topslice.jpg") no-repeat;	padding-left: 20px;	border: 2px solid #2E83F8;	border-radius: 27px;	margin: 15px 0 15px 0;}.stacks_in_232_page1editTopLabel{	position: absolute;	width: 140px;	left: 50%;	margin-left: -70px;	top: -9px;	color: #ffffff;	background: #2E83F8;	font-size: 12px;	padding: 1px 0 1px 0;	text-align: center;	border-radius: 10px;}.stacks_in_232_page1editOverlay{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	background: #000000;	opacity: 0.2;	overflow: hidden;}.stacks_in_232_page1editOverlayInner{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	overflow: hidden;	display: table;	vertical-align: middle;	text-align: center;}.stacks_in_232_page1editName{	display: table-cell;	width: 100px;	vertical-align: middle;	color: #FFFFFF;	font-size: 18px;	padding-left: 15px;}.stacks_in_232_page1editName i{	font-size: 28px;	padding-left: 15px;	color: #4BA1AF;	opacity: 0.9;	padding-right: 15px;}/* End Ice stack CSS code */#stacks_in_236_page1 *,
#stacks_in_236_page1 *:before,
#stacks_in_236_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* Start Smart Image stack CSS code */#stacks_in_240_page1{	text-align: center;}#stacks_in_240_page1 figure a img{	cursor: pointer !important;}.stacks_in_240_page1responsive {  max-width: 100%;  margin: 0;  padding: 0;}.stacks_in_240_page1responsive img, .stacks_in_240_page1warehouseImage img {  max-width: 100%;  height: auto;  margin: 0 auto 0 auto;  display: block;}.stacks_in_240_page1hiddenimage{	display: none;}.stacks_in_240_page1warehouseImage{	display: none;}/* End Smart Image stack CSS code *//* Start Ice stack CSS code */.stacks_in_230_page1ice-overlay{	font-size:150% !important;}.stacks_in_230_page1ice-overlay i{		display:block;	padding-bottom: 7px;		font-size:200% !important;	opacity: 0.9 !important;	color: #4BA1AF !important;}.iceerror{	font-size: 12px !important;}.stacks_in_230_page1editPanel{	position: relative;	height: 50px;	background: #020206 url("../files/iceAssets/topslice.jpg") no-repeat;	padding-left: 20px;	border: 2px solid #2E83F8;	border-radius: 27px;	margin: 15px 0 15px 0;}.stacks_in_230_page1editTopLabel{	position: absolute;	width: 140px;	left: 50%;	margin-left: -70px;	top: -9px;	color: #ffffff;	background: #2E83F8;	font-size: 12px;	padding: 1px 0 1px 0;	text-align: center;	border-radius: 10px;}.stacks_in_230_page1editOverlay{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	background: #000000;	opacity: 0.2;	overflow: hidden;}.stacks_in_230_page1editOverlayInner{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	overflow: hidden;	display: table;	vertical-align: middle;	text-align: center;}.stacks_in_230_page1editName{	display: table-cell;	width: 100px;	vertical-align: middle;	color: #FFFFFF;	font-size: 18px;	padding-left: 15px;}.stacks_in_230_page1editName i{	font-size: 28px;	padding-left: 15px;	color: #4BA1AF;	opacity: 0.9;	padding-right: 15px;}/* End Ice stack CSS code */#stacks_in_234_page1 *,
#stacks_in_234_page1 *:before,
#stacks_in_234_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* Start Smart Image stack CSS code */#stacks_in_238_page1{	text-align: center;}#stacks_in_238_page1 figure a img{	cursor: pointer !important;}.stacks_in_238_page1responsive {  max-width: 100%;  margin: 0;  padding: 0;}.stacks_in_238_page1responsive img, .stacks_in_238_page1warehouseImage img {  max-width: 100%;  height: auto;  margin: 0 auto 0 auto;  display: block;}.stacks_in_238_page1hiddenimage{	display: none;}.stacks_in_238_page1warehouseImage{	display: none;}/* End Smart Image stack CSS code */#stacks_in_242_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_242_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_242_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_242_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_242_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_242_page1 {
	background-color: rgba(239, 239, 239, 1.00);
}
/* Start Ice stack CSS code */.stacks_in_197_page1ice-overlay{	font-size:150% !important;}.stacks_in_197_page1ice-overlay i{		display:block;	padding-bottom: 7px;		font-size:200% !important;	opacity: 0.9 !important;	color: #4BA1AF !important;}.iceerror{	font-size: 12px !important;}.stacks_in_197_page1editPanel{	position: relative;	height: 50px;	background: #020206 url("../files/iceAssets/topslice.jpg") no-repeat;	padding-left: 20px;	border: 2px solid #2E83F8;	border-radius: 27px;	margin: 15px 0 15px 0;}.stacks_in_197_page1editTopLabel{	position: absolute;	width: 140px;	left: 50%;	margin-left: -70px;	top: -9px;	color: #ffffff;	background: #2E83F8;	font-size: 12px;	padding: 1px 0 1px 0;	text-align: center;	border-radius: 10px;}.stacks_in_197_page1editOverlay{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	background: #000000;	opacity: 0.3;	overflow: hidden;}.stacks_in_197_page1editOverlayInner{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	overflow: hidden;	display: table;	vertical-align: middle;	text-align: center;}.stacks_in_197_page1editName{	display: table-cell;	width: 100px;	vertical-align: middle;	color: #FFFFFF;	font-size: 18px;	padding-left: 15px;}.stacks_in_197_page1editName i{	font-size: 28px;	padding-left: 15px;	color: #4BA1AF;	opacity: 0.9;	padding-right: 15px;}/* End Ice stack CSS code */#stacks_in_199_page1 *,
#stacks_in_199_page1 *:before,
#stacks_in_199_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* Start Smart Image stack CSS code */#stacks_in_201_page1{	text-align: center;}#stacks_in_201_page1 figure a img{	cursor: pointer !important;}.stacks_in_201_page1responsive {  max-width: 100%;  margin: 0;  padding: 0;}.stacks_in_201_page1responsive img, .stacks_in_201_page1warehouseImage img {  max-width: 100%;  height: auto;  margin: 0 auto 0 auto;  display: block;}.stacks_in_201_page1hiddenimage{	display: none;}.stacks_in_201_page1warehouseImage{	display: none;}/* End Smart Image stack CSS code *//* Start Ice stack CSS code */.stacks_in_189_page1ice-overlay{	font-size:150% !important;}.stacks_in_189_page1ice-overlay i{		display:block;	padding-bottom: 7px;		font-size:200% !important;	opacity: 0.9 !important;	color: #4BA1AF !important;}.iceerror{	font-size: 12px !important;}.stacks_in_189_page1editPanel{	position: relative;	height: 50px;	background: #020206 url("../files/iceAssets/topslice.jpg") no-repeat;	padding-left: 20px;	border: 2px solid #2E83F8;	border-radius: 27px;	margin: 15px 0 15px 0;}.stacks_in_189_page1editTopLabel{	position: absolute;	width: 140px;	left: 50%;	margin-left: -70px;	top: -9px;	color: #ffffff;	background: #2E83F8;	font-size: 12px;	padding: 1px 0 1px 0;	text-align: center;	border-radius: 10px;}.stacks_in_189_page1editOverlay{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	background: #000000;	opacity: 0.3;	overflow: hidden;}.stacks_in_189_page1editOverlayInner{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	overflow: hidden;	display: table;	vertical-align: middle;	text-align: center;}.stacks_in_189_page1editName{	display: table-cell;	width: 100px;	vertical-align: middle;	color: #FFFFFF;	font-size: 18px;	padding-left: 15px;}.stacks_in_189_page1editName i{	font-size: 28px;	padding-left: 15px;	color: #4BA1AF;	opacity: 0.9;	padding-right: 15px;}/* End Ice stack CSS code */#stacks_in_177_page1 *,
#stacks_in_177_page1 *:before,
#stacks_in_177_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* Start Smart Image stack CSS code */#stacks_in_191_page1{	text-align: center;}#stacks_in_191_page1 figure a img{	cursor: pointer !important;}.stacks_in_191_page1responsive {  max-width: 100%;  margin: 0;  padding: 0;}.stacks_in_191_page1responsive img, .stacks_in_191_page1warehouseImage img {  max-width: 100%;  height: auto;  margin: 0 auto 0 auto;  display: block;}.stacks_in_191_page1hiddenimage{	display: none;}.stacks_in_191_page1warehouseImage{	display: none;}/* End Smart Image stack CSS code *//* Start Ice stack CSS code */.stacks_in_246_page1ice-overlay{	font-size:150% !important;}.stacks_in_246_page1ice-overlay i{		display:block;	padding-bottom: 7px;		font-size:200% !important;	opacity: 0.9 !important;	color: #4BA1AF !important;}.iceerror{	font-size: 12px !important;}.stacks_in_246_page1editPanel{	position: relative;	height: 50px;	background: #020206 url("../files/iceAssets/topslice.jpg") no-repeat;	padding-left: 20px;	border: 2px solid #2E83F8;	border-radius: 27px;	margin: 15px 0 15px 0;}.stacks_in_246_page1editTopLabel{	position: absolute;	width: 140px;	left: 50%;	margin-left: -70px;	top: -9px;	color: #ffffff;	background: #2E83F8;	font-size: 12px;	padding: 1px 0 1px 0;	text-align: center;	border-radius: 10px;}.stacks_in_246_page1editOverlay{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	background: #000000;	opacity: 0.2;	overflow: hidden;}.stacks_in_246_page1editOverlayInner{	position: absolute;	height: 50px;	width: 100%;	top: 0;	left: 0;	border-radius: 27px;	overflow: hidden;	display: table;	vertical-align: middle;	text-align: center;}.stacks_in_246_page1editName{	display: table-cell;	width: 100px;	vertical-align: middle;	color: #CCCCCC;	font-size: 18px;	padding-left: 15px;}.stacks_in_246_page1editName i{	font-size: 28px;	padding-left: 15px;	color: #4BA1AF;	opacity: 0.9;	padding-right: 15px;}/* End Ice stack CSS code */#stacks_in_248_page1 *,
#stacks_in_248_page1 *:before,
#stacks_in_248_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* Start Smart Image stack CSS code */#stacks_in_250_page1{	text-align: center;}#stacks_in_250_page1 figure a img{	cursor: pointer !important;}.stacks_in_250_page1responsive {  max-width: 100%;  margin: 0;  padding: 0;}.stacks_in_250_page1responsive img, .stacks_in_250_page1warehouseImage img {  max-width: 100%;  height: auto;  margin: 0 auto 0 auto;  display: block;}.stacks_in_250_page1hiddenimage{	display: none;}.stacks_in_250_page1warehouseImage{	display: none;}/* End Smart Image stack CSS code */#stacks_in_275_page1 *,
#stacks_in_275_page1 *:before,
#stacks_in_275_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_256_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_256_page1>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_256_page1>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_256_page1>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_256_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_252_page1 {
	padding: 10px 0px 10px 0px;
}

#stacks_in_254_page1 {
	padding: 0px 15px 0px 15px;
}
#stacks_in_277_page1 *,
#stacks_in_277_page1 *:before,
#stacks_in_277_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_264_page1 {
	background-color: rgba(239, 239, 239, 1.00);
	padding: 10px 0px 10px 0px;
}
#stacks_in_279_page1 *,
#stacks_in_279_page1 *:before,
#stacks_in_279_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_469_page1 *,
#stacks_in_469_page1 *:before,
#stacks_in_469_page1 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_299_page1 {
	padding: 15px 0px 15px 0px;
}
/* @group Font Icons */

@font-face {
  font-family: 'fontello';
  src: url('font-icons/fontello.eot?19778278');
  src: url('font-icons/fontello.eot?19778278#iefix') format('embedded-opentype'),
	   url('font-icons/fontello.woff?19778278') format('woff'),
	   url('font-icons/fontello.ttf?19778278') format('truetype'),
	   url('font-icons/fontello.svg?19778278#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

#freeStyleWrapperstacks_in_400_page1 [class^="freestyle-icon-"]:before,
#freeStyleWrapperstacks_in_400_page1 [class*=" freestyle-icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */
	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;
	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;
	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
#freeStyleWrapperstacks_in_400_page1 .freestyle-icon-left-open:before { content: '\e800'; }
#freeStyleWrapperstacks_in_400_page1 .freestyle-icon-right-open:before { content: '\e801'; }
#freeStyleWrapperstacks_in_400_page1 .freestyle-icon-play:before { content: '\e802'; }
#freeStyleWrapperstacks_in_400_page1 .freestyle-icon-pause:before { content: '\e803'; }

/* @end */

/* @group General / CSS reset */

#freeStyleWrapperstacks_in_400_page1 {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

#freeStyleWrapperstacks_in_400_page1 a {
	outline: none;
}

#freeStyleWrapperstacks_in_400_page1 ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#freeStyleWrapperstacks_in_400_page1 li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* @end */

%[if 1 ]%

/* @group BX Slider */

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/freestyle-bx-loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(freestyle-images/freestyle-bx-controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(freestyle-images/freestyle-bx-controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/* WW Reset */

.bx-wrapper {
	margin: 0px;
}

.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: 0px;
}

.bx-wrapper ul,
.bx-wrapper li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bx-wrapper img {
	max-width: none;
	width: 100%;
	height: auto;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 20px;
	width: 100%;
	z-index: 60;
}

/* Added by WW */

/* Hide slider until loaded */
#freeStyleSliderstacks_in_400_page1 {
	display: none;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666666;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000000;
}

.bx-wrapper .bx-controls a {
	text-decoration: none;
}

.bx-wrapper .bx-controls-direction [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-prev {
	left: 10px;
	width: 32px;
	height: 32px;
	text-align: left;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-prev:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-next {
	right: 10px;
	width: 32px;
	height: 32px;
	text-align: right;
	border-radius: 16px;
	background: #686868;
	opacity: 0.80;
}

.bx-wrapper .bx-next:hover {
	opacity: 1.00;
}

.bx-wrapper .bx-controls-direction a {
	text-indent: 0;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	margin-left: 10px;
}

.bx-wrapper .bx-controls-auto [class^="freestyle-icon-"] {
	font-size: 22px;
	color: #BDBDBD;
	line-height: 34px;
	text-shadow: none;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-start.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}

.bx-controls-auto,
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	width: 85px;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: 0px;
	width: 32px;
	height: 32px;
	outline: 0;
	background: none;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:hover [class^="freestyle-icon-"],
.bx-wrapper .bx-controls-auto .bx-stop.active [class^="freestyle-icon-"] {
	background: none;
	color: #000000;
	text-shadow: none;
}




/* @end */









/* @group Maps */

.freeStyleMapContainer {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* @end */

/* @group Video */

.freeStyleMapContainer iframe {
	max-width: 100%;
	max-height: 100%;
}

.freeStyleVideoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px; 
	height: 0;
	overflow: hidden;
}
 
.freeStyleVideoContainer iframe,
.freeStyleVideoContainer object,
.freeStyleVideoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* @end */

/* @group HTML5 Video */

.html5VideoContainer {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.html5VideoContainer video,
.html5VideoContainer canvas {
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
 }
 
.html5VideoContainer video {
	height: 100% !important;
	position: absolute;
	-webkit-transform-style: preserve-3d;
}

/* @end */

/* @group Vine Video */





.vineVideoContainer iframe {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
	border: none;
	outline: none;
}





/* @end */

/* @group Overlay */

#freeStyleOverlaystacks_in_400_page1 {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 55;
	display: block;
	width: 33%;
}

#overlayFillstacks_in_400_page1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.80;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

#overlayContentstacks_in_400_page1 {
	position: relative;
	display: block;
	z-index: 5;
	padding: 2%;
	margin: 0;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 100%;
}

/* @end */

@media screen and (max-width: 569px) {
	#freeStyleOverlaystacks_in_400_page1 {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		display: block;
		width: 100%;
	}
	
	#overlayFillstacks_in_400_page1,
	#overlayContentstacks_in_400_page1 {
		opacity: 1.00;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}

#stacks_in_400_page1 {
	padding: 0px 75px 0px 75px;
}

#stacks_in_301_page1 {
	padding: 15px 0px 0px 0px;
}

#stacks_in_428_page1 {
	padding: 10px 0px 15px 0px;
}
#stacks_in_1394_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1394_page1>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1394_page1>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1394_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_1394_page1 {
	padding: 0px 100px 0px 100px;
}

#stacks_in_1377_page1 {
	padding: 0px 0px 15px 0px;
}

#stacks_in_1397_page1 {
	padding: 15px 0px 0px 0px;
}

#stacks_in_1369_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 10px 0px 0px 0px;
}
#stacks_in_430_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_430_page1>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_430_page1>.s3_row>.s3_column_center {
	width: 60.000000%;
}

#stacks_in_430_page1>.s3_row>.s3_column_right {
	width: 20.00%;
}




#stacks_in_430_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

#stacks_in_430_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 0px 50px 10px 50px;
}

#stacks_in_436_page1 {
	padding: 10px 0px 0px 0px;
}

/* START ICONZ CSS */

#stacks_in_438_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_438_page1 {
	text-align: center;
}

#stacks_in_438_page1 a{
	text-decoration: none;
}


	
		#stacks_in_438_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_438_page1 .stacks_in_438_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_438_page1 .stacks_in_438_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_438_page1 .stacks_in_438_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 #stacks_in_461_page1>.s3_row {
	margin: 0 -0px;
}

#stacks_in_461_page1>.s3_row>.s3_column_left {
	width: 25.00%;
}

#stacks_in_461_page1>.s3_row>.s3_column_center {
	width: 50.000000%;
}

#stacks_in_461_page1>.s3_row>.s3_column_right {
	width: 25.00%;
}




#stacks_in_461_page1>.s3_row>.s3_column {
	padding: 0 0px;
}







  


@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {



}




  

/* START ICONZ CSS */

#stacks_in_450_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_450_page1 {
	text-align: center;
}

#stacks_in_450_page1 a{
	text-decoration: none;
}


	
		#stacks_in_450_page1 a i:hover{
			color: #FFFFFF !important;
		}
		
		
	




#stacks_in_450_page1 .stacks_in_450_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_450_page1 .stacks_in_450_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_450_page1 .stacks_in_450_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_450_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_271_page1 {
	background-color: rgba(75, 161, 175, 1.00);
	padding: 10px 0px 0px 0px;
}

/* START ICONZ CSS */

#stacks_in_452_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_452_page1 {
	text-align: center;
}

#stacks_in_452_page1 a{
	text-decoration: none;
}


	
		#stacks_in_452_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_452_page1 .stacks_in_452_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_452_page1 .stacks_in_452_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_452_page1 .stacks_in_452_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 
#stacks_in_452_page1 {
	padding: 10px 0px 0px 0px;
}

#stacks_in_434_page1 {
	padding: 10px 0px 0px 0px;
}

/* START ICONZ CSS */

#stacks_in_440_page1 i {
	font-size: 2em;
	line-height: normal !important;
	
	color: #FFFFFF !important;
	
	text-align:center;
}








/* if no text */
#stacks_in_440_page1 {
	text-align: center;
}

#stacks_in_440_page1 a{
	text-decoration: none;
}


	
		#stacks_in_440_page1 a i:hover{
			color: #F0F0F0 !important;
		}
		
	




#stacks_in_440_page1 .stacks_in_440_page1quicklook{
	display: none;
	text-align: left;
	background: #F1F9F7;
	padding: 10px;
	border: 1px solid #D8E2E0;
	margin-top: 10px;
	color: #1D9D74 !important;
}
#stacks_in_440_page1 .stacks_in_440_page1quicklook i{
	font-size: 1em !important;
	line-height: normal !important;
	color: #1D9D74 !important;
	background: none !important;
}
#stacks_in_440_page1 .stacks_in_440_page1quicklook i:before{
	background: none !important;
}

/* END ICONS CSS */      
 