@-webkit-keyframes opLoad{0%{opacity:0}100%{opacity:1}}@keyframes opLoad{0%{opacity:0}100%{opacity:1}}.ncp{clear:both;padding:0;margin:0;counter-reset:section}.ncp.fadeimg{-webkit-animation:opLoad 1s ease-out;animation:opLoad 1s ease-out}.ncp.fadeimg img{opacity:0;-webkit-transition:opacity 1s ease-out;transition:opacity 1s ease-out}.ncp.fadeimg img.show{opacity:1}.ncp .g:before,.ncp .g:after{content:"";display:table}.ncp .g:after{clear:both}.ncp .c{display:block;float:left;margin:1% 0 1% 1.6%}.ncp .s1_1,.ncp .s1_2,.ncp .s1_3,.ncp .s1_4{margin:1% 0}.ncp .c:first-child{margin-left:0}.ncp.s1 > .c{width:100%}.ncp.s2 > .c{width:49.2%}.ncp.s3 > .c{width:32.26%}.ncp.s4 > .c{width:23.8%}
@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);
  }
}
.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
#stacks_in_231 *,
#stacks_in_231 *:before,
#stacks_in_231 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_219 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_7 *,
#stacks_in_7 *:before,
#stacks_in_7 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}


#stacks_in_194 h1,#stacks_in_194 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_194 h1 a,#stacks_in_194 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_194 h1 a:hover,#stacks_in_194 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_194 small,#stacks_in_194 small div{color:rgba(111, 111, 111, 1.00)}

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



.wow {
	visibility: hidden;
}

#stacks_in_131 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_137 h6,#stacks_in_137 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_137 h6 a,#stacks_in_137 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_137 h6 a:hover,#stacks_in_137 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_137 small,#stacks_in_137 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_142 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_142 .pullquote:before, #stacks_in_142 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_142 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_142 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_142 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_142 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_143 {
	font-size: 80%;
}

#stacks_in_132 {
	margin: 0px 0px 20px 0px;
}
#ncp-stacks_in_133 img{max-width:100%;height:auto; width:auto;}#ncp-stacks_in_133.s2 .c.s1_2 .c-pad,#ncp-stacks_in_133.s3 .c.s1_3 .c-pad,#ncp-stacks_in_133.s4 .c.s1_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_133.s3 .c.s2_3 .c-pad,#ncp-stacks_in_133.s4 .c.s2_4 .c-pad,#ncp-stacks_in_133.s4 .c.s3_4 .c-pad{padding:0 2px}#ncp-stacks_in_133.s2 .c.s2_2 .c-pad,#ncp-stacks_in_133.s3 .c.s3_3 .c-pad,#ncp-stacks_in_133.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}@media only screen and (max-width:600px){#ncp-stacks_in_133 .c{margin:1% 0;padding:4px 0;width:100%}#ncp-stacks_in_133 .c:first-child,#ncp-stacks_in_133.s4 .c.s1_4,#ncp-stacks_in_133.s4 .c.s2_4{padding:0 0 4px}#ncp-stacks_in_133 .c:last-child,#ncp-stacks_in_133.s4 .c.s3_4,#ncp-stacks_in_133.s4 .c.s4_4{padding:4px 0 0}#ncp-stacks_in_133.s2 .c-pad,#ncp-stacks_in_133.s3 .c-pad{padding:0 !important}#ncp-stacks_in_133.s4 .c{width:49.2%}#ncp-stacks_in_133.s4 .c.s1_4 .c-pad,#ncp-stacks_in_133.s4 .c.s3_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_133.s4 .c.s2_4 .c-pad,#ncp-stacks_in_133.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}}@media only screen and (max-width:300px){#ncp-stacks_in_133 .c .c-pad{padding:0 !important}#ncp-stacks_in_133.s4 .c{width:100%}}

#stacks_in_147 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_150 {
	font-size: 90%;
}
#stacks_in_151 *,
#stacks_in_151 *:before,
#stacks_in_151 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_153 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_153 .pullquote:before, #stacks_in_153 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_153 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_153 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_153 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_153 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_154 {
	font-size: 80%;
}
#stacks_in_135 *,
#stacks_in_135 *:before,
#stacks_in_135 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_135 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_161 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_161 .pullquote:before, #stacks_in_161 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_161 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_161 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_161 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_161 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_162 {
	font-size: 80%;
}
#ncp-stacks_in_251_5 img{max-width:100%;height:auto; width:auto;}#ncp-stacks_in_251_5.s2 .c.s1_2 .c-pad,#ncp-stacks_in_251_5.s3 .c.s1_3 .c-pad,#ncp-stacks_in_251_5.s4 .c.s1_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_251_5.s3 .c.s2_3 .c-pad,#ncp-stacks_in_251_5.s4 .c.s2_4 .c-pad,#ncp-stacks_in_251_5.s4 .c.s3_4 .c-pad{padding:0 2px}#ncp-stacks_in_251_5.s2 .c.s2_2 .c-pad,#ncp-stacks_in_251_5.s3 .c.s3_3 .c-pad,#ncp-stacks_in_251_5.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}@media only screen and (max-width:600px){#ncp-stacks_in_251_5 .c{margin:1% 0;padding:4px 0;width:100%}#ncp-stacks_in_251_5 .c:first-child,#ncp-stacks_in_251_5.s4 .c.s1_4,#ncp-stacks_in_251_5.s4 .c.s2_4{padding:0 0 4px}#ncp-stacks_in_251_5 .c:last-child,#ncp-stacks_in_251_5.s4 .c.s3_4,#ncp-stacks_in_251_5.s4 .c.s4_4{padding:4px 0 0}#ncp-stacks_in_251_5.s2 .c-pad,#ncp-stacks_in_251_5.s3 .c-pad{padding:0 !important}#ncp-stacks_in_251_5.s4 .c{width:49.2%}#ncp-stacks_in_251_5.s4 .c.s1_4 .c-pad,#ncp-stacks_in_251_5.s4 .c.s3_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_251_5.s4 .c.s2_4 .c-pad,#ncp-stacks_in_251_5.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}}@media only screen and (max-width:300px){#ncp-stacks_in_251_5 .c .c-pad{padding:0 !important}#ncp-stacks_in_251_5.s4 .c{width:100%}}

#stacks_in_251_5 {
	margin: 20px 0px 0px 0px;
}
/* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_251_3 #linklisterThingstacks_in_251_3 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_251_3 #listthingstacks_in_251_3 {
	display: block;
	position: relative;
}

#stacks_in_251_3 #listthingstacks_in_251_3 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_251_3 #listthingstacks_in_251_3 li {
	
	border-bottom: 1px solid #CC9900;
 		
	color: #CC9933;
	font-size: 90%;
	margin: 0;
	padding: 0 0 0 0px;
	position: relative;
	text-decoration:none;
	line-height: 32px;
}

#stacks_in_251_3 #listthingstacks_in_251_3 li a {
	color: #CC9933;
	text-decoration:none;
}

#stacks_in_251_3 #listthingstacks_in_251_3 li:hover, #stacks_in_251_3 #listthingstacks_in_251_3 li a:hover, #stacks_in_251_3 #listthingstacks_in_251_3 li:hover a  {
	text-decoration:none;
	color: #FFFFCC !important;
}

#stacks_in_251_3 .icon-link {
	
	color:  #CC9933 !important;
	font-size: 90%;
 		
}

#stacks_in_251_3  .text_padding_left a {
	padding-left: 10px;
	color:  #CC9933;
}

#stacks_in_251_3 #listthingstacks_in_251_3 li:hover span.icon-link, #stacks_in_251_3 #listthingstacks_in_251_3 li:hover  span.text_padding_left    {
	color: #FFFFCC !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_251_3 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_251_3 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_251_3:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_251_3  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_251_3 a::before,
.hover_effect4stacks_in_251_3 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_251_3 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_251_3 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_251_3 a:hover::before,
.hover_effect4stacks_in_251_3 a:hover::after,
.hover_effect4stacks_in_251_3 a:focus::before,
.hover_effect4stacks_in_251_3 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_251_3 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_251_3 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_251_3 a:before, 
.hover_effect5stacks_in_251_3 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #DA4453;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_251_3 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_251_3 a:hover:before, 
.hover_effect5stacks_in_251_3 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_251_3 {
}

.hover_effect6stacks_in_251_3 a {
	padding: 10px 10px 10px 0;
	color: #CC9933;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

.hover_effect6stacks_in_251_3 a::before,
.hover_effect6stacks_in_251_3 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #CC9933;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.hover_effect6stacks_in_251_3 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.hover_effect6stacks_in_251_3 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.hover_effect6stacks_in_251_3 a:hover,
.hover_effect6stacks_in_251_3 a:focus {
	color: #fff;
}

.hover_effect6stacks_in_251_3 a:hover::before,
.hover_effect6stacks_in_251_3 a:focus::before,
.hover_effect6stacks_in_251_3 a:hover::after,
.hover_effect6stacks_in_251_3 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_251_3 [class^="icon-link"]:before, #stacks_in_251_3 [class*="icon-link"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  32px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */
#stacks_in_251_3 {
	margin: 20px 20px 20px 20px;
}

#stacks_in_251_18 {
	margin: 0px 0px 30px 0px;
}

#stacks_in_251_21 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  1px;
}

#stacks_in_251_23 {
	margin: 0px 0px 20px 0px;
}
.topyenoh{opacity:0;position:absolute;top:0;left:0;height:0;width:0;padding:0;margin:0;z-index:-1}::placeholder{color:rgba(153, 153, 153, 1.00)}#stacks_in_251_26 label{color:rgba(255, 255, 255, 1.00);font-size:1.00rem}#stacks_in_251_26 .gdpr input{float:left;width:auto;margin:0.3rem 0 1rem 0}#stacks_in_251_26 .gdpr label{float:left;width:90%;font-size:1.00rem;color:rgba(255, 255, 255, 1.00);position:relative;margin-left:0.5rem}#stacks_in_251_26 input[type=text],#stacks_in_251_26 input[type=email]{-webkit-appearance:none;font-family:inherit;border-style:solid;border-width:1px;box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);display:block;margin:0;line-height:1em;width:100%;box-sizing:border-box;transition:box-shadow 0.45s,border-color 0.45s ease-in-out;border-radius:3px;background-color:rgba(255, 255, 255, 1.00);border-color:rgba(204, 204, 204, 1.00);height:2em;color:rgba(153, 153, 153, 1.00);font-size:0.82rem;text-align:left;padding:0 0.5rem}#stacks_in_251_26 input[type=text]:focus,#stacks_in_251_26 input[type=email]:focus{box-shadow:0 0 5px -1px rgba(153, 153, 153, 1.00);border-color:rgba(153, 153, 153, 1.00);outline:none;background-color:rgba(252, 252, 252, 1.00);color:rgba(78, 78, 78, 1.00)}#stacks_in_251_26 .label_text{line-height:2em}#stacks_in_251_26 .field{display:inline-block;width:100%;position:relative;margin:0.50rem 0;vertical-align:bottom}#stacks_in_251_26 .hide{display:none}#stacks_in_251_26 input[name=consent].error{outline:1px solid red}#stacks_in_251_26 label.error{margin-top:0.5rem;color:red;display:block;font-size:1rem}#stacks_in_251_26 button{margin:0}#stacks_in_251_26 button.custom{border-style:solid;border-width:0px;cursor:pointer;font-family:inherit;font-weight:inherit;line-height:normal;margin:0;position:relative;text-decoration:none;text-align:center;-webkit-appearance:none;display:inline-block;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-size:1rem;border-radius:0;transition:background-color 300ms ease-out;background-color:rgba(204, 153, 51, 1.00);color:rgba(255, 255, 255, 1.00)}#stacks_in_251_26 button.custom:hover{background-color:rgba(193, 145, 48, 1.00)}#stacks_in_251_26 button.small{padding-top:0.875rem;padding-right:1.75rem;padding-bottom:0.9375rem;padding-left:1.75rem;font-size:0.8125rem}#stacks_in_251_26 button.large{padding-top:1.125rem;padding-right:2.25rem;padding-bottom:1.1875rem;padding-left:2.25rem;font-size:1.25rem}#stacks_in_251_26 button.expand{padding-right:0;padding-left:0;width:100%}#stacks_in_251_26 button.right{float:right}#stacks_in_251_26 button.radius{border-radius:3px}#stacks_in_251_26 button.round{border-radius:500px}#stacks_in_251_26 .field{float:left}#stacks_in_251_26 .field.first_name{width:50%}#stacks_in_251_26 .field.last_name{width:50%}#stacks_in_251_26 .field.email{width:50%}#stacks_in_251_26 .field.custom{width:100%}#stacks_in_251_26 .field.customtwo{width:100%}#stacks_in_251_26 .field.human{width:50%}#stacks_in_251_26 .field.submit_button{width:100%}#stacks_in_251_26 input[type=text],#stacks_in_251_26 input[type=email]{width:calc(100% - 5px)}#stacks_in_251_26 form{width:100%;overflow:auto}#stacks_in_251_26 button.inline_input{height:2em;line-height:2em;font-size:0.82rem;padding-top:0;padding-bottom:0;border-top-left-radius:0;border-bottom-left-radius:0}#stacks_in_251_26 input.email.inline_input{border-top-right-radius:0;border-bottom-right-radius:0}

#stacks_in_251_28 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_251_27 {
	font-size: 75%;
}
#stacks_in_251_46>.s3_row {
	margin: 0 -10px;
}

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








  


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




	#stacks_in_251_46>.s3_row  {
		margin: -10px -10px;
	}
	#stacks_in_251_46>.s3_row>.s3_column {
		padding: 10px 10px;
		width:50%;
	}



}



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


	#stacks_in_251_46>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_251_46>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}





}




  
/*  IconThing — B3: Bigfoot Responsive by RapidWeaver Central  */

#iconThingstacks_in_251_29 {
/* 	-webkit-backface-visibility: hidden; */
}

#stacks_in_251_29 .iconthing  {
  	width: 50px;
  	height: 50px;
	text-align: center;
  	line-height:  50px;
	background-color: transparent !important;
  	background-color: #FFCE54;
  	%[if border: none;]%	
	border: 0px Solid #EEEEEE;
	%[endif]%	
		
	
  	-webkit-transition: all 0.5s ease;
  	   -moz-transition: all 0.5s ease;
  		-ms-transition: all 0.5s ease;
  			transition: all 0.5s ease;
		
}

#stacks_in_251_29 .icon-facebook {
  	color:  #FFFFFF;
  	font-size: 20px;
  	line-height:  50px;
}


#stacks_in_251_29 .icon-facebook:hover,
#stacks_in_251_29 .icon-facebook:link:hover {
  	color:  #CC9933;
}

#stacks_in_251_29  .iconthing:hover,
#stacks_in_251_29  .iconthing a:link:hover {
  	color:  #CC9933;
	
	-webkit-transform: rotate(360deg);
	   -moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
			transform: rotate(360deg);
  	-webkit-border-radius: 100%;
  	   -moz-border-radius: 100%;
  			border-radius: 100%;
		
}


	

/*  



#disklinkstacks_in_251_29  a:link,
#disklinkstacks_in_251_29  a:hover {
	display: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 30;	
}
*/

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
 [class^="icon-facebook"]:before, #stacks_in_251_29 [class*="icon-facebook"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: none !important;
  width: 1em;

  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  50px;

}
 
.icon-note:before { content: '\e83d'; } /* '' */
.icon-stackoverflow:before { content: '\e83c'; } /* '' */
.icon-music:before { content: '\e84a'; } /* '' */
.icon-search:before { content: '\e84b'; } /* '' */
.icon-flashlight:before { content: '\e84c'; } /* '' */
.icon-mail:before { content: '\e84d'; } /* '' */
.icon-heart:before { content: '\e84e'; } /* '' */
.icon-heart-empty:before { content: '\e84f'; } /* '' */
.icon-star:before { content: '\e850'; } /* '' */
.icon-star-empty:before { content: '\e851'; } /* '' */
.icon-user:before { content: '\e852'; } /* '' */
.icon-users:before { content: '\e853'; } /* '' */
.icon-user-add:before { content: '\e854'; } /* '' */
.icon-video:before { content: '\e855'; } /* '' */
.icon-picture:before { content: '\e856'; } /* '' */
.icon-camera:before { content: '\e848'; } /* '' */
.icon-layout:before { content: '\e845'; } /* '' */
.icon-menu:before { content: '\e844'; } /* '' */
.icon-check:before { content: '\e841'; } /* '' */
.icon-cancel:before { content: '\e83f'; } /* '' */
.icon-cancel-circled:before { content: '\e865'; } /* '' */
.icon-cancel-squared:before { content: '\e864'; } /* '' */
.icon-plus:before { content: '\e863'; } /* '' */
.icon-plus-circled:before { content: '\e862'; } /* '' */
.icon-plus-squared:before { content: '\e861'; } /* '' */
.icon-minus:before { content: '\e860'; } /* '' */
.icon-minus-circled:before { content: '\e85f'; } /* '' */
.icon-minus-squared:before { content: '\e85e'; } /* '' */
.icon-help:before { content: '\e85d'; } /* '' */
.icon-help-circled:before { content: '\e85c'; } /* '' */
.icon-info:before { content: '\e85b'; } /* '' */
.icon-info-circled:before { content: '\e85a'; } /* '' */
.icon-back:before { content: '\e859'; } /* '' */
.icon-home:before { content: '\e858'; } /* '' */
.icon-link:before { content: '\e857'; } /* '' */
.icon-attach:before { content: '\e847'; } /* '' */
.icon-lock:before { content: '\e846'; } /* '' */
.icon-lock-open:before { content: '\e843'; } /* '' */
.icon-eye:before { content: '\e842'; } /* '' */
.icon-tag:before { content: '\e840'; } /* '' */
.icon-bookmark:before { content: '\e866'; } /* '' */
.icon-bookmarks:before { content: '\e867'; } /* '' */
.icon-flag:before { content: '\e868'; } /* '' */
.icon-thumbs-up:before { content: '\e869'; } /* '' */
.icon-thumbs-down:before { content: '\e874'; } /* '' */
.icon-download:before { content: '\e877'; } /* '' */
.icon-upload:before { content: '\e878'; } /* '' */
.icon-upload-cloud:before { content: '\e87c'; } /* '' */
.icon-reply:before { content: '\e87d'; } /* '' */
.icon-reply-all:before { content: '\e883'; } /* '' */
.icon-forward:before { content: '\e886'; } /* '' */
.icon-quote:before { content: '\e887'; } /* '' */
.icon-code:before { content: '\e88c'; } /* '' */
.icon-export:before { content: '\e88d'; } /* '' */
.icon-pencil:before { content: '\e892'; } /* '' */
.icon-feather:before { content: '\e893'; } /* '' */
.icon-print-1:before { content: '\e898'; } /* '' */
.icon-retweet:before { content: '\e899'; } /* '' */
.icon-keyboard:before { content: '\e89e'; } /* '' */
.icon-comment:before { content: '\e89f'; } /* '' */
.icon-chat:before { content: '\e86a'; } /* '' */
.icon-bell:before { content: '\e871'; } /* '' */
.icon-attention:before { content: '\e86d'; } /* '' */
.icon-alert:before { content: '\e870'; } /* '' */
.icon-vcard:before { content: '\e873'; } /* '' */
.icon-address:before { content: '\e872'; } /* '' */
.icon-location:before { content: '\e879'; } /* '' */
.icon-map:before { content: '\e87e'; } /* '' */
.icon-direction:before { content: '\e87f'; } /* '' */
.icon-compass:before { content: '\e882'; } /* '' */
.icon-cup:before { content: '\e884'; } /* '' */
.icon-trash:before { content: '\e888'; } /* '' */
.icon-doc:before { content: '\e88b'; } /* '' */
.icon-docs:before { content: '\e88e'; } /* '' */
.icon-doc-landscape:before { content: '\e891'; } /* '' */
.icon-doc-text:before { content: '\e894'; } /* '' */
.icon-doc-text-inv:before { content: '\e897'; } /* '' */
.icon-newspaper:before { content: '\e89a'; } /* '' */
.icon-book-open:before { content: '\e89d'; } /* '' */
.icon-book:before { content: '\e8a0'; } /* '' */
.icon-folder:before { content: '\e86b'; } /* '' */
.icon-archive:before { content: '\e86c'; } /* '' */
.icon-box:before { content: '\e86e'; } /* '' */
.icon-rss-1:before { content: '\e86f'; } /* '' */
.icon-phone:before { content: '\e875'; } /* '' */
.icon-cog:before { content: '\e876'; } /* '' */
.icon-tools:before { content: '\e87b'; } /* '' */
.icon-share:before { content: '\e87a'; } /* '' */
.icon-shareable:before { content: '\e880'; } /* '' */
.icon-basket:before { content: '\e881'; } /* '' */
.icon-bag:before { content: '\e885'; } /* '' */
.icon-calendar-1:before { content: '\e889'; } /* '' */
.icon-login:before { content: '\e88a'; } /* '' */
.icon-logout:before { content: '\e88f'; } /* '' */
.icon-mic:before { content: '\e890'; } /* '' */
.icon-mute:before { content: '\e895'; } /* '' */
.icon-sound:before { content: '\e896'; } /* '' */
.icon-volume:before { content: '\e89b'; } /* '' */
.icon-clock:before { content: '\e89c'; } /* '' */
.icon-hourglass:before { content: '\e8a1'; } /* '' */
.icon-lamp:before { content: '\e8b5'; } /* '' */
.icon-light-down:before { content: '\e8b4'; } /* '' */
.icon-light-up:before { content: '\e8b3'; } /* '' */
.icon-adjust:before { content: '\e8b2'; } /* '' */
.icon-block:before { content: '\e8b1'; } /* '' */
.icon-resize-full:before { content: '\e8b0'; } /* '' */
.icon-resize-small:before { content: '\e8af'; } /* '' */
.icon-popup:before { content: '\e8ae'; } /* '' */
.icon-publish:before { content: '\e8ad'; } /* '' */
.icon-window:before { content: '\e8ac'; } /* '' */
.icon-arrow-combo:before { content: '\e8ab'; } /* '' */
.icon-down-circled:before { content: '\e8aa'; } /* '' */
.icon-left-circled:before { content: '\e8a9'; } /* '' */
.icon-right-circled:before { content: '\e8a8'; } /* '' */
.icon-up-circled:before { content: '\e8a7'; } /* '' */
.icon-down-open:before { content: '\e8a6'; } /* '' */
.icon-left-open:before { content: '\e8a5'; } /* '' */
.icon-right-open:before { content: '\e8a4'; } /* '' */
.icon-up-open:before { content: '\e8a3'; } /* '' */
.icon-down-open-mini:before { content: '\e8a2'; } /* '' */
.icon-left-open-mini:before { content: '\e8b6'; } /* '' */
.icon-right-open-mini:before { content: '\e8b7'; } /* '' */
.icon-up-open-mini:before { content: '\e8b8'; } /* '' */
.icon-down-open-big:before { content: '\e8b9'; } /* '' */
.icon-left-open-big:before { content: '\e8ba'; } /* '' */
.icon-right-open-big:before { content: '\e8bb'; } /* '' */
.icon-up-open-big:before { content: '\e8bc'; } /* '' */
.icon-down:before { content: '\e8bd'; } /* '' */
.icon-left:before { content: '\e8be'; } /* '' */
.icon-right:before { content: '\e8bf'; } /* '' */
.icon-up:before { content: '\e8c0'; } /* '' */
.icon-down-dir:before { content: '\e8c1'; } /* '' */
.icon-left-dir:before { content: '\e8c2'; } /* '' */
.icon-right-dir:before { content: '\e8c3'; } /* '' */
.icon-up-dir:before { content: '\e8c4'; } /* '' */
.icon-down-bold:before { content: '\e8c5'; } /* '' */
.icon-left-bold:before { content: '\e8c6'; } /* '' */
.icon-right-bold:before { content: '\e8c7'; } /* '' */
.icon-up-bold:before { content: '\e8c8'; } /* '' */
.icon-down-thin:before { content: '\e8c9'; } /* '' */
.icon-left-thin:before { content: '\e8dd'; } /* '' */
.icon-right-thin:before { content: '\e8dc'; } /* '' */
.icon-up-thin:before { content: '\e8db'; } /* '' */
.icon-ccw:before { content: '\e8da'; } /* '' */
.icon-cw:before { content: '\e8d9'; } /* '' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* '' */
.icon-level-down:before { content: '\e8d7'; } /* '' */
.icon-level-up:before { content: '\e8d6'; } /* '' */
.icon-shuffle:before { content: '\e8d5'; } /* '' */
.icon-loop:before { content: '\e8d4'; } /* '' */
.icon-switch:before { content: '\e8d3'; } /* '' */
.icon-play:before { content: '\e8d2'; } /* '' */
.icon-stop:before { content: '\e8d1'; } /* '' */
.icon-pause:before { content: '\e8d0'; } /* '' */
.icon-record:before { content: '\e8cf'; } /* '' */
.icon-to-end:before { content: '\e8ce'; } /* '' */
.icon-to-start:before { content: '\e8cd'; } /* '' */
.icon-fast-forward:before { content: '\e8cc'; } /* '' */
.icon-fast-backward:before { content: '\e8cb'; } /* '' */
.icon-progress-0:before { content: '\e8ca'; } /* '' */
.icon-progress-1:before { content: '\e8de'; } /* '' */
.icon-progress-2:before { content: '\e8df'; } /* '' */
.icon-progress-3:before { content: '\e8e0'; } /* '' */
.icon-target:before { content: '\e8e1'; } /* '' */
.icon-palette:before { content: '\e8e2'; } /* '' */
.icon-list:before { content: '\e8e3'; } /* '' */
.icon-list-add:before { content: '\e8e4'; } /* '' */
.icon-signal:before { content: '\e8e5'; } /* '' */
.icon-trophy:before { content: '\e8e6'; } /* '' */
.icon-battery:before { content: '\e8e7'; } /* '' */
.icon-back-in-time:before { content: '\e8e8'; } /* '' */
.icon-monitor:before { content: '\e8e9'; } /* '' */
.icon-note-beamed:before { content: '\e849'; } /* '' */
.icon-network:before { content: '\e8eb'; } /* '' */
.icon-cd:before { content: '\e8ec'; } /* '' */
.icon-inbox:before { content: '\e8ed'; } /* '' */
.icon-install:before { content: '\e8ee'; } /* '' */
.icon-globe:before { content: '\e8ef'; } /* '' */
.icon-cloud:before { content: '\e8f0'; } /* '' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* '' */
.icon-flash:before { content: '\e905'; } /* '' */
.icon-moon:before { content: '\e904'; } /* '' */
.icon-flight:before { content: '\e903'; } /* '' */
.icon-paper-plane:before { content: '\e902'; } /* '' */
.icon-leaf:before { content: '\e901'; } /* '' */
.icon-lifebuoy:before { content: '\e900'; } /* '' */
.icon-mouse:before { content: '\e8ff'; } /* '' */
.icon-briefcase:before { content: '\e8fe'; } /* '' */
.icon-suitcase:before { content: '\e8fd'; } /* '' */
.icon-dot:before { content: '\e8fb'; } /* '' */
.icon-dot-2:before { content: '\e8fc'; } /* '' */
.icon-dot-3:before { content: '\e8fa'; } /* '' */
.icon-brush:before { content: '\e8f9'; } /* '' */
.icon-magnet:before { content: '\e8f8'; } /* '' */
.icon-infinity:before { content: '\e8f7'; } /* '' */
.icon-erase:before { content: '\e8f6'; } /* '' */
.icon-chart-pie:before { content: '\e8f5'; } /* '' */
.icon-chart-line:before { content: '\e8f4'; } /* '' */
.icon-chart-bar:before { content: '\e8f3'; } /* '' */
.icon-chart-area:before { content: '\e8f2'; } /* '' */
.icon-tape:before { content: '\e906'; } /* '' */
.icon-graduation-cap:before { content: '\e907'; } /* '' */
.icon-language:before { content: '\e908'; } /* '' */
.icon-ticket:before { content: '\e909'; } /* '' */
.icon-water:before { content: '\e90a'; } /* '' */
.icon-droplet:before { content: '\e90b'; } /* '' */
.icon-air:before { content: '\e90c'; } /* '' */
.icon-credit-card:before { content: '\e90d'; } /* '' */
.icon-floppy:before { content: '\e90e'; } /* '' */
.icon-clipboard:before { content: '\e90f'; } /* '' */
.icon-megaphone:before { content: '\e910'; } /* '' */
.icon-database:before { content: '\e911'; } /* '' */
.icon-drive:before { content: '\e912'; } /* '' */
.icon-bucket:before { content: '\e913'; } /* '' */
.icon-thermometer:before { content: '\e914'; } /* '' */
.icon-key:before { content: '\e915'; } /* '' */
.icon-flow-cascade:before { content: '\e916'; } /* '' */
.icon-flow-branch:before { content: '\e917'; } /* '' */
.icon-flow-tree:before { content: '\e918'; } /* '' */
.icon-flow-line:before { content: '\e919'; } /* '' */
.icon-flow-parallel:before { content: '\e92d'; } /* '' */
.icon-rocket:before { content: '\e92c'; } /* '' */
.icon-gauge:before { content: '\e92b'; } /* '' */
.icon-traffic-cone:before { content: '\e92a'; } /* '' */
.icon-cc-1:before { content: '\e929'; } /* '' */
.icon-cc-by:before { content: '\e928'; } /* '' */
.icon-cc-nc:before { content: '\e927'; } /* '' */
.icon-cc-nc-eu:before { content: '\e926'; } /* '' */
.icon-cc-nc-jp:before { content: '\e925'; } /* '' */
.icon-cc-sa:before { content: '\e924'; } /* '' */
.icon-cc-nd:before { content: '\e923'; } /* '' */
.icon-cc-pd:before { content: '\e922'; } /* '' */
.icon-cc-zero:before { content: '\e921'; } /* '' */
.icon-cc-share:before { content: '\e920'; } /* '' */
.icon-cc-remix:before { content: '\e91f'; } /* '' */
.icon-github-1:before { content: '\e91e'; } /* '' */
.icon-github-circled-1:before { content: '\e91d'; } /* '' */
.icon-flickr-1:before { content: '\e91c'; } /* '' */
.icon-flickr-circled:before { content: '\e91b'; } /* '' */
.icon-vimeo-1:before { content: '\e91a'; } /* '' */
.icon-vimeo-circled:before { content: '\e92e'; } /* '' */
.icon-twitter-1:before { content: '\e92f'; } /* '' */
.icon-twitter-circled:before { content: '\e930'; } /* '' */
.icon-facebook-1:before { content: '\e931'; } /* '' */
.icon-facebook-circled:before { content: '\e932'; } /* '' */
.icon-facebook-squared:before { content: '\e933'; } /* '' */
.icon-gplus-1:before { content: '\e934'; } /* '' */
.icon-gplus-circled:before { content: '\e935'; } /* '' */
.icon-pinterest-1:before { content: '\e936'; } /* '' */
.icon-pinterest-circled:before { content: '\e937'; } /* '' */
.icon-tumblr-1:before { content: '\e938'; } /* '' */
.icon-tumblr-circled:before { content: '\e939'; } /* '' */
.icon-linkedin-1:before { content: '\e93a'; } /* '' */
.icon-linkedin-circled:before { content: '\e93b'; } /* '' */
.icon-dribbble-1:before { content: '\e93c'; } /* '' */
.icon-dribbble-circled:before { content: '\e93d'; } /* '' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* '' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* '' */
.icon-lastfm:before { content: '\e940'; } /* '' */
.icon-lastfm-circled:before { content: '\e941'; } /* '' */
.icon-rdio:before { content: '\e954'; } /* '' */
.icon-rdio-circled:before { content: '\e953'; } /* '' */
.icon-spotify:before { content: '\e952'; } /* '' */
.icon-qq:before { content: '\e951'; } /* '' */
.icon-instagram-1:before { content: '\e950'; } /* '' */
.icon-dropbox-1:before { content: '\e94f'; } /* '' */
.icon-evernote-1:before { content: '\e94e'; } /* '' */
.icon-flattr:before { content: '\e94d'; } /* '' */
.icon-skype-1:before { content: '\e94c'; } /* '' */
.icon-skype-circled:before { content: '\e94b'; } /* '' */
.icon-renren:before { content: '\e94a'; } /* '' */
.icon-sina-weibo:before { content: '\e949'; } /* '' */
.icon-paypal-1:before { content: '\e948'; } /* '' */
.icon-picasa:before { content: '\e947'; } /* '' */
.icon-soundcloud-1:before { content: '\e946'; } /* '' */
.icon-mixi:before { content: '\e945'; } /* '' */
.icon-behance:before { content: '\e944'; } /* '' */
.icon-google-circles:before { content: '\e943'; } /* '' */
.icon-vkontakte:before { content: '\e942'; } /* '' */
.icon-smashing:before { content: '\e955'; } /* '' */
.icon-sweden:before { content: '\e956'; } /* '' */
.icon-db-shape:before { content: '\e957'; } /* '' */
.icon-logo-db:before { content: '\e83e'; } /* '' */
.icon-paypal:before { content: '\e800'; } /* '' */
.icon-eventful:before { content: '\e801'; } /* '' */
.icon-smashmag:before { content: '\e802'; } /* '' */
.icon-gplus:before { content: '\e803'; } /* '' */
.icon-wikipedia:before { content: '\e804'; } /* '' */
.icon-calendar:before { content: '\e805'; } /* '' */
.icon-stumbleupon:before { content: '\e806'; } /* '' */
.icon-fivehundredpx:before { content: '\e807'; } /* '' */
.icon-pinterest:before { content: '\e808'; } /* '' */
.icon-w3c:before { content: '\e809'; } /* '' */
.icon-foursquare:before { content: '\e80a'; } /* '' */
.icon-html5:before { content: '\e80b'; } /* '' */
.icon-ie:before { content: '\e80c'; } /* '' */
.icon-call:before { content: '\e80d'; } /* '' */
.icon-digg:before { content: '\e80e'; } /* '' */
.icon-reddit:before { content: '\e80f'; } /* '' */
.icon-appstore:before { content: '\e810'; } /* '' */
.icon-blogger:before { content: '\e811'; } /* '' */
.icon-cc:before { content: '\e812'; } /* '' */
.icon-dribbble:before { content: '\e813'; } /* '' */
.icon-evernote:before { content: '\e814'; } /* '' */
.icon-flickr:before { content: '\e815'; } /* '' */
.icon-google:before { content: '\e816'; } /* '' */
.icon-instapaper:before { content: '\e817'; } /* '' */
.icon-weibo:before { content: '\e818'; } /* '' */
.icon-linkedin:before { content: '\e826'; } /* '' */
.icon-disqus:before { content: '\e825'; } /* '' */
.icon-rss:before { content: '\e824'; } /* '' */
.icon-skype:before { content: '\e823'; } /* '' */
.icon-twitter:before { content: '\e822'; } /* '' */
.icon-youtube:before { content: '\e821'; } /* '' */
.icon-vimeo:before { content: '\e820'; } /* '' */
.icon-windows:before { content: '\e81f'; } /* '' */
.icon-xing:before { content: '\e81e'; } /* '' */
.icon-yahoo:before { content: '\e81d'; } /* '' */
.icon-email:before { content: '\e81c'; } /* '' */
.icon-macstore:before { content: '\e81b'; } /* '' */
.icon-podcast:before { content: '\e81a'; } /* '' */
.icon-amazon:before { content: '\e819'; } /* '' */
.icon-cloudapp:before { content: '\e827'; } /* '' */
.icon-dropbox:before { content: '\e828'; } /* '' */
.icon-ebay:before { content: '\e829'; } /* '' */
.icon-facebook:before { content: '\e82a'; } /* '' */
.icon-github:before { content: '\e82b'; } /* '' */
.icon-github-circled:before { content: '\e82c'; } /* '' */
.icon-googleplay:before { content: '\e82d'; } /* '' */
.icon-itunes:before { content: '\e82e'; } /* '' */
.icon-gmail:before { content: '\e82f'; } /* '' */
.icon-soundcloud:before { content: '\e830'; } /* '' */
.icon-tumblr:before { content: '\e831'; } /* '' */
.icon-eventbrite:before { content: '\e83b'; } /* '' */
.icon-scribd:before { content: '\e83a'; } /* '' */
.icon-posterous:before { content: '\e839'; } /* '' */
.icon-stripe:before { content: '\e838'; } /* '' */
.icon-cart:before { content: '\e837'; } /* '' */
.icon-print:before { content: '\e836'; } /* '' */
.icon-instagram:before { content: '\e835'; } /* '' */
.icon-appnet:before { content: '\e834'; } /* '' */
.icon-buffer:before { content: '\e833'; } /* '' */
.icon-pocket:before { content: '\e832'; } /* '' */
.icon-mobile:before { content: '\e8ea'; } /* '' *//*  IconThing — B3: Bigfoot Responsive by RapidWeaver Central  */

#iconThingstacks_in_251_32 {
/* 	-webkit-backface-visibility: hidden; */
}

#stacks_in_251_32 .iconthing  {
  	width: 50px;
  	height: 50px;
	text-align: center;
  	line-height:  50px;
	background-color: transparent !important;
  	background-color: #FFCE54;
  	%[if border: none;]%	
	border: 0px Solid #EEEEEE;
	%[endif]%	
		
	
  	-webkit-transition: all 0.5s ease;
  	   -moz-transition: all 0.5s ease;
  		-ms-transition: all 0.5s ease;
  			transition: all 0.5s ease;
		
}

#stacks_in_251_32 .icon-youtube {
  	color:  #FFFFFF;
  	font-size: 20px;
  	line-height:  50px;
}


#stacks_in_251_32 .icon-youtube:hover,
#stacks_in_251_32 .icon-youtube:link:hover {
  	color:  #CC9933;
}

#stacks_in_251_32  .iconthing:hover,
#stacks_in_251_32  .iconthing a:link:hover {
  	color:  #CC9933;
	
	-webkit-transform: rotate(360deg);
	   -moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
			transform: rotate(360deg);
  	-webkit-border-radius: 100%;
  	   -moz-border-radius: 100%;
  			border-radius: 100%;
		
}


	

/*  



#disklinkstacks_in_251_32  a:link,
#disklinkstacks_in_251_32  a:hover {
	display: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 30;	
}
*/

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
 [class^="icon-youtube"]:before, #stacks_in_251_32 [class*="icon-youtube"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: none !important;
  width: 1em;

  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  50px;

}
 
.icon-note:before { content: '\e83d'; } /* '' */
.icon-stackoverflow:before { content: '\e83c'; } /* '' */
.icon-music:before { content: '\e84a'; } /* '' */
.icon-search:before { content: '\e84b'; } /* '' */
.icon-flashlight:before { content: '\e84c'; } /* '' */
.icon-mail:before { content: '\e84d'; } /* '' */
.icon-heart:before { content: '\e84e'; } /* '' */
.icon-heart-empty:before { content: '\e84f'; } /* '' */
.icon-star:before { content: '\e850'; } /* '' */
.icon-star-empty:before { content: '\e851'; } /* '' */
.icon-user:before { content: '\e852'; } /* '' */
.icon-users:before { content: '\e853'; } /* '' */
.icon-user-add:before { content: '\e854'; } /* '' */
.icon-video:before { content: '\e855'; } /* '' */
.icon-picture:before { content: '\e856'; } /* '' */
.icon-camera:before { content: '\e848'; } /* '' */
.icon-layout:before { content: '\e845'; } /* '' */
.icon-menu:before { content: '\e844'; } /* '' */
.icon-check:before { content: '\e841'; } /* '' */
.icon-cancel:before { content: '\e83f'; } /* '' */
.icon-cancel-circled:before { content: '\e865'; } /* '' */
.icon-cancel-squared:before { content: '\e864'; } /* '' */
.icon-plus:before { content: '\e863'; } /* '' */
.icon-plus-circled:before { content: '\e862'; } /* '' */
.icon-plus-squared:before { content: '\e861'; } /* '' */
.icon-minus:before { content: '\e860'; } /* '' */
.icon-minus-circled:before { content: '\e85f'; } /* '' */
.icon-minus-squared:before { content: '\e85e'; } /* '' */
.icon-help:before { content: '\e85d'; } /* '' */
.icon-help-circled:before { content: '\e85c'; } /* '' */
.icon-info:before { content: '\e85b'; } /* '' */
.icon-info-circled:before { content: '\e85a'; } /* '' */
.icon-back:before { content: '\e859'; } /* '' */
.icon-home:before { content: '\e858'; } /* '' */
.icon-link:before { content: '\e857'; } /* '' */
.icon-attach:before { content: '\e847'; } /* '' */
.icon-lock:before { content: '\e846'; } /* '' */
.icon-lock-open:before { content: '\e843'; } /* '' */
.icon-eye:before { content: '\e842'; } /* '' */
.icon-tag:before { content: '\e840'; } /* '' */
.icon-bookmark:before { content: '\e866'; } /* '' */
.icon-bookmarks:before { content: '\e867'; } /* '' */
.icon-flag:before { content: '\e868'; } /* '' */
.icon-thumbs-up:before { content: '\e869'; } /* '' */
.icon-thumbs-down:before { content: '\e874'; } /* '' */
.icon-download:before { content: '\e877'; } /* '' */
.icon-upload:before { content: '\e878'; } /* '' */
.icon-upload-cloud:before { content: '\e87c'; } /* '' */
.icon-reply:before { content: '\e87d'; } /* '' */
.icon-reply-all:before { content: '\e883'; } /* '' */
.icon-forward:before { content: '\e886'; } /* '' */
.icon-quote:before { content: '\e887'; } /* '' */
.icon-code:before { content: '\e88c'; } /* '' */
.icon-export:before { content: '\e88d'; } /* '' */
.icon-pencil:before { content: '\e892'; } /* '' */
.icon-feather:before { content: '\e893'; } /* '' */
.icon-print-1:before { content: '\e898'; } /* '' */
.icon-retweet:before { content: '\e899'; } /* '' */
.icon-keyboard:before { content: '\e89e'; } /* '' */
.icon-comment:before { content: '\e89f'; } /* '' */
.icon-chat:before { content: '\e86a'; } /* '' */
.icon-bell:before { content: '\e871'; } /* '' */
.icon-attention:before { content: '\e86d'; } /* '' */
.icon-alert:before { content: '\e870'; } /* '' */
.icon-vcard:before { content: '\e873'; } /* '' */
.icon-address:before { content: '\e872'; } /* '' */
.icon-location:before { content: '\e879'; } /* '' */
.icon-map:before { content: '\e87e'; } /* '' */
.icon-direction:before { content: '\e87f'; } /* '' */
.icon-compass:before { content: '\e882'; } /* '' */
.icon-cup:before { content: '\e884'; } /* '' */
.icon-trash:before { content: '\e888'; } /* '' */
.icon-doc:before { content: '\e88b'; } /* '' */
.icon-docs:before { content: '\e88e'; } /* '' */
.icon-doc-landscape:before { content: '\e891'; } /* '' */
.icon-doc-text:before { content: '\e894'; } /* '' */
.icon-doc-text-inv:before { content: '\e897'; } /* '' */
.icon-newspaper:before { content: '\e89a'; } /* '' */
.icon-book-open:before { content: '\e89d'; } /* '' */
.icon-book:before { content: '\e8a0'; } /* '' */
.icon-folder:before { content: '\e86b'; } /* '' */
.icon-archive:before { content: '\e86c'; } /* '' */
.icon-box:before { content: '\e86e'; } /* '' */
.icon-rss-1:before { content: '\e86f'; } /* '' */
.icon-phone:before { content: '\e875'; } /* '' */
.icon-cog:before { content: '\e876'; } /* '' */
.icon-tools:before { content: '\e87b'; } /* '' */
.icon-share:before { content: '\e87a'; } /* '' */
.icon-shareable:before { content: '\e880'; } /* '' */
.icon-basket:before { content: '\e881'; } /* '' */
.icon-bag:before { content: '\e885'; } /* '' */
.icon-calendar-1:before { content: '\e889'; } /* '' */
.icon-login:before { content: '\e88a'; } /* '' */
.icon-logout:before { content: '\e88f'; } /* '' */
.icon-mic:before { content: '\e890'; } /* '' */
.icon-mute:before { content: '\e895'; } /* '' */
.icon-sound:before { content: '\e896'; } /* '' */
.icon-volume:before { content: '\e89b'; } /* '' */
.icon-clock:before { content: '\e89c'; } /* '' */
.icon-hourglass:before { content: '\e8a1'; } /* '' */
.icon-lamp:before { content: '\e8b5'; } /* '' */
.icon-light-down:before { content: '\e8b4'; } /* '' */
.icon-light-up:before { content: '\e8b3'; } /* '' */
.icon-adjust:before { content: '\e8b2'; } /* '' */
.icon-block:before { content: '\e8b1'; } /* '' */
.icon-resize-full:before { content: '\e8b0'; } /* '' */
.icon-resize-small:before { content: '\e8af'; } /* '' */
.icon-popup:before { content: '\e8ae'; } /* '' */
.icon-publish:before { content: '\e8ad'; } /* '' */
.icon-window:before { content: '\e8ac'; } /* '' */
.icon-arrow-combo:before { content: '\e8ab'; } /* '' */
.icon-down-circled:before { content: '\e8aa'; } /* '' */
.icon-left-circled:before { content: '\e8a9'; } /* '' */
.icon-right-circled:before { content: '\e8a8'; } /* '' */
.icon-up-circled:before { content: '\e8a7'; } /* '' */
.icon-down-open:before { content: '\e8a6'; } /* '' */
.icon-left-open:before { content: '\e8a5'; } /* '' */
.icon-right-open:before { content: '\e8a4'; } /* '' */
.icon-up-open:before { content: '\e8a3'; } /* '' */
.icon-down-open-mini:before { content: '\e8a2'; } /* '' */
.icon-left-open-mini:before { content: '\e8b6'; } /* '' */
.icon-right-open-mini:before { content: '\e8b7'; } /* '' */
.icon-up-open-mini:before { content: '\e8b8'; } /* '' */
.icon-down-open-big:before { content: '\e8b9'; } /* '' */
.icon-left-open-big:before { content: '\e8ba'; } /* '' */
.icon-right-open-big:before { content: '\e8bb'; } /* '' */
.icon-up-open-big:before { content: '\e8bc'; } /* '' */
.icon-down:before { content: '\e8bd'; } /* '' */
.icon-left:before { content: '\e8be'; } /* '' */
.icon-right:before { content: '\e8bf'; } /* '' */
.icon-up:before { content: '\e8c0'; } /* '' */
.icon-down-dir:before { content: '\e8c1'; } /* '' */
.icon-left-dir:before { content: '\e8c2'; } /* '' */
.icon-right-dir:before { content: '\e8c3'; } /* '' */
.icon-up-dir:before { content: '\e8c4'; } /* '' */
.icon-down-bold:before { content: '\e8c5'; } /* '' */
.icon-left-bold:before { content: '\e8c6'; } /* '' */
.icon-right-bold:before { content: '\e8c7'; } /* '' */
.icon-up-bold:before { content: '\e8c8'; } /* '' */
.icon-down-thin:before { content: '\e8c9'; } /* '' */
.icon-left-thin:before { content: '\e8dd'; } /* '' */
.icon-right-thin:before { content: '\e8dc'; } /* '' */
.icon-up-thin:before { content: '\e8db'; } /* '' */
.icon-ccw:before { content: '\e8da'; } /* '' */
.icon-cw:before { content: '\e8d9'; } /* '' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* '' */
.icon-level-down:before { content: '\e8d7'; } /* '' */
.icon-level-up:before { content: '\e8d6'; } /* '' */
.icon-shuffle:before { content: '\e8d5'; } /* '' */
.icon-loop:before { content: '\e8d4'; } /* '' */
.icon-switch:before { content: '\e8d3'; } /* '' */
.icon-play:before { content: '\e8d2'; } /* '' */
.icon-stop:before { content: '\e8d1'; } /* '' */
.icon-pause:before { content: '\e8d0'; } /* '' */
.icon-record:before { content: '\e8cf'; } /* '' */
.icon-to-end:before { content: '\e8ce'; } /* '' */
.icon-to-start:before { content: '\e8cd'; } /* '' */
.icon-fast-forward:before { content: '\e8cc'; } /* '' */
.icon-fast-backward:before { content: '\e8cb'; } /* '' */
.icon-progress-0:before { content: '\e8ca'; } /* '' */
.icon-progress-1:before { content: '\e8de'; } /* '' */
.icon-progress-2:before { content: '\e8df'; } /* '' */
.icon-progress-3:before { content: '\e8e0'; } /* '' */
.icon-target:before { content: '\e8e1'; } /* '' */
.icon-palette:before { content: '\e8e2'; } /* '' */
.icon-list:before { content: '\e8e3'; } /* '' */
.icon-list-add:before { content: '\e8e4'; } /* '' */
.icon-signal:before { content: '\e8e5'; } /* '' */
.icon-trophy:before { content: '\e8e6'; } /* '' */
.icon-battery:before { content: '\e8e7'; } /* '' */
.icon-back-in-time:before { content: '\e8e8'; } /* '' */
.icon-monitor:before { content: '\e8e9'; } /* '' */
.icon-note-beamed:before { content: '\e849'; } /* '' */
.icon-network:before { content: '\e8eb'; } /* '' */
.icon-cd:before { content: '\e8ec'; } /* '' */
.icon-inbox:before { content: '\e8ed'; } /* '' */
.icon-install:before { content: '\e8ee'; } /* '' */
.icon-globe:before { content: '\e8ef'; } /* '' */
.icon-cloud:before { content: '\e8f0'; } /* '' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* '' */
.icon-flash:before { content: '\e905'; } /* '' */
.icon-moon:before { content: '\e904'; } /* '' */
.icon-flight:before { content: '\e903'; } /* '' */
.icon-paper-plane:before { content: '\e902'; } /* '' */
.icon-leaf:before { content: '\e901'; } /* '' */
.icon-lifebuoy:before { content: '\e900'; } /* '' */
.icon-mouse:before { content: '\e8ff'; } /* '' */
.icon-briefcase:before { content: '\e8fe'; } /* '' */
.icon-suitcase:before { content: '\e8fd'; } /* '' */
.icon-dot:before { content: '\e8fb'; } /* '' */
.icon-dot-2:before { content: '\e8fc'; } /* '' */
.icon-dot-3:before { content: '\e8fa'; } /* '' */
.icon-brush:before { content: '\e8f9'; } /* '' */
.icon-magnet:before { content: '\e8f8'; } /* '' */
.icon-infinity:before { content: '\e8f7'; } /* '' */
.icon-erase:before { content: '\e8f6'; } /* '' */
.icon-chart-pie:before { content: '\e8f5'; } /* '' */
.icon-chart-line:before { content: '\e8f4'; } /* '' */
.icon-chart-bar:before { content: '\e8f3'; } /* '' */
.icon-chart-area:before { content: '\e8f2'; } /* '' */
.icon-tape:before { content: '\e906'; } /* '' */
.icon-graduation-cap:before { content: '\e907'; } /* '' */
.icon-language:before { content: '\e908'; } /* '' */
.icon-ticket:before { content: '\e909'; } /* '' */
.icon-water:before { content: '\e90a'; } /* '' */
.icon-droplet:before { content: '\e90b'; } /* '' */
.icon-air:before { content: '\e90c'; } /* '' */
.icon-credit-card:before { content: '\e90d'; } /* '' */
.icon-floppy:before { content: '\e90e'; } /* '' */
.icon-clipboard:before { content: '\e90f'; } /* '' */
.icon-megaphone:before { content: '\e910'; } /* '' */
.icon-database:before { content: '\e911'; } /* '' */
.icon-drive:before { content: '\e912'; } /* '' */
.icon-bucket:before { content: '\e913'; } /* '' */
.icon-thermometer:before { content: '\e914'; } /* '' */
.icon-key:before { content: '\e915'; } /* '' */
.icon-flow-cascade:before { content: '\e916'; } /* '' */
.icon-flow-branch:before { content: '\e917'; } /* '' */
.icon-flow-tree:before { content: '\e918'; } /* '' */
.icon-flow-line:before { content: '\e919'; } /* '' */
.icon-flow-parallel:before { content: '\e92d'; } /* '' */
.icon-rocket:before { content: '\e92c'; } /* '' */
.icon-gauge:before { content: '\e92b'; } /* '' */
.icon-traffic-cone:before { content: '\e92a'; } /* '' */
.icon-cc-1:before { content: '\e929'; } /* '' */
.icon-cc-by:before { content: '\e928'; } /* '' */
.icon-cc-nc:before { content: '\e927'; } /* '' */
.icon-cc-nc-eu:before { content: '\e926'; } /* '' */
.icon-cc-nc-jp:before { content: '\e925'; } /* '' */
.icon-cc-sa:before { content: '\e924'; } /* '' */
.icon-cc-nd:before { content: '\e923'; } /* '' */
.icon-cc-pd:before { content: '\e922'; } /* '' */
.icon-cc-zero:before { content: '\e921'; } /* '' */
.icon-cc-share:before { content: '\e920'; } /* '' */
.icon-cc-remix:before { content: '\e91f'; } /* '' */
.icon-github-1:before { content: '\e91e'; } /* '' */
.icon-github-circled-1:before { content: '\e91d'; } /* '' */
.icon-flickr-1:before { content: '\e91c'; } /* '' */
.icon-flickr-circled:before { content: '\e91b'; } /* '' */
.icon-vimeo-1:before { content: '\e91a'; } /* '' */
.icon-vimeo-circled:before { content: '\e92e'; } /* '' */
.icon-twitter-1:before { content: '\e92f'; } /* '' */
.icon-twitter-circled:before { content: '\e930'; } /* '' */
.icon-facebook-1:before { content: '\e931'; } /* '' */
.icon-facebook-circled:before { content: '\e932'; } /* '' */
.icon-facebook-squared:before { content: '\e933'; } /* '' */
.icon-gplus-1:before { content: '\e934'; } /* '' */
.icon-gplus-circled:before { content: '\e935'; } /* '' */
.icon-pinterest-1:before { content: '\e936'; } /* '' */
.icon-pinterest-circled:before { content: '\e937'; } /* '' */
.icon-tumblr-1:before { content: '\e938'; } /* '' */
.icon-tumblr-circled:before { content: '\e939'; } /* '' */
.icon-linkedin-1:before { content: '\e93a'; } /* '' */
.icon-linkedin-circled:before { content: '\e93b'; } /* '' */
.icon-dribbble-1:before { content: '\e93c'; } /* '' */
.icon-dribbble-circled:before { content: '\e93d'; } /* '' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* '' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* '' */
.icon-lastfm:before { content: '\e940'; } /* '' */
.icon-lastfm-circled:before { content: '\e941'; } /* '' */
.icon-rdio:before { content: '\e954'; } /* '' */
.icon-rdio-circled:before { content: '\e953'; } /* '' */
.icon-spotify:before { content: '\e952'; } /* '' */
.icon-qq:before { content: '\e951'; } /* '' */
.icon-instagram-1:before { content: '\e950'; } /* '' */
.icon-dropbox-1:before { content: '\e94f'; } /* '' */
.icon-evernote-1:before { content: '\e94e'; } /* '' */
.icon-flattr:before { content: '\e94d'; } /* '' */
.icon-skype-1:before { content: '\e94c'; } /* '' */
.icon-skype-circled:before { content: '\e94b'; } /* '' */
.icon-renren:before { content: '\e94a'; } /* '' */
.icon-sina-weibo:before { content: '\e949'; } /* '' */
.icon-paypal-1:before { content: '\e948'; } /* '' */
.icon-picasa:before { content: '\e947'; } /* '' */
.icon-soundcloud-1:before { content: '\e946'; } /* '' */
.icon-mixi:before { content: '\e945'; } /* '' */
.icon-behance:before { content: '\e944'; } /* '' */
.icon-google-circles:before { content: '\e943'; } /* '' */
.icon-vkontakte:before { content: '\e942'; } /* '' */
.icon-smashing:before { content: '\e955'; } /* '' */
.icon-sweden:before { content: '\e956'; } /* '' */
.icon-db-shape:before { content: '\e957'; } /* '' */
.icon-logo-db:before { content: '\e83e'; } /* '' */
.icon-paypal:before { content: '\e800'; } /* '' */
.icon-eventful:before { content: '\e801'; } /* '' */
.icon-smashmag:before { content: '\e802'; } /* '' */
.icon-gplus:before { content: '\e803'; } /* '' */
.icon-wikipedia:before { content: '\e804'; } /* '' */
.icon-calendar:before { content: '\e805'; } /* '' */
.icon-stumbleupon:before { content: '\e806'; } /* '' */
.icon-fivehundredpx:before { content: '\e807'; } /* '' */
.icon-pinterest:before { content: '\e808'; } /* '' */
.icon-w3c:before { content: '\e809'; } /* '' */
.icon-foursquare:before { content: '\e80a'; } /* '' */
.icon-html5:before { content: '\e80b'; } /* '' */
.icon-ie:before { content: '\e80c'; } /* '' */
.icon-call:before { content: '\e80d'; } /* '' */
.icon-digg:before { content: '\e80e'; } /* '' */
.icon-reddit:before { content: '\e80f'; } /* '' */
.icon-appstore:before { content: '\e810'; } /* '' */
.icon-blogger:before { content: '\e811'; } /* '' */
.icon-cc:before { content: '\e812'; } /* '' */
.icon-dribbble:before { content: '\e813'; } /* '' */
.icon-evernote:before { content: '\e814'; } /* '' */
.icon-flickr:before { content: '\e815'; } /* '' */
.icon-google:before { content: '\e816'; } /* '' */
.icon-instapaper:before { content: '\e817'; } /* '' */
.icon-weibo:before { content: '\e818'; } /* '' */
.icon-linkedin:before { content: '\e826'; } /* '' */
.icon-disqus:before { content: '\e825'; } /* '' */
.icon-rss:before { content: '\e824'; } /* '' */
.icon-skype:before { content: '\e823'; } /* '' */
.icon-twitter:before { content: '\e822'; } /* '' */
.icon-youtube:before { content: '\e821'; } /* '' */
.icon-vimeo:before { content: '\e820'; } /* '' */
.icon-windows:before { content: '\e81f'; } /* '' */
.icon-xing:before { content: '\e81e'; } /* '' */
.icon-yahoo:before { content: '\e81d'; } /* '' */
.icon-email:before { content: '\e81c'; } /* '' */
.icon-macstore:before { content: '\e81b'; } /* '' */
.icon-podcast:before { content: '\e81a'; } /* '' */
.icon-amazon:before { content: '\e819'; } /* '' */
.icon-cloudapp:before { content: '\e827'; } /* '' */
.icon-dropbox:before { content: '\e828'; } /* '' */
.icon-ebay:before { content: '\e829'; } /* '' */
.icon-facebook:before { content: '\e82a'; } /* '' */
.icon-github:before { content: '\e82b'; } /* '' */
.icon-github-circled:before { content: '\e82c'; } /* '' */
.icon-googleplay:before { content: '\e82d'; } /* '' */
.icon-itunes:before { content: '\e82e'; } /* '' */
.icon-gmail:before { content: '\e82f'; } /* '' */
.icon-soundcloud:before { content: '\e830'; } /* '' */
.icon-tumblr:before { content: '\e831'; } /* '' */
.icon-eventbrite:before { content: '\e83b'; } /* '' */
.icon-scribd:before { content: '\e83a'; } /* '' */
.icon-posterous:before { content: '\e839'; } /* '' */
.icon-stripe:before { content: '\e838'; } /* '' */
.icon-cart:before { content: '\e837'; } /* '' */
.icon-print:before { content: '\e836'; } /* '' */
.icon-instagram:before { content: '\e835'; } /* '' */
.icon-appnet:before { content: '\e834'; } /* '' */
.icon-buffer:before { content: '\e833'; } /* '' */
.icon-pocket:before { content: '\e832'; } /* '' */
.icon-mobile:before { content: '\e8ea'; } /* '' *//*  IconThing — B3: Bigfoot Responsive by RapidWeaver Central  */

#iconThingstacks_in_251_34 {
/* 	-webkit-backface-visibility: hidden; */
}

#stacks_in_251_34 .iconthing  {
  	width: 50px;
  	height: 50px;
	text-align: center;
  	line-height:  50px;
	background-color: transparent !important;
  	background-color: #FFCE54;
  	%[if border: none;]%	
	border: 0px Solid #EEEEEE;
	%[endif]%	
		
	
  	-webkit-transition: all 0.5s ease;
  	   -moz-transition: all 0.5s ease;
  		-ms-transition: all 0.5s ease;
  			transition: all 0.5s ease;
		
}

#stacks_in_251_34 .icon-instagram {
  	color:  #FFFFFF;
  	font-size: 20px;
  	line-height:  50px;
}


#stacks_in_251_34 .icon-instagram:hover,
#stacks_in_251_34 .icon-instagram:link:hover {
  	color:  #CC9933;
}

#stacks_in_251_34  .iconthing:hover,
#stacks_in_251_34  .iconthing a:link:hover {
  	color:  #CC9933;
	
	-webkit-transform: rotate(360deg);
	   -moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
			transform: rotate(360deg);
  	-webkit-border-radius: 100%;
  	   -moz-border-radius: 100%;
  			border-radius: 100%;
		
}


	

/*  



#disklinkstacks_in_251_34  a:link,
#disklinkstacks_in_251_34  a:hover {
	display: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 30;	
}
*/

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
 [class^="icon-instagram"]:before, #stacks_in_251_34 [class*="icon-instagram"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: none !important;
  width: 1em;

  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  50px;

}
 
.icon-note:before { content: '\e83d'; } /* '' */
.icon-stackoverflow:before { content: '\e83c'; } /* '' */
.icon-music:before { content: '\e84a'; } /* '' */
.icon-search:before { content: '\e84b'; } /* '' */
.icon-flashlight:before { content: '\e84c'; } /* '' */
.icon-mail:before { content: '\e84d'; } /* '' */
.icon-heart:before { content: '\e84e'; } /* '' */
.icon-heart-empty:before { content: '\e84f'; } /* '' */
.icon-star:before { content: '\e850'; } /* '' */
.icon-star-empty:before { content: '\e851'; } /* '' */
.icon-user:before { content: '\e852'; } /* '' */
.icon-users:before { content: '\e853'; } /* '' */
.icon-user-add:before { content: '\e854'; } /* '' */
.icon-video:before { content: '\e855'; } /* '' */
.icon-picture:before { content: '\e856'; } /* '' */
.icon-camera:before { content: '\e848'; } /* '' */
.icon-layout:before { content: '\e845'; } /* '' */
.icon-menu:before { content: '\e844'; } /* '' */
.icon-check:before { content: '\e841'; } /* '' */
.icon-cancel:before { content: '\e83f'; } /* '' */
.icon-cancel-circled:before { content: '\e865'; } /* '' */
.icon-cancel-squared:before { content: '\e864'; } /* '' */
.icon-plus:before { content: '\e863'; } /* '' */
.icon-plus-circled:before { content: '\e862'; } /* '' */
.icon-plus-squared:before { content: '\e861'; } /* '' */
.icon-minus:before { content: '\e860'; } /* '' */
.icon-minus-circled:before { content: '\e85f'; } /* '' */
.icon-minus-squared:before { content: '\e85e'; } /* '' */
.icon-help:before { content: '\e85d'; } /* '' */
.icon-help-circled:before { content: '\e85c'; } /* '' */
.icon-info:before { content: '\e85b'; } /* '' */
.icon-info-circled:before { content: '\e85a'; } /* '' */
.icon-back:before { content: '\e859'; } /* '' */
.icon-home:before { content: '\e858'; } /* '' */
.icon-link:before { content: '\e857'; } /* '' */
.icon-attach:before { content: '\e847'; } /* '' */
.icon-lock:before { content: '\e846'; } /* '' */
.icon-lock-open:before { content: '\e843'; } /* '' */
.icon-eye:before { content: '\e842'; } /* '' */
.icon-tag:before { content: '\e840'; } /* '' */
.icon-bookmark:before { content: '\e866'; } /* '' */
.icon-bookmarks:before { content: '\e867'; } /* '' */
.icon-flag:before { content: '\e868'; } /* '' */
.icon-thumbs-up:before { content: '\e869'; } /* '' */
.icon-thumbs-down:before { content: '\e874'; } /* '' */
.icon-download:before { content: '\e877'; } /* '' */
.icon-upload:before { content: '\e878'; } /* '' */
.icon-upload-cloud:before { content: '\e87c'; } /* '' */
.icon-reply:before { content: '\e87d'; } /* '' */
.icon-reply-all:before { content: '\e883'; } /* '' */
.icon-forward:before { content: '\e886'; } /* '' */
.icon-quote:before { content: '\e887'; } /* '' */
.icon-code:before { content: '\e88c'; } /* '' */
.icon-export:before { content: '\e88d'; } /* '' */
.icon-pencil:before { content: '\e892'; } /* '' */
.icon-feather:before { content: '\e893'; } /* '' */
.icon-print-1:before { content: '\e898'; } /* '' */
.icon-retweet:before { content: '\e899'; } /* '' */
.icon-keyboard:before { content: '\e89e'; } /* '' */
.icon-comment:before { content: '\e89f'; } /* '' */
.icon-chat:before { content: '\e86a'; } /* '' */
.icon-bell:before { content: '\e871'; } /* '' */
.icon-attention:before { content: '\e86d'; } /* '' */
.icon-alert:before { content: '\e870'; } /* '' */
.icon-vcard:before { content: '\e873'; } /* '' */
.icon-address:before { content: '\e872'; } /* '' */
.icon-location:before { content: '\e879'; } /* '' */
.icon-map:before { content: '\e87e'; } /* '' */
.icon-direction:before { content: '\e87f'; } /* '' */
.icon-compass:before { content: '\e882'; } /* '' */
.icon-cup:before { content: '\e884'; } /* '' */
.icon-trash:before { content: '\e888'; } /* '' */
.icon-doc:before { content: '\e88b'; } /* '' */
.icon-docs:before { content: '\e88e'; } /* '' */
.icon-doc-landscape:before { content: '\e891'; } /* '' */
.icon-doc-text:before { content: '\e894'; } /* '' */
.icon-doc-text-inv:before { content: '\e897'; } /* '' */
.icon-newspaper:before { content: '\e89a'; } /* '' */
.icon-book-open:before { content: '\e89d'; } /* '' */
.icon-book:before { content: '\e8a0'; } /* '' */
.icon-folder:before { content: '\e86b'; } /* '' */
.icon-archive:before { content: '\e86c'; } /* '' */
.icon-box:before { content: '\e86e'; } /* '' */
.icon-rss-1:before { content: '\e86f'; } /* '' */
.icon-phone:before { content: '\e875'; } /* '' */
.icon-cog:before { content: '\e876'; } /* '' */
.icon-tools:before { content: '\e87b'; } /* '' */
.icon-share:before { content: '\e87a'; } /* '' */
.icon-shareable:before { content: '\e880'; } /* '' */
.icon-basket:before { content: '\e881'; } /* '' */
.icon-bag:before { content: '\e885'; } /* '' */
.icon-calendar-1:before { content: '\e889'; } /* '' */
.icon-login:before { content: '\e88a'; } /* '' */
.icon-logout:before { content: '\e88f'; } /* '' */
.icon-mic:before { content: '\e890'; } /* '' */
.icon-mute:before { content: '\e895'; } /* '' */
.icon-sound:before { content: '\e896'; } /* '' */
.icon-volume:before { content: '\e89b'; } /* '' */
.icon-clock:before { content: '\e89c'; } /* '' */
.icon-hourglass:before { content: '\e8a1'; } /* '' */
.icon-lamp:before { content: '\e8b5'; } /* '' */
.icon-light-down:before { content: '\e8b4'; } /* '' */
.icon-light-up:before { content: '\e8b3'; } /* '' */
.icon-adjust:before { content: '\e8b2'; } /* '' */
.icon-block:before { content: '\e8b1'; } /* '' */
.icon-resize-full:before { content: '\e8b0'; } /* '' */
.icon-resize-small:before { content: '\e8af'; } /* '' */
.icon-popup:before { content: '\e8ae'; } /* '' */
.icon-publish:before { content: '\e8ad'; } /* '' */
.icon-window:before { content: '\e8ac'; } /* '' */
.icon-arrow-combo:before { content: '\e8ab'; } /* '' */
.icon-down-circled:before { content: '\e8aa'; } /* '' */
.icon-left-circled:before { content: '\e8a9'; } /* '' */
.icon-right-circled:before { content: '\e8a8'; } /* '' */
.icon-up-circled:before { content: '\e8a7'; } /* '' */
.icon-down-open:before { content: '\e8a6'; } /* '' */
.icon-left-open:before { content: '\e8a5'; } /* '' */
.icon-right-open:before { content: '\e8a4'; } /* '' */
.icon-up-open:before { content: '\e8a3'; } /* '' */
.icon-down-open-mini:before { content: '\e8a2'; } /* '' */
.icon-left-open-mini:before { content: '\e8b6'; } /* '' */
.icon-right-open-mini:before { content: '\e8b7'; } /* '' */
.icon-up-open-mini:before { content: '\e8b8'; } /* '' */
.icon-down-open-big:before { content: '\e8b9'; } /* '' */
.icon-left-open-big:before { content: '\e8ba'; } /* '' */
.icon-right-open-big:before { content: '\e8bb'; } /* '' */
.icon-up-open-big:before { content: '\e8bc'; } /* '' */
.icon-down:before { content: '\e8bd'; } /* '' */
.icon-left:before { content: '\e8be'; } /* '' */
.icon-right:before { content: '\e8bf'; } /* '' */
.icon-up:before { content: '\e8c0'; } /* '' */
.icon-down-dir:before { content: '\e8c1'; } /* '' */
.icon-left-dir:before { content: '\e8c2'; } /* '' */
.icon-right-dir:before { content: '\e8c3'; } /* '' */
.icon-up-dir:before { content: '\e8c4'; } /* '' */
.icon-down-bold:before { content: '\e8c5'; } /* '' */
.icon-left-bold:before { content: '\e8c6'; } /* '' */
.icon-right-bold:before { content: '\e8c7'; } /* '' */
.icon-up-bold:before { content: '\e8c8'; } /* '' */
.icon-down-thin:before { content: '\e8c9'; } /* '' */
.icon-left-thin:before { content: '\e8dd'; } /* '' */
.icon-right-thin:before { content: '\e8dc'; } /* '' */
.icon-up-thin:before { content: '\e8db'; } /* '' */
.icon-ccw:before { content: '\e8da'; } /* '' */
.icon-cw:before { content: '\e8d9'; } /* '' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* '' */
.icon-level-down:before { content: '\e8d7'; } /* '' */
.icon-level-up:before { content: '\e8d6'; } /* '' */
.icon-shuffle:before { content: '\e8d5'; } /* '' */
.icon-loop:before { content: '\e8d4'; } /* '' */
.icon-switch:before { content: '\e8d3'; } /* '' */
.icon-play:before { content: '\e8d2'; } /* '' */
.icon-stop:before { content: '\e8d1'; } /* '' */
.icon-pause:before { content: '\e8d0'; } /* '' */
.icon-record:before { content: '\e8cf'; } /* '' */
.icon-to-end:before { content: '\e8ce'; } /* '' */
.icon-to-start:before { content: '\e8cd'; } /* '' */
.icon-fast-forward:before { content: '\e8cc'; } /* '' */
.icon-fast-backward:before { content: '\e8cb'; } /* '' */
.icon-progress-0:before { content: '\e8ca'; } /* '' */
.icon-progress-1:before { content: '\e8de'; } /* '' */
.icon-progress-2:before { content: '\e8df'; } /* '' */
.icon-progress-3:before { content: '\e8e0'; } /* '' */
.icon-target:before { content: '\e8e1'; } /* '' */
.icon-palette:before { content: '\e8e2'; } /* '' */
.icon-list:before { content: '\e8e3'; } /* '' */
.icon-list-add:before { content: '\e8e4'; } /* '' */
.icon-signal:before { content: '\e8e5'; } /* '' */
.icon-trophy:before { content: '\e8e6'; } /* '' */
.icon-battery:before { content: '\e8e7'; } /* '' */
.icon-back-in-time:before { content: '\e8e8'; } /* '' */
.icon-monitor:before { content: '\e8e9'; } /* '' */
.icon-note-beamed:before { content: '\e849'; } /* '' */
.icon-network:before { content: '\e8eb'; } /* '' */
.icon-cd:before { content: '\e8ec'; } /* '' */
.icon-inbox:before { content: '\e8ed'; } /* '' */
.icon-install:before { content: '\e8ee'; } /* '' */
.icon-globe:before { content: '\e8ef'; } /* '' */
.icon-cloud:before { content: '\e8f0'; } /* '' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* '' */
.icon-flash:before { content: '\e905'; } /* '' */
.icon-moon:before { content: '\e904'; } /* '' */
.icon-flight:before { content: '\e903'; } /* '' */
.icon-paper-plane:before { content: '\e902'; } /* '' */
.icon-leaf:before { content: '\e901'; } /* '' */
.icon-lifebuoy:before { content: '\e900'; } /* '' */
.icon-mouse:before { content: '\e8ff'; } /* '' */
.icon-briefcase:before { content: '\e8fe'; } /* '' */
.icon-suitcase:before { content: '\e8fd'; } /* '' */
.icon-dot:before { content: '\e8fb'; } /* '' */
.icon-dot-2:before { content: '\e8fc'; } /* '' */
.icon-dot-3:before { content: '\e8fa'; } /* '' */
.icon-brush:before { content: '\e8f9'; } /* '' */
.icon-magnet:before { content: '\e8f8'; } /* '' */
.icon-infinity:before { content: '\e8f7'; } /* '' */
.icon-erase:before { content: '\e8f6'; } /* '' */
.icon-chart-pie:before { content: '\e8f5'; } /* '' */
.icon-chart-line:before { content: '\e8f4'; } /* '' */
.icon-chart-bar:before { content: '\e8f3'; } /* '' */
.icon-chart-area:before { content: '\e8f2'; } /* '' */
.icon-tape:before { content: '\e906'; } /* '' */
.icon-graduation-cap:before { content: '\e907'; } /* '' */
.icon-language:before { content: '\e908'; } /* '' */
.icon-ticket:before { content: '\e909'; } /* '' */
.icon-water:before { content: '\e90a'; } /* '' */
.icon-droplet:before { content: '\e90b'; } /* '' */
.icon-air:before { content: '\e90c'; } /* '' */
.icon-credit-card:before { content: '\e90d'; } /* '' */
.icon-floppy:before { content: '\e90e'; } /* '' */
.icon-clipboard:before { content: '\e90f'; } /* '' */
.icon-megaphone:before { content: '\e910'; } /* '' */
.icon-database:before { content: '\e911'; } /* '' */
.icon-drive:before { content: '\e912'; } /* '' */
.icon-bucket:before { content: '\e913'; } /* '' */
.icon-thermometer:before { content: '\e914'; } /* '' */
.icon-key:before { content: '\e915'; } /* '' */
.icon-flow-cascade:before { content: '\e916'; } /* '' */
.icon-flow-branch:before { content: '\e917'; } /* '' */
.icon-flow-tree:before { content: '\e918'; } /* '' */
.icon-flow-line:before { content: '\e919'; } /* '' */
.icon-flow-parallel:before { content: '\e92d'; } /* '' */
.icon-rocket:before { content: '\e92c'; } /* '' */
.icon-gauge:before { content: '\e92b'; } /* '' */
.icon-traffic-cone:before { content: '\e92a'; } /* '' */
.icon-cc-1:before { content: '\e929'; } /* '' */
.icon-cc-by:before { content: '\e928'; } /* '' */
.icon-cc-nc:before { content: '\e927'; } /* '' */
.icon-cc-nc-eu:before { content: '\e926'; } /* '' */
.icon-cc-nc-jp:before { content: '\e925'; } /* '' */
.icon-cc-sa:before { content: '\e924'; } /* '' */
.icon-cc-nd:before { content: '\e923'; } /* '' */
.icon-cc-pd:before { content: '\e922'; } /* '' */
.icon-cc-zero:before { content: '\e921'; } /* '' */
.icon-cc-share:before { content: '\e920'; } /* '' */
.icon-cc-remix:before { content: '\e91f'; } /* '' */
.icon-github-1:before { content: '\e91e'; } /* '' */
.icon-github-circled-1:before { content: '\e91d'; } /* '' */
.icon-flickr-1:before { content: '\e91c'; } /* '' */
.icon-flickr-circled:before { content: '\e91b'; } /* '' */
.icon-vimeo-1:before { content: '\e91a'; } /* '' */
.icon-vimeo-circled:before { content: '\e92e'; } /* '' */
.icon-twitter-1:before { content: '\e92f'; } /* '' */
.icon-twitter-circled:before { content: '\e930'; } /* '' */
.icon-facebook-1:before { content: '\e931'; } /* '' */
.icon-facebook-circled:before { content: '\e932'; } /* '' */
.icon-facebook-squared:before { content: '\e933'; } /* '' */
.icon-gplus-1:before { content: '\e934'; } /* '' */
.icon-gplus-circled:before { content: '\e935'; } /* '' */
.icon-pinterest-1:before { content: '\e936'; } /* '' */
.icon-pinterest-circled:before { content: '\e937'; } /* '' */
.icon-tumblr-1:before { content: '\e938'; } /* '' */
.icon-tumblr-circled:before { content: '\e939'; } /* '' */
.icon-linkedin-1:before { content: '\e93a'; } /* '' */
.icon-linkedin-circled:before { content: '\e93b'; } /* '' */
.icon-dribbble-1:before { content: '\e93c'; } /* '' */
.icon-dribbble-circled:before { content: '\e93d'; } /* '' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* '' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* '' */
.icon-lastfm:before { content: '\e940'; } /* '' */
.icon-lastfm-circled:before { content: '\e941'; } /* '' */
.icon-rdio:before { content: '\e954'; } /* '' */
.icon-rdio-circled:before { content: '\e953'; } /* '' */
.icon-spotify:before { content: '\e952'; } /* '' */
.icon-qq:before { content: '\e951'; } /* '' */
.icon-instagram-1:before { content: '\e950'; } /* '' */
.icon-dropbox-1:before { content: '\e94f'; } /* '' */
.icon-evernote-1:before { content: '\e94e'; } /* '' */
.icon-flattr:before { content: '\e94d'; } /* '' */
.icon-skype-1:before { content: '\e94c'; } /* '' */
.icon-skype-circled:before { content: '\e94b'; } /* '' */
.icon-renren:before { content: '\e94a'; } /* '' */
.icon-sina-weibo:before { content: '\e949'; } /* '' */
.icon-paypal-1:before { content: '\e948'; } /* '' */
.icon-picasa:before { content: '\e947'; } /* '' */
.icon-soundcloud-1:before { content: '\e946'; } /* '' */
.icon-mixi:before { content: '\e945'; } /* '' */
.icon-behance:before { content: '\e944'; } /* '' */
.icon-google-circles:before { content: '\e943'; } /* '' */
.icon-vkontakte:before { content: '\e942'; } /* '' */
.icon-smashing:before { content: '\e955'; } /* '' */
.icon-sweden:before { content: '\e956'; } /* '' */
.icon-db-shape:before { content: '\e957'; } /* '' */
.icon-logo-db:before { content: '\e83e'; } /* '' */
.icon-paypal:before { content: '\e800'; } /* '' */
.icon-eventful:before { content: '\e801'; } /* '' */
.icon-smashmag:before { content: '\e802'; } /* '' */
.icon-gplus:before { content: '\e803'; } /* '' */
.icon-wikipedia:before { content: '\e804'; } /* '' */
.icon-calendar:before { content: '\e805'; } /* '' */
.icon-stumbleupon:before { content: '\e806'; } /* '' */
.icon-fivehundredpx:before { content: '\e807'; } /* '' */
.icon-pinterest:before { content: '\e808'; } /* '' */
.icon-w3c:before { content: '\e809'; } /* '' */
.icon-foursquare:before { content: '\e80a'; } /* '' */
.icon-html5:before { content: '\e80b'; } /* '' */
.icon-ie:before { content: '\e80c'; } /* '' */
.icon-call:before { content: '\e80d'; } /* '' */
.icon-digg:before { content: '\e80e'; } /* '' */
.icon-reddit:before { content: '\e80f'; } /* '' */
.icon-appstore:before { content: '\e810'; } /* '' */
.icon-blogger:before { content: '\e811'; } /* '' */
.icon-cc:before { content: '\e812'; } /* '' */
.icon-dribbble:before { content: '\e813'; } /* '' */
.icon-evernote:before { content: '\e814'; } /* '' */
.icon-flickr:before { content: '\e815'; } /* '' */
.icon-google:before { content: '\e816'; } /* '' */
.icon-instapaper:before { content: '\e817'; } /* '' */
.icon-weibo:before { content: '\e818'; } /* '' */
.icon-linkedin:before { content: '\e826'; } /* '' */
.icon-disqus:before { content: '\e825'; } /* '' */
.icon-rss:before { content: '\e824'; } /* '' */
.icon-skype:before { content: '\e823'; } /* '' */
.icon-twitter:before { content: '\e822'; } /* '' */
.icon-youtube:before { content: '\e821'; } /* '' */
.icon-vimeo:before { content: '\e820'; } /* '' */
.icon-windows:before { content: '\e81f'; } /* '' */
.icon-xing:before { content: '\e81e'; } /* '' */
.icon-yahoo:before { content: '\e81d'; } /* '' */
.icon-email:before { content: '\e81c'; } /* '' */
.icon-macstore:before { content: '\e81b'; } /* '' */
.icon-podcast:before { content: '\e81a'; } /* '' */
.icon-amazon:before { content: '\e819'; } /* '' */
.icon-cloudapp:before { content: '\e827'; } /* '' */
.icon-dropbox:before { content: '\e828'; } /* '' */
.icon-ebay:before { content: '\e829'; } /* '' */
.icon-facebook:before { content: '\e82a'; } /* '' */
.icon-github:before { content: '\e82b'; } /* '' */
.icon-github-circled:before { content: '\e82c'; } /* '' */
.icon-googleplay:before { content: '\e82d'; } /* '' */
.icon-itunes:before { content: '\e82e'; } /* '' */
.icon-gmail:before { content: '\e82f'; } /* '' */
.icon-soundcloud:before { content: '\e830'; } /* '' */
.icon-tumblr:before { content: '\e831'; } /* '' */
.icon-eventbrite:before { content: '\e83b'; } /* '' */
.icon-scribd:before { content: '\e83a'; } /* '' */
.icon-posterous:before { content: '\e839'; } /* '' */
.icon-stripe:before { content: '\e838'; } /* '' */
.icon-cart:before { content: '\e837'; } /* '' */
.icon-print:before { content: '\e836'; } /* '' */
.icon-instagram:before { content: '\e835'; } /* '' */
.icon-appnet:before { content: '\e834'; } /* '' */
.icon-buffer:before { content: '\e833'; } /* '' */
.icon-pocket:before { content: '\e832'; } /* '' */
.icon-mobile:before { content: '\e8ea'; } /* '' *//*  IconThing — B3: Bigfoot Responsive by RapidWeaver Central  */

#iconThingstacks_in_251_38 {
/* 	-webkit-backface-visibility: hidden; */
}

#stacks_in_251_38 .iconthing  {
  	width: 50px;
  	height: 50px;
	text-align: center;
  	line-height:  50px;
	background-color: transparent !important;
  	background-color: #FFCE54;
  	%[if border: none;]%	
	border: 0px Solid #EEEEEE;
	%[endif]%	
		
	
  	-webkit-transition: all 0.5s ease;
  	   -moz-transition: all 0.5s ease;
  		-ms-transition: all 0.5s ease;
  			transition: all 0.5s ease;
		
}

#stacks_in_251_38 .icon-mail {
  	color:  #FFFFFF;
  	font-size: 20px;
  	line-height:  50px;
}


#stacks_in_251_38 .icon-mail:hover,
#stacks_in_251_38 .icon-mail:link:hover {
  	color:  #CC9933;
}

#stacks_in_251_38  .iconthing:hover,
#stacks_in_251_38  .iconthing a:link:hover {
  	color:  #CC9933;
	
	-webkit-transform: rotate(360deg);
	   -moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
			transform: rotate(360deg);
  	-webkit-border-radius: 100%;
  	   -moz-border-radius: 100%;
  			border-radius: 100%;
		
}


	

/*  



#disklinkstacks_in_251_38  a:link,
#disklinkstacks_in_251_38  a:hover {
	display: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 30;	
}
*/

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
 [class^="icon-mail"]:before, #stacks_in_251_38 [class*="icon-mail"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: none !important;
  width: 1em;

  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  50px;

}
 
.icon-note:before { content: '\e83d'; } /* '' */
.icon-stackoverflow:before { content: '\e83c'; } /* '' */
.icon-music:before { content: '\e84a'; } /* '' */
.icon-search:before { content: '\e84b'; } /* '' */
.icon-flashlight:before { content: '\e84c'; } /* '' */
.icon-mail:before { content: '\e84d'; } /* '' */
.icon-heart:before { content: '\e84e'; } /* '' */
.icon-heart-empty:before { content: '\e84f'; } /* '' */
.icon-star:before { content: '\e850'; } /* '' */
.icon-star-empty:before { content: '\e851'; } /* '' */
.icon-user:before { content: '\e852'; } /* '' */
.icon-users:before { content: '\e853'; } /* '' */
.icon-user-add:before { content: '\e854'; } /* '' */
.icon-video:before { content: '\e855'; } /* '' */
.icon-picture:before { content: '\e856'; } /* '' */
.icon-camera:before { content: '\e848'; } /* '' */
.icon-layout:before { content: '\e845'; } /* '' */
.icon-menu:before { content: '\e844'; } /* '' */
.icon-check:before { content: '\e841'; } /* '' */
.icon-cancel:before { content: '\e83f'; } /* '' */
.icon-cancel-circled:before { content: '\e865'; } /* '' */
.icon-cancel-squared:before { content: '\e864'; } /* '' */
.icon-plus:before { content: '\e863'; } /* '' */
.icon-plus-circled:before { content: '\e862'; } /* '' */
.icon-plus-squared:before { content: '\e861'; } /* '' */
.icon-minus:before { content: '\e860'; } /* '' */
.icon-minus-circled:before { content: '\e85f'; } /* '' */
.icon-minus-squared:before { content: '\e85e'; } /* '' */
.icon-help:before { content: '\e85d'; } /* '' */
.icon-help-circled:before { content: '\e85c'; } /* '' */
.icon-info:before { content: '\e85b'; } /* '' */
.icon-info-circled:before { content: '\e85a'; } /* '' */
.icon-back:before { content: '\e859'; } /* '' */
.icon-home:before { content: '\e858'; } /* '' */
.icon-link:before { content: '\e857'; } /* '' */
.icon-attach:before { content: '\e847'; } /* '' */
.icon-lock:before { content: '\e846'; } /* '' */
.icon-lock-open:before { content: '\e843'; } /* '' */
.icon-eye:before { content: '\e842'; } /* '' */
.icon-tag:before { content: '\e840'; } /* '' */
.icon-bookmark:before { content: '\e866'; } /* '' */
.icon-bookmarks:before { content: '\e867'; } /* '' */
.icon-flag:before { content: '\e868'; } /* '' */
.icon-thumbs-up:before { content: '\e869'; } /* '' */
.icon-thumbs-down:before { content: '\e874'; } /* '' */
.icon-download:before { content: '\e877'; } /* '' */
.icon-upload:before { content: '\e878'; } /* '' */
.icon-upload-cloud:before { content: '\e87c'; } /* '' */
.icon-reply:before { content: '\e87d'; } /* '' */
.icon-reply-all:before { content: '\e883'; } /* '' */
.icon-forward:before { content: '\e886'; } /* '' */
.icon-quote:before { content: '\e887'; } /* '' */
.icon-code:before { content: '\e88c'; } /* '' */
.icon-export:before { content: '\e88d'; } /* '' */
.icon-pencil:before { content: '\e892'; } /* '' */
.icon-feather:before { content: '\e893'; } /* '' */
.icon-print-1:before { content: '\e898'; } /* '' */
.icon-retweet:before { content: '\e899'; } /* '' */
.icon-keyboard:before { content: '\e89e'; } /* '' */
.icon-comment:before { content: '\e89f'; } /* '' */
.icon-chat:before { content: '\e86a'; } /* '' */
.icon-bell:before { content: '\e871'; } /* '' */
.icon-attention:before { content: '\e86d'; } /* '' */
.icon-alert:before { content: '\e870'; } /* '' */
.icon-vcard:before { content: '\e873'; } /* '' */
.icon-address:before { content: '\e872'; } /* '' */
.icon-location:before { content: '\e879'; } /* '' */
.icon-map:before { content: '\e87e'; } /* '' */
.icon-direction:before { content: '\e87f'; } /* '' */
.icon-compass:before { content: '\e882'; } /* '' */
.icon-cup:before { content: '\e884'; } /* '' */
.icon-trash:before { content: '\e888'; } /* '' */
.icon-doc:before { content: '\e88b'; } /* '' */
.icon-docs:before { content: '\e88e'; } /* '' */
.icon-doc-landscape:before { content: '\e891'; } /* '' */
.icon-doc-text:before { content: '\e894'; } /* '' */
.icon-doc-text-inv:before { content: '\e897'; } /* '' */
.icon-newspaper:before { content: '\e89a'; } /* '' */
.icon-book-open:before { content: '\e89d'; } /* '' */
.icon-book:before { content: '\e8a0'; } /* '' */
.icon-folder:before { content: '\e86b'; } /* '' */
.icon-archive:before { content: '\e86c'; } /* '' */
.icon-box:before { content: '\e86e'; } /* '' */
.icon-rss-1:before { content: '\e86f'; } /* '' */
.icon-phone:before { content: '\e875'; } /* '' */
.icon-cog:before { content: '\e876'; } /* '' */
.icon-tools:before { content: '\e87b'; } /* '' */
.icon-share:before { content: '\e87a'; } /* '' */
.icon-shareable:before { content: '\e880'; } /* '' */
.icon-basket:before { content: '\e881'; } /* '' */
.icon-bag:before { content: '\e885'; } /* '' */
.icon-calendar-1:before { content: '\e889'; } /* '' */
.icon-login:before { content: '\e88a'; } /* '' */
.icon-logout:before { content: '\e88f'; } /* '' */
.icon-mic:before { content: '\e890'; } /* '' */
.icon-mute:before { content: '\e895'; } /* '' */
.icon-sound:before { content: '\e896'; } /* '' */
.icon-volume:before { content: '\e89b'; } /* '' */
.icon-clock:before { content: '\e89c'; } /* '' */
.icon-hourglass:before { content: '\e8a1'; } /* '' */
.icon-lamp:before { content: '\e8b5'; } /* '' */
.icon-light-down:before { content: '\e8b4'; } /* '' */
.icon-light-up:before { content: '\e8b3'; } /* '' */
.icon-adjust:before { content: '\e8b2'; } /* '' */
.icon-block:before { content: '\e8b1'; } /* '' */
.icon-resize-full:before { content: '\e8b0'; } /* '' */
.icon-resize-small:before { content: '\e8af'; } /* '' */
.icon-popup:before { content: '\e8ae'; } /* '' */
.icon-publish:before { content: '\e8ad'; } /* '' */
.icon-window:before { content: '\e8ac'; } /* '' */
.icon-arrow-combo:before { content: '\e8ab'; } /* '' */
.icon-down-circled:before { content: '\e8aa'; } /* '' */
.icon-left-circled:before { content: '\e8a9'; } /* '' */
.icon-right-circled:before { content: '\e8a8'; } /* '' */
.icon-up-circled:before { content: '\e8a7'; } /* '' */
.icon-down-open:before { content: '\e8a6'; } /* '' */
.icon-left-open:before { content: '\e8a5'; } /* '' */
.icon-right-open:before { content: '\e8a4'; } /* '' */
.icon-up-open:before { content: '\e8a3'; } /* '' */
.icon-down-open-mini:before { content: '\e8a2'; } /* '' */
.icon-left-open-mini:before { content: '\e8b6'; } /* '' */
.icon-right-open-mini:before { content: '\e8b7'; } /* '' */
.icon-up-open-mini:before { content: '\e8b8'; } /* '' */
.icon-down-open-big:before { content: '\e8b9'; } /* '' */
.icon-left-open-big:before { content: '\e8ba'; } /* '' */
.icon-right-open-big:before { content: '\e8bb'; } /* '' */
.icon-up-open-big:before { content: '\e8bc'; } /* '' */
.icon-down:before { content: '\e8bd'; } /* '' */
.icon-left:before { content: '\e8be'; } /* '' */
.icon-right:before { content: '\e8bf'; } /* '' */
.icon-up:before { content: '\e8c0'; } /* '' */
.icon-down-dir:before { content: '\e8c1'; } /* '' */
.icon-left-dir:before { content: '\e8c2'; } /* '' */
.icon-right-dir:before { content: '\e8c3'; } /* '' */
.icon-up-dir:before { content: '\e8c4'; } /* '' */
.icon-down-bold:before { content: '\e8c5'; } /* '' */
.icon-left-bold:before { content: '\e8c6'; } /* '' */
.icon-right-bold:before { content: '\e8c7'; } /* '' */
.icon-up-bold:before { content: '\e8c8'; } /* '' */
.icon-down-thin:before { content: '\e8c9'; } /* '' */
.icon-left-thin:before { content: '\e8dd'; } /* '' */
.icon-right-thin:before { content: '\e8dc'; } /* '' */
.icon-up-thin:before { content: '\e8db'; } /* '' */
.icon-ccw:before { content: '\e8da'; } /* '' */
.icon-cw:before { content: '\e8d9'; } /* '' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* '' */
.icon-level-down:before { content: '\e8d7'; } /* '' */
.icon-level-up:before { content: '\e8d6'; } /* '' */
.icon-shuffle:before { content: '\e8d5'; } /* '' */
.icon-loop:before { content: '\e8d4'; } /* '' */
.icon-switch:before { content: '\e8d3'; } /* '' */
.icon-play:before { content: '\e8d2'; } /* '' */
.icon-stop:before { content: '\e8d1'; } /* '' */
.icon-pause:before { content: '\e8d0'; } /* '' */
.icon-record:before { content: '\e8cf'; } /* '' */
.icon-to-end:before { content: '\e8ce'; } /* '' */
.icon-to-start:before { content: '\e8cd'; } /* '' */
.icon-fast-forward:before { content: '\e8cc'; } /* '' */
.icon-fast-backward:before { content: '\e8cb'; } /* '' */
.icon-progress-0:before { content: '\e8ca'; } /* '' */
.icon-progress-1:before { content: '\e8de'; } /* '' */
.icon-progress-2:before { content: '\e8df'; } /* '' */
.icon-progress-3:before { content: '\e8e0'; } /* '' */
.icon-target:before { content: '\e8e1'; } /* '' */
.icon-palette:before { content: '\e8e2'; } /* '' */
.icon-list:before { content: '\e8e3'; } /* '' */
.icon-list-add:before { content: '\e8e4'; } /* '' */
.icon-signal:before { content: '\e8e5'; } /* '' */
.icon-trophy:before { content: '\e8e6'; } /* '' */
.icon-battery:before { content: '\e8e7'; } /* '' */
.icon-back-in-time:before { content: '\e8e8'; } /* '' */
.icon-monitor:before { content: '\e8e9'; } /* '' */
.icon-note-beamed:before { content: '\e849'; } /* '' */
.icon-network:before { content: '\e8eb'; } /* '' */
.icon-cd:before { content: '\e8ec'; } /* '' */
.icon-inbox:before { content: '\e8ed'; } /* '' */
.icon-install:before { content: '\e8ee'; } /* '' */
.icon-globe:before { content: '\e8ef'; } /* '' */
.icon-cloud:before { content: '\e8f0'; } /* '' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* '' */
.icon-flash:before { content: '\e905'; } /* '' */
.icon-moon:before { content: '\e904'; } /* '' */
.icon-flight:before { content: '\e903'; } /* '' */
.icon-paper-plane:before { content: '\e902'; } /* '' */
.icon-leaf:before { content: '\e901'; } /* '' */
.icon-lifebuoy:before { content: '\e900'; } /* '' */
.icon-mouse:before { content: '\e8ff'; } /* '' */
.icon-briefcase:before { content: '\e8fe'; } /* '' */
.icon-suitcase:before { content: '\e8fd'; } /* '' */
.icon-dot:before { content: '\e8fb'; } /* '' */
.icon-dot-2:before { content: '\e8fc'; } /* '' */
.icon-dot-3:before { content: '\e8fa'; } /* '' */
.icon-brush:before { content: '\e8f9'; } /* '' */
.icon-magnet:before { content: '\e8f8'; } /* '' */
.icon-infinity:before { content: '\e8f7'; } /* '' */
.icon-erase:before { content: '\e8f6'; } /* '' */
.icon-chart-pie:before { content: '\e8f5'; } /* '' */
.icon-chart-line:before { content: '\e8f4'; } /* '' */
.icon-chart-bar:before { content: '\e8f3'; } /* '' */
.icon-chart-area:before { content: '\e8f2'; } /* '' */
.icon-tape:before { content: '\e906'; } /* '' */
.icon-graduation-cap:before { content: '\e907'; } /* '' */
.icon-language:before { content: '\e908'; } /* '' */
.icon-ticket:before { content: '\e909'; } /* '' */
.icon-water:before { content: '\e90a'; } /* '' */
.icon-droplet:before { content: '\e90b'; } /* '' */
.icon-air:before { content: '\e90c'; } /* '' */
.icon-credit-card:before { content: '\e90d'; } /* '' */
.icon-floppy:before { content: '\e90e'; } /* '' */
.icon-clipboard:before { content: '\e90f'; } /* '' */
.icon-megaphone:before { content: '\e910'; } /* '' */
.icon-database:before { content: '\e911'; } /* '' */
.icon-drive:before { content: '\e912'; } /* '' */
.icon-bucket:before { content: '\e913'; } /* '' */
.icon-thermometer:before { content: '\e914'; } /* '' */
.icon-key:before { content: '\e915'; } /* '' */
.icon-flow-cascade:before { content: '\e916'; } /* '' */
.icon-flow-branch:before { content: '\e917'; } /* '' */
.icon-flow-tree:before { content: '\e918'; } /* '' */
.icon-flow-line:before { content: '\e919'; } /* '' */
.icon-flow-parallel:before { content: '\e92d'; } /* '' */
.icon-rocket:before { content: '\e92c'; } /* '' */
.icon-gauge:before { content: '\e92b'; } /* '' */
.icon-traffic-cone:before { content: '\e92a'; } /* '' */
.icon-cc-1:before { content: '\e929'; } /* '' */
.icon-cc-by:before { content: '\e928'; } /* '' */
.icon-cc-nc:before { content: '\e927'; } /* '' */
.icon-cc-nc-eu:before { content: '\e926'; } /* '' */
.icon-cc-nc-jp:before { content: '\e925'; } /* '' */
.icon-cc-sa:before { content: '\e924'; } /* '' */
.icon-cc-nd:before { content: '\e923'; } /* '' */
.icon-cc-pd:before { content: '\e922'; } /* '' */
.icon-cc-zero:before { content: '\e921'; } /* '' */
.icon-cc-share:before { content: '\e920'; } /* '' */
.icon-cc-remix:before { content: '\e91f'; } /* '' */
.icon-github-1:before { content: '\e91e'; } /* '' */
.icon-github-circled-1:before { content: '\e91d'; } /* '' */
.icon-flickr-1:before { content: '\e91c'; } /* '' */
.icon-flickr-circled:before { content: '\e91b'; } /* '' */
.icon-vimeo-1:before { content: '\e91a'; } /* '' */
.icon-vimeo-circled:before { content: '\e92e'; } /* '' */
.icon-twitter-1:before { content: '\e92f'; } /* '' */
.icon-twitter-circled:before { content: '\e930'; } /* '' */
.icon-facebook-1:before { content: '\e931'; } /* '' */
.icon-facebook-circled:before { content: '\e932'; } /* '' */
.icon-facebook-squared:before { content: '\e933'; } /* '' */
.icon-gplus-1:before { content: '\e934'; } /* '' */
.icon-gplus-circled:before { content: '\e935'; } /* '' */
.icon-pinterest-1:before { content: '\e936'; } /* '' */
.icon-pinterest-circled:before { content: '\e937'; } /* '' */
.icon-tumblr-1:before { content: '\e938'; } /* '' */
.icon-tumblr-circled:before { content: '\e939'; } /* '' */
.icon-linkedin-1:before { content: '\e93a'; } /* '' */
.icon-linkedin-circled:before { content: '\e93b'; } /* '' */
.icon-dribbble-1:before { content: '\e93c'; } /* '' */
.icon-dribbble-circled:before { content: '\e93d'; } /* '' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* '' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* '' */
.icon-lastfm:before { content: '\e940'; } /* '' */
.icon-lastfm-circled:before { content: '\e941'; } /* '' */
.icon-rdio:before { content: '\e954'; } /* '' */
.icon-rdio-circled:before { content: '\e953'; } /* '' */
.icon-spotify:before { content: '\e952'; } /* '' */
.icon-qq:before { content: '\e951'; } /* '' */
.icon-instagram-1:before { content: '\e950'; } /* '' */
.icon-dropbox-1:before { content: '\e94f'; } /* '' */
.icon-evernote-1:before { content: '\e94e'; } /* '' */
.icon-flattr:before { content: '\e94d'; } /* '' */
.icon-skype-1:before { content: '\e94c'; } /* '' */
.icon-skype-circled:before { content: '\e94b'; } /* '' */
.icon-renren:before { content: '\e94a'; } /* '' */
.icon-sina-weibo:before { content: '\e949'; } /* '' */
.icon-paypal-1:before { content: '\e948'; } /* '' */
.icon-picasa:before { content: '\e947'; } /* '' */
.icon-soundcloud-1:before { content: '\e946'; } /* '' */
.icon-mixi:before { content: '\e945'; } /* '' */
.icon-behance:before { content: '\e944'; } /* '' */
.icon-google-circles:before { content: '\e943'; } /* '' */
.icon-vkontakte:before { content: '\e942'; } /* '' */
.icon-smashing:before { content: '\e955'; } /* '' */
.icon-sweden:before { content: '\e956'; } /* '' */
.icon-db-shape:before { content: '\e957'; } /* '' */
.icon-logo-db:before { content: '\e83e'; } /* '' */
.icon-paypal:before { content: '\e800'; } /* '' */
.icon-eventful:before { content: '\e801'; } /* '' */
.icon-smashmag:before { content: '\e802'; } /* '' */
.icon-gplus:before { content: '\e803'; } /* '' */
.icon-wikipedia:before { content: '\e804'; } /* '' */
.icon-calendar:before { content: '\e805'; } /* '' */
.icon-stumbleupon:before { content: '\e806'; } /* '' */
.icon-fivehundredpx:before { content: '\e807'; } /* '' */
.icon-pinterest:before { content: '\e808'; } /* '' */
.icon-w3c:before { content: '\e809'; } /* '' */
.icon-foursquare:before { content: '\e80a'; } /* '' */
.icon-html5:before { content: '\e80b'; } /* '' */
.icon-ie:before { content: '\e80c'; } /* '' */
.icon-call:before { content: '\e80d'; } /* '' */
.icon-digg:before { content: '\e80e'; } /* '' */
.icon-reddit:before { content: '\e80f'; } /* '' */
.icon-appstore:before { content: '\e810'; } /* '' */
.icon-blogger:before { content: '\e811'; } /* '' */
.icon-cc:before { content: '\e812'; } /* '' */
.icon-dribbble:before { content: '\e813'; } /* '' */
.icon-evernote:before { content: '\e814'; } /* '' */
.icon-flickr:before { content: '\e815'; } /* '' */
.icon-google:before { content: '\e816'; } /* '' */
.icon-instapaper:before { content: '\e817'; } /* '' */
.icon-weibo:before { content: '\e818'; } /* '' */
.icon-linkedin:before { content: '\e826'; } /* '' */
.icon-disqus:before { content: '\e825'; } /* '' */
.icon-rss:before { content: '\e824'; } /* '' */
.icon-skype:before { content: '\e823'; } /* '' */
.icon-twitter:before { content: '\e822'; } /* '' */
.icon-youtube:before { content: '\e821'; } /* '' */
.icon-vimeo:before { content: '\e820'; } /* '' */
.icon-windows:before { content: '\e81f'; } /* '' */
.icon-xing:before { content: '\e81e'; } /* '' */
.icon-yahoo:before { content: '\e81d'; } /* '' */
.icon-email:before { content: '\e81c'; } /* '' */
.icon-macstore:before { content: '\e81b'; } /* '' */
.icon-podcast:before { content: '\e81a'; } /* '' */
.icon-amazon:before { content: '\e819'; } /* '' */
.icon-cloudapp:before { content: '\e827'; } /* '' */
.icon-dropbox:before { content: '\e828'; } /* '' */
.icon-ebay:before { content: '\e829'; } /* '' */
.icon-facebook:before { content: '\e82a'; } /* '' */
.icon-github:before { content: '\e82b'; } /* '' */
.icon-github-circled:before { content: '\e82c'; } /* '' */
.icon-googleplay:before { content: '\e82d'; } /* '' */
.icon-itunes:before { content: '\e82e'; } /* '' */
.icon-gmail:before { content: '\e82f'; } /* '' */
.icon-soundcloud:before { content: '\e830'; } /* '' */
.icon-tumblr:before { content: '\e831'; } /* '' */
.icon-eventbrite:before { content: '\e83b'; } /* '' */
.icon-scribd:before { content: '\e83a'; } /* '' */
.icon-posterous:before { content: '\e839'; } /* '' */
.icon-stripe:before { content: '\e838'; } /* '' */
.icon-cart:before { content: '\e837'; } /* '' */
.icon-print:before { content: '\e836'; } /* '' */
.icon-instagram:before { content: '\e835'; } /* '' */
.icon-appnet:before { content: '\e834'; } /* '' */
.icon-buffer:before { content: '\e833'; } /* '' */
.icon-pocket:before { content: '\e832'; } /* '' */
.icon-mobile:before { content: '\e8ea'; } /* '' */