/****** FILE: themes/youngprofessionals/css/libs/animate.css *****/
@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.
*/

.first:hover > .second {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
}

.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 bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes 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 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);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;

  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes 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);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes 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);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -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 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;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes 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 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;
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes 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 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;
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes 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 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;
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes 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 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;
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes 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 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;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes 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 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;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes 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 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;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes 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 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;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes 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 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;
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/****** FILE: themes/youngprofessionals/css/libs/bootstrap.css *****/
/*!
 * Bootstrap v3.0.0
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 *//*! normalize.css v2.1.0 | MIT License | git.io/normalize */article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block
}
audio, canvas, video {
	display: inline-block
}
audio:not([controls]) {
	display: none;
	height: 0
}
[hidden] {
display:none
}
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%
}
body {
	margin: 0
}
a:focus {
	outline: thin dotted
}
a:active, a:hover {
	outline: 0
}
h1 {
	margin: .67em 0;
	font-size: 2em
}
abbr[title] {
	border-bottom: 1px dotted
}
b, strong {
	font-weight: bold
}
dfn {
	font-style: italic
}
hr {
	height: 0;
	-moz-box-sizing: content-box;
	box-sizing: content-box
}
mark {
	color: #000;
	background: #ff0
}
code, kbd, pre, samp {
	font-family: monospace, serif;
	font-size: 1em
}
pre {
	white-space: pre-wrap
}
q {
	quotes: "\201C" "\201D" "\2018" "\2019"
}
small {
	font-size: 80%
}
sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline
}
sup {
	top: -0.5em
}
sub {
	bottom: -0.25em
}
img {
	border: 0
}
svg:not(:root) {
	overflow: hidden
}
figure {
	margin: 0
}
fieldset {
	padding: .35em .625em .75em;
	margin: 0 2px;
	border: 1px solid #c0c0c0
}
legend {
	padding: 0;
	border: 0
}
button, input, select, textarea {
	margin: 0;
	font-family: inherit;
	font-size: 100%
}
button, input {
	line-height: normal
}
button, select {
	text-transform: none
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button
}
button[disabled], html input[disabled] {
	cursor: default
}
input[type="checkbox"], input[type="radio"] {
	padding: 0;
	box-sizing: border-box
}
input[type="search"] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: textfield
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
-webkit-appearance:none
}
button::-moz-focus-inner, input::-moz-focus-inner {
padding:0;
border:0
}
textarea {
	overflow: auto;
	vertical-align: top
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
@media print {
* {
	color: #000!important;
	text-shadow: none!important;
	background: transparent!important;
	box-shadow: none!important
}
a, a:visited {
	text-decoration: underline
}
a[href]:after {
	content: " (" attr(href) ")"
}
abbr[title]:after {
	content: " (" attr(title) ")"
}
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
	content: ""
}
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid
}
thead {
	display: table-header-group
}
tr, img {
	page-break-inside: avoid
}
img {
	max-width: 100%!important
}
@page {
margin:2cm .5cm
}
p, h2, h3 {
	orphans: 3;
	widows: 3
}
h2, h3 {
	page-break-after: avoid
}
.navbar {
	display: none
}
.table td, .table th {
	background-color: #fff!important
}
.btn>.caret, .dropup>.btn>.caret {
	border-top-color: #000!important
}
.label {
	border: 1px solid #000
}
.table {
	border-collapse: collapse!important
}
.table-bordered th, .table-bordered td {
	border: 1px solid #ddd!important
}
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
html {
	font-size: 62.5%;
	-webkit-tap-highlight-color: rgba(0,0,0,0)
}
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.428571429;
	color: #333;
	background-color: #fff
}
input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit
}
button, input, select[multiple], textarea {
	background-image: none
}
a {
	color: #428bca;
	text-decoration: none
}
a:hover, a:focus {
	color: #2a6496;
	text-decoration: underline
}
a:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}
img {
	vertical-align: middle
}
.img-responsive {
	display: block;
	height: auto;
	max-width: 100%
}
.img-rounded {
	border-radius: 6px
}
.img-thumbnail {
	display: inline-block;
	height: auto;
	max-width: 100%;
	padding: 4px;
	line-height: 1.428571429;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out
}
.img-circle {
	border-radius: 50%
}
hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #eee
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0
}
p {
	margin: 0 0 10px
}
.lead {
	margin-bottom: 20px;
	font-size: 16.099999999999998px;
	font-weight: 200;
	line-height: 1.4
}
@media(min-width:768px) {
.lead {
	font-size: 21px
}
}
small {
	font-size: 85%
}
cite {
	font-style: normal
}
.text-muted {
	color: #999
}
.text-primary {
	color: #428bca
}
.text-warning {
	color: #c09853
}
.text-danger {
	color: #b94a48
}
.text-success {
	color: #468847
}
.text-info {
	color: #3a87ad
}
.text-left {
	text-align: left
}
.text-right {
	text-align: right
}
.text-center {
	text-align: center
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 500;
	line-height: 1.1
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small {
	font-weight: normal;
	line-height: 1;
	color: #999
}
h1, h2, h3 {
	margin-top: 20px;
	margin-bottom: 10px
}
h4, h5, h6 {
	margin-top: 10px;
	margin-bottom: 10px
}
h1, .h1 {
	font-size: 36px
}
h2, .h2 {
	font-size: 30px
}
h3, .h3 {
	font-size: 24px
}
h4, .h4 {
	font-size: 18px
}
h5, .h5 {
	font-size: 14px
}
h6, .h6 {
	font-size: 12px
}
h1 small, .h1 small {
	font-size: 24px
}
h2 small, .h2 small {
	font-size: 18px
}
h3 small, .h3 small, h4 small, .h4 small {
	font-size: 14px
}
.page-header {
	padding-bottom: 9px;
	margin: 40px 0 20px;
	border-bottom: 1px solid #eee
}
ul, ol {
	margin-top: 0;
	margin-bottom: 10px
}
ul ul, ol ul, ul ol, ol ol {
	margin-bottom: 0
}
.list-unstyled {
	padding-left: 0;
	list-style: none
}
.list-inline {
	padding-left: 0;
	list-style: none
}
.list-inline>li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px
}
dl {
	margin-bottom: 20px
}
dt, dd {
	line-height: 1.428571429
}
dt {
	font-weight: bold
}
dd {
	margin-left: 0
}
@media(min-width:768px) {
.dl-horizontal dt {
	float: left;
	width: 160px;
	overflow: hidden;
	clear: left;
	text-align: right;
	text-overflow: ellipsis;
	white-space: nowrap
}
.dl-horizontal dd {
	margin-left: 180px
}
.dl-horizontal dd:before, .dl-horizontal dd:after {
	display: table;
	content: " "
}
.dl-horizontal dd:after {
	clear: both
}
.dl-horizontal dd:before, .dl-horizontal dd:after {
	display: table;
	content: " "
}
.dl-horizontal dd:after {
	clear: both
}
}
abbr[title], abbr[data-original-title] {
	cursor: help;
	border-bottom: 1px dotted #999
}
abbr.initialism {
	font-size: 90%;
	text-transform: uppercase
}
blockquote {
	padding: 10px 20px;
	margin: 0 0 20px;
	border-left: 5px solid #eee
}
blockquote p {
	font-size: 17.5px;
	font-weight: 300;
	line-height: 1.25
}
blockquote p:last-child {
	margin-bottom: 0
}
blockquote small {
	display: block;
	line-height: 1.428571429;
	color: #999
}
blockquote small:before {
	content: '\2014 \00A0'
}
blockquote.pull-right {
	padding-right: 15px;
	padding-left: 0;
	border-right: 5px solid #eee;
	border-left: 0
}
blockquote.pull-right p, blockquote.pull-right small {
	text-align: right
}
blockquote.pull-right small:before {
	content: ''
}
blockquote.pull-right small:after {
	content: '\00A0 \2014'
}
q:before, q:after, blockquote:before, blockquote:after {
	content: ""
}
address {
	display: block;
	margin-bottom: 20px;
	font-style: normal;
	line-height: 1.428571429
}
code, pre {
	font-family: Monaco, Menlo, Consolas, "Courier New", monospace
}
code {
	padding: 2px 4px;
	font-size: 90%;
	color: #c7254e;
	white-space: nowrap;
	background-color: #f9f2f4;
	border-radius: 4px
}
pre {
	display: block;
	padding: 9.5px;
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.428571429;
	color: #333;
	word-break: break-all;
	word-wrap: break-word;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 4px
}
pre.prettyprint {
	margin-bottom: 20px
}
pre code {
	padding: 0;
	font-size: inherit;
	color: inherit;
	white-space: pre-wrap;
	background-color: transparent;
	border: 0
}
.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll
}
.container {
	padding-right: 0;
	padding-left: 0;
	margin-right: auto;
	margin-left: auto
}
.container:before, .container:after {
	display: table;
	content: " "
}
.container:after {
	clear: both
}
.container:before, .container:after {
	display: table;
	content: " "
}
.container:after {
	clear: both
}
.row {
	margin-right: 0px;
	margin-left: 0px
}
.row:before, .row:after {
	display: table;
	content: " "
}
.row:after {
	clear: both
}
.row:before, .row:after {
	display: table;
	content: " "
}
.row:after {
	clear: both
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
@media (max-width: 768px){
	.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
		position: relative;
		min-height: 1px;
		padding-right: 10px;
		padding-left: 10px
	}
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 {
	float: left
}
.col-xs-1 {
	width: 8.333333333333332%
}
.col-xs-2 {
	width: 16.666666666666664%
}
.col-xs-3 {
	width: 25%
}
.col-xs-4 {
	width: 33.33333333333333%
}
.col-xs-5 {
	width: 41.66666666666667%
}
.col-xs-6 {
	width: 50%
}
.col-xs-7 {
	width: 58.333333333333336%
}
.col-xs-8 {
	width: 66.66666666666666%
}
.col-xs-9 {
	width: 75%
}
.col-xs-10 {
	width: 83.33333333333334%
}
.col-xs-11 {
	width: 91.66666666666666%
}
.col-xs-12 {
	width: 100%
}
@media(min-width:768px) {
.container {
	max-width: 750px
}
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11 {
	float: left
}
.col-sm-1 {
	width: 8.333333333333332%
}
.col-sm-2 {
	width: 16.666666666666664%
}
.col-sm-3 {
	width: 25%
}
.col-sm-4 {
	width: 33.33333333333333%
}
.col-sm-5 {
	width: 41.66666666666667%
}
.col-sm-6 {
	width: 50%
}
.col-sm-7 {
	width: 58.333333333333336%
}
.col-sm-8 {
	width: 66.66666666666666%
}
.col-sm-9 {
	width: 75%
}
.col-sm-10 {
	width: 83.33333333333334%
}
.col-sm-11 {
	width: 91.66666666666666%
}
.col-sm-12 {
	width: 100%
}
.col-sm-push-1 {
	left: 8.333333333333332%
}
.col-sm-push-2 {
	left: 16.666666666666664%
}
.col-sm-push-3 {
	left: 25%
}
.col-sm-push-4 {
	left: 33.33333333333333%
}
.col-sm-push-5 {
	left: 41.66666666666667%
}
.col-sm-push-6 {
	left: 50%
}
.col-sm-push-7 {
	left: 58.333333333333336%
}
.col-sm-push-8 {
	left: 66.66666666666666%
}
.col-sm-push-9 {
	left: 75%
}
.col-sm-push-10 {
	left: 83.33333333333334%
}
.col-sm-push-11 {
	left: 91.66666666666666%
}
.col-sm-pull-1 {
	right: 8.333333333333332%
}
.col-sm-pull-2 {
	right: 16.666666666666664%
}
.col-sm-pull-3 {
	right: 25%
}
.col-sm-pull-4 {
	right: 33.33333333333333%
}
.col-sm-pull-5 {
	right: 41.66666666666667%
}
.col-sm-pull-6 {
	right: 50%
}
.col-sm-pull-7 {
	right: 58.333333333333336%
}
.col-sm-pull-8 {
	right: 66.66666666666666%
}
.col-sm-pull-9 {
	right: 75%
}
.col-sm-pull-10 {
	right: 83.33333333333334%
}
.col-sm-pull-11 {
	right: 91.66666666666666%
}
.col-sm-offset-1 {
	margin-left: 8.333333333333332%
}
.col-sm-offset-2 {
	margin-left: 16.666666666666664%
}
.col-sm-offset-3 {
	margin-left: 25%
}
.col-sm-offset-4 {
	margin-left: 33.33333333333333%
}
.col-sm-offset-5 {
	margin-left: 41.66666666666667%
}
.col-sm-offset-6 {
	margin-left: 50%
}
.col-sm-offset-7 {
	margin-left: 58.333333333333336%
}
.col-sm-offset-8 {
	margin-left: 66.66666666666666%
}
.col-sm-offset-9 {
	margin-left: 75%
}
.col-sm-offset-10 {
	margin-left: 83.33333333333334%
}
.col-sm-offset-11 {
	margin-left: 91.66666666666666%
}
}
@media(min-width:992px) {
.container {
	max-width: 970px
}
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11 {
	float: left
}
.col-md-1 {
	width: 8.333333333333332%
}
.col-md-2 {
	width: 16.666666666666664%
}
.col-md-3 {
	width: 25%
}
.col-md-4 {
	width: 33.33333333333333%
}
.col-md-5 {
	width: 41.66666666666667%
}
.col-md-6 {
	width: 50%
}
.col-md-7 {
	width: 58.333333333333336%
}
.col-md-8 {
	width: 66.66666666666666%
}
.col-md-9 {
	width: 75%
}
.col-md-10 {
	width: 83.33333333333334%
}
.col-md-11 {
	width: 91.66666666666666%
}
.col-md-12 {
	width: 100%
}
.col-md-push-0 {
	left: auto
}
.col-md-push-1 {
	left: 8.333333333333332%
}
.col-md-push-2 {
	left: 16.666666666666664%
}
.col-md-push-3 {
	left: 25%
}
.col-md-push-4 {
	left: 33.33333333333333%
}
.col-md-push-5 {
	left: 41.66666666666667%
}
.col-md-push-6 {
	left: 50%
}
.col-md-push-7 {
	left: 58.333333333333336%
}
.col-md-push-8 {
	left: 66.66666666666666%
}
.col-md-push-9 {
	left: 75%
}
.col-md-push-10 {
	left: 83.33333333333334%
}
.col-md-push-11 {
	left: 91.66666666666666%
}
.col-md-pull-0 {
	right: auto
}
.col-md-pull-1 {
	right: 8.333333333333332%
}
.col-md-pull-2 {
	right: 16.666666666666664%
}
.col-md-pull-3 {
	right: 25%
}
.col-md-pull-4 {
	right: 33.33333333333333%
}
.col-md-pull-5 {
	right: 41.66666666666667%
}
.col-md-pull-6 {
	right: 50%
}
.col-md-pull-7 {
	right: 58.333333333333336%
}
.col-md-pull-8 {
	right: 66.66666666666666%
}
.col-md-pull-9 {
	right: 75%
}
.col-md-pull-10 {
	right: 83.33333333333334%
}
.col-md-pull-11 {
	right: 91.66666666666666%
}
.col-md-offset-0 {
	margin-left: 0
}
.col-md-offset-1 {
	margin-left: 8.333333333333332%
}
.col-md-offset-2 {
	margin-left: 16.666666666666664%
}
.col-md-offset-3 {
	margin-left: 25%
}
.col-md-offset-4 {
	margin-left: 33.33333333333333%
}
.col-md-offset-5 {
	margin-left: 41.66666666666667%
}
.col-md-offset-6 {
	margin-left: 50%
}
.col-md-offset-7 {
	margin-left: 58.333333333333336%
}
.col-md-offset-8 {
	margin-left: 66.66666666666666%
}
.col-md-offset-9 {
	margin-left: 75%
}
.col-md-offset-10 {
	margin-left: 83.33333333333334%
}
.col-md-offset-11 {
	margin-left: 91.66666666666666%
}
}
@media(min-width:1200px) {
.container {
	max-width: 1170px
}
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11 {
	float: left
}
.col-lg-1 {
	width: 8.333333333333332%
}
.col-lg-2 {
	width: 16.666666666666664%
}
.col-lg-3 {
	width: 25%
}
.col-lg-4 {
	width: 33.33333333333333%
}
.col-lg-5 {
	width: 41.66666666666667%
}
.col-lg-6 {
	width: 50%
}
.col-lg-7 {
	width: 58.333333333333336%
}
.col-lg-8 {
	width: 66.66666666666666%
}
.col-lg-9 {
	width: 75%
}
.col-lg-10 {
	width: 83.33333333333334%
}
.col-lg-11 {
	width: 91.66666666666666%
}
.col-lg-12 {
	width: 100%
}
.col-lg-push-0 {
	left: auto
}
.col-lg-push-1 {
	left: 8.333333333333332%
}
.col-lg-push-2 {
	left: 16.666666666666664%
}
.col-lg-push-3 {
	left: 25%
}
.col-lg-push-4 {
	left: 33.33333333333333%
}
.col-lg-push-5 {
	left: 41.66666666666667%
}
.col-lg-push-6 {
	left: 50%
}
.col-lg-push-7 {
	left: 58.333333333333336%
}
.col-lg-push-8 {
	left: 66.66666666666666%
}
.col-lg-push-9 {
	left: 75%
}
.col-lg-push-10 {
	left: 83.33333333333334%
}
.col-lg-push-11 {
	left: 91.66666666666666%
}
.col-lg-pull-0 {
	right: auto
}
.col-lg-pull-1 {
	right: 8.333333333333332%
}
.col-lg-pull-2 {
	right: 16.666666666666664%
}
.col-lg-pull-3 {
	right: 25%
}
.col-lg-pull-4 {
	right: 33.33333333333333%
}
.col-lg-pull-5 {
	right: 41.66666666666667%
}
.col-lg-pull-6 {
	right: 50%
}
.col-lg-pull-7 {
	right: 58.333333333333336%
}
.col-lg-pull-8 {
	right: 66.66666666666666%
}
.col-lg-pull-9 {
	right: 75%
}
.col-lg-pull-10 {
	right: 83.33333333333334%
}
.col-lg-pull-11 {
	right: 91.66666666666666%
}
.col-lg-offset-0 {
	margin-left: 0
}
.col-lg-offset-1 {
	margin-left: 8.333333333333332%
}
.col-lg-offset-2 {
	margin-left: 16.666666666666664%
}
.col-lg-offset-3 {
	margin-left: 25%
}
.col-lg-offset-4 {
	margin-left: 33.33333333333333%
}
.col-lg-offset-5 {
	margin-left: 41.66666666666667%
}
.col-lg-offset-6 {
	margin-left: 50%
}
.col-lg-offset-7 {
	margin-left: 58.333333333333336%
}
.col-lg-offset-8 {
	margin-left: 66.66666666666666%
}
.col-lg-offset-9 {
	margin-left: 75%
}
.col-lg-offset-10 {
	margin-left: 83.33333333333334%
}
.col-lg-offset-11 {
	margin-left: 91.66666666666666%
}
}
table {
	max-width: 100%;
	background-color: transparent
}
th {
	text-align: left
}
.table {
	width: 100%;
	margin-bottom: 20px
}
.table thead>tr>th, .table tbody>tr>th, .table tfoot>tr>th, .table thead>tr>td, .table tbody>tr>td, .table tfoot>tr>td {
	padding: 8px;
	line-height: 1.428571429;
	vertical-align: top;
	border-top: 1px solid #ddd
}
.table thead>tr>th {
	vertical-align: bottom;
	border-bottom: 2px solid #ddd
}
.table caption+thead tr:first-child th, .table colgroup+thead tr:first-child th, .table thead:first-child tr:first-child th, .table caption+thead tr:first-child td, .table colgroup+thead tr:first-child td, .table thead:first-child tr:first-child td {
	border-top: 0
}
.table tbody+tbody {
	border-top: 2px solid #ddd
}
.table .table {
	background-color: #fff
}
.table-condensed thead>tr>th, .table-condensed tbody>tr>th, .table-condensed tfoot>tr>th, .table-condensed thead>tr>td, .table-condensed tbody>tr>td, .table-condensed tfoot>tr>td {
	padding: 5px
}
.table-bordered {
	border: none;
}
.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
	border: 1px solid #ddd;
	border-top: 0px;
	border-left: 0px;
}
.table-bordered>thead>tr>th, .table-bordered>thead>tr>td {
	border-bottom-width: 2px
}
.table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th {
	background-color: #f9f9f9
}
.table-hover>tbody>tr:hover>td, .table-hover>tbody>tr:hover>th {
	background-color: #f5f5f5
}
table col[class*="col-"] {
	display: table-column;
	float: none
}
table td[class*="col-"], table th[class*="col-"] {
	display: table-cell;
	float: none
}
.table>thead>tr>td.active, .table>tbody>tr>td.active, .table>tfoot>tr>td.active, .table>thead>tr>th.active, .table>tbody>tr>th.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>tbody>tr.active>td, .table>tfoot>tr.active>td, .table>thead>tr.active>th, .table>tbody>tr.active>th, .table>tfoot>tr.active>th {
	background-color: #f5f5f5
}
.table>thead>tr>td.success, .table>tbody>tr>td.success, .table>tfoot>tr>td.success, .table>thead>tr>th.success, .table>tbody>tr>th.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>tbody>tr.success>td, .table>tfoot>tr.success>td, .table>thead>tr.success>th, .table>tbody>tr.success>th, .table>tfoot>tr.success>th {
	background-color: #dff0d8;
	border-color: #d6e9c6
}
.table-hover>tbody>tr>td.success:hover, .table-hover>tbody>tr>th.success:hover, .table-hover>tbody>tr.success:hover>td {
	background-color: #d0e9c6;
	border-color: #c9e2b3
}
.table>thead>tr>td.danger, .table>tbody>tr>td.danger, .table>tfoot>tr>td.danger, .table>thead>tr>th.danger, .table>tbody>tr>th.danger, .table>tfoot>tr>th.danger, .table>thead>tr.danger>td, .table>tbody>tr.danger>td, .table>tfoot>tr.danger>td, .table>thead>tr.danger>th, .table>tbody>tr.danger>th, .table>tfoot>tr.danger>th {
	background-color: #f2dede;
	border-color: #eed3d7
}
.table-hover>tbody>tr>td.danger:hover, .table-hover>tbody>tr>th.danger:hover, .table-hover>tbody>tr.danger:hover>td {
	background-color: #ebcccc;
	border-color: #e6c1c7
}
.table>thead>tr>td.warning, .table>tbody>tr>td.warning, .table>tfoot>tr>td.warning, .table>thead>tr>th.warning, .table>tbody>tr>th.warning, .table>tfoot>tr>th.warning, .table>thead>tr.warning>td, .table>tbody>tr.warning>td, .table>tfoot>tr.warning>td, .table>thead>tr.warning>th, .table>tbody>tr.warning>th, .table>tfoot>tr.warning>th {
	background-color: #fcf8e3;
	border-color: #fbeed5
}
.table-hover>tbody>tr>td.warning:hover, .table-hover>tbody>tr>th.warning:hover, .table-hover>tbody>tr.warning:hover>td {
	background-color: #faf2cc;
	border-color: #f8e5be
}
.table-responsive{
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #ddd;	
}
@media(max-width:768px) {
.table-responsive {
	width: 100%;
	margin-bottom: 15px;
	overflow-x: scroll;
	overflow-y: hidden;	
}
.table-responsive>.table {
	margin-bottom: 0;
	background-color: #fff
}
.table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td {
	white-space: nowrap
}
.table-responsive>.table-bordered {
	border: 0
}
.table-responsive>.table-bordered>thead>tr>th:first-child, .table-responsive>.table-bordered>tbody>tr>th:first-child, .table-responsive>.table-bordered>tfoot>tr>th:first-child, .table-responsive>.table-bordered>thead>tr>td:first-child, .table-responsive>.table-bordered>tbody>tr>td:first-child, .table-responsive>.table-bordered>tfoot>tr>td:first-child {
	border-left: 0
}
.table-responsive>.table-bordered>thead>tr>th:last-child, .table-responsive>.table-bordered>tbody>tr>th:last-child, .table-responsive>.table-bordered>tfoot>tr>th:last-child, .table-responsive>.table-bordered>thead>tr>td:last-child, .table-responsive>.table-bordered>tbody>tr>td:last-child, .table-responsive>.table-bordered>tfoot>tr>td:last-child {
	border-right: 0
}
.table-responsive>.table-bordered>thead>tr:last-child>th, .table-responsive>.table-bordered>tbody>tr:last-child>th, .table-responsive>.table-bordered>tfoot>tr:last-child>th, .table-responsive>.table-bordered>thead>tr:last-child>td, .table-responsive>.table-bordered>tbody>tr:last-child>td, .table-responsive>.table-bordered>tfoot>tr:last-child>td {
	border-bottom: 0
}
}
form{
	max-width: 600px;
}
fieldset {
	padding: 0;
	margin: 0;
	border: 0
}
legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 20px;
	font-size: 21px;
	line-height: inherit;
	color: #333;
	border: 0;
	border-bottom: 1px solid #e5e5e5
}
label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: bold
}
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
input[type="radio"], input[type="checkbox"] {
	margin: 4px 0 0;
	margin-top: 1px \9;
	line-height: normal
}
input[type="file"] {
	display: block
}
select[multiple], select[size] {
	height: auto
}
select optgroup {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit
}
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
height:auto
}
.form-control:-moz-placeholder {
color:#999
}
.form-control::-moz-placeholder {
color:#999
}
.form-control:-ms-input-placeholder {
color:#999
}
.form-control::-webkit-input-placeholder {
color:#999
}
.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.428571429;
	color: #555;
	vertical-align: middle;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6)
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	cursor: not-allowed;
	background-color: #eee
}
textarea.form-control {
	height: auto
}
.form-group {
	margin-bottom: 15px
}
.radio, .checkbox {
	display: block;
	min-height: 20px;
	padding-left: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
	vertical-align: middle
}
.radio label, .checkbox label {
	display: inline;
	margin-bottom: 0;
	font-weight: normal;
	cursor: pointer
}
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
	float: left;
	margin-left: -20px
}
.radio+.radio, .checkbox+.checkbox {
	margin-top: -5px
}
.radio-inline, .checkbox-inline {
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: normal;
	vertical-align: middle;
	cursor: pointer
}
.radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline {
	margin-top: 0;
	margin-left: 10px
}
input[type="radio"][disabled], input[type="checkbox"][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline {
	cursor: not-allowed
}
.input-sm {
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}
select.input-sm {
	height: 30px;
	line-height: 30px
}
textarea.input-sm {
	height: auto
}
.input-lg {
	height: 45px;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px
}
select.input-lg {
	height: 45px;
	line-height: 45px
}
textarea.input-lg {
	height: auto
}
.has-warning .help-block, .has-warning .control-label {
	color: #c09853
}
.has-warning .form-control {
	border-color: #c09853;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
}
.has-warning .form-control:focus {
	border-color: #a47e3c;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #dbc59e;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #dbc59e
}
.has-warning .input-group-addon {
	color: #c09853;
	background-color: #fcf8e3;
	border-color: #c09853
}
.has-error .help-block, .has-error .control-label {
	color: #b94a48
}
.has-error .form-control {
	border-color: #b94a48;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
}
.has-error .form-control:focus {
	border-color: #953b39;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #d59392;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #d59392
}
.has-error .input-group-addon {
	color: #b94a48;
	background-color: #f2dede;
	border-color: #b94a48
}
.has-success .help-block, .has-success .control-label {
	color: #468847
}
.has-success .form-control {
	border-color: #468847;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
}
.has-success .form-control:focus {
	border-color: #356635;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7aba7b;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7aba7b
}
.has-success .input-group-addon {
	color: #468847;
	background-color: #dff0d8;
	border-color: #468847
}
.form-control-static {
	padding-top: 7px;
	margin-bottom: 0
}
.help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #737373
}
@media(min-width:768px) {
.form-inline .form-group {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle
}
.form-inline .form-control {
	display: inline-block
}
.form-inline .radio, .form-inline .checkbox {
	display: inline-block;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0
}
.form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
	float: none;
	margin-left: 0
}
}
.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
	padding-top: 7px;
	margin-top: 0;
	margin-bottom: 0
}
.form-horizontal .form-group {
	margin-right: 0;
	margin-left: 0
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
	display: table;
	content: " "
}
.form-horizontal .form-group:after {
	clear: both
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
	display: table;
	content: " "
}
.form-horizontal .form-group:after {
	clear: both
}
@media(min-width:768px) {
.form-horizontal .control-label {
	text-align: right
}
}
.btn {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.428571429;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;	
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none
}
.btn:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}
.btn:hover, .btn:focus {
	color: #333;
	text-decoration: none
}
.btn:active, .btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
	box-shadow: inset 0 3px 5px rgba(0,0,0,0.125)
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
	pointer-events: none;
	cursor: not-allowed;
	opacity: .65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none
}
.btn-default {
	color: #fff;
	background-color: #004477 !important;
	border: none !important;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
	color: #fff;
	background-color: #004477 !important;
	border: none !important;
}
.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
	background-image: none
}
.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
	background-color: #fff;
	border-color: #ccc
}
.btn-primary {
	color: #fff;
	background-color: #d6293c;	
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
	color: #fff;
	background-color: #d6293c;	
}
.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
	background-image: none
}
.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
	background-color: #d6293c;	
}
.btn-warning {
	color: #fff;
	background-color: #f0ad4e;
	border-color: #eea236
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
	color: #fff;
	background-color: #ed9c28;
	border-color: #d58512
}
.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
	background-image: none
}
.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
	background-color: #f0ad4e;
	border-color: #eea236
}
.btn-danger {
	color: #fff;
	background-color: #d9534f;
	border-color: #d43f3a
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
	color: #fff;
	background-color: #d2322d;
	border-color: #ac2925
}
.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
	background-image: none
}
.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
	background-color: #d9534f;
	border-color: #d43f3a
}
.btn-success {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
	color: #fff;
	background-color: #47a447;
	border-color: #398439
}
.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
	background-image: none
}
.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
	background-color: #5cb85c;
	border-color: #4cae4c
}
.btn-info {
	color: #fff;
	background-color: #5bc0de;
	border-color: #46b8da
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
	color: #fff;
	background-color: #39b3d7;
	border-color: #269abc
}
.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
	background-image: none
}
.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
	background-color: #5bc0de;
	border-color: #46b8da
}
.btn-link {
	font-weight: normal;
	color: #428bca;
	cursor: pointer;
	border-radius: 0
}
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
	border-color: transparent
}
.btn-link:hover, .btn-link:focus {
	color: #2a6496;
	text-decoration: underline;
	background-color: transparent
}
.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
	color: #999;
	text-decoration: none
}
.btn-lg {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px
}
.btn-sm, .btn-xs {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}
.btn-xs {
	padding: 1px 5px
}
.btn-block {
	display: block;
	width: 100%;
	padding-right: 0;
	padding-left: 0
}
.btn-block+.btn-block {
	margin-top: 5px
}
input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
	width: 100%
}
.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	transition: opacity .15s linear
}
.fade.in {
	opacity: 1
}
.collapse {
	display: none
}
.collapse.in {
	display: block
}
.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition: height .35s ease;
	transition: height .35s ease
}
@font-face {
	font-family: 'Glyphicons Halflings';
	src: url('../fonts/glyphicons-halflings-regular.eot');
	src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')
}
.glyphicon {
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-weight: normal;
	line-height: 1
}
.glyphicon-asterisk:before {
	content: "\2a"
}
.glyphicon-plus:before {
	content: "\2b"
}
.glyphicon-euro:before {
	content: "\20ac"
}
.glyphicon-minus:before {
	content: "\2212"
}
.glyphicon-cloud:before {
	content: "\2601"
}
.glyphicon-envelope:before {
	content: "\2709"
}
.glyphicon-pencil:before {
	content: "\270f"
}
.glyphicon-glass:before {
	content: "\e001"
}
.glyphicon-music:before {
	content: "\e002"
}
.glyphicon-search:before {
	content: "\e003"
}
.glyphicon-heart:before {
	content: "\e005"
}
.glyphicon-star:before {
	content: "\e006"
}
.glyphicon-star-empty:before {
	content: "\e007"
}
.glyphicon-user:before {
	content: "\e008"
}
.glyphicon-film:before {
	content: "\e009"
}
.glyphicon-th-large:before {
	content: "\e010"
}
.glyphicon-th:before {
	content: "\e011"
}
.glyphicon-th-list:before {
	content: "\e012"
}
.glyphicon-ok:before {
	content: "\e013"
}
.glyphicon-remove:before {
	content: "\e014"
}
.glyphicon-zoom-in:before {
	content: "\e015"
}
.glyphicon-zoom-out:before {
	content: "\e016"
}
.glyphicon-off:before {
	content: "\e017"
}
.glyphicon-signal:before {
	content: "\e018"
}
.glyphicon-cog:before {
	content: "\e019"
}
.glyphicon-trash:before {
	content: "\e020"
}
.glyphicon-home:before {
	content: "\e021"
}
.glyphicon-file:before {
	content: "\e022"
}
.glyphicon-time:before {
	content: "\e023"
}
.glyphicon-road:before {
	content: "\e024"
}
.glyphicon-download-alt:before {
	content: "\e025"
}
.glyphicon-download:before {
	content: "\e026"
}
.glyphicon-upload:before {
	content: "\e027"
}
.glyphicon-inbox:before {
	content: "\e028"
}
.glyphicon-play-circle:before {
	content: "\e029"
}
.glyphicon-repeat:before {
	content: "\e030"
}
.glyphicon-refresh:before {
	content: "\e031"
}
.glyphicon-list-alt:before {
	content: "\e032"
}
.glyphicon-flag:before {
	content: "\e034"
}
.glyphicon-headphones:before {
	content: "\e035"
}
.glyphicon-volume-off:before {
	content: "\e036"
}
.glyphicon-volume-down:before {
	content: "\e037"
}
.glyphicon-volume-up:before {
	content: "\e038"
}
.glyphicon-qrcode:before {
	content: "\e039"
}
.glyphicon-barcode:before {
	content: "\e040"
}
.glyphicon-tag:before {
	content: "\e041"
}
.glyphicon-tags:before {
	content: "\e042"
}
.glyphicon-book:before {
	content: "\e043"
}
.glyphicon-print:before {
	content: "\e045"
}
.glyphicon-font:before {
	content: "\e047"
}
.glyphicon-bold:before {
	content: "\e048"
}
.glyphicon-italic:before {
	content: "\e049"
}
.glyphicon-text-height:before {
	content: "\e050"
}
.glyphicon-text-width:before {
	content: "\e051"
}
.glyphicon-align-left:before {
	content: "\e052"
}
.glyphicon-align-center:before {
	content: "\e053"
}
.glyphicon-align-right:before {
	content: "\e054"
}
.glyphicon-align-justify:before {
	content: "\e055"
}
.glyphicon-list:before {
	content: "\e056"
}
.glyphicon-indent-left:before {
	content: "\e057"
}
.glyphicon-indent-right:before {
	content: "\e058"
}
.glyphicon-facetime-video:before {
	content: "\e059"
}
.glyphicon-picture:before {
	content: "\e060"
}
.glyphicon-map-marker:before {
	content: "\e062"
}
.glyphicon-adjust:before {
	content: "\e063"
}
.glyphicon-tint:before {
	content: "\e064"
}
.glyphicon-edit:before {
	content: "\e065"
}
.glyphicon-share:before {
	content: "\e066"
}
.glyphicon-check:before {
	content: "\e067"
}
.glyphicon-move:before {
	content: "\e068"
}
.glyphicon-step-backward:before {
	content: "\e069"
}
.glyphicon-fast-backward:before {
	content: "\e070"
}
.glyphicon-backward:before {
	content: "\e071"
}
.glyphicon-play:before {
	content: "\e072"
}
.glyphicon-pause:before {
	content: "\e073"
}
.glyphicon-stop:before {
	content: "\e074"
}
.glyphicon-forward:before {
	content: "\e075"
}
.glyphicon-fast-forward:before {
	content: "\e076"
}
.glyphicon-step-forward:before {
	content: "\e077"
}
.glyphicon-eject:before {
	content: "\e078"
}
.glyphicon-chevron-left:before {
	content: "\e079"
}
.glyphicon-chevron-right:before {
	content: "\e080"
}
.glyphicon-plus-sign:before {
	content: "\e081"
}
.glyphicon-minus-sign:before {
	content: "\e082"
}
.glyphicon-remove-sign:before {
	content: "\e083"
}
.glyphicon-ok-sign:before {
	content: "\e084"
}
.glyphicon-question-sign:before {
	content: "\e085"
}
.glyphicon-info-sign:before {
	content: "\e086"
}
.glyphicon-screenshot:before {
	content: "\e087"
}
.glyphicon-remove-circle:before {
	content: "\e088"
}
.glyphicon-ok-circle:before {
	content: "\e089"
}
.glyphicon-ban-circle:before {
	content: "\e090"
}
.glyphicon-arrow-left:before {
	content: "\e091"
}
.glyphicon-arrow-right:before {
	content: "\e092"
}
.glyphicon-arrow-up:before {
	content: "\e093"
}
.glyphicon-arrow-down:before {
	content: "\e094"
}
.glyphicon-share-alt:before {
	content: "\e095"
}
.glyphicon-resize-full:before {
	content: "\e096"
}
.glyphicon-resize-small:before {
	content: "\e097"
}
.glyphicon-exclamation-sign:before {
	content: "\e101"
}
.glyphicon-gift:before {
	content: "\e102"
}
.glyphicon-leaf:before {
	content: "\e103"
}
.glyphicon-eye-open:before {
	content: "\e105"
}
.glyphicon-eye-close:before {
	content: "\e106"
}
.glyphicon-warning-sign:before {
	content: "\e107"
}
.glyphicon-plane:before {
	content: "\e108"
}
.glyphicon-random:before {
	content: "\e110"
}
.glyphicon-comment:before {
	content: "\e111"
}
.glyphicon-magnet:before {
	content: "\e112"
}
.glyphicon-chevron-up:before {
	content: "\e113"
}
.glyphicon-chevron-down:before {
	content: "\e114"
}
.glyphicon-retweet:before {
	content: "\e115"
}
.glyphicon-shopping-cart:before {
	content: "\e116"
}
.glyphicon-folder-close:before {
	content: "\e117"
}
.glyphicon-folder-open:before {
	content: "\e118"
}
.glyphicon-resize-vertical:before {
	content: "\e119"
}
.glyphicon-resize-horizontal:before {
	content: "\e120"
}
.glyphicon-hdd:before {
	content: "\e121"
}
.glyphicon-bullhorn:before {
	content: "\e122"
}
.glyphicon-certificate:before {
	content: "\e124"
}
.glyphicon-thumbs-up:before {
	content: "\e125"
}
.glyphicon-thumbs-down:before {
	content: "\e126"
}
.glyphicon-hand-right:before {
	content: "\e127"
}
.glyphicon-hand-left:before {
	content: "\e128"
}
.glyphicon-hand-up:before {
	content: "\e129"
}
.glyphicon-hand-down:before {
	content: "\e130"
}
.glyphicon-circle-arrow-right:before {
	content: "\e131"
}
.glyphicon-circle-arrow-left:before {
	content: "\e132"
}
.glyphicon-circle-arrow-up:before {
	content: "\e133"
}
.glyphicon-circle-arrow-down:before {
	content: "\e134"
}
.glyphicon-globe:before {
	content: "\e135"
}
.glyphicon-tasks:before {
	content: "\e137"
}
.glyphicon-filter:before {
	content: "\e138"
}
.glyphicon-fullscreen:before {
	content: "\e140"
}
.glyphicon-dashboard:before {
	content: "\e141"
}
.glyphicon-heart-empty:before {
	content: "\e143"
}
.glyphicon-link:before {
	content: "\e144"
}
.glyphicon-phone:before {
	content: "\e145"
}
.glyphicon-usd:before {
	content: "\e148"
}
.glyphicon-gbp:before {
	content: "\e149"
}
.glyphicon-sort:before {
	content: "\e150"
}
.glyphicon-sort-by-alphabet:before {
	content: "\e151"
}
.glyphicon-sort-by-alphabet-alt:before {
	content: "\e152"
}
.glyphicon-sort-by-order:before {
	content: "\e153"
}
.glyphicon-sort-by-order-alt:before {
	content: "\e154"
}
.glyphicon-sort-by-attributes:before {
	content: "\e155"
}
.glyphicon-sort-by-attributes-alt:before {
	content: "\e156"
}
.glyphicon-unchecked:before {
	content: "\e157"
}
.glyphicon-expand:before {
	content: "\e158"
}
.glyphicon-collapse-down:before {
	content: "\e159"
}
.glyphicon-collapse-up:before {
	content: "\e160"
}
.glyphicon-log-in:before {
	content: "\e161"
}
.glyphicon-flash:before {
	content: "\e162"
}
.glyphicon-log-out:before {
	content: "\e163"
}
.glyphicon-new-window:before {
	content: "\e164"
}
.glyphicon-record:before {
	content: "\e165"
}
.glyphicon-save:before {
	content: "\e166"
}
.glyphicon-open:before {
	content: "\e167"
}
.glyphicon-saved:before {
	content: "\e168"
}
.glyphicon-import:before {
	content: "\e169"
}
.glyphicon-export:before {
	content: "\e170"
}
.glyphicon-send:before {
	content: "\e171"
}
.glyphicon-floppy-disk:before {
	content: "\e172"
}
.glyphicon-floppy-saved:before {
	content: "\e173"
}
.glyphicon-floppy-remove:before {
	content: "\e174"
}
.glyphicon-floppy-save:before {
	content: "\e175"
}
.glyphicon-floppy-open:before {
	content: "\e176"
}
.glyphicon-credit-card:before {
	content: "\e177"
}
.glyphicon-transfer:before {
	content: "\e178"
}
.glyphicon-cutlery:before {
	content: "\e179"
}
.glyphicon-header:before {
	content: "\e180"
}
.glyphicon-compressed:before {
	content: "\e181"
}
.glyphicon-earphone:before {
	content: "\e182"
}
.glyphicon-phone-alt:before {
	content: "\e183"
}
.glyphicon-tower:before {
	content: "\e184"
}
.glyphicon-stats:before {
	content: "\e185"
}
.glyphicon-sd-video:before {
	content: "\e186"
}
.glyphicon-hd-video:before {
	content: "\e187"
}
.glyphicon-subtitles:before {
	content: "\e188"
}
.glyphicon-sound-stereo:before {
	content: "\e189"
}
.glyphicon-sound-dolby:before {
	content: "\e190"
}
.glyphicon-sound-5-1:before {
	content: "\e191"
}
.glyphicon-sound-6-1:before {
	content: "\e192"
}
.glyphicon-sound-7-1:before {
	content: "\e193"
}
.glyphicon-copyright-mark:before {
	content: "\e194"
}
.glyphicon-registration-mark:before {
	content: "\e195"
}
.glyphicon-cloud-download:before {
	content: "\e197"
}
.glyphicon-cloud-upload:before {
	content: "\e198"
}
.glyphicon-tree-conifer:before {
	content: "\e199"
}
.glyphicon-tree-deciduous:before {
	content: "\e200"
}
.glyphicon-briefcase:before {
	content: "\1f4bc"
}
.glyphicon-calendar:before {
	content: "\1f4c5"
}
.glyphicon-pushpin:before {
	content: "\1f4cc"
}
.glyphicon-paperclip:before {
	content: "\1f4ce"
}
.glyphicon-camera:before {
	content: "\1f4f7"
}
.glyphicon-lock:before {
	content: "\1f512"
}
.glyphicon-bell:before {
	content: "\1f514"
}
.glyphicon-bookmark:before {
	content: "\1f516"
}
.glyphicon-fire:before {
	content: "\1f525"
}
.glyphicon-wrench:before {
	content: "\1f527"
}
.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px solid #000;
	border-right: 4px solid transparent;
	border-bottom: 0 dotted;
	border-left: 4px solid transparent;
	content: ""
}
.dropdown {
	position: relative
}
.dropdown-toggle:focus {
	outline: 0
}
.dropdown-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;	
	list-style: none;	
	
}
.navbar-nav li:hover ul.dropdown-menu,
.navbar-nav li:hover ul.dropdown-menu li{
	display: block;
}
.navbar-nav li:hover ul.dropdown-menu li{
	display: block;
}
.dropdown-menu.pull-right {
	right: 0;
	left: auto
}
.dropdown-menu .divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5
}
.dropdown-menu>li>a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 1.428571429;
	color: #333;
	white-space: nowrap
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
	color: #fff;
	text-decoration: none;
	background-color: #428bca
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
	color: #fff;
	text-decoration: none;
	background-color: #428bca;
	outline: 0
}
.dropdown-menu>.disabled>a, .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus {
	color: #999
}
.dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus {
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent;
	background-image: none;
filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)
}
.open>.dropdown-menu {
	display: block
}
.open>a {
	outline: 0
}
.dropdown-header {
	display: block;
	padding: 3px 20px;
	font-size: 12px;
	line-height: 1.428571429;
	color: #999
}
.dropdown-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 990
}
.pull-right>.dropdown-menu {
	right: 0;
	left: auto
}
.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
	border-top: 0 dotted;
	border-bottom: 4px solid #000;
	content: ""
}
.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 1px
}
@media(min-width:768px) {
.navbar-right .dropdown-menu {
	right: 0;
	left: auto
}
}
.btn-default .caret {
	border-top-color: #333
}
.btn-primary .caret, .btn-success .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret {
	border-top-color: #fff
}
.dropup .btn-default .caret {
	border-bottom-color: #333
}
.dropup .btn-primary .caret, .dropup .btn-success .caret, .dropup .btn-warning .caret, .dropup .btn-danger .caret, .dropup .btn-info .caret {
	border-bottom-color: #fff
}
.btn-group, .btn-group-vertical {
	position: relative;
	display: inline-block;
	vertical-align: middle
}
.btn-group>.btn, .btn-group-vertical>.btn {
	position: relative;
	float: left
}
.btn-group>.btn:hover, .btn-group-vertical>.btn:hover, .btn-group>.btn:focus, .btn-group-vertical>.btn:focus, .btn-group>.btn:active, .btn-group-vertical>.btn:active, .btn-group>.btn.active, .btn-group-vertical>.btn.active {
	z-index: 2
}
.btn-group>.btn:focus, .btn-group-vertical>.btn:focus {
	outline: 0
}
.btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group {
	margin-left: -1px
}
.btn-toolbar:before, .btn-toolbar:after {
	display: table;
	content: " "
}
.btn-toolbar:after {
	clear: both
}
.btn-toolbar:before, .btn-toolbar:after {
	display: table;
	content: " "
}
.btn-toolbar:after {
	clear: both
}
.btn-toolbar .btn-group {
	float: left
}
.btn-toolbar>.btn+.btn, .btn-toolbar>.btn-group+.btn, .btn-toolbar>.btn+.btn-group, .btn-toolbar>.btn-group+.btn-group {
	margin-left: 5px
}
.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0
}
.btn-group>.btn:first-child {
	margin-left: 0
}
.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}
.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0
}
.btn-group>.btn-group {
	float: left
}
.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
	border-radius: 0
}
.btn-group>.btn-group:first-child>.btn:last-child, .btn-group>.btn-group:first-child>.dropdown-toggle {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}
.btn-group>.btn-group:last-child>.btn:first-child {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0
}
.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
	outline: 0
}
.btn-group-xs>.btn {
	padding: 5px 10px;
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}
.btn-group-sm>.btn {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}
.btn-group-lg>.btn {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px
}
.btn-group>.btn+.dropdown-toggle {
	padding-right: 8px;
	padding-left: 8px
}
.btn-group>.btn-lg+.dropdown-toggle {
	padding-right: 12px;
	padding-left: 12px
}
.btn-group.open .dropdown-toggle {
	-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
	box-shadow: inset 0 3px 5px rgba(0,0,0,0.125)
}
.btn .caret {
	margin-left: 0
}
.btn-lg .caret {
	border-width: 5px 5px 0;
	border-bottom-width: 0
}
.dropup .btn-lg .caret {
	border-width: 0 5px 5px
}
.btn-group-vertical>.btn, .btn-group-vertical>.btn-group {
	display: block;
	float: none;
	width: 100%;
	max-width: 100%
}
.btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after {
	display: table;
	content: " "
}
.btn-group-vertical>.btn-group:after {
	clear: both
}
.btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after {
	display: table;
	content: " "
}
.btn-group-vertical>.btn-group:after {
	clear: both
}
.btn-group-vertical>.btn-group>.btn {
	float: none
}
.btn-group-vertical>.btn+.btn, .btn-group-vertical>.btn+.btn-group, .btn-group-vertical>.btn-group+.btn, .btn-group-vertical>.btn-group+.btn-group {
	margin-top: -1px;
	margin-left: 0
}
.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
	border-radius: 0
}
.btn-group-vertical>.btn:first-child:not(:last-child) {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}
.btn-group-vertical>.btn:last-child:not(:first-child) {
	border-top-right-radius: 0;
	border-bottom-left-radius: 4px;
	border-top-left-radius: 0
}
.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
	border-radius: 0
}
.btn-group-vertical>.btn-group:first-child>.btn:last-child, .btn-group-vertical>.btn-group:first-child>.dropdown-toggle {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}
.btn-group-vertical>.btn-group:last-child>.btn:first-child {
	border-top-right-radius: 0;
	border-top-left-radius: 0
}
.btn-group-justified {
	display: table;
	width: 100%;
	border-collapse: separate;
	table-layout: fixed
}
.btn-group-justified .btn {
	display: table-cell;
	float: none;
	width: 1%
}
[data-toggle="buttons"]>.btn>input[type="radio"], [data-toggle="buttons"]>.btn>input[type="checkbox"] {
display:none
}
.input-group {
	position: relative;
	display: table;
	border-collapse: separate
}
.input-group.col {
	float: none;
	padding-right: 0;
	padding-left: 0
}
.input-group .form-control {
	width: 100%;
	margin-bottom: 0
}
.input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn {
	height: 45px;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px
}
select.input-group-lg>.form-control, select.input-group-lg>.input-group-addon, select.input-group-lg>.input-group-btn>.btn {
	height: 45px;
	line-height: 45px
}
textarea.input-group-lg>.form-control, textarea.input-group-lg>.input-group-addon, textarea.input-group-lg>.input-group-btn>.btn {
	height: auto
}
.input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn {
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}
select.input-group-sm>.form-control, select.input-group-sm>.input-group-addon, select.input-group-sm>.input-group-btn>.btn {
	height: 30px;
	line-height: 30px
}
textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addon, textarea.input-group-sm>.input-group-btn>.btn {
	height: auto
}
.input-group-addon, .input-group-btn, .input-group .form-control {
	display: table-cell
}
.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
	border-radius: 0
}
.input-group-addon, .input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle
}
.input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	text-align: center;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 4px
}
.input-group-addon.input-sm {
	padding: 5px 10px;
	font-size: 12px;
	border-radius: 3px
}
.input-group-addon.input-lg {
	padding: 10px 16px;
	font-size: 18px;
	border-radius: 6px
}
.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
	margin-top: 0
}
.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}
.input-group-addon:first-child {
	border-right: 0
}
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child) {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0
}
.input-group-addon:last-child {
	border-left: 0
}
.input-group-btn {
	position: relative;
	white-space: nowrap
}
.input-group-btn>.btn {
	position: relative
}
.input-group-btn>.btn+.btn {
	margin-left: -4px
}
.input-group-btn>.btn:hover, .input-group-btn>.btn:active {
	z-index: 2
}
.nav {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}
.nav:before, .nav:after {
	display: table;
	content: " "
}
.nav:after {
	clear: both
}
.nav:before, .nav:after {
	display: table;
	content: " "
}
.nav:after {
	clear: both
}
.nav>li {	
	display: block
}
.nav>li>a {	
	display: block;
	/*padding: 10px 15px*/
}
.nav>li>a:hover, .nav>li>a:focus {
	text-decoration: none;
	background-color: #eee
}
.nav>li.disabled>a {
	color: #999
}
.nav>li.disabled>a:hover, .nav>li.disabled>a:focus {
	color: #999;
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent
}
.nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
	background-color: #eee;
	border-color: #428bca
}
.nav .nav-divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5
}
.nav>li>a>img {
	max-width: none
}
.nav-tabs {
	border-bottom: 1px solid #ddd
}
.nav-tabs>li {
	float: left;
	margin-bottom: -1px
}
.nav-tabs>li>a {
	margin-right: 2px;
	line-height: 1.428571429;
	border: 1px solid transparent;
	border-radius: 4px 4px 0 0
}
.nav-tabs>li>a:hover {
	border-color: #eee #eee #ddd
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
	color: #555;
	cursor: default;
	background-color: #fff;
	border: 1px solid #ddd;
	border-bottom-color: transparent
}
.nav-tabs.nav-justified {
	width: 100%;
	border-bottom: 0
}
.nav-tabs.nav-justified>li {
	float: none
}
.nav-tabs.nav-justified>li>a {
	text-align: center
}
@media(min-width:768px) {
.nav-tabs.nav-justified>li {
	display: table-cell;
	width: 1%
}
}
.nav-tabs.nav-justified>li>a {
	margin-right: 0;
	border-bottom: 1px solid #ddd
}
.nav-tabs.nav-justified>.active>a {
	border-bottom-color: #fff
}
.nav-pills>li {
	float: left
}
.nav-pills>li>a {
	border-radius: 5px
}
.nav-pills>li+li {
	margin-left: 2px
}
.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
	color: #fff;
	background-color: #428bca
}
.nav-stacked>li {
	float: none
}
.nav-stacked>li+li {
	margin-top: 2px;
	margin-left: 0
}
.nav-justified {
	width: 100%
}
.nav-justified>li {
	float: none
}
.nav-justified>li>a {
	text-align: center
}
@media(min-width:768px) {
.nav-justified>li {
	display: table-cell;
	width: 1%
}
}
.nav-tabs-justified {
	border-bottom: 0
}
.nav-tabs-justified>li>a {
	margin-right: 0;
	border-bottom: 1px solid #ddd
}
.nav-tabs-justified>.active>a {
	border-bottom-color: #fff
}
.tabbable:before, .tabbable:after {
	display: table;
	content: " "
}
.tabbable:after {
	clear: both
}
.tabbable:before, .tabbable:after {
	display: table;
	content: " "
}
.tabbable:after {
	clear: both
}
.tab-content>.tab-pane, .pill-content>.pill-pane {
	display: none
}
.tab-content>.active, .pill-content>.active {
	display: block
}
.nav .caret {
	border-top-color: #428bca;
	border-bottom-color: #428bca
}
.nav a:hover .caret {
	border-top-color: #2a6496;
	border-bottom-color: #2a6496
}
.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-right-radius: 0;
	border-top-left-radius: 0
}
.navbar:before, .navbar:after {
	display: table;
	content: " "
}
.navbar:after {
	clear: both
}
.navbar:before, .navbar:after {
	display: table;
	content: " "
}
.navbar:after {
	clear: both
}
.navbar-header:before, .navbar-header:after {
	display: table;
	content: " "
}
.navbar-header:after {
	clear: both
}
.navbar-header:before, .navbar-header:after {
	display: table;
	content: " "
}
.navbar-header:after {
	clear: both
}
@media(min-width:768px) {
.navbar-header {
	float: left
}
}
.navbar-collapse {
	max-height: 340px;
	padding-right: 0;
	padding-left: 0;
	overflow-x: visible;
	border-top: 1px solid transparent;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
	-webkit-overflow-scrolling: touch;	
}
.navbar-collapse:before, .navbar-collapse:after {
	display: table;
	content: " "
}
.navbar-collapse:after {
	clear: both
}
.navbar-collapse:before, .navbar-collapse:after {
	display: table;
	content: " "
}
.navbar-collapse:after {
	clear: both
}
.navbar-collapse.in {
	overflow-y: auto
}
@media(min-width:768px) {
.navbar-collapse {
	width: auto;
	border-top: 0;
	box-shadow: none
}
.navbar-collapse.collapse {
	display: block!important;
	height: auto!important;
	padding-bottom: 0;
	overflow: visible!important
}
.navbar-collapse.in {
	overflow-y: visible
}
.navbar-collapse .navbar-nav.navbar-left:first-child {
	margin-left: -15px
}
.navbar-collapse .navbar-nav.navbar-right:last-child {
	margin-right: -15px
}
.navbar-collapse .navbar-text:last-child {
	margin-right: 0
}
}
.container>.navbar-header, .container>.navbar-collapse {
	margin-right: -15px;
	margin-left: -15px
}
@media(min-width:768px) {
.container>.navbar-header, .container>.navbar-collapse {
	margin-right: 0;
	margin-left: 0
}
}
.navbar-static-top {
	border-width: 0 0 1px
}
@media(min-width:768px) {
.navbar-static-top {
	border-radius: 0
}
}
.navbar-fixed-top, .navbar-fixed-bottom {
	position: fixed;
	right: 0;
	left: 0;
	border-width: 0 0 1px
}
@media(min-width:768px) {
.navbar-fixed-top, .navbar-fixed-bottom {
	border-radius: 0
}
}
.navbar-fixed-top {
	top: 0;
	z-index: 1030;
	background: rgba(0, 68, 119, 0.8) !important;
}
.navbar-fixed-bottom {
	bottom: 0;
	margin-bottom: 0
}
.navbar-brand {
	float: left;
	padding: 15px 15px;
	font-size: 18px;
	line-height: 20px
}
.navbar-brand:hover, .navbar-brand:focus {
	text-decoration: none
}
@media(min-width:768px) {
.navbar>.container .navbar-brand {
	margin-left: -15px
}
}
.navbar-toggle {
	position: relative;
	float: right;
	padding: 9px 10px;
	margin-top: 8px;
	margin-right: 15px;
	margin-bottom: 8px;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 4px
}
.navbar-toggle .icon-bar {
	display: block;
	width: 22px;
	height: 3px;
	border-radius: 1px
}
.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 4px
}
@media(min-width:768px) {
.navbar-toggle {
	display: none
}
}
.navbar-nav {
	margin: 7.5px -15px
}
.navbar-nav>li>a {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 20px
}
@media(max-width:767px) {
.navbar-nav .open .dropdown-menu {
	position: static;
	float: none;
	width: auto;
	margin-top: 0;
	background-color: transparent;
	border: 0;
	box-shadow: none
}
.navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header {
	padding: 5px 15px 5px 25px
}
.navbar-nav .open .dropdown-menu>li>a {
	line-height: 20px
}
.navbar-nav .open .dropdown-menu>li>a:hover, .navbar-nav .open .dropdown-menu>li>a:focus {
	background-image: none
}
}
@media(min-width:768px) {
.navbar-nav {
	float: left;
	margin: 0
}
.navbar-nav>li {
	float: left
}
.navbar-nav>li>a {
	padding-top: 15px;
	padding-bottom: 15px
}
}
@media(min-width:768px) {
.navbar-left {
	float: left!important
}
.navbar-right {
	float: right!important
}
}
.navbar-form {
	padding: 10px 15px;
	margin-top: 8px;
	margin-right: -15px;
	margin-bottom: 8px;
	margin-left: -15px;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.1);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.1)
}
@media(min-width:768px) {
.navbar-form .form-group {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle
}
.navbar-form .form-control {
	display: inline-block
}
.navbar-form .radio, .navbar-form .checkbox {
	display: inline-block;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0
}
.navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
	float: none;
	margin-left: 0
}
}
@media(max-width:767px) {
.navbar-form .form-group {
	margin-bottom: 5px
}
}
@media(min-width:768px) {
.navbar-form {
	width: auto;
	padding-top: 0;
	padding-bottom: 0;
	margin-right: 0;
	margin-left: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}
}
.navbar-nav>li>.dropdown-menu {
	margin-top: 0;
	border-top-right-radius: 0;
	border-top-left-radius: 0
}
.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}
.navbar-nav.pull-right>li>.dropdown-menu, .navbar-nav>li>.dropdown-menu.pull-right {
	right: 0;
	left: auto
}
.navbar-btn {
	margin-top: 8px;
	margin-bottom: 8px
}
.navbar-text {
	float: left;
	margin-top: 15px;
	margin-bottom: 15px
}
@media(min-width:768px) {
.navbar-text {
	margin-right: 15px;
	margin-left: 15px
}
}
.navbar-default {
	background-color: #f8f8f8;
	border-color: #e7e7e7
}
.navbar-default .navbar-brand {
	color: #777
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
	color: #5e5e5e;
	background-color: transparent
}
.navbar-default .navbar-text {
	color: #777
}
.navbar-default .navbar-nav>li>a {
	color: #777
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
	color: #333;
	background-color: transparent
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
	color: #555;
	background-color: #e7e7e7
}
.navbar-default .navbar-nav>.disabled>a, .navbar-default .navbar-nav>.disabled>a:hover, .navbar-default .navbar-nav>.disabled>a:focus {
	color: #ccc;
	background-color: transparent
}
.navbar-default .navbar-toggle {
	border-color: #fff
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: #004477
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #fff
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
	border-color: #e6e6e6
}
.navbar-default .navbar-nav>.dropdown>a:hover .caret, .navbar-default .navbar-nav>.dropdown>a:focus .caret {
	border-top-color: #333;
	border-bottom-color: #333
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
	color: #555;
	background-color: #e7e7e7
}
.navbar-default .navbar-nav>.open>a .caret, .navbar-default .navbar-nav>.open>a:hover .caret, .navbar-default .navbar-nav>.open>a:focus .caret {
	border-top-color: #555;
	border-bottom-color: #555
}
.navbar-default .navbar-nav>.dropdown>a .caret {
	border-top-color: #777;
	border-bottom-color: #777
}
@media(max-width:767px) {
.navbar-default .navbar-nav .open .dropdown-menu>li>a {
	color: #777
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
	color: #333;
	background-color: transparent
}
.navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
	color: #555;
	background-color: #e7e7e7
}
.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {
	color: #ccc;
	background-color: transparent
}
}
.navbar-default .navbar-link {
	color: #777
}
.navbar-default .navbar-link:hover {
	color: #333
}
.navbar-inverse {
	
}
.navbar-inverse .navbar-brand {
	color: #999
}
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
	color: #fff;
	background-color: transparent
}
.navbar-inverse .navbar-text {
	color: #999
}
.navbar-inverse .navbar-nav>li>a {
	color: #999
}
.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus {
	color: #fff;
	background-color: transparent
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:hover, .navbar-inverse .navbar-nav>.active>a:focus {
	color: #fff;
	background-color: #080808
}
.navbar-inverse .navbar-nav>.disabled>a, .navbar-inverse .navbar-nav>.disabled>a:hover, .navbar-inverse .navbar-nav>.disabled>a:focus {
	color: #444;
	background-color: transparent
}
.navbar-inverse .navbar-toggle {
	border-color: #fff
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
	background-color: #336992
}
.navbar-inverse .navbar-toggle .icon-bar {
	background-color: #fff
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
	border-color: #101010
}
.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus {
	color: #fff;
	background-color: #080808
}
.navbar-inverse .navbar-nav>.dropdown>a:hover .caret {
	border-top-color: #fff;
	border-bottom-color: #fff
}
.navbar-inverse .navbar-nav>.dropdown>a .caret {
	border-top-color: #999;
	border-bottom-color: #999
}
.navbar-inverse .navbar-nav>.open>a .caret, .navbar-inverse .navbar-nav>.open>a:hover .caret, .navbar-inverse .navbar-nav>.open>a:focus .caret {
	border-top-color: #fff;
	border-bottom-color: #fff
}
@media(max-width:767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
	border-color: #080808
}
.navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
	color: #999
}
.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {
	color: #fff;
	background-color: transparent
}
.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
	color: #fff;
	background-color: #080808
}
.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus {
	color: #444;
	background-color: transparent
}
}
.navbar-inverse .navbar-link {
	color: #999
}
.navbar-inverse .navbar-link:hover {
	color: #fff
}
.breadcrumb {
	padding: 8px 15px;
	margin-bottom: 20px;
	list-style: none;
	background-color: #f5f5f5;
	border-radius: 4px
}
.breadcrumb>li {
	display: inline-block
}
.breadcrumb>li+li:before {
	padding: 0 5px;
	color: #ccc;
	content: "/\00a0"
}
.breadcrumb>.active {
	color: #999
}
.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px
}
.pagination>li {
	display: inline
}
.pagination>li>a, .pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.428571429;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
	margin-left: 0;
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}
.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
	background-color: #eee
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
	z-index: 2;
	color: #fff;
	cursor: default;
	background-color: #428bca;
	border-color: #428bca
}
.pagination>.disabled>span, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
	color: #999;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd
}
.pagination-lg>li>a, .pagination-lg>li>span {
	padding: 10px 16px;
	font-size: 18px
}
.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span {
	border-bottom-left-radius: 6px;
	border-top-left-radius: 6px
}
.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px
}
.pagination-sm>li>a, .pagination-sm>li>span {
	padding: 5px 10px;
	font-size: 12px
}
.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span {
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px
}
.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}
.pager {
	padding-left: 0;
	margin: 20px 0;
	text-align: center;
	list-style: none
}
.pager:before, .pager:after {
	display: table;
	content: " "
}
.pager:after {
	clear: both
}
.pager:before, .pager:after {
	display: table;
	content: " "
}
.pager:after {
	clear: both
}
.pager li {
	display: inline
}
.pager li>a, .pager li>span {
	display: inline-block;
	padding: 5px 14px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 15px
}
.pager li>a:hover, .pager li>a:focus {
	text-decoration: none;
	background-color: #eee
}
.pager .next>a, .pager .next>span {
	float: right
}
.pager .previous>a, .pager .previous>span {
	float: left
}
.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span {
	color: #999;
	cursor: not-allowed;
	background-color: #fff
}
.label {
	display: inline;
	padding: .2em .6em .3em;
	font-size: 75%;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: .25em
}
.label[href]:hover, .label[href]:focus {
	color: #fff;
	text-decoration: none;
	cursor: pointer
}
.label:empty {
	display: none
}
.label-default {
	background-color: #999
}
.label-default[href]:hover, .label-default[href]:focus {
	background-color: #808080
}
.label-primary {
	background-color: #428bca
}
.label-primary[href]:hover, .label-primary[href]:focus {
	background-color: #3071a9
}
.label-success {
	background-color: #5cb85c
}
.label-success[href]:hover, .label-success[href]:focus {
	background-color: #449d44
}
.label-info {
	background-color: #5bc0de
}
.label-info[href]:hover, .label-info[href]:focus {
	background-color: #31b0d5
}
.label-warning {
	background-color: #f0ad4e
}
.label-warning[href]:hover, .label-warning[href]:focus {
	background-color: #ec971f
}
.label-danger {
	background-color: #d9534f
}
.label-danger[href]:hover, .label-danger[href]:focus {
	background-color: #c9302c
}
.badge {
	display: inline-block;
	min-width: 10px;
	padding: 3px 7px;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	background-color: #999;
	border-radius: 10px
}
.badge:empty {
	display: none
}
a.badge:hover, a.badge:focus {
	color: #fff;
	text-decoration: none;
	cursor: pointer
}
.btn .badge {
	position: relative;
	top: -1px
}
a.list-group-item.active>.badge, .nav-pills>.active>a>.badge {
	color: #428bca;
	background-color: #fff
}
.nav-pills>li>a>.badge {
	margin-left: 3px
}
.jumbotron {
	padding: 30px;
	margin-bottom: 30px;
	font-size: 21px;
	font-weight: 200;
	line-height: 2.1428571435;
	color: inherit;
	background-color: #eee
}
.jumbotron h1 {
	line-height: 1;
	color: inherit
}
.jumbotron p {
	line-height: 1.4
}
.container .jumbotron {
	border-radius: 6px
}
@media screen and (min-width:768px) {
.jumbotron {
	padding-top: 48px;
	padding-bottom: 48px
}
.container .jumbotron {
	padding-right: 60px;
	padding-left: 60px
}
.jumbotron h1 {
	font-size: 63px
}
}
.thumbnail {
	display: inline-block;
	display: block;
	height: auto;
	max-width: 100%;
	padding: 4px;
	line-height: 1.428571429;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out
}
.thumbnail>img {
	display: block;
	height: auto;
	max-width: 100%
}
a.thumbnail:hover, a.thumbnail:focus {
	border-color: #428bca
}
.thumbnail>img {
	margin-right: auto;
	margin-left: auto
}
.thumbnail .caption {
	padding: 9px;
	color: #333
}
.alert {
	padding: 15px;
	margin-left: 0px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;	
	color:#4F8A10;
  	background-color:#DFF2BF;
	font-weight: normal;
}
.alert h4 {
	margin-top: 0;
	color: inherit
}
.alert .alert-link {
	font-weight: bold
}
.alert>p, .alert>ul {
	margin-bottom: 0
}
.alert>p+p {
	margin-top: 5px
}
.alert-dismissable {
	padding-right: 35px
}
.alert-dismissable .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit
}
.alert-success {
	color: #468847;
	background-color: #dff0d8;
	border-color: #d6e9c6
}
.alert-success hr {
	border-top-color: #c9e2b3
}
.alert-success .alert-link {
	color: #356635
}
.alert-info {
	color: #3a87ad;
	background-color: #d9edf7;
	border-color: #bce8f1
}
.alert-info hr {
	border-top-color: #a6e1ec
}
.alert-info .alert-link {
	color: #2d6987
}
.alert-warning {
	color: #c09853;
	background-color: #fcf8e3;
	border-color: #fbeed5
}
.alert-warning hr {
	border-top-color: #f8e5be
}
.alert-warning .alert-link {
	color: #a47e3c
}
.alert-danger {
	color: #b94a48;
	background-color: #f2dede;
	border-color: #eed3d7
}
.alert-danger hr {
	border-top-color: #e6c1c7
}
.alert-danger .alert-link {
	color: #953b39
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position:40px 0
}
to {
	background-position: 0 0
}
}
@-moz-keyframes progress-bar-stripes {
from {
background-position:40px 0
}
to {
	background-position: 0 0
}
}
@-o-keyframes progress-bar-stripes {
from {
background-position:0 0
}
to {
	background-position: 40px 0
}
}
@keyframes progress-bar-stripes {
from {
background-position:40px 0
}
to {
	background-position: 0 0
}
}
.progress {
	height: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: #f5f5f5;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1)
}
.progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	color: #fff;
	text-align: center;
	background-color: #428bca;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
	box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
	-webkit-transition: width .6s ease;
	transition: width .6s ease
}
.progress-striped .progress-bar {
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-size: 40px 40px
}
.progress.active .progress-bar {
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	-moz-animation: progress-bar-stripes 2s linear infinite;
	-ms-animation: progress-bar-stripes 2s linear infinite;
	-o-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite
}
.progress-bar-success {
	background-color: #5cb85c
}
.progress-striped .progress-bar-success {
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)
}
.progress-bar-info {
	background-color: #5bc0de
}
.progress-striped .progress-bar-info {
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)
}
.progress-bar-warning {
	background-color: #f0ad4e
}
.progress-striped .progress-bar-warning {
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)
}
.progress-bar-danger {
	background-color: #d9534f
}
.progress-striped .progress-bar-danger {
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)
}
.media, .media-body {
	overflow: hidden;
	zoom: 1
}
.media, .media .media {
	margin-top: 15px
}
.media:first-child {
	margin-top: 0
}
.media-object {
	display: block
}
.media-heading {
	margin: 0 0 5px
}
.media>.pull-left {
	margin-right: 10px
}
.media>.pull-right {
	margin-left: 10px
}
.media-list {
	padding-left: 0;
	list-style: none
}
.list-group {
	padding-left: 0;
	margin-bottom: 20px
}
.list-group-item {
	position: relative;
	display: block;
	padding: 10px 15px;
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid #ddd
}
.list-group-item:first-child {
	/*border-top-right-radius: 4px;
	border-top-left-radius: 4px*/
}
.list-group-item:last-child {
	margin-bottom: 0;
	/*border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px*/
}
.list-group-item>.badge {
	float: right
}
.list-group-item>.badge+.badge {
	margin-right: 5px
}
a.list-group-item {
	color: #555
}
a.list-group-item .list-group-item-heading {
	color: #333
}
a.list-group-item:hover, a.list-group-item:focus {
	text-decoration: none;
	background-color: #f5f5f5
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
	z-index: 2;
	color: #fff;
	background-color: #428bca;
	border-color: #428bca
}
.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading {
	color: inherit
}
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
	color: #e1edf7
}
.list-group-item-heading {
	margin-top: 0;
	margin-bottom: 5px
}
.list-group-item-text {
	margin-bottom: 0;
	line-height: 1.3
}
.panel {
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.05);
	box-shadow: 0 1px 1px rgba(0,0,0,0.05)
}
.panel-body {
	padding: 0;
	width: 100%;
}
.panel-body:before, .panel-body:after {
	display: table;
	content: " "
}
.panel-body:after {
	clear: both
}
.panel-body:before, .panel-body:after {
	display: table;
	content: " "
}
.panel-body:after {
	clear: both
}
.panel>.list-group {
	margin-bottom: 0
}
.panel>.list-group .list-group-item {
	border-width: 1px 0
}
.panel>.list-group .list-group-item:first-child {
	border-top-right-radius: 0;
	border-top-left-radius: 0
}
.panel>.list-group .list-group-item:last-child {
	border-bottom: 0
}
.panel-heading+.list-group .list-group-item:first-child {
	border-top-width: 0
}
.panel>.table {
	margin-bottom: 0
}
.panel>.panel-body+.table {
	border-top: 1px solid #ddd
}
.panel-heading {
	padding: 10px 15px;
	border-bottom: 1px solid transparent;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px
}
.panel-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 16px
}
.panel-title>a {
	color: inherit
}
.panel-footer {
	padding: 10px 15px;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px
}
.panel-group .panel {
	margin-bottom: 0;
	overflow: hidden;
	border-radius: 4px
}
.panel-group .panel+.panel {
	margin-top: 5px
}
.panel-group .panel-heading {
	border-bottom: 0
}
.panel-group .panel-heading+.panel-collapse .panel-body {
	border-top: 1px solid #ddd
}
.panel-group .panel-footer {
	border-top: 0
}
.panel-group .panel-footer+.panel-collapse .panel-body {
	border-bottom: 1px solid #ddd
}
.panel-default {
	border-color: #ddd
}
.panel-default>.panel-heading {
	color: #333;
	background-color: #f5f5f5;
	border-color: #ddd
}
.panel-default>.panel-heading+.panel-collapse .panel-body {
	border-top-color: #ddd
}
.panel-default>.panel-footer+.panel-collapse .panel-body {
	border-bottom-color: #ddd
}
.panel-primary {
	border-color: #428bca
}
.panel-primary>.panel-heading {
	color: #fff;
	background-color: #428bca;
	border-color: #428bca
}
.panel-primary>.panel-heading+.panel-collapse .panel-body {
	border-top-color: #428bca
}
.panel-primary>.panel-footer+.panel-collapse .panel-body {
	border-bottom-color: #428bca
}
.panel-success {
	border-color: #d6e9c6
}
.panel-success>.panel-heading {
	color: #468847;
	background-color: #dff0d8;
	border-color: #d6e9c6
}
.panel-success>.panel-heading+.panel-collapse .panel-body {
	border-top-color: #d6e9c6
}
.panel-success>.panel-footer+.panel-collapse .panel-body {
	border-bottom-color: #d6e9c6
}
.panel-warning {
	border-color: #fbeed5
}
.panel-warning>.panel-heading {
	color: #c09853;
	background-color: #fcf8e3;
	border-color: #fbeed5
}
.panel-warning>.panel-heading+.panel-collapse .panel-body {
	border-top-color: #fbeed5
}
.panel-warning>.panel-footer+.panel-collapse .panel-body {
	border-bottom-color: #fbeed5
}
.panel-danger {
	border-color: #eed3d7
}
.panel-danger>.panel-heading {
	color: #b94a48;
	background-color: #f2dede;
	border-color: #eed3d7
}
.panel-danger>.panel-heading+.panel-collapse .panel-body {
	border-top-color: #eed3d7
}
.panel-danger>.panel-footer+.panel-collapse .panel-body {
	border-bottom-color: #eed3d7
}
.panel-info {
	border-color: #bce8f1
}
.panel-info>.panel-heading {
	color: #3a87ad;
	background-color: #d9edf7;
	border-color: #bce8f1
}
.panel-info>.panel-heading+.panel-collapse .panel-body {
	border-top-color: #bce8f1
}
.panel-info>.panel-footer+.panel-collapse .panel-body {
	border-bottom-color: #bce8f1
}
.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.05)
}
.well blockquote {
	border-color: #ddd;
	border-color: rgba(0,0,0,0.15)
}
.well-lg {
	padding: 24px;
	border-radius: 6px
}
.well-sm {
	padding: 9px;
	border-radius: 3px
}
.close {
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .2;
	filter: alpha(opacity=20)
}
.close:hover, .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	opacity: .5;
	filter: alpha(opacity=50)
}
button.close {
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none
}
.modal-open {
	overflow: hidden
}
body.modal-open, .modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom {
	margin-right: 15px
}
.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	display: none;
	overflow: auto;
	overflow-y: scroll
}
.modal.fade .modal-dialog {
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: -webkit-transform .3s ease-out;
	-moz-transition: -moz-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: transform .3s ease-out
}
.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0)
}
.modal-dialog {
	z-index: 1050;
	width: auto;
	padding: 10px;
	margin-right: auto;
	margin-left: auto
}
.modal-content {
	position: relative;
	background-color: #fff;
	border: 1px solid #999;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
	box-shadow: 0 3px 9px rgba(0,0,0,0.5);
	background-clip: padding-box
}
.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
	background-color: #000
}
.modal-backdrop.fade {
	opacity: 0;
	filter: alpha(opacity=0)
}
.modal-backdrop.in {
	opacity: .5;
	filter: alpha(opacity=50)
}
.modal-header {
	min-height: 16.428571429px;
	padding: 15px;
	border-bottom: 1px solid #e5e5e5
}
.modal-header .close {
	margin-top: -2px
}
.modal-title {
	margin: 0;
	line-height: 1.428571429
}
.modal-body {
	position: relative;
	padding: 20px
}
.modal-footer {
	padding: 19px 20px 20px;
	margin-top: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5
}
.modal-footer:before, .modal-footer:after {
	display: table;
	content: " "
}
.modal-footer:after {
	clear: both
}
.modal-footer:before, .modal-footer:after {
	display: table;
	content: " "
}
.modal-footer:after {
	clear: both
}
.modal-footer .btn+.btn {
	margin-bottom: 0;
	margin-left: 5px
}
.modal-footer .btn-group .btn+.btn {
	margin-left: -1px
}
.modal-footer .btn-block+.btn-block {
	margin-left: 0
}
@media screen and (min-width:768px) {
.modal-dialog {
	right: auto;
	left: 50%;
	width: 600px;
	padding-top: 30px;
	padding-bottom: 30px
}
.modal-content {
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	box-shadow: 0 5px 15px rgba(0,0,0,0.5)
}
}
.tooltip {
	position: absolute;
	z-index: 1030;
	display: block;
	font-size: 12px;
	line-height: 1.4;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: visible
}
.tooltip.in {
	opacity: .9;
	filter: alpha(opacity=90)
}
.tooltip.top {
	padding: 5px 0;
	margin-top: -3px
}
.tooltip.right {
	padding: 0 5px;
	margin-left: 3px
}
.tooltip.bottom {
	padding: 5px 0;
	margin-top: 3px
}
.tooltip.left {
	padding: 0 5px;
	margin-left: -3px
}
.tooltip-inner {
	max-width: 200px;
	padding: 3px 8px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #000;
	border-radius: 4px
}
.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid
}
.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-top-color: #000;
	border-width: 5px 5px 0
}
.tooltip.top-left .tooltip-arrow {
	bottom: 0;
	left: 5px;
	border-top-color: #000;
	border-width: 5px 5px 0
}
.tooltip.top-right .tooltip-arrow {
	right: 5px;
	bottom: 0;
	border-top-color: #000;
	border-width: 5px 5px 0
}
.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-right-color: #000;
	border-width: 5px 5px 5px 0
}
.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-left-color: #000;
	border-width: 5px 0 5px 5px
}
.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-bottom-color: #000;
	border-width: 0 5px 5px
}
.tooltip.bottom-left .tooltip-arrow {
	top: 0;
	left: 5px;
	border-bottom-color: #000;
	border-width: 0 5px 5px
}
.tooltip.bottom-right .tooltip-arrow {
	top: 0;
	right: 5px;
	border-bottom-color: #000;
	border-width: 0 5px 5px
}
.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1010;
	display: none;
	max-width: 276px;
	padding: 1px;
	text-align: left;
	white-space: normal;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	background-clip: padding-box
}
.popover.top {
	margin-top: -10px
}
.popover.right {
	margin-left: 10px
}
.popover.bottom {
	margin-top: 10px
}
.popover.left {
	margin-left: -10px
}
.popover-title {
	padding: 8px 14px;
	margin: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	border-radius: 5px 5px 0 0
}
.popover-content {
	padding: 9px 14px
}
.popover .arrow, .popover .arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid
}
.popover .arrow {
	border-width: 11px
}
.popover .arrow:after {
	border-width: 10px;
	content: ""
}
.popover.top .arrow {
	bottom: -11px;
	left: 50%;
	margin-left: -11px;
	border-top-color: #999;
	border-top-color: rgba(0,0,0,0.25);
	border-bottom-width: 0
}
.popover.top .arrow:after {
	bottom: 1px;
	margin-left: -10px;
	border-top-color: #fff;
	border-bottom-width: 0;
	content: " "
}
.popover.right .arrow {
	top: 50%;
	left: -11px;
	margin-top: -11px;
	border-right-color: #999;
	border-right-color: rgba(0,0,0,0.25);
	border-left-width: 0
}
.popover.right .arrow:after {
	bottom: -10px;
	left: 1px;
	border-right-color: #fff;
	border-left-width: 0;
	content: " "
}
.popover.bottom .arrow {
	top: -11px;
	left: 50%;
	margin-left: -11px;
	border-bottom-color: #999;
	border-bottom-color: rgba(0,0,0,0.25);
	border-top-width: 0
}
.popover.bottom .arrow:after {
	top: 1px;
	margin-left: -10px;
	border-bottom-color: #fff;
	border-top-width: 0;
	content: " "
}
.popover.left .arrow {
	top: 50%;
	right: -11px;
	margin-top: -11px;
	border-left-color: #999;
	border-left-color: rgba(0,0,0,0.25);
	border-right-width: 0
}
.popover.left .arrow:after {
	right: 1px;
	bottom: -10px;
	border-left-color: #fff;
	border-right-width: 0;
	content: " "
}
.carousel {
	position: relative
}
.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden
}
.carousel-inner>.item {
	position: relative;
	display: none;
	-webkit-transition: .6s ease-in-out left;
	transition: .6s ease-in-out left
}
.carousel-inner>.item>img, .carousel-inner>.item>a>img {
	display: block;
	height: auto;
	max-width: 100%;
	line-height: 1
}
.carousel-inner>.active, .carousel-inner>.next, .carousel-inner>.prev {
	display: block
}
.carousel-inner>.active {
	left: 0
}
.carousel-inner>.next, .carousel-inner>.prev {
	position: absolute;
	top: 0;
	width: 100%
}
.carousel-inner>.next {
	left: 100%
}
.carousel-inner>.prev {
	left: -100%
}
.carousel-inner>.next.left, .carousel-inner>.prev.right {
	left: 0
}
.carousel-inner>.active.left {
	left: -100%
}
.carousel-inner>.active.right {
	left: 100%
}
.carousel-control {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 15%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,0.6);
	opacity: .5;
	filter: alpha(opacity=50)
}
.carousel-control.left {
	background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,0.0001)));
	background-image: -webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.5) 0), color-stop(rgba(0,0,0,0.0001) 100%));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);
	background-image: linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);
	background-repeat: repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
}
.carousel-control.right {
	right: 0;
	left: auto;
	background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0,0,0,0.0001)), to(rgba(0,0,0,0.5)));
	background-image: -webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.0001) 0), color-stop(rgba(0,0,0,0.5) 100%));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);
	background-image: linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);
	background-repeat: repeat-x;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
}
.carousel-control:hover, .carousel-control:focus {
	color: #fff;
	text-decoration: none;
	opacity: .9;
	filter: alpha(opacity=90)
}
.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	display: inline-block
}
.carousel-control .icon-prev, .carousel-control .icon-next {
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	font-family: serif
}
.carousel-control .icon-prev:before {
	content: '\2039'
}
.carousel-control .icon-next:before {
	content: '\203a'
}
.carousel-indicators {
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 15;
	width: 60%;
	padding-left: 0;
	margin-left: -30%;
	text-align: center;
	list-style: none
}
.carousel-indicators li {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 1px;
	text-indent: -999px;
	cursor: pointer;
	border: 1px solid #fff;
	border-radius: 10px
}
.carousel-indicators .active {
	width: 12px;
	height: 12px;
	margin: 0;
	background-color: #fff
}
.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,0.6)
}
.carousel-caption .btn {
	text-shadow: none
}
@media screen and (min-width:768px) {
.carousel-control .icon-prev, .carousel-control .icon-next {
	width: 30px;
	height: 30px;
	margin-top: -15px;
	margin-left: -15px;
	font-size: 30px
}
.carousel-caption {
	right: 20%;
	left: 20%;
	padding-bottom: 30px
}
.carousel-indicators {
	bottom: 20px
}
}
.clearfix:before, .clearfix:after {
	display: table;
	content: " "
}
.clearfix:after {
	clear: both
}
.pull-right {
	float: right!important
}
.pull-left {
	float: left!important
}
.hide {
	display: none!important
}
.show {
	display: block!important
}
.invisible {
	visibility: hidden
}
.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0
}
.affix {
	position: fixed
}
@-ms-viewport {
width:device-width
}
@media screen and (max-width:400px) {
@-ms-viewport {
width:320px
}
}
.hidden {
	display: none!important;
	visibility: hidden!important
}
.visible-xs {
	display: none!important
}
tr.visible-xs {
	display: none!important
}
th.visible-xs, td.visible-xs {
	display: none!important
}
@media(max-width:767px) {
.visible-xs {
	display: block!important
}
tr.visible-xs {
	display: table-row!important
}
th.visible-xs, td.visible-xs {
	display: table-cell!important
}
}
@media(min-width:768px) and (max-width:991px) {
.visible-xs.visible-sm {
	display: block!important
}
tr.visible-xs.visible-sm {
	display: table-row!important
}
th.visible-xs.visible-sm, td.visible-xs.visible-sm {
	display: table-cell!important
}
}
@media(min-width:992px) and (max-width:1199px) {
.visible-xs.visible-md {
	display: block!important
}
tr.visible-xs.visible-md {
	display: table-row!important
}
th.visible-xs.visible-md, td.visible-xs.visible-md {
	display: table-cell!important
}
}
@media(min-width:1200px) {
.visible-xs.visible-lg {
	display: block!important
}
tr.visible-xs.visible-lg {
	display: table-row!important
}
th.visible-xs.visible-lg, td.visible-xs.visible-lg {
	display: table-cell!important
}
}
.visible-sm {
	display: none!important
}
tr.visible-sm {
	display: none!important
}
th.visible-sm, td.visible-sm {
	display: none!important
}
@media(max-width:767px) {
.visible-sm.visible-xs {
	display: block!important
}
tr.visible-sm.visible-xs {
	display: table-row!important
}
th.visible-sm.visible-xs, td.visible-sm.visible-xs {
	display: table-cell!important
}
}
@media(min-width:768px) and (max-width:991px) {
.visible-sm {
	display: block!important
}
tr.visible-sm {
	display: table-row!important
}
th.visible-sm, td.visible-sm {
	display: table-cell!important
}
}
@media(min-width:992px) and (max-width:1199px) {
.visible-sm.visible-md {
	display: block!important
}
tr.visible-sm.visible-md {
	display: table-row!important
}
th.visible-sm.visible-md, td.visible-sm.visible-md {
	display: table-cell!important
}
}
@media(min-width:1200px) {
.visible-sm.visible-lg {
	display: block!important
}
tr.visible-sm.visible-lg {
	display: table-row!important
}
th.visible-sm.visible-lg, td.visible-sm.visible-lg {
	display: table-cell!important
}
}
.visible-md {
	display: none!important
}
tr.visible-md {
	display: none!important
}
th.visible-md, td.visible-md {
	display: none!important
}
@media(max-width:767px) {
.visible-md.visible-xs {
	display: block!important
}
tr.visible-md.visible-xs {
	display: table-row!important
}
th.visible-md.visible-xs, td.visible-md.visible-xs {
	display: table-cell!important
}
}
@media(min-width:768px) and (max-width:991px) {
.visible-md.visible-sm {
	display: block!important
}
tr.visible-md.visible-sm {
	display: table-row!important
}
th.visible-md.visible-sm, td.visible-md.visible-sm {
	display: table-cell!important
}
}
@media(min-width:992px) and (max-width:1199px) {
.visible-md {
	display: block!important
}
tr.visible-md {
	display: table-row!important
}
th.visible-md, td.visible-md {
	display: table-cell!important
}
}
@media(min-width:1200px) {
.visible-md.visible-lg {
	display: block!important
}
tr.visible-md.visible-lg {
	display: table-row!important
}
th.visible-md.visible-lg, td.visible-md.visible-lg {
	display: table-cell!important
}
}
.visible-lg {
	display: none!important
}
tr.visible-lg {
	display: none!important
}
th.visible-lg, td.visible-lg {
	display: none!important
}
@media(max-width:767px) {
.visible-lg.visible-xs {
	display: block!important
}
tr.visible-lg.visible-xs {
	display: table-row!important
}
th.visible-lg.visible-xs, td.visible-lg.visible-xs {
	display: table-cell!important
}
}
@media(min-width:768px) and (max-width:991px) {
.visible-lg.visible-sm {
	display: block!important
}
tr.visible-lg.visible-sm {
	display: table-row!important
}
th.visible-lg.visible-sm, td.visible-lg.visible-sm {
	display: table-cell!important
}
}
@media(min-width:992px) and (max-width:1199px) {
.visible-lg.visible-md {
	display: block!important
}
tr.visible-lg.visible-md {
	display: table-row!important
}
th.visible-lg.visible-md, td.visible-lg.visible-md {
	display: table-cell!important
}
}
@media(min-width:1200px) {
.visible-lg {
	display: block!important
}
tr.visible-lg {
	display: table-row!important
}
th.visible-lg, td.visible-lg {
	display: table-cell!important
}
}
.hidden-xs {
	display: block!important
}
tr.hidden-xs {
	display: table-row!important
}
th.hidden-xs, td.hidden-xs {
	display: table-cell!important
}
@media(max-width:767px) {
.hidden-xs {
	display: none!important
}
tr.hidden-xs {
	display: none!important
}
th.hidden-xs, td.hidden-xs {
	display: none!important
}
}
@media(min-width:768px) and (max-width:991px) {
.hidden-xs.hidden-sm {
	display: none!important
}
tr.hidden-xs.hidden-sm {
	display: none!important
}
th.hidden-xs.hidden-sm, td.hidden-xs.hidden-sm {
	display: none!important
}
}
@media(min-width:992px) and (max-width:1199px) {
.hidden-xs.hidden-md {
	display: none!important
}
tr.hidden-xs.hidden-md {
	display: none!important
}
th.hidden-xs.hidden-md, td.hidden-xs.hidden-md {
	display: none!important
}
}
@media(min-width:1200px) {
.hidden-xs.hidden-lg {
	display: none!important
}
tr.hidden-xs.hidden-lg {
	display: none!important
}
th.hidden-xs.hidden-lg, td.hidden-xs.hidden-lg {
	display: none!important
}
}
.hidden-sm {
	display: block!important
}
tr.hidden-sm {
	display: table-row!important
}
th.hidden-sm, td.hidden-sm {
	display: table-cell!important
}
@media(max-width:767px) {
.hidden-sm.hidden-xs {
	display: none!important
}
tr.hidden-sm.hidden-xs {
	display: none!important
}
th.hidden-sm.hidden-xs, td.hidden-sm.hidden-xs {
	display: none!important
}
}
@media(min-width:768px) and (max-width:991px) {
.hidden-sm {
	display: none!important
}
tr.hidden-sm {
	display: none!important
}
th.hidden-sm, td.hidden-sm {
	display: none!important
}
}
@media(min-width:992px) and (max-width:1199px) {
.hidden-sm.hidden-md {
	display: none!important
}
tr.hidden-sm.hidden-md {
	display: none!important
}
th.hidden-sm.hidden-md, td.hidden-sm.hidden-md {
	display: none!important
}
}
@media(min-width:1200px) {
.hidden-sm.hidden-lg {
	display: none!important
}
tr.hidden-sm.hidden-lg {
	display: none!important
}
th.hidden-sm.hidden-lg, td.hidden-sm.hidden-lg {
	display: none!important
}
}
.hidden-md {
	display: block!important
}
tr.hidden-md {
	display: table-row!important
}
th.hidden-md, td.hidden-md {
	display: table-cell!important
}
@media(max-width:767px) {
.hidden-md.hidden-xs {
	display: none!important
}
tr.hidden-md.hidden-xs {
	display: none!important
}
th.hidden-md.hidden-xs, td.hidden-md.hidden-xs {
	display: none!important
}
}
@media(min-width:768px) and (max-width:991px) {
.hidden-md.hidden-sm {
	display: none!important
}
tr.hidden-md.hidden-sm {
	display: none!important
}
th.hidden-md.hidden-sm, td.hidden-md.hidden-sm {
	display: none!important
}
}
@media(min-width:992px) and (max-width:1199px) {
.hidden-md {
	display: none!important
}
tr.hidden-md {
	display: none!important
}
th.hidden-md, td.hidden-md {
	display: none!important
}
}
@media(min-width:1200px) {
.hidden-md.hidden-lg {
	display: none!important
}
tr.hidden-md.hidden-lg {
	display: none!important
}
th.hidden-md.hidden-lg, td.hidden-md.hidden-lg {
	display: none!important
}
}
.hidden-lg {
	display: block!important
}
tr.hidden-lg {
	display: table-row!important
}
th.hidden-lg, td.hidden-lg {
	display: table-cell!important
}
@media(max-width:767px) {
.hidden-lg.hidden-xs {
	display: none!important
}
tr.hidden-lg.hidden-xs {
	display: none!important
}
th.hidden-lg.hidden-xs, td.hidden-lg.hidden-xs {
	display: none!important
}
}
@media(min-width:768px) and (max-width:991px) {
.hidden-lg.hidden-sm {
	display: none!important
}
tr.hidden-lg.hidden-sm {
	display: none!important
}
th.hidden-lg.hidden-sm, td.hidden-lg.hidden-sm {
	display: none!important
}
}
@media(min-width:992px) and (max-width:1199px) {
.hidden-lg.hidden-md {
	display: none!important
}
tr.hidden-lg.hidden-md {
	display: none!important
}
th.hidden-lg.hidden-md, td.hidden-lg.hidden-md {
	display: none!important
}
}
@media(min-width:1200px) {
.hidden-lg {
	display: none!important
}
tr.hidden-lg {
	display: none!important
}
th.hidden-lg, td.hidden-lg {
	display: none!important
}
}
.visible-print {
	display: none!important
}
tr.visible-print {
	display: none!important
}
th.visible-print, td.visible-print {
	display: none!important
}
@media print {
.visible-print {
	display: block!important
}
tr.visible-print {
	display: table-row!important
}
th.visible-print, td.visible-print {
	display: table-cell!important
}
.hidden-print {
	display: none!important
}
tr.hidden-print {
	display: none!important
}
th.hidden-print, td.hidden-print {
	display: none!important
}
}

/****** FILE: themes/youngprofessionals/css/libs/fontello.css *****/
@font-face {
  font-family: 'fontello';
  src: url('/_resources/themes/youngprofessionals/fonts/fontello.eot?44400799');
  src: url('/_resources/themes/youngprofessionals/fonts/fontello.eot?44400799#iefix') format('embedded-opentype'),
       url('/_resources/themes/youngprofessionals/fonts/fontello.ttf?44400799') format('truetype'),
       url('/_resources/themes/youngprofessionals/fonts/fontello.svg?44400799#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?44400799#fontello') format('svg');
  }
}
*/
 
 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-glass:before { content: '\e800'; } /* '' */
.icon-music:before { content: '\e801'; } /* '' */
.icon-search:before { content: '\e802'; } /* '' */
.icon-mail:before { content: '\e803'; } /* '' */
.icon-mail-alt:before { content: '\e804'; } /* '' */
.icon-mail-squared:before { content: '\e805'; } /* '' */
.icon-heart:before { content: '\e806'; } /* '' */
.icon-heart-empty:before { content: '\e807'; } /* '' */
.icon-star:before { content: '\e808'; } /* '' */
.icon-star-empty:before { content: '\e809'; } /* '' */
.icon-star-half:before { content: '\e80a'; } /* '' */
.icon-star-half-alt:before { content: '\e80b'; } /* '' */
.icon-user:before { content: '\e80c'; } /* '' */
.icon-user-plus:before { content: '\e80d'; } /* '' */
.icon-user-times:before { content: '\e80e'; } /* '' */
.icon-users:before { content: '\e80f'; } /* '' */
.icon-male:before { content: '\e810'; } /* '' */
.icon-female:before { content: '\e811'; } /* '' */
.icon-child:before { content: '\e812'; } /* '' */
.icon-user-secret:before { content: '\e813'; } /* '' */
.icon-video:before { content: '\e814'; } /* '' */
.icon-videocam:before { content: '\e815'; } /* '' */
.icon-picture:before { content: '\e816'; } /* '' */
.icon-camera:before { content: '\e817'; } /* '' */
.icon-camera-alt:before { content: '\e818'; } /* '' */
.icon-th-large:before { content: '\e819'; } /* '' */
.icon-th:before { content: '\e81a'; } /* '' */
.icon-th-list:before { content: '\e81b'; } /* '' */
.icon-ok:before { content: '\e81c'; } /* '' */
.icon-ok-circled:before { content: '\e81d'; } /* '' */
.icon-ok-circled2:before { content: '\e81e'; } /* '' */
.icon-ok-squared:before { content: '\e81f'; } /* '' */
.icon-cancel:before { content: '\e820'; } /* '' */
.icon-cancel-circled:before { content: '\e821'; } /* '' */
.icon-cancel-circled2:before { content: '\e822'; } /* '' */
.icon-plus:before { content: '\e823'; } /* '' */
.icon-plus-circled:before { content: '\e824'; } /* '' */
.icon-plus-squared:before { content: '\e825'; } /* '' */
.icon-plus-squared-alt:before { content: '\e826'; } /* '' */
.icon-minus:before { content: '\e827'; } /* '' */
.icon-minus-circled:before { content: '\e828'; } /* '' */
.icon-minus-squared:before { content: '\e829'; } /* '' */
.icon-minus-squared-alt:before { content: '\e82a'; } /* '' */
.icon-help:before { content: '\e82b'; } /* '' */
.icon-help-circled:before { content: '\e82c'; } /* '' */
.icon-info-circled:before { content: '\e82d'; } /* '' */
.icon-info:before { content: '\e82e'; } /* '' */
.icon-home:before { content: '\e82f'; } /* '' */
.icon-link:before { content: '\e830'; } /* '' */
.icon-unlink:before { content: '\e831'; } /* '' */
.icon-link-ext:before { content: '\e832'; } /* '' */
.icon-link-ext-alt:before { content: '\e833'; } /* '' */
.icon-attach:before { content: '\e834'; } /* '' */
.icon-lock:before { content: '\e835'; } /* '' */
.icon-lock-open:before { content: '\e836'; } /* '' */
.icon-lock-open-alt:before { content: '\e837'; } /* '' */
.icon-pin:before { content: '\e838'; } /* '' */
.icon-eye:before { content: '\e839'; } /* '' */
.icon-eye-off:before { content: '\e83a'; } /* '' */
.icon-tag:before { content: '\e83b'; } /* '' */
.icon-tags:before { content: '\e83c'; } /* '' */
.icon-bookmark:before { content: '\e83d'; } /* '' */
.icon-bookmark-empty:before { content: '\e83e'; } /* '' */
.icon-flag:before { content: '\e83f'; } /* '' */
.icon-flag-empty:before { content: '\e840'; } /* '' */
.icon-flag-checkered:before { content: '\e841'; } /* '' */
.icon-thumbs-up:before { content: '\e842'; } /* '' */
.icon-thumbs-down:before { content: '\e843'; } /* '' */
.icon-thumbs-up-alt:before { content: '\e844'; } /* '' */
.icon-thumbs-down-alt:before { content: '\e845'; } /* '' */
.icon-download:before { content: '\e846'; } /* '' */
.icon-upload:before { content: '\e847'; } /* '' */
.icon-download-cloud:before { content: '\e848'; } /* '' */
.icon-upload-cloud:before { content: '\e849'; } /* '' */
.icon-reply:before { content: '\e84a'; } /* '' */
.icon-reply-all:before { content: '\e84b'; } /* '' */
.icon-forward:before { content: '\e84c'; } /* '' */
.icon-quote-left:before { content: '\e84d'; } /* '' */
.icon-quote-right:before { content: '\e84e'; } /* '' */
.icon-code:before { content: '\e84f'; } /* '' */
.icon-export:before { content: '\e850'; } /* '' */
.icon-export-alt:before { content: '\e851'; } /* '' */
.icon-share:before { content: '\e852'; } /* '' */
.icon-share-squared:before { content: '\e853'; } /* '' */
.icon-pencil:before { content: '\e854'; } /* '' */
.icon-pencil-squared:before { content: '\e855'; } /* '' */
.icon-edit:before { content: '\e856'; } /* '' */
.icon-print:before { content: '\e857'; } /* '' */
.icon-retweet:before { content: '\e858'; } /* '' */
.icon-keyboard:before { content: '\e859'; } /* '' */
.icon-gamepad:before { content: '\e85a'; } /* '' */
.icon-comment:before { content: '\e85b'; } /* '' */
.icon-chat:before { content: '\e85c'; } /* '' */
.icon-comment-empty:before { content: '\e85d'; } /* '' */
.icon-chat-empty:before { content: '\e85e'; } /* '' */
.icon-bell:before { content: '\e85f'; } /* '' */
.icon-bell-alt:before { content: '\e860'; } /* '' */
.icon-bell-off:before { content: '\e861'; } /* '' */
.icon-bell-off-empty:before { content: '\e862'; } /* '' */
.icon-attention-alt:before { content: '\e863'; } /* '' */
.icon-attention:before { content: '\e864'; } /* '' */
.icon-attention-circled:before { content: '\e865'; } /* '' */
.icon-location:before { content: '\e866'; } /* '' */
.icon-direction:before { content: '\e867'; } /* '' */
.icon-compass:before { content: '\e868'; } /* '' */
.icon-trash:before { content: '\e869'; } /* '' */
.icon-trash-empty:before { content: '\e86a'; } /* '' */
.icon-doc:before { content: '\e86b'; } /* '' */
.icon-docs:before { content: '\e86c'; } /* '' */
.icon-doc-text:before { content: '\e86d'; } /* '' */
.icon-doc-inv:before { content: '\e86e'; } /* '' */
.icon-doc-text-inv:before { content: '\e86f'; } /* '' */
.icon-file-pdf:before { content: '\e870'; } /* '' */
.icon-file-word:before { content: '\e871'; } /* '' */
.icon-file-excel:before { content: '\e872'; } /* '' */
.icon-file-powerpoint:before { content: '\e873'; } /* '' */
.icon-file-image:before { content: '\e874'; } /* '' */
.icon-file-archive:before { content: '\e875'; } /* '' */
.icon-file-audio:before { content: '\e876'; } /* '' */
.icon-file-video:before { content: '\e877'; } /* '' */
.icon-file-code:before { content: '\e878'; } /* '' */
.icon-folder:before { content: '\e879'; } /* '' */
.icon-folder-open:before { content: '\e87a'; } /* '' */
.icon-folder-empty:before { content: '\e87b'; } /* '' */
.icon-folder-open-empty:before { content: '\e87c'; } /* '' */
.icon-box:before { content: '\e87d'; } /* '' */
.icon-rss:before { content: '\e87e'; } /* '' */
.icon-rss-squared:before { content: '\e87f'; } /* '' */
.icon-phone:before { content: '\e880'; } /* '' */
.icon-phone-squared:before { content: '\e881'; } /* '' */
.icon-fax:before { content: '\e882'; } /* '' */
.icon-menu:before { content: '\e883'; } /* '' */
.icon-cog:before { content: '\e884'; } /* '' */
.icon-cog-alt:before { content: '\e885'; } /* '' */
.icon-wrench:before { content: '\e886'; } /* '' */
.icon-sliders:before { content: '\e887'; } /* '' */
.icon-basket:before { content: '\e888'; } /* '' */
.icon-cart-plus:before { content: '\e889'; } /* '' */
.icon-cart-arrow-down:before { content: '\e88a'; } /* '' */
.icon-calendar:before { content: '\e88b'; } /* '' */
.icon-calendar-empty:before { content: '\e88c'; } /* '' */
.icon-login:before { content: '\e88d'; } /* '' */
.icon-logout:before { content: '\e88e'; } /* '' */
.icon-mic:before { content: '\e88f'; } /* '' */
.icon-mute:before { content: '\e890'; } /* '' */
.icon-volume-off:before { content: '\e891'; } /* '' */
.icon-volume-down:before { content: '\e892'; } /* '' */
.icon-volume-up:before { content: '\e893'; } /* '' */
.icon-headphones:before { content: '\e894'; } /* '' */
.icon-clock:before { content: '\e895'; } /* '' */
.icon-lightbulb:before { content: '\e896'; } /* '' */
.icon-block:before { content: '\e897'; } /* '' */
.icon-resize-full:before { content: '\e898'; } /* '' */
.icon-resize-full-alt:before { content: '\e899'; } /* '' */
.icon-resize-small:before { content: '\e89a'; } /* '' */
.icon-resize-vertical:before { content: '\e89b'; } /* '' */
.icon-resize-horizontal:before { content: '\e89c'; } /* '' */
.icon-move:before { content: '\e89d'; } /* '' */
.icon-zoom-in:before { content: '\e89e'; } /* '' */
.icon-zoom-out:before { content: '\e89f'; } /* '' */
.icon-down-circled2:before { content: '\e8a0'; } /* '' */
.icon-up-circled2:before { content: '\e8a1'; } /* '' */
.icon-left-circled2:before { content: '\e8a2'; } /* '' */
.icon-right-circled2:before { content: '\e8a3'; } /* '' */
.icon-down-dir:before { content: '\e8a4'; } /* '' */
.icon-up-dir:before { content: '\e8a5'; } /* '' */
.icon-left-dir:before { content: '\e8a6'; } /* '' */
.icon-right-dir:before { content: '\e8a7'; } /* '' */
.icon-down-open:before { content: '\e8a8'; } /* '' */
.icon-left-open:before { content: '\e8a9'; } /* '' */
.icon-right-open:before { content: '\e8aa'; } /* '' */
.icon-up-open:before { content: '\e8ab'; } /* '' */
.icon-angle-left:before { content: '\e8ac'; } /* '' */
.icon-angle-right:before { content: '\e8ad'; } /* '' */
.icon-angle-up:before { content: '\e8ae'; } /* '' */
.icon-angle-down:before { content: '\e8af'; } /* '' */
.icon-angle-circled-left:before { content: '\e8b0'; } /* '' */
.icon-angle-circled-right:before { content: '\e8b1'; } /* '' */
.icon-angle-circled-up:before { content: '\e8b2'; } /* '' */
.icon-angle-circled-down:before { content: '\e8b3'; } /* '' */
.icon-angle-double-left:before { content: '\e8b4'; } /* '' */
.icon-angle-double-right:before { content: '\e8b5'; } /* '' */
.icon-angle-double-up:before { content: '\e8b6'; } /* '' */
.icon-angle-double-down:before { content: '\e8b7'; } /* '' */
.icon-down:before { content: '\e8b8'; } /* '' */
.icon-left:before { content: '\e8b9'; } /* '' */
.icon-right:before { content: '\e8ba'; } /* '' */
.icon-up:before { content: '\e8bb'; } /* '' */
.icon-down-big:before { content: '\e8bc'; } /* '' */
.icon-left-big:before { content: '\e8bd'; } /* '' */
.icon-right-big:before { content: '\e8be'; } /* '' */
.icon-up-big:before { content: '\e8bf'; } /* '' */
.icon-right-hand:before { content: '\e8c0'; } /* '' */
.icon-left-hand:before { content: '\e8c1'; } /* '' */
.icon-up-hand:before { content: '\e8c2'; } /* '' */
.icon-down-hand:before { content: '\e8c3'; } /* '' */
.icon-left-circled:before { content: '\e8c4'; } /* '' */
.icon-right-circled:before { content: '\e8c5'; } /* '' */
.icon-up-circled:before { content: '\e8c6'; } /* '' */
.icon-down-circled:before { content: '\e8c7'; } /* '' */
.icon-cw:before { content: '\e8c8'; } /* '' */
.icon-ccw:before { content: '\e8c9'; } /* '' */
.icon-arrows-cw:before { content: '\e8ca'; } /* '' */
.icon-level-up:before { content: '\e8cb'; } /* '' */
.icon-level-down:before { content: '\e8cc'; } /* '' */
.icon-shuffle:before { content: '\e8cd'; } /* '' */
.icon-exchange:before { content: '\e8ce'; } /* '' */
.icon-history:before { content: '\e8cf'; } /* '' */
.icon-expand:before { content: '\e8d0'; } /* '' */
.icon-collapse:before { content: '\e8d1'; } /* '' */
.icon-expand-right:before { content: '\e8d2'; } /* '' */
.icon-collapse-left:before { content: '\e8d3'; } /* '' */
.icon-play:before { content: '\e8d4'; } /* '' */
.icon-play-circled:before { content: '\e8d5'; } /* '' */
.icon-play-circled2:before { content: '\e8d6'; } /* '' */
.icon-stop:before { content: '\e8d7'; } /* '' */
.icon-pause:before { content: '\e8d8'; } /* '' */
.icon-to-end:before { content: '\e8d9'; } /* '' */
.icon-to-end-alt:before { content: '\e8da'; } /* '' */
.icon-to-start:before { content: '\e8db'; } /* '' */
.icon-to-start-alt:before { content: '\e8dc'; } /* '' */
.icon-fast-fw:before { content: '\e8dd'; } /* '' */
.icon-fast-bw:before { content: '\e8de'; } /* '' */
.icon-eject:before { content: '\e8df'; } /* '' */
.icon-target:before { content: '\e8e0'; } /* '' */
.icon-signal:before { content: '\e8e1'; } /* '' */
.icon-wifi:before { content: '\e8e2'; } /* '' */
.icon-award:before { content: '\e8e3'; } /* '' */
.icon-desktop:before { content: '\e8e4'; } /* '' */
.icon-laptop:before { content: '\e8e5'; } /* '' */
.icon-tablet:before { content: '\e8e6'; } /* '' */
.icon-mobile:before { content: '\e8e7'; } /* '' */
.icon-inbox:before { content: '\e8e8'; } /* '' */
.icon-globe:before { content: '\e8e9'; } /* '' */
.icon-sun:before { content: '\e8ea'; } /* '' */
.icon-cloud:before { content: '\e8eb'; } /* '' */
.icon-flash:before { content: '\e8ec'; } /* '' */
.icon-moon:before { content: '\e8ed'; } /* '' */
.icon-umbrella:before { content: '\e8ee'; } /* '' */
.icon-flight:before { content: '\e8ef'; } /* '' */
.icon-fighter-jet:before { content: '\e8f0'; } /* '' */
.icon-paper-plane:before { content: '\e8f1'; } /* '' */
.icon-paper-plane-empty:before { content: '\e8f2'; } /* '' */
.icon-space-shuttle:before { content: '\e8f3'; } /* '' */
.icon-leaf:before { content: '\e8f4'; } /* '' */
.icon-font:before { content: '\e8f5'; } /* '' */
.icon-bold:before { content: '\e8f6'; } /* '' */
.icon-medium:before { content: '\e8f7'; } /* '' */
.icon-italic:before { content: '\e8f8'; } /* '' */
.icon-header:before { content: '\e8f9'; } /* '' */
.icon-paragraph:before { content: '\e8fa'; } /* '' */
.icon-text-height:before { content: '\e8fb'; } /* '' */
.icon-text-width:before { content: '\e8fc'; } /* '' */
.icon-align-left:before { content: '\e8fd'; } /* '' */
.icon-align-center:before { content: '\e8fe'; } /* '' */
.icon-align-right:before { content: '\e8ff'; } /* '' */
.icon-align-justify:before { content: '\e900'; } /* '' */
.icon-list:before { content: '\e901'; } /* '' */
.icon-indent-left:before { content: '\e902'; } /* '' */
.icon-indent-right:before { content: '\e903'; } /* '' */
.icon-list-bullet:before { content: '\e904'; } /* '' */
.icon-list-numbered:before { content: '\e905'; } /* '' */
.icon-strike:before { content: '\e906'; } /* '' */
.icon-underline:before { content: '\e907'; } /* '' */
.icon-superscript:before { content: '\e908'; } /* '' */
.icon-subscript:before { content: '\e909'; } /* '' */
.icon-table:before { content: '\e90a'; } /* '' */
.icon-columns:before { content: '\e90b'; } /* '' */
.icon-crop:before { content: '\e90c'; } /* '' */
.icon-scissors:before { content: '\e90d'; } /* '' */
.icon-paste:before { content: '\e90e'; } /* '' */
.icon-briefcase:before { content: '\e90f'; } /* '' */
.icon-suitcase:before { content: '\e910'; } /* '' */
.icon-ellipsis:before { content: '\e911'; } /* '' */
.icon-ellipsis-vert:before { content: '\e912'; } /* '' */
.icon-off:before { content: '\e913'; } /* '' */
.icon-road:before { content: '\e914'; } /* '' */
.icon-list-alt:before { content: '\e915'; } /* '' */
.icon-qrcode:before { content: '\e916'; } /* '' */
.icon-barcode:before { content: '\e917'; } /* '' */
.icon-book:before { content: '\e918'; } /* '' */
.icon-ajust:before { content: '\e919'; } /* '' */
.icon-tint:before { content: '\e91a'; } /* '' */
.icon-toggle-off:before { content: '\e91b'; } /* '' */
.icon-toggle-on:before { content: '\e91c'; } /* '' */
.icon-check:before { content: '\e91d'; } /* '' */
.icon-check-empty:before { content: '\e91e'; } /* '' */
.icon-circle:before { content: '\e91f'; } /* '' */
.icon-circle-empty:before { content: '\e920'; } /* '' */
.icon-circle-thin:before { content: '\e921'; } /* '' */
.icon-circle-notch:before { content: '\e922'; } /* '' */
.icon-dot-circled:before { content: '\e923'; } /* '' */
.icon-asterisk:before { content: '\e924'; } /* '' */
.icon-gift:before { content: '\e925'; } /* '' */
.icon-fire:before { content: '\e926'; } /* '' */
.icon-magnet:before { content: '\e927'; } /* '' */
.icon-chart-bar:before { content: '\e928'; } /* '' */
.icon-chart-area:before { content: '\e929'; } /* '' */
.icon-chart-pie:before { content: '\e92a'; } /* '' */
.icon-chart-line:before { content: '\e92b'; } /* '' */
.icon-ticket:before { content: '\e92c'; } /* '' */
.icon-credit-card:before { content: '\e92d'; } /* '' */
.icon-floppy:before { content: '\e92e'; } /* '' */
.icon-megaphone:before { content: '\e92f'; } /* '' */
.icon-hdd:before { content: '\e930'; } /* '' */
.icon-key:before { content: '\e931'; } /* '' */
.icon-fork:before { content: '\e932'; } /* '' */
.icon-rocket:before { content: '\e933'; } /* '' */
.icon-bug:before { content: '\e934'; } /* '' */
.icon-certificate:before { content: '\e935'; } /* '' */
.icon-tasks:before { content: '\e936'; } /* '' */
.icon-filter:before { content: '\e937'; } /* '' */
.icon-beaker:before { content: '\e938'; } /* '' */
.icon-magic:before { content: '\e939'; } /* '' */
.icon-cab:before { content: '\e93a'; } /* '' */
.icon-taxi:before { content: '\e93b'; } /* '' */
.icon-truck:before { content: '\e93c'; } /* '' */
.icon-bus:before { content: '\e93d'; } /* '' */
.icon-bicycle:before { content: '\e93e'; } /* '' */
.icon-motorcycle:before { content: '\e93f'; } /* '' */
.icon-train:before { content: '\e940'; } /* '' */
.icon-subway:before { content: '\e941'; } /* '' */
.icon-ship:before { content: '\e942'; } /* '' */
.icon-money:before { content: '\e943'; } /* '' */
.icon-euro:before { content: '\e944'; } /* '' */
.icon-pound:before { content: '\e945'; } /* '' */
.icon-dollar:before { content: '\e946'; } /* '' */
.icon-rupee:before { content: '\e947'; } /* '' */
.icon-yen:before { content: '\e948'; } /* '' */
.icon-rouble:before { content: '\e949'; } /* '' */
.icon-shekel:before { content: '\e94a'; } /* '' */
.icon-try:before { content: '\e94b'; } /* '' */
.icon-won:before { content: '\e94c'; } /* '' */
.icon-bitcoin:before { content: '\e94d'; } /* '' */
.icon-viacoin:before { content: '\e94e'; } /* '' */
.icon-sort:before { content: '\e94f'; } /* '' */
.icon-sort-down:before { content: '\e950'; } /* '' */
.icon-sort-up:before { content: '\e951'; } /* '' */
.icon-sort-alt-up:before { content: '\e952'; } /* '' */
.icon-sort-alt-down:before { content: '\e953'; } /* '' */
.icon-sort-name-up:before { content: '\e954'; } /* '' */
.icon-sort-name-down:before { content: '\e955'; } /* '' */
.icon-sort-number-up:before { content: '\e956'; } /* '' */
.icon-sort-number-down:before { content: '\e957'; } /* '' */
.icon-hammer:before { content: '\e958'; } /* '' */
.icon-gauge:before { content: '\e959'; } /* '' */
.icon-sitemap:before { content: '\e95a'; } /* '' */
.icon-spinner:before { content: '\e95b'; } /* '' */
.icon-coffee:before { content: '\e95c'; } /* '' */
.icon-food:before { content: '\e95d'; } /* '' */
.icon-beer:before { content: '\e95e'; } /* '' */
.icon-user-md:before { content: '\e95f'; } /* '' */
.icon-stethoscope:before { content: '\e960'; } /* '' */
.icon-heartbeat:before { content: '\e961'; } /* '' */
.icon-ambulance:before { content: '\e962'; } /* '' */
.icon-medkit:before { content: '\e963'; } /* '' */
.icon-h-sigh:before { content: '\e964'; } /* '' */
.icon-bed:before { content: '\e965'; } /* '' */
.icon-hospital:before { content: '\e966'; } /* '' */
.icon-building:before { content: '\e967'; } /* '' */
.icon-building-filled:before { content: '\e968'; } /* '' */
.icon-bank:before { content: '\e969'; } /* '' */
.icon-smile:before { content: '\e96a'; } /* '' */
.icon-frown:before { content: '\e96b'; } /* '' */
.icon-meh:before { content: '\e96c'; } /* '' */
.icon-anchor:before { content: '\e96d'; } /* '' */
.icon-terminal:before { content: '\e96e'; } /* '' */
.icon-eraser:before { content: '\e96f'; } /* '' */
.icon-puzzle:before { content: '\e970'; } /* '' */
.icon-shield:before { content: '\e971'; } /* '' */
.icon-extinguisher:before { content: '\e972'; } /* '' */
.icon-bullseye:before { content: '\e973'; } /* '' */
.icon-wheelchair:before { content: '\e974'; } /* '' */
.icon-language:before { content: '\e975'; } /* '' */
.icon-graduation-cap:before { content: '\e976'; } /* '' */
.icon-paw:before { content: '\e977'; } /* '' */
.icon-spoon:before { content: '\e978'; } /* '' */
.icon-cube:before { content: '\e979'; } /* '' */
.icon-cubes:before { content: '\e97a'; } /* '' */
.icon-recycle:before { content: '\e97b'; } /* '' */
.icon-tree:before { content: '\e97c'; } /* '' */
.icon-database:before { content: '\e97d'; } /* '' */
.icon-server:before { content: '\e97e'; } /* '' */
.icon-lifebuoy:before { content: '\e97f'; } /* '' */
.icon-rebel:before { content: '\e980'; } /* '' */
.icon-empire:before { content: '\e981'; } /* '' */
.icon-bomb:before { content: '\e982'; } /* '' */
.icon-soccer-ball:before { content: '\e983'; } /* '' */
.icon-tty:before { content: '\e984'; } /* '' */
.icon-binoculars:before { content: '\e985'; } /* '' */
.icon-plug:before { content: '\e986'; } /* '' */
.icon-newspaper:before { content: '\e987'; } /* '' */
.icon-calc:before { content: '\e988'; } /* '' */
.icon-copyright:before { content: '\e989'; } /* '' */
.icon-at:before { content: '\e98a'; } /* '' */
.icon-eyedropper:before { content: '\e98b'; } /* '' */
.icon-brush:before { content: '\e98c'; } /* '' */
.icon-birthday:before { content: '\e98d'; } /* '' */
.icon-diamond:before { content: '\e98e'; } /* '' */
.icon-street-view:before { content: '\e98f'; } /* '' */
.icon-venus:before { content: '\e990'; } /* '' */
.icon-mars:before { content: '\e991'; } /* '' */
.icon-mercury:before { content: '\e992'; } /* '' */
.icon-transgender:before { content: '\e993'; } /* '' */
.icon-transgender-alt:before { content: '\e994'; } /* '' */
.icon-venus-double:before { content: '\e995'; } /* '' */
.icon-mars-double:before { content: '\e996'; } /* '' */
.icon-venus-mars:before { content: '\e997'; } /* '' */
.icon-mars-stroke:before { content: '\e998'; } /* '' */
.icon-mars-stroke-v:before { content: '\e999'; } /* '' */
.icon-mars-stroke-h:before { content: '\e99a'; } /* '' */
.icon-neuter:before { content: '\e99b'; } /* '' */
.icon-cc-visa:before { content: '\e99c'; } /* '' */
.icon-cc-mastercard:before { content: '\e99d'; } /* '' */
.icon-cc-discover:before { content: '\e99e'; } /* '' */
.icon-cc-amex:before { content: '\e99f'; } /* '' */
.icon-cc-paypal:before { content: '\e9a0'; } /* '' */
.icon-cc-stripe:before { content: '\e9a1'; } /* '' */
.icon-adn:before { content: '\e9a2'; } /* '' */
.icon-android:before { content: '\e9a3'; } /* '' */
.icon-angellist:before { content: '\e9a4'; } /* '' */
.icon-apple:before { content: '\e9a5'; } /* '' */
.icon-behance:before { content: '\e9a6'; } /* '' */
.icon-behance-squared:before { content: '\e9a7'; } /* '' */
.icon-bitbucket:before { content: '\e9a8'; } /* '' */
.icon-bitbucket-squared:before { content: '\e9a9'; } /* '' */
.icon-buysellads:before { content: '\e9aa'; } /* '' */
.icon-cc:before { content: '\e9ab'; } /* '' */
.icon-codeopen:before { content: '\e9ac'; } /* '' */
.icon-connectdevelop:before { content: '\e9ad'; } /* '' */
.icon-css3:before { content: '\e9ae'; } /* '' */
.icon-dashcube:before { content: '\e9af'; } /* '' */
.icon-delicious:before { content: '\e9b0'; } /* '' */
.icon-deviantart:before { content: '\e9b1'; } /* '' */
.icon-digg:before { content: '\e9b2'; } /* '' */
.icon-dribbble:before { content: '\e9b3'; } /* '' */
.icon-dropbox:before { content: '\e9b4'; } /* '' */
.icon-drupal:before { content: '\e9b5'; } /* '' */
.icon-facebook:before { content: '\e9b6'; } /* '' */
.icon-facebook-squared:before { content: '\e9b7'; } /* '' */
.icon-facebook-official:before { content: '\e9b8'; } /* '' */
.icon-flickr:before { content: '\e9b9'; } /* '' */
.icon-forumbee:before { content: '\e9ba'; } /* '' */
.icon-foursquare:before { content: '\e9bb'; } /* '' */
.icon-git-squared:before { content: '\e9bc'; } /* '' */
.icon-git:before { content: '\e9bd'; } /* '' */
.icon-github:before { content: '\e9be'; } /* '' */
.icon-github-squared:before { content: '\e9bf'; } /* '' */
.icon-github-circled:before { content: '\e9c0'; } /* '' */
.icon-gittip:before { content: '\e9c1'; } /* '' */
.icon-google:before { content: '\e9c2'; } /* '' */
.icon-gplus:before { content: '\e9c3'; } /* '' */
.icon-gplus-squared:before { content: '\e9c4'; } /* '' */
.icon-gwallet:before { content: '\e9c5'; } /* '' */
.icon-hacker-news:before { content: '\e9c6'; } /* '' */
.icon-html5:before { content: '\e9c7'; } /* '' */
.icon-instagram:before { content: '\e9c8'; } /* '' */
.icon-ioxhost:before { content: '\e9c9'; } /* '' */
.icon-joomla:before { content: '\e9ca'; } /* '' */
.icon-jsfiddle:before { content: '\e9cb'; } /* '' */
.icon-lastfm:before { content: '\e9cc'; } /* '' */
.icon-lastfm-squared:before { content: '\e9cd'; } /* '' */
.icon-leanpub:before { content: '\e9ce'; } /* '' */
.icon-linkedin-squared:before { content: '\e9cf'; } /* '' */
.icon-linux:before { content: '\e9d0'; } /* '' */
.icon-linkedin:before { content: '\e9d1'; } /* '' */
.icon-maxcdn:before { content: '\e9d2'; } /* '' */
.icon-meanpath:before { content: '\e9d3'; } /* '' */
.icon-openid:before { content: '\e9d4'; } /* '' */
.icon-pagelines:before { content: '\e9d5'; } /* '' */
.icon-paypal:before { content: '\e9d6'; } /* '' */
.icon-pied-piper-squared:before { content: '\e9d7'; } /* '' */
.icon-pied-piper-alt:before { content: '\e9d8'; } /* '' */
.icon-pinterest:before { content: '\e9d9'; } /* '' */
.icon-pinterest-circled:before { content: '\e9da'; } /* '' */
.icon-pinterest-squared:before { content: '\e9db'; } /* '' */
.icon-qq:before { content: '\e9dc'; } /* '' */
.icon-reddit:before { content: '\e9dd'; } /* '' */
.icon-reddit-squared:before { content: '\e9de'; } /* '' */
.icon-renren:before { content: '\e9df'; } /* '' */
.icon-sellsy:before { content: '\e9e0'; } /* '' */
.icon-shirtsinbulk:before { content: '\e9e1'; } /* '' */
.icon-simplybuilt:before { content: '\e9e2'; } /* '' */
.icon-skyatlas:before { content: '\e9e3'; } /* '' */
.icon-skype:before { content: '\e9e4'; } /* '' */
.icon-slack:before { content: '\e9e5'; } /* '' */
.icon-slideshare:before { content: '\e9e6'; } /* '' */
.icon-soundcloud:before { content: '\e9e7'; } /* '' */
.icon-spotify:before { content: '\e9e8'; } /* '' */
.icon-stackexchange:before { content: '\e9e9'; } /* '' */
.icon-stackoverflow:before { content: '\e9ea'; } /* '' */
.icon-steam:before { content: '\e9eb'; } /* '' */
.icon-steam-squared:before { content: '\e9ec'; } /* '' */
.icon-stumbleupon:before { content: '\e9ed'; } /* '' */
.icon-stumbleupon-circled:before { content: '\e9ee'; } /* '' */
.icon-tencent-weibo:before { content: '\e9ef'; } /* '' */
.icon-trello:before { content: '\e9f0'; } /* '' */
.icon-tumblr:before { content: '\e9f1'; } /* '' */
.icon-tumblr-squared:before { content: '\e9f2'; } /* '' */
.icon-twitch:before { content: '\e9f3'; } /* '' */
.icon-twitter-squared:before { content: '\e9f4'; } /* '' */
.icon-twitter:before { content: '\e9f5'; } /* '' */
.icon-vimeo-squared:before { content: '\e9f6'; } /* '' */
.icon-vine:before { content: '\e9f7'; } /* '' */
.icon-vkontakte:before { content: '\e9f8'; } /* '' */
.icon-whatsapp:before { content: '\e9f9'; } /* '' */
.icon-wechat:before { content: '\e9fa'; } /* '' */
.icon-weibo:before { content: '\e9fb'; } /* '' */
.icon-windows:before { content: '\e9fc'; } /* '' */
.icon-wordpress:before { content: '\e9fd'; } /* '' */
.icon-xing:before { content: '\e9fe'; } /* '' */
.icon-xing-squared:before { content: '\e9ff'; } /* '' */
.icon-yelp:before { content: '\ea00'; } /* '' */
.icon-youtube:before { content: '\ea01'; } /* '' */
.icon-yahoo:before { content: '\ea02'; } /* '' */
.icon-youtube-squared:before { content: '\ea03'; } /* '' */
.icon-youtube-play:before { content: '\ea04'; } /* '' */
.icon-blank:before { content: '\ea05'; } /* '' */
.icon-lemon:before { content: '\ea06'; } /* '' */
.icon-cluster118:before { content: '\ea07'; } /* '' */
/****** FILE: themes/youngprofessionals/css/libs/lightbox.css *****/
/* Preload images */
body:after {
  /*content: url(/img/close.png) url(/img/loading.gif) url(/img/prev.png) url(/img/next.png);*/
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit; 
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: none !important;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%; 
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: none !important;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close:after  {
  display: block;
  float: right;
  width: 30px;
  height: 41px;
  line-height: 41px;
  content:"CLOSE"; 
  color: #fff;
  text-align: right; 
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:before  {
  display: block;
  float: right;
  width: 30px;
  height: 41px;
  line-height: 41px;
  content:"\e896";
  font-family:"fontawesome";
  color: #fff;
  text-align: right; 
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;  
  opacity: 1;
}
/****** FILE: themes/youngprofessionals/css/libs/slick.css *****/
@charset "UTF-8";
/* Slider */
.slick-slider { position: relative; display: block; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }

.slick-list { position: relative; overflow: hidden; display: block; margin: 0; padding: 0; }
.slick-list:focus { outline: none; }
.slick-loading .slick-list { background: #fff url("./ajax-loader.gif") center center no-repeat; }
.slick-list.dragging { cursor: pointer; cursor: hand; }

.slick-slider .slick-track { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }

.slick-track { position: relative; left: 0; top: 0; display: block; }
.slick-track:before, .slick-track:after { content: ""; display: table; }
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }

.slick-slide { float: left; min-height: 1px; display: none; }
[dir="rtl"] .slick-slide { float: right; }
.slick-slide img { display: block; max-height: 435px}
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; }

/* Icons */
@font-face { font-family: "slick"; src: url("./fonts/slick.eot"); src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg"); font-weight: normal; font-style: normal; }
/* Arrows */
.slick-prev, .slick-next { position: absolute; display: block; height: 30px; width:30px; line-height: 0; font-size: 0; cursor: pointer; background: #d4dfe5; color: transparent; top: 50%; margin-top: -26px; padding: 0; border: none; outline: none; -webkit-border-radius: 15px;
-moz-border-radius: 15px; -webkit-transition:all 0.5s ease-in-out; -moz-transition:all 0.5s ease-in-out; -o-transition:all 0.5s ease-in-out; transition:all 0.5s ease-in-out;
border-radius: 15px; }
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus { outline: none; background: #d4dfe5; color: transparent; }
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before { opacity: 1; }
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before { opacity: 0.25; }

.slick-prev:before, .slick-next:before { font-family: "fontawesome"; font-size: 30px; line-height: 1; color: #4f7c95; text-align: center; }

.slick-prev { left: -15px; }
.slick-prev:hover { left: -20px;}
[dir="rtl"] .slick-prev { left: auto; right: -25px; }
.slick-prev:before { content: "\e8a8"; margin-right: 3px; }
[dir="rtl"] .slick-prev:before { content: "\e8a8"; }

.slick-next { right: -15px; }
.slick-next:hover { right: -20px; }
[dir="rtl"] .slick-next { left: -25px; right: auto; }
.slick-next:before { content: "\e8a9"; margin-left: 3px; }
[dir="rtl"] .slick-next:before { content: "\e8a9"; }

.slick-dots { position: absolute; bottom: -45px; list-style: none; display: block; text-align: center; padding: 0; width: 100%; }
.slick-dots li { position: relative; display: inline-block; height: 20px; width: 20px; margin: 0 5px; padding: 0; cursor: pointer; }
.slick-dots li button { border: 0; background: transparent; display: block; height: 20px; width: 20px; outline: none; line-height: 0; font-size: 0; color: transparent; padding: 5px; cursor: pointer; }
.slick-dots li button:hover, .slick-dots li button:focus { outline: none; }
.slick-dots li button:hover:before, .slick-dots li button:focus:before { opacity: 1; }
.slick-dots li button:before { position: absolute; top: 0; left: 0; content: "•"; width: 20px; height: 20px; font-family: "slick"; font-size: 6px; line-height: 20px; text-align: center; color: black; opacity: 0.25; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.slick-dots li.slick-active button:before { color: black; opacity: 0.75; }

/*# sourceMappingURL=slick.css.map */

/****** FILE: themes/youngprofessionals/css/libs/blueimp-gallery.css *****/
@charset "UTF-8";
/*
 * blueimp Gallery CSS 2.11.1
 * https://github.com/blueimp/Gallery
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

.blueimp-gallery,
.blueimp-gallery > .slides > .slide > .slide-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Prevent artifacts in Mozilla Firefox: */
  -moz-backface-visibility: hidden;
}
.blueimp-gallery > .slides > .slide > .slide-content {
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
}
.blueimp-gallery {
  position: fixed;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  display: none;
  direction: ltr;
  -ms-touch-action: none;
  touch-action: none;
}
.blueimp-gallery-carousel {
  position: relative;
  z-index: auto;
  margin: 1em auto;
  /* Set the carousel width/height ratio to 16/9: */
  padding-bottom: 56.25%;
  box-shadow: 0 0 10px #000;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.blueimp-gallery-display {
  display: block;
  opacity: 1;
}
.blueimp-gallery > .slides {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.blueimp-gallery-carousel > .slides {
  position: absolute;
}
.blueimp-gallery > .slides > .slide {
  position: relative;
  float: left;
  height: 100%;
  text-align: center;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); 
     -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); 
      -ms-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); 
       -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); 
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.blueimp-gallery,
.blueimp-gallery > .slides > .slide > .slide-content {
  -webkit-transition: opacity 0.5s linear;
     -moz-transition: opacity 0.5s linear;
      -ms-transition: opacity 0.5s linear;
       -o-transition: opacity 0.5s linear;
          transition: opacity 0.5s linear;
}
.blueimp-gallery > .slides > .slide-loading {
  background: url(../img/loading.gif) center no-repeat;
  background-size: 64px 64px;
}
.blueimp-gallery > .slides > .slide-loading > .slide-content {
  opacity: 0;
}
.blueimp-gallery > .slides > .slide-error {
  background: url(../img/error.png) center no-repeat;
}
.blueimp-gallery > .slides > .slide-error > .slide-content {
  display: none;
}
.blueimp-gallery > .prev,
.blueimp-gallery > .next {
    position: absolute;
    top: 50%;
    margin-top: -26px;   
    width: 46px;
    height: 46px;
    cursor: pointer;
    opacity: 0.8;
    display: none;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;  
    border-radius: 23px;
    background: #86C250;   
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-weight:  normal;
}
.blueimp-gallery > .prev:hover,
.blueimp-gallery > .prev:focus,
.blueimp-gallery > .next:hover,
.blueimp-gallery > .next:focus{  
    background: #1D74B8;   
}
.blueimp-gallery > .prev{
  left: 15px;
}
.blueimp-gallery > .next {
  right: 15px;
}
.blueimp-gallery .prev:after{
    content:"\e8a9";
    font-family:"fontello";
    position: absolute;
    top: 1px;
    left: 16px; 
    color: #fff;
    font-size: 16px;
    width: 16px;
    height: 46px;
    line-height: 46px;
    vertical-align: middle;   
}
.blueimp-gallery .next:after{
    content:"\e8aa";
    font-family:"fontello";
    position: absolute;
    top: 1px;
    right: 10px;
    color: #fff;
    font-size: 16px;
    width: 16px;
    height: 46px;
    line-height: 46px;
    vertical-align: middle;   
}
.blueimp-gallery > .title{
  position: absolute;
  width: 100%;
  bottom: 70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-transform: none;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  font-size: 14px !important;
  background-color: rgba(0,0,0,.6); 
  display: none;
  line-height: 1.2;
  vertical-align: middle;    
}
.blueimp-gallery > .title:not(:empty) {
    padding: 15px 10px;
}
@media(max-width: 450px){
  .blueimp-gallery > .title{
     
  }
}
.blueimp-gallery > .close{
  position: absolute;
  top: 15px;   
  width: 46px;
  height: 46px;
  cursor: pointer;
  opacity: 0.8;
  display: none;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;  
  border-radius: 23px;
  background: #86C250;   
}
.blueimp-gallery > .close {  
  right: 15px; 
  cursor: pointer;
}
.blueimp-gallery > .close:after {  
  content:"\e89a";
  font-family:"fontello";
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 16px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  vertical-align: middle;
  text-align: center;   
}
.blueimp-gallery > .play-pause {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 15px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  opacity: 0.8;
  display: none;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;  
  border-radius: 23px;
   background: #86C250;   
}
.blueimp-gallery .play-pause:after {  
  font-family:"fontello";
  content:"\e8d4"; 
  position: absolute;
  top: 0;
  right: -2px;  
  font-size: 16px;
  color: #fff;
  line-height: 46px;
  width: 46px;
  text-align: center;
  vertical-align: middle;
}
.blueimp-gallery-playing .play-pause:after {
  font-family:"fontello";
  content:"\e8d8"; 
  position: absolute;
  top: 0;
  left: 0;  
  font-size: 16px;
  line-height: 46px;
  width: 46px;
  text-align: center;
  vertical-align: middle;
}
.blueimp-gallery > .prev:hover,
.blueimp-gallery > .next:hover,
.blueimp-gallery > .close:hover,
.blueimp-gallery > .title:hover,
.blueimp-gallery > .play-pause:hover {
  color: #fff;
  opacity: 1;
}
.blueimp-gallery-controls > .prev,
.blueimp-gallery-controls > .next,
.blueimp-gallery-controls > .close,
.blueimp-gallery-controls > .title,
.blueimp-gallery-controls > .play-pause {
  display: block;
  /* Fix z-index issues (controls behind slide element) on Android: */
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
       -o-transform: translateZ(0);
          transform: translateZ(0);
}
.blueimp-gallery-single > .prev,
.blueimp-gallery-left > .prev,
.blueimp-gallery-single > .next,
.blueimp-gallery-right > .next,
.blueimp-gallery-single > .play-pause {
  display: none;
}
.blueimp-gallery > .slides > .slide > .slide-content,
.blueimp-gallery > .prev,
.blueimp-gallery > .next,
.blueimp-gallery > .close,
.blueimp-gallery > .play-pause {
  -webkit-user-select: none;
   -khtml-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Replace PNGs with SVGs for capable browsers (excluding IE<9) */
body:last-child .blueimp-gallery > .slides > .slide-error {
  background-image: url(../img/error.svg);
}
/*body:last-child .blueimp-gallery > .play-pause {
  width: 20px;
  height: 20px;
  background-size: 40px 20px;
  background-image: url(../img/play-pause.svg);
}*/
body:last-child .blueimp-gallery-playing > .play-pause {
  background-position: -20px 0;
}

/* IE7 fixes */
*+html .blueimp-gallery > .slides > .slide {
  min-height: 300px;
}
*+html .blueimp-gallery > .slides > .slide > .slide-content {
  position: relative;
}

/****** FILE: themes/youngprofessionals/css/libs/blueimp-gallery-indicator.css *****/
@charset "UTF-8";
/*
 * blueimp Gallery Indicator CSS 1.1.0
 * https://github.com/blueimp/Gallery
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

.blueimp-gallery > .indicator {
  position: absolute;
  top: auto;
  right: 15px;
  bottom: 15px;
  left: 15px;
  margin: 0 40px;
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 10px;
  display: none;
}
.blueimp-gallery > .indicator > li {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 6px 3px 0 3px;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  border: 1px solid transparent;
  background: #ccc;
  background: rgba(255, 255, 255, 0.25) center no-repeat;
  border-radius: 5px;
  box-shadow: 0 0 2px #000;
  opacity: 0.5;
  cursor: pointer;
}
.blueimp-gallery > .indicator > li:hover,
.blueimp-gallery > .indicator > .active {
  background-color: #fff;
  border-color: #fff;
  opacity: 1;
}
.blueimp-gallery-controls > .indicator {
  display: block;
  /* Fix z-index issues (controls behind slide element) on Android: */
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
       -o-transform: translateZ(0);
          transform: translateZ(0);
}
.blueimp-gallery-single > .indicator {
  display: none;
}
.blueimp-gallery > .indicator {
  -webkit-user-select: none;
   -khtml-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* IE7 fixes */
*+html .blueimp-gallery > .indicator > li {
  display: inline;
}

/****** FILE: themes/youngprofessionals/css/libs/listnav.css *****/
/* line 9, C:/wamp/www/jquery-listnav/scss/listnav.scss */.listNav,.ln-letters{overflow:hidden}/* line 13, C:/wamp/www/jquery-listnav/scss/listnav.scss */.listNavHide{display:none}/* line 17, C:/wamp/www/jquery-listnav/scss/listnav.scss */.listNavShow{display:list-item}/* line 21, C:/wamp/www/jquery-listnav/scss/listnav.scss */.letterCountShow{display:block}/* line 26, C:/wamp/www/jquery-listnav/scss/listnav.scss */.ln-letters a{font-size:0.9em;display:block;float:left;padding:2px 6px;border:1px solid silver;border-right:none;text-decoration:none}/* line 36, C:/wamp/www/jquery-listnav/scss/listnav.scss */.ln-letters .ln-last{border-right:1px solid silver}/* line 41, C:/wamp/www/jquery-listnav/scss/listnav.scss */.ln-letters a:hover,.ln-letters .ln-selected{background-color:#eaeaea}/* line 45, C:/wamp/www/jquery-listnav/scss/listnav.scss */.ln-letters .ln-disabled{color:#ccc}/* line 51, C:/wamp/www/jquery-listnav/scss/listnav.scss */.ln-letter-count{position:absolute;top:0;left:0;width:20px;text-align:center;font-size:0.8em;line-height:1.35;color:#336699}

/****** FILE: themes/youngprofessionals/css/libs/styles.css *****/
/* General Styles
-------------------------*/
* {
    margin: 0px;
    padding: 0px;
}
body, html {
    height: 100%;
}
body {
    font-size: 14px;
    color: #363636;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background-color: #989898;
    background-position: center 0;
    background-repeat: repeat;
}
.upper {
    text-transform: uppercase;
}
p {
    margin: 0 0 30px 0;
    font-size: 16px !important;
    color: #363636;
    max-width: 768px;
}
p.lead {
    font-size: 18px !important;
    font-weight: 400;
    color: #363636;
}
a {
    color: #86C250;
    font-weight: 500;
}
a:hover, a:focus {
    color: #1D74B8;
    text-decoration: none !important;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5em;
    color: #363636;
    line-height: 1.3;
    font-family: 'Lato', sans-serif;
}
h4, h5, h6 {
    font-weight: 500;
}
h1 {
    font-size: 30px;
    font-weight: 400;
    color: #86C250;
}
h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;

}
h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: .7em;
    text-transform: uppercase;
}
h4 {
    font-size: 18px;
    font-weight: 500;
    color: #1D74B8;
}
h5 {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
}
h6 {
    font-size: 16px;
}

@media (max-width: 1170px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.1;
    }
    h1 {
        font-size: 26px;
        font-weight: 400;
        color: #86C250;
    }
    h2 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 30px;

    }
    h3 {
        font-size: 16px;
    }
    h4 {
        font-size: 16px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 14px;
    }
}

strong {
    font-weight: 700 !important;
}
.copy {
    line-height: 1.4;
}
.zero-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.upper {
    text-transform: uppercase;;
}
img {
    width: 100%;
    height: auto;
}
.thumbnail {
    margin-top: 5px;
    padding: 3px;
    border-radius: 0;
}
.img-rounded {
    border-radius: 4px;
}
.img-circle {
    border-radius: 50%;
}
.img-thumbnail {
    border-radius: 0px;
    padding: 3px;
}
.invert {
    display: inline-block;
    padding: 0 5px;
    color: #fff;
    background: #2780AF;
}
ul, ol {
    margin-bottom: 40px;
    padding-left: 20px;
    font-size: 16px;
    color: #666666;
}
ul li, ol li {
    margin: 0 0 0.75em;
}
ol {
    list-style: decimal;
}
.list-unstyled ul, .list-unstyled ol {
    padding-left: 20px;
}
ul ul {
    list-style: circle;
}
.list-icon {
    padding-left: 0;
    list-style: none;
}
.list-icon ul {
    padding-left: 20px;
}
.list-icon i, .list-icon i {
    width: 20px;
    display: inline-block;
}
.typography {
    border-right: 2px solid #b8b8b8;
    padding-right: 30px;
}
@media (max-width: 991px) {
    .typography {
        border-right: none;
        padding-right: 0px;
    }
  h3.sponsors {
    margin-top: 20px;
  }
}
.typography table {
    margin-bottom: 30px;
}
.typography td {
    font-weight: 300 !important;
    font-size: 16px !important;
}
.typography td p {
    padding: 10px 0 15px 0 !important;
    margin: 0 !important;
}
.typography tr th {
    border-bottom: 2px solid #9d9d9d;
    font-size: 18px !important;
}
.typography tr td {
    border-bottom: 1px solid #9d9d9d;
}

hr {
    display: inline-block;
    width: 100%;
    border-top: 4px double #eee;
}
.hr2 {
    position: relative;
    text-transform: uppercase;
}
.hr2:before, .hr2:after {
    border-top: 1px solid #ddd;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 48%;
    bottom: auto;
    left: 0;
    right: 0;
}
.hr2:after {
    top: auto;
    bottom: 38%;
    border-top: none;
    border-bottom: 1px solid #ddd;
}
.hr2 > span {
    display: inline-block;
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 15px 0 0;
}
.hr2.text-center > span {
    padding: 0 15px;
}
.hr2.text-right > span {
    padding: 0 0 0 15px;
}
pre {
    font-size: 12px;
    border-radius: 0;
    border: 1px solid #e6e6e6;
    background-color: #fcfcfc;
}
pre code, pre code a {
    color: #4f9fcf;
}
code a {
    color: #c7254e;
}
#main {
    min-height: 600px;
    padding: 0 0 150px;
}
.container {
    padding: 0 0;
    position: relative;
}
.container.inner {
    padding: 0 0;
}
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}
.container.main {
    width: 100%;
    padding: 35px 20px;
}
@media (max-width: 768px) {
    .container.main {
        padding: 35px 0;
    }
}
.content {
    padding-bottom: 20px;
}
.row {
    padding: 30px 0;
}
.row60 {
    padding: 60px 0;
}
@media (max-width: 1170px) {
    .row60 {
        padding: 40px 0;
    }
}
.left15 {
    margin-left: -15px;
}

.image-align-right {
    margin-left: 30px;
    margin-bottom: 30px;
    float: right;
}
.image-align-left {
    margin-right: 30px;
    margin-bottom: 30px;
    float: left;
}
.zero-pad {
    padding: 0 !important;
}
#content {
    background-color: #ffffff
}
/* Links & Buttons
-------------------------*/

.def-btn-inline {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    background: #86C250;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    cursor: pointer;
    padding: 14px 16px;
    margin-bottom: 10px;
    text-decoration: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    border: 0px !important;
    outline: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.def-btn-inline:hover, .def-btn-inline:focus {
    background: #1D74B8;
    color: #FFFFFF;
}

/* Header
-------------------------*/
section#header {
    background-color: #fff;
    z-index: 500;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#header-sticky-wrapper section#header {
    box-shadow: 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -o-box-shadow: 0px 17px 14px -10px rgba(0, 0, 0, .1);
}
#header-sticky-wrapper.resize section#header {
    height: 80px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#header-sticky-wrapper.resize a.navbar-brand {
    display: block;
    width: 200px;
    max-width: 200px;
    height: auto;
    position: absolute;
    padding: 0;
    z-index: 50;
}
#header-sticky-wrapper.resize .staff-login {
    position: absolute;
    top: 15px;
    right: 15px;
}
#header-sticky-wrapper.resize .staff-login a {
    font-size: 12px;
    margin-left: 5px;
}
#header-sticky-wrapper.resize .staff-login a.icn {
    width: 26px;
    height: 26px;
}
.member-login-mobile {
    display: none;
    position: absolute;
    top: 60px;
    left: 15px;
}
@media (max-width: 767px) {
    #header-sticky-wrapper.resize .staff-login a.icn {
        width: 30px;
        height: 30px;
    }
    #header-sticky-wrapper.resize .staff-login a {
        font-size: 14px;
    }
    #header-sticky-wrapper.resize .staff-login {
        top: 50px;
    }
    .member-login-mobile {
        display: inline-block;
    }
}
#header-sticky-wrapper.resize nav.desktop .navbar-nav li a {
    font-size: 16px;
    padding: 5px 10px 15px 10px !important;
}
#header-sticky-wrapper.resize nav.desktop {
    top: 45px;
}
#header-sticky-wrapper.resize nav.desktop ul ul {
    top: 35px;
    padding-top: 5px !important;
}
#header-sticky-wrapper.resize li#toggleSearch {
    height: 36px;
    padding-top: 2px;
    cursor: pointer;
}
#header-sticky-wrapper.resize #search-bar {
    top: 80px;
}
.bg-section-image {
    border-bottom: 3px solid #ffffff;
}
.section-title {
    position: relative;
    padding: 0;
    height: 240px;
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -webkit-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -o-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
}
.section-title h1 {
    font-family: 'Lato', sans-serif;
    font-size: 50px;
    position: absolute;
    top: 40px;
    left: 15px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
}

/* Social Icons */
a.icn {
    display: inline-block;
    font-family: "fontello";
    width: 30px;
    height: 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #86C250;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
a.icn:hover {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    background-color: #1D74B8;
}
a.icon:focus {
    background-color: #1D74B8;
}
a.icn.twtr, a.icn.li {
    margin-left: 0 !important;
}
a.icn.fb:before {
    content: "\e9b6";
    color: #fff;
}
a.icn.twtr:before {
    content: "\e9f5";
    color: #fff;
}
a.icn.li:before {
    content: "\e9d1";
    color: #fff;
}
a.icn.insta:before {
    content: "\e9c8";
    color: #fff;
}

@media (max-width: 1170px) {
    #header-sticky-wrapper.resize a.navbar-brand {
        max-width: 200px;
    }
    #header-sticky-wrapper.resize section#header {
        height: 80px;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
}

/* Search
-------------------------*/
#search-bar {
    position: absolute;
    top: 119px;
    right: 15px;
    margin: 0;
    padding: 0;
    height: 50px;
    z-index: 150;
    background-color: #fff;
    display: none;
    width: 320px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.24);
}
#search-bar input.text {
    padding: 0;
    font-size: 16px;
    height: auto;
    padding: 5px 32px 5px 5px;
    width: 245px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #fff;
    position: relative;
    z-index: 100;
    display: inline-block;
    height: 36px;
    margin: 0px !important;
    position: absolute;
    bottom: 15px;
    left: 15px;
}
@media (max-width: 1200px) {
    #search-bar #SearchForm_SearchForm:before {
        content: none;
    }
}
#search-bar .form-group {
    display: inline-block;
}
#search-bar input.action {
    display: inline-block;
    z-index: 10;
    padding: 0px !important;
    width: 36px !important;
    height: 36px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    margin: 0 !important;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#search-bar input.action:hover,
#search-bar input.action:focus {
    background-color: #1D74B8;
}
#toggleSearch {
    height: 60px;
    padding-top: 10px;
    cursor: pointer;
}
#toggleSearch:hover, #toggleSearch:focus {
    color: #86C250;
}
#toggleSearch:before {
    content: "\e802";
    font-family: "fontello";
}
.search-mobile {
    display: none;
}
@media (max-width: 767px) {
    .search-mobile {
        display: block;
        position: absolute;
        top: 97px;
        left: 15px;
        z-index: 80;

    }
    .search-mobile input.action {
        display: none;
    }
    .search-mobile input {
        padding: 6px 8px !important;
        border: none;
    }
}

/* Navigation
-------------------------*/
.navbar-header {
    width: 100%;
    height: 120px;
    background-color: #ffffff;
}
#header-sticky-wrapper.resize .navbar-header {
    height: 80px;
}
@media (max-width: 767px) {
    #header-sticky-wrapper.resize .navbar-header {
        height: 140px;
    }
}
#header .container {
    background-color: #ffffff;
}

.staff-login {
    position: absolute;
    top: 20px;
    right: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .staff-login {
        top: 50px;
    }
    .staff-login a {
        display: none !important;
    }
    .staff-login a.icn {
        display: inline-block !important;
    }

}
.staff-login a {
    color: #000;
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-left: 10px;
    padding: 5px;
}
.staff-login a.unlocked {
    padding-right: 15px;
}
.staff-login a.locked {
    padding-right: 12px;
}
.staff-login a.locked:after {
    content: "\e835";
    font-family: "fontello";
    font-size: 13px;
    font-size: 13px;
    position: absolute;
    top: 6px;
    right: 0px;
    vertical-align: middle;
    text-align: center;
    font-weight: normal;
}
.staff-login a.unlocked:after {
    color: #000;
    content: "\e836";
    font-family: "fontello";
    font-size: 13px;
    position: absolute;
    top: 6px;
    right: 0px;
    vertical-align: middle;
    text-align: center;
    font-weight: normal;
}
nav.desktop {
    position: absolute;
    width: auto;
    top: 60px;
    right: 0px;
    z-index: 100;
}
.navbar-nav {
    margin-right: 15px;
}

.navbar-nav li:last-child {
    /*display: none;*/
}
.navbar-brand {
    display: block;
    width: 300px;
    max-width: 300px;
    height: auto;
    position: absolute;
    padding: 0;
    z-index: 50;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.navbar-nav li {
    position: relative;
    margin: 0 30px;
    display: inline-block;
    margin: 0 5px;
}
.navbar-nav > li > a {
    padding: 13px 15px 29px 15px !important;
    color: #363636 !important;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.navbar-nav li a {
    display: block;
    line-height: 1;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 700;
    text-align: center !important;
}
.navbar-nav li li a {
    font-weight: 400 !important;
    font-size: 14px !important;
}
.navbar-nav li:hover a,
.navbar-nav li.current a,
.navbar-nav li.section a {
    color: #86C250 !important;
    font-weight: 700 !important;
}
.navbar-nav li:hover li a,
.navbar-nav li.current li a {
    color: #363636 !important;
    font-weight: 400 !important;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.navbar-nav li li:hover a {
    color: #86C250 !important;
}
.navbar-nav li li.current a {
    color: #86C250 !important;
    font-weight: 400 !important;
}
.navbar-nav li:hover, .navbar-nav li:focus {

}
.navbar li:last-child a {
    /*display: inline-block;
    height: 41px;
    line-height: 1;
    position: relative;
    padding: 0 0 !important;*/
}
.navbar li:last-child a i {
    position: relative;
    left: 0;
    top: 12px;
}
.navbar-header, .navbar-collapse {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.navbar-toggle,
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    position: relative !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    outline: none;
    z-index: 100;
    border: none !important;
}
.navbar-toggle,
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    position: absolute !important;
    bottom: 0;
    right: 0;
}
.navbar-toggle:before {
    content: "MENU";
    position: absolute;
    top: 2px;
    left: -50px;
    right: 0;
    line-height: 32px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    width: 75px;
    margin: 0 auto;
    text-align: left;
}
.navbar-toggle .icon-bar {
    height: 3px;
}
.navbar-nav li.nav-social a {
    margin-top: 17px;
}
.navbar-nav li.nav-social:hover a {
    color: #51C5D7 !important;
}
.navbar-nav li.nav-social a:hover {
    color: #DA1B89 !important;
}
@media (max-width: 1170px) {
    .navbar-nav li.nav-social a {
        font-size: 15px !important;
        margin-top: 15px;
    }
}
@media (min-width: 768px) {
    .navbar-toggle,
    .navbar-collapse.mobile {
        display: none;
        /* Hide toggle on mobile */

        visibility: hidden;
    }
}
@media (max-width: 767px) {
    .navbar-collapse.desktop {
        display: none;
        /* Hide toggle on mobile */

        visibility: hidden;
    }
    .navbar-collapse.mobile {
        height: 97% !important;
        top: 138px;
    }
}
@media (max-width: 767px) {
    .navbar-header {
        height: 140px;
    }
}
@media (max-width: 450px) {
    .navbar-brand {
        left: 0 !important;
        width: 200px !important;
        max-width: none !important;
    }
}
@media (max-width: 1170px) {
    .navbar-brand {
        max-width: 300px;
    }
    .navbar-nav li a {
        font-size: 18px;
    }
    .navbar-nav > li > a {
        padding: 13px 10px 29px 10px !important;
    }
}

/* remove bootstrap styles*/
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: none !important;
    box-shadow: none !important;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
    background-color: transparent;
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: transparent !important;
}
.mobile-menu-outer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #86C250;
    height: 50px;
    display: none;
}
@media (max-width: 767px) {
    .mobile-menu-outer {
        display: block;
    }
    .navbar-brand {
        top: 5px;
        max-width: 200px;
    }
}

/* Mobile Dropdown */
.navbar-collapse.mobile.collapse.in {
    height: 100% !important;
    overflow: visible;
    width: 97% !important;
    position: absolute !important;
    z-index: 400 !important;
    top: 138px;
    left: 0px;
}
.mobile .navbar-nav {
    position: absolute;
    top: 0px;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 98%;
}
.mobile .navbar-nav li {
    position: relative;
    background: #86C250;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #fff !important;
    width: 100% !important;
    float: left;
}
.mobile .navbar-nav li i {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    height: 25px;
    width: 41px;
    text-align: center;
    padding: 8px 0;
    font-size: 20px;
    cursor: n-resize;
}
.mobile .navbar-nav ul {
    width: 100%;
    position: static !important;
    height: auto;
    display: block;
    padding: 25px 0 30px;
    margin: 0;
    padding: 0;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.mobile .navbar-nav ul li {
    margin: 0;
    padding: 0;
    position: relative !important;
    border-bottom: none;
    height: auto;
}
.mobile .navbar-nav ul li {
    margin: 0;
    padding: 0;
    position: relative;
    line-height: 41px !important;
    border-bottom: 0px !important;
}
.mobile .navbar-nav li a {
    margin: 0;
    padding: 0 15px !important;
    background: transparent;
    color: #fff !important;
    line-height: 41px !important;
    font-size: 14px !important;
    display: block !important;
    text-align: left !important;
}
.navbar .mobile .navbar-nav .mobile .navbar-nav li.section a,
.navbar .mobile .navbar-nav li a:focus,
.navbar .mobile .navbar-nav li a:hover, .mobile .navbar-nav li:hover a,
.navbar .mobile .navbar-nav li.section a {
    background: #1D74B8 !important;
    color: #ffffff !important;
}
.navbar .mobile .navbar-nav ul li a {
    margin: 0;
    padding: 0;
    background: transparent;
    font-weight: 500 !important;
    text-indent: 15px;
    color: #ffffff !important;
    font-size: 14px !important;
}
.navbar .mobile .navbar-nav ul li.current a {
    font-weight: 500;
    color: #ffffff !important;
    font-size: 14px !important;
}
.navbar .mobile .navbar-nav li:last-child a {
    text-align: left !important;
    display: block !important;
    padding: 0 15px !important;
}

/*  Dropdown Nav
-------------------------*/
.navbar-nav li ul {
    position: absolute;
    top: 60px;
    left: 0;
    list-style-type: none;
    background: #fff;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 200px;
    height: 0px !important;
    overflow: hidden;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5);
}
.navbar-nav li:nth-child(5) ul {
    left: auto;
    right: 0px;
}
.navbar-nav li ul li {
    width: 100% !important;
}
.navbar-nav li ul li a {

    font-weight: 300 !important;
    color: #363636 !important;
}
.navbar-nav li ul li a:hover {
    /*color: #86C14D !important;*/
}
.navbar-nav li:hover ul {
    height: auto !important;
    opacity: 1;
}
@media (max-width: 1024px) {
    .navbar-nav li:hover ul {
        display: none;
    }
}
.navbar-nav li ul li {
    margin: 0 !important;
}
.navbar-nav li ul li a,
.navbar-nav li ul li.link.last {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    height: auto !important;
}
.navbar li.current ul li a, .navbar li.section ul li a {
    /*color: #51C5D7 !important;*/
}
.navbar-nav li ul li a,
.navbar-nav li ul li.current a {
    padding: 10px 20px !important;
    display: block;
}
.navbar-nav li ul li.link.last a {
    padding: 10px 20px 15px 20px !important;
    display: block;
}

/* Sub Nav
-------------------------*/
.sub-nav-outer {
    background-color: #86C250;
    height: 70px;
}
@media (max-width: 767px) {
    .sub-nav-outer ul.sub-nav {
        display: none;
    }
    .sub-nav-outer {
        height: auto;
    }
    ul.sub-nav-l2 li a {
        padding: 5px 0px !important;
    }
}
ul.sub-nav {
    position: absolute;
    top: 0;
    left: 15px;
    margin-top: 5px !important;
}
ul.sub-nav, ul.sub-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.sub-nav, ul.sub-nav li a {
    color: #fff;
    display: block;
    height: 65px;
}
ul.sub-nav li {
    float: left;
    margin-right: 0;
}
ul.sub-nav li a {
    max-width: 130px;
    line-height: 1.1;
    padding: 10px 15px 10px 15px;
    /*font-size: 14px;*/
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
ul.sub-nav li a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
ul.sub-nav li.current a, ul.sub-nav li.current a:hover, ul.sub-nav li.section a {
    background-color: #fff;
    color: #86C250;
}

/* Sub Nav Level 2
-------------------------*/
.sub-nav-l2 {
    /*min-height: 60px;*/
}

.sub-nav-l2, ul.sub-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.sub-nav-l2, ul.sub-nav-l2 li a {
    display: block;
}
ul.sub-nav-l2 li {
    float: left !important;
    margin-right: 15px;
    margin-left: 15px;
}
ul.sub-nav-l2 li a {
    line-height: 1.1;
    padding: 15px 0px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
ul.sub-nav-l2 li.current a, ul.sub-nav-l2 li.current a:hover, ul.sub-nav-l2 li.section a {
    color: #1D74B8;
}

/*  Homepage
-------------------------*/

#event-notifier {
    position: absolute;
    bottom: 6.5%;
    left: 15px;
    width: 50%;
    height: 41.5%;
    padding: 15px;
    background-color: rgba(255, 255, 255, .95);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.20);
}

section#callouts {
    background-position: top center;
    background-size: 110% auto;
    box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -webkit-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -o-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    background-color: #F0F0F0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
section#callouts h2 {
    margin-bottom: 15px;
}

/* Twitter feed */

h2.twitter:after {
    content: "\e9f5";
    font-family: "fontello";
    color: #4099ff;
    display: inline-block;
    margin-left: 5px;
}
.tweets {
    background-color: rgba(255, 255, 255, 1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #E4E4E4;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.tweet {
    padding: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.tweet {
    padding: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.tweet p {
    margin: 0px;
}
.tweet .user {
    display: inline-block;
    font-weight: 700;
}
.tweet .avatar {
    display: inline-block;
    max-width: 40px;
}
.tweet span {
    display: inline-block;
    background-color: #4099ff;
    font-size: 11px;
    padding: 2px 10px;
    color: #fff;
    font-weight: 400;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.tweet span:before {
    content: "\e9f5";
    font-family: "fontello";
    color: #fff;
    display: inline-block;
    margin-right: 5px;
}

/*  Home Feature
-------------------------*/
.home-feature .home-feature-content {
    position: relative;
}
.home-feature .home-feature-content .col-md-4 {
    padding: 15px;
}
.home-feature .home-feature-content .col-sm-6 {
    padding: 0;
}
.home-feature .parallax-window {
    min-height: 240px;
    background: transparent;
}
.home-feature-tabs {
    background: rgba(0, 0, 0, .2);
}
.home-feature-tab img {
    width: 100%;
    max-width: 277px;
    display: block;

}
.home-feature-tab-inner {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: blue;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
}
a.home-feature-tab-inner-content, a.home-feature-tab-inner-content:hover, a.home-feature-tab-inner-content:focus {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    z-index: 15;
    color: #fff;
}
body .home-feature-tab-inner-content {
    font-size: 13px;
    line-height: 1 !important;
}
.cycle-slideshow {
    position: absolute;
    left: 5%;
    width: 100%;
    height: 100%;
}
span.gradient {
    display: block;
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(19, 78, 137, 0) 0%, rgba(19, 78, 137, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(19, 78, 137, 0) 0%, rgba(19, 78, 137, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(19, 78, 137, 0) 0%, rgba(19, 78, 137, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0); /* IE6-9 */
}
.home-feature-tab-inner.blue {
    background: rgba(27, 115, 183, .95);
    background-size: cover;
    /*text-shadow: 0px 0px 2px rgba(0,0,0, 0.5);*/
}
.home-feature-tab-inner.green {
    background: rgba(134, 193, 77, .95);
    background-size: cover;
    /*text-shadow: 0px 0px 2px rgba(0,0,0, 0.5);*/
}
.home-feature-bg .home-feature-tab-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: transparent;
}

.home-feature-bg .container.animated {
  height: 400px
}

.home-feature-bg .location {
    position: absolute;
    bottom: 0;
    left: 15px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .4);
    padding: 15px;
    color: #fff;
}
.home-feature-tab-inner h3 {
    font-size: 17px;
    color: #fff;
    font-weight: 700 !important;
    line-height: 1;
    margin-bottom: 8px;
}
.home-feature-tab-inner h4 {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.1;
}
/* clock digital */
.home-feature-tab-inner h4 span {
    font-size: 11px;
    font-weight: 500;
    display: block;
    margin-top: 4px !important;
}

.home-feature-tab-inner span.summary {
    font-size: 11px;
    font-weight: 500;
    display: block;
    margin-top: 5px !important;
    line-height: 1.1em;
}

.home-feature-bg {
    box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .6);
    -webkit-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .6);
    -moz-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .6);
    -o-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .6);
}
.home-feature-bg .home-feature-tab img {
    border: none;
}

.parallax {
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% auto;
}
@media (max-width: 1024px) {
    .parallax {
        background-size: auto 100%;
    }
}

/* styles for flipping transition */

.cycle-slideshow {
    -webkit-perspective: 500;
    -webkit-transform-style: preserve-3d;
    -moz-perspective: 500;
    -moz-transform-style: preserve-3d;
    -o-perspective: 500;
    -o-transform-style: preserve-3d;
    perspective: 500;
    transform-style: preserve-3d;
}

/* Clocks */
.clock_container .lbl {
    font-size: 14px;
    color: #ffffff;
    line-height: 1;
    text-align: center;
    height: 40px;
    margin: 0 auto;
    font-weight: 700;
}
.clock_container .lbl span {
    display: block;
    font-weight: 400;
    font-size: 12px
}
span.gmt {
    font-weight: 300;
    font-size: 12px;
}
.clockHolder {
    margin: 0 auto;
    position: relative;
}
.clock {
    background-image: url(/_resources/themes/youngprofessionals/javascript/libs/jClocksGMT/images/clock_face.png);
    background-size: auto 100%;
}
.sec {
    background-image: url(/_resources/themes/youngprofessionals/javascript/libs/jClocksGMT/images/clock_sec.png);
}
.min {
    background-image: url(/_resources/themes/youngprofessionals/javascript/libs/jClocksGMT/images/clock_min.png);
}
.hour {
    background-image: url(/_resources/themes/youngprofessionals/javascript/libs/jClocksGMT/images/clock_hour.png);
}

.rotatingWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
}
.digital {
    font-weight: bold;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
}

section#partners {
    background-color: #ffffff;
    padding: 5px 0;
}
@media (max-width: 1170px) {
    a.home-feature-tab-inner-content, a.home-feature-tab-inner-content:hover, a.home-feature-tab-inner-content:focus,
    .home-feature-tab-inner {
        padding: 10px;
    }
    .home-feature-tab-inner h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    .home-feature-tab-inner h4 {
        font-size: 12px;
    }
    .home-feature-tab-inner span.summary {
        font-size: 10px;
    }
    .clock_container .lbl {
        font-size: 12px;
        height: 35px;
    }
    .clock_container .lbl span {
        font-size: 10px
    }
    .digital {
        font-size: 11px;
    }
    span.GMT {
        font-size: 10px;
    }
}

/* Video
-------------------------*/
.video-responsive{
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
}
.video-responsive iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

/* Gallery
-------------------------*/
.gallery-container {
    margin-top: 30px;
    margin-bottom: 60px;
}
.gallery-container:before,
.gallery-container:after {
    content: "";
    display: table;
}
.gallery-container:after {
    clear: both;
}
.gallery-container .item {
    float: left;
    margin-bottom: 10px;
}
.gallery-container .item img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: bottom;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.gallery-container .first-item {
    clear: both;
}

/* News
-------------------------*/
.blog-sidebar {
    margin-bottom: 30px;
}
.blog-sidebar ul li {
    line-height: 1.1;
}
a.featured-image {
    display: inline-block;
    max-width: 240px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
img.blog-featured-image {
  width: 300px;
  border-radius: 10px;
}
.news-tags a {
    padding: 0px 0px 5px 0px;
    border-radius: 10px;
    display: inline-block;
    font-size: 16px;
    margin-right: 5px;
    margin-bottom: 5px;
}
ul.recent-posts, ul.recent-posts li,
ul.news-categories, ul.news-categories li {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.recent-posts li {
    padding-bottom: 15px;
}
ul.recent-posts li h5 {
    color: #86C250;
    margin: 0;
    font-size: 16px !important
}
ul.recent-posts li h5:hover {
    color: #1D74B8;
}
ul.recent-posts li span.date {
    color: #666666;
    margin: 0;
    font-size: 14px;
}
ul.recent-posts,
ul.news-categories {
    margin-bottom: 30px;
}
.news-item {
    padding-bottom: 30px;
}
.news-item p {
    margin-bottom: 15px !important;
}

@media (max-width: 660px) {
  img.blog-featured-image {
    width: 100%;
  }

  a.featured-image {
    max-width: 100%;
  }

  .image-align-right {
    margin-left: 0px;
    margin-bottom: 10px;
  }
}

/* Newsletter */

.newsletter-accordion h3 {
    padding: 15px;
    background: #F5F5F5;
    margin: 0;
    margin-top: 15px !important;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.newsletter-accordion h3 a {
    color: #363636;
}
.newsletter-accordion h3:before {
    font-family: "fontello";
    display: inline-block;
    margin-right: 15px;
    content: "\e823";
}
.newsletter-accordion h3 span {
    text-transform: none !important;
    font-weight: 300;
    font-size: 14px;
    color: #989898;
}
.newsletter-accordion h3 span:before {
    font-family: "fontello";
    display: inline-block;
    margin-right: 5px;
    content: "\e987";
}
#newsletter h3.ui-state-active {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 0px !important;
}
#newsletter h3.ui-state-active:before {
    font-family: "fontello";
    display: inline-block;
    margin-right: 15px;
    content: "\e987";
}
.newsletter-item {
    padding: 15px !important;
    margin-bottom: 15px;
    background: #F5F5F5;
    -webkit-border-bottom-right-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
    -moz-border-radius-bottomleft: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    display: none;
}
.newsletter-item-content {
    padding: 15px !important;
    padding-top: 0;
    /*margin-top: 15px;	*/
    background: #F8F8F8;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.newsletter-item p.desc {
    margin: 0 !important;
}
.newsletter-list {
    margin-bottom: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.newsletter-list a {
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
}
.newsletter-list h4 {
    font-size: 20px;
}
.newsletter-list img {
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

/* Events
-------------------------*/
.event-list {
    margin-bottom: 30px;
}
.event-list p {
    margin-bottom: 15px;
}
.calendar-widget-holder {
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden
}
.calendar-widget-table {
    width: 100% !important;
    margin: 0 !important;
}
.calendar-widget-table th {
    border: none !important;
}
td.calendar-day {
    width: 30px;
    height: 30px;
    text-align: center !important;
    vertical-align: center !important;
    color: #666666 !important;
}
td.hasEvent {
    background: #fff !important;
}
td.hasEvent span {
    display: inline-block;
    background: #0295CD;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    line-height: 30px;
    color: #ffffff !important;
}
td.hasEvent.selected span {
    font-weight: bold;
    font-weight: 700;
}
td.calendar-header-day {
    background: #014E62 !important;
    font-size: 13px !important;
    text-align: center !important
}
.event-calendar-quick-nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.event-calendar-quick-nav a.def-btn-inline {
    border: 1px solid #bfbfbf;
    background: #fff !important;
    color: #0295CD;
}
.event-calendar-quick-nav a.def-btn-inline.current,
.event-calendar-quick-nav a.def-btn-inline:hover,
.event-calendar-quick-nav a.def-btn-inline:focus {
    border: none;
    background: #0295CD !important;
    color: #ffffff;
}
.event-calendar-next-prev {
    margin-bottom: 30px;
}
.event-calendar-next-prev a {
    font-weight: 500 !important;
    display: inline-block;
}
h3.event-hdr-date {
    font-size: 24px;
}
h3.summary {
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    margin: 0;
    font-size: 20px;
}
p.dates {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    font-weight: 400 !important;
}

/* Staff Members
-------------------------*/
.staff-member-box {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}
.staff-member-box:hover .staff-member-box-inner {
    background-size: auto 100%;
    opacity: 0.5;
}
.staff-member-box a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 120;
}
.staff-member-box .staff-member-box-inner {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 50;
}
.staff-member-box {
    padding-bottom: 105px;
}
.staff.img {
    display: block;
    margin-bottom: 50px;
}
.staff-member-box .staff-member-title {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #1D74B8;
    color: #fff;
    line-height: 1.2;
    height: 105px;
}
.staff-member-box .staff-member-title .title-content {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 15px;
}
.staff-member-box .staff-member-title strong {
    color: #fff;
    font-size: 16px;
}
.staff-member-box .bio-excerpt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 60;
    padding: 15px;
    background: rgba(29, 116, 184, 0.7);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #fff;
}
.staff-member-box .bio-excerpt span {
    font-weight: normal;
    font-style: italic;
}
.staff-member-box:hover .bio-excerpt {
    opacity: 1;
}
.staff-bio-photo {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.staff-category {
    margin-bottom: 30px;
}

@media (max-width: 1170px) {
    .staff-member-box {
        margin-bottom: 0px;
    }
}

/* Membership
-------------------------*/
ul#memberList, ul#memberList li.memberlistitem {
    margin: 0;
    list-style-type: none !important;
}
ul#memberList {
    margin-left: -15px;
    margin-top:;
}
ul#memberList li.memberlistitem {
    display: inline-block;
    padding: 15px !important;
}
ul#memberList li.memberlistitem h3 {
    line-height: 1.2;
    margin-bottom: 0px;
}
ul#memberList li.memberlistitem span.tags {
    font-size: 12px;
    line-height: 0em !important;
}
ul#memberList li.memberlistitem img {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 15px;
}
ul#memberList li.memberlistitem .memberinner {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 15px;
    height: 450px;
    overflow: hidden;
    background-color: #F5F5F5;
}
ul#memberList li.memberlistitem .memberinner:hover,
ul#memberList li.memberlistitem .memberinner:focus {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
ul#memberList li.memberlistitem .read-more {
    padding: 5px 10px;
    font-size: 14px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
ul#memberList li.memberlistitem p {
    margin-bottom: 15px;
}

#memberList .mix {
    display: none;
}

.listNavHide {
    display: none !important;
}
.ln-letters a {
    font-size: 14px;
    padding: 4px 9px;
}
.ln-letter-count {
    height: 24px;
    background-color: #86C250;
    color: #ffffff;
    padding-top: 3px;
}
#filter, #filter li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#filter {
    margin-bottom: 30px;
}
#filter li a {
    padding: 3px 0;
    display: block;
}
#filter li.filter-title {
    margin-top: 15px;
}
#filter li.filter-title:before, #filter li.filter-title2:before {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;

}
#filter li.filter-title:before {
    content: "Regions"
}
#filter li.filter-title2:before {
    content: "Industry";
    margin-top: 20px;
}

.member-logo {
    max-width: 210px;
}

/* Useful Links
-------------------------*/

ul.useful-links {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 30px;
}
ul.useful-links li {
    line-height: 1.1;
}
ul.useful-links li a {
    display: block;
}

/* Resources
-------------------------*/

/*Page resources*/
.resources .col-sm-6 {
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a.resource {
    display: block;
    padding: 15px;
    color: #363636;
    background-color: #F5F5F5;
    border-radius: 15px;
    padding-left: 50px;
    padding-right: 30px;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    min-height: 95px;
    font-size: 16px;
    margin-bottom: 30px;
}
.resources .col-sm-6 a.resource:hover,
.resources .col-sm-6 a.resource:focus {
    color: #FFFFFF;
    background-color: #86C250;
}
a.resource:before {
    content: "\e846";
    font-family: "fontello";
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #999999;
    z-index: 50;
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.resources .col-sm-6 a.resource:hover:before {
    color: #FFFFFF;
}
.showchildcontent {
    display: none;
}
span.file-type {
    text-transform: uppercase;
    font-size: 12px;
}
span.file-type:before {
    font-family: "fontello";
    display: inline-block;
    margin-right: 3px;
}
span.file-type.pdf:before {
    content: "\e870";
}
span.file-type.doc:before,
span.file-type.docx:before {
    content: "\e871";
}
span.file-type.xls:before,
span.file-type.xlsx:before {
    content: "\e872";
}
span.file-type.ppt:before,
span.file-type.pptx:before {
    content: "\e873";
}

/* Resource Section
-------------------------*/
.resource-accordion h3 {
    padding: 15px;
    background: #F5F5F5;
    margin: 0;
    margin-top: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.resource-accordion h3:before {
    font-family: "fontello";
    display: inline-block;
    margin-right: 15px;
    content: "\e823";
}
#accordion h3.ui-state-active {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 0px !important;
}
#accordion h3.ui-state-active:before {
    font-family: "fontello";
    display: inline-block;
    margin-right: 15px;
    content: "\e827";
}
.resource-item {
    padding: 15px !important;
    margin-bottom: 15px;
    background: #F5F5F5;
    -webkit-border-bottom-right-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
    -moz-border-radius-bottomleft: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    display: none;
}
.resource-item-content {
    padding: 15px !important;
    padding-top: 0;
    /*margin-top: 15px;	*/
    background: #F8F8F8;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.resource-item p.desc {
    margin: 0 !important;
}
.resource-list {
    margin-bottom: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.resource-list a {
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
}
.resource-list h4 {
    font-size: 20px;
}
.resource-list img {
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

/* Footer
-------------------------*/
footer, #footer {
    padding: 28px 0;
    background: #989898;
    color: #fff;
    box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -webkit-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
    -o-box-shadow: inset 0px 17px 14px -10px rgba(0, 0, 0, .1);
}
@media (max-width: 768px) {
    footer {
        padding: 20px 0;
    }
}
footer p {
    color: #fff !important;
    font-weight: 300;
}
footer .navbar-ftr a {
    color: #fff;
    display: block;
    line-height: 1;
    padding: 5px 0;
}
footer .navbar-ftr a {
    font-weight: 300 !important;
}
footer .navbar-ftr li a:hover {
    font-weight: 500;
    color: #fff;
}
footer .footer-bottom {
    padding: 30px 0;
}
footer .footer-bottom h3,
footer .footer-bottom h4,
footer .footer-bottom h4 a,
footer .footer-bottom h4 a:focus {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
footer .footer-bottom h4 a:hover {
    color: #fff;
}
footer .footer-bottom .social-links a [class^="icon-"]:before, [class*=" icon-"]:before {
    width: auto;
    margin-right: 0;
    line-height: normal;
    margin-left: 0;
}
footer .footer-bottom .social-links a i {
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 25px;
    color: #fff;
    height: 33px;
    line-height: 36px;
    width: 36px;
    text-align: center;
    padding-top: 3px;
    vertical-align: middle;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
footer .footer-bottom .social-links a:hover i {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
footer .footer-bottom .social-links i.icon-facebook {
    background: #2A388F;
}
footer .footer-bottom .social-links i.icon-twitter {
    background: #27AAE1;
}
footer .footer-bottom .social-links i.icon-instagramm {
    background: #426A90;
}
footer .footer-bottom .social-links i.icon-youtube {
    background: #ED1B24;
}
ul.footer-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
ul.footer-list li {
    margin: 0;
    padding: 0;
}
ul.footer-list li,
ul.footer-list li a {
    margin: 0;
    padding: 0 0 3px 0;
    color: #bfd0d8;
    line-height: 1.1;
    font-weight: 300;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
ul.footer-list li a:hover,
ul.footer-list li a:focus {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}
footer .footer-bottom .def-btn-inline {
    border: none !important;
}
footer .icn {
    padding-top: 5px;
}
.footer-contact-details p {
    font-weight: 300;
    text-transform: none;
    color: #bfd0d8;
    line-height: 1.2;
    margin: 0 0 25px 0;
    padding: 0;
}
.footer-contact-details p strong {
    color: #69be28;
}
.footer-contact-details a,
.footer-contact-details a:focus {
    color: #bfd0d8;
    font-weight: 300;
}
footer .footer-note a.woods {
    font-size: 16px;
    font-weight: 300;
    color: #bfd0d8;
    position: relative;
}
footer .footer-note a.woods i {
    display: inline-block;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    font-size: 25px;
    color: #fff;
    height: 36px;
    width: 36px;
    text-align: center;
    padding-top: 7px;
    vertical-align: middle;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    position: absolute;
    top: -8px;
    right: -40px;
}
footer .footer-note a.woods:hover i,
footer .footer-note a.woods:focus i {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    color: #000;
    background: #FEF200;
}

/* Form */
::-webkit-input-placeholder {
    color: #999;
}
::-moz-placeholder {
    color: #999;
}
/* firefox 19+ */
:-ms-input-placeholder {
    color: #999;
}
/* ie */
input:-moz-placeholder {
    color: #999;
}

.panel-body, .panel-default {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    border: none;
    padding: 0;
}
.form-control {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    border: 0px;
}
form input,
form textarea,
form select {
    width: 100%;
    border: 1px solid #bfbfbf;
    font-size: 16px;
    padding: 8px 10px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 15px;
}
form select {
    margin-bottom: 15px;
}
form input.checkbox {
    width: auto;
}
form input.text:focus,
form textarea:focus {
    outline: none;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(60, 133, 170, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(60, 133, 170, 1);
    box-shadow: 0px 0px 5px 0px rgba(60, 133, 170, 1);
}
input.text.error, input.email.error, input.textarea.error {
    outline: none;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(255, 120, 120, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(255, 120, 120, 1);
    box-shadow: 0px 0px 5px 0px rgba(255, 120, 120, 1);
}
form input.action {
    width: auto !important;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    background: #86C250;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px 15px;
    margin-bottom: 10px;
    text-decoration: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    font-family: "Lato", sans-serif;
    border: 0px !important;
    text-transform: uppercase;
}
label.control-label {
    font-size: 16px;
    font-weight: 400;
}
form span.required {
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 10px;
    margin-top: 5px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #ffbaba;
    color: #d8000c;
    width: 100%;
}
.radio input {
    width: auto !important;
}
.panel {
    box-shadow: none !important;
}
h3.partners {
    padding: 30px 0px;
}
#sponsors img {
    width: 100%;
    max-width: 263px;
}
.principal-sponsors img {
    width: 100%;
    max-width: 263px;
}
/* form */
form#UserForm_Form {
    max-width: 600px;
}
.panel-body, .panel {
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0px;
}
.panel {
    margin-top: 30px;
    box-shadow: none !important;
}
.panel-body {
    box-shadow: none !important;
}
legend, .userformsgroup {
    border: 0px !important;
}

.vertical .field.checkbox {
    display: block;
    padding: 5px 0;
}

.userformsgroup {
    /*margin-bottom: 30px !important;*/
}
legend {
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0px !important;
}
fieldset {
    padding: 0px !important;
}
input.text:focus {
    box-shadow: 0px 0px 5px #888888;
}
#Remember label {
    font-size: 16px;
}
.middleColumn .optionset li,
.checkbox, .radio {
    display: inline-block;
    margin: 0px !important;
    margin-right: 20px;
    font-size: 16px;
}
.checkbox {
    padding: 0px;
    margin-right: 10px;
}
.checkbox input {
    padding: 0px;
    margin-right: 5px !important;
}
label {
    font-weight: 400 !important;
    font-size: 16px;
    color: #333 !important;
}
label, label.left {
    font-weight: 400 !important;
    margin-bottom: 0px;
    font-size: 16px;
}
.hide-label label {
    display: none;
}
legend.left {
    font-weight: 400 !important;
    font-size: 16px;
}
.middleColumn ul {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.checkbox label, .radio label {
    position: relative;
    /*padding-left: 20px;*/
}
.checkbox label input, .radio label input {
    position: absolute;
    top: 0;
    left: 0;
}
.radio {
    margin-right: 20px !important;
}
.mathspamprotector {
    padding: 15px;
    background-color: #F5F5F5;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.mathspamprotector input {
    background-color: #FFFFFF;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
span.help-block.error {
    display: block;
    position: relative;
    padding: 15px;
    top: -5px;
    background-color: #FF7878;
    color: #ffffff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
span.error.message {
    display: block;
    position: relative;
    top: -5px;
    background-color: #FF7878;
    padding: 15px;
    color: #ffffff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-top: -5px;
}

/* Enquiry
-------------------*/

.enquiry p {
    margin-top: 10px;
}
.enquiry .phone {
    font-size: 20px;
    display: block;
}
.enquiry .phone:before {
    content: "\e880";
    font-family: "fontello";
    color: #0295CD;
    display: inline-block;
    margin-right: 5px;
}
.enquiry .email {
    font-size: 16px;
    display: block;
}
.enquiry .email:before {
    content: "\e803";
    font-family: "fontello";
    color: #0295CD;
    display: inline-block;
    margin-right: 5px;
}
/* Animation Delays */
.delay010s {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.delay025s {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
.delay030s {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.delay050s {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.delay075s {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
.delay1s {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}
.delay125s {
    -webkit-animation-delay: 1.25s;
    -moz-animation-delay: 1.25s;
    -o-animation-delay: 1.25s;
    animation-delay: 1.25s;
}
.delay150s {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.delay175s {
    -webkit-animation-delay: 1.75s;
    -moz-animation-delay: 1.75s;
    -o-animation-delay: 1.75s;
    animation-delay: 1.75s;
}
.delay2s {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s;
}
.delay225s {
    -webkit-animation-delay: 2.25s;
    -moz-animation-delay: 2.25s;
    -o-animation-delay: 2.25s;
    animation-delay: 2.25s;
}
.delay250s {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
.delay275s {
    -webkit-animation-delay: 2.75s;
    -moz-animation-delay: 2.75s;
    -o-animation-delay: 2.75s;
    animation-delay: 2.75s;
}
.delay3s {
    -webkit-animation-delay: 3s;
    -moz-animation-delay: 3s;
    -o-animation-delay: 3s;
    animation-delay: 3s;
}
.delay350s {
    -webkit-animation-delay: 3.5s;
    -moz-animation-delay: 3.5s;
    -o-animation-delay: 3.5s;
    animation-delay: 3.5s;
}
.delay4s {
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    -o-animation-delay: 4s;
    animation-delay: 4s;
}
.delay450s {
    -webkit-animation-delay: 4.5s;
    -moz-animation-delay: 4.5s;
    -o-animation-delay: 4.5s;
    animation-delay: 4.5s;
}
.delay5s {
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
    -o-animation-delay: 5s;
    animation-delay: 5s;
}
.delay550s {
    -webkit-animation-delay: 5.5s;
    -moz-animation-delay: 5.5s;
    -o-animation-delay: 5.5s;
    animation-delay: 5.5s;
}
.delay6s {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    animation-delay: 6s;
}
.delay7s {
    -webkit-animation-delay: 7s;
    -moz-animation-delay: 7s;
    -o-animation-delay: 7s;
    animation-delay: 7s;
}
.delay8s {
    -webkit-animation-delay: 8s;
    -moz-animation-delay: 8s;
    -o-animation-delay: 8s;
    animation-delay: 8s;
}
.delay9s {
    -webkit-animation-delay: 9s;
    -moz-animation-delay: 9s;
    -o-animation-delay: 9s;
    animation-delay: 9s;
}
.delay10s {
    -webkit-animation-delay: 10s;
    -moz-animation-delay: 10s;
    -o-animation-delay: 10s;
    animation-delay: 10s;
}
.delay11s {
    -webkit-animation-delay: 11s;
    -moz-animation-delay: 11s;
    -o-animation-delay: 11s;
    animation-delay: 11s;
}
.delay12s {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    animation-delay: 12s;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999999;
    left: 0;
    top: 0;
    padding-top: 100px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}
/* Modal Content */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;
    border-radius: 20px;
    background-color: transparent;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    text-align: center;
}
.modal-content img {
    border-radius: 20px;
}
/* The Close Button */
.close {
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 9999;
    line-height: 19px;
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: #000000;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    border: 3px solid #fff;
    opacity: 1;
    filter: alpha(opacity=100);
}
.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.modal-header {
    border: none;
    overflow: visible;
    padding: 2px 16px;
    background: #133b5e;
    color: #fff;
    font-size: 20px;
}
.modal-body {
    padding: 0px;
    max-height: 390px;
    background-color: #363636;
    margin-bottom: -20px;
    border-radius: 50%;
}
.modal-footer {
    position: relative;
    bottom: -30px;
    width: 100%;
    height: 80px;
    padding: 20px;
    color: #fff;
    text-align: center;
    border: none;
}
.modal-footer button {
    border: none;
    background-color: #86C250;
    padding: 10px 20px 10px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    color: #fff;
    -webkit-box-shadow: 6px 7px 20px -1px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: 6px 7px 20px -1px rgba(0, 0, 0, 0.36);
    box-shadow: 6px 7px 20px -1px rgba(0, 0, 0, 0.36);
}
.modal-footer button + button {
    margin-left: 40px;
}

/****** FILE: themes/youngprofessionals/css/libs/custom.css *****/


