@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/cwtexming.css);
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

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

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

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

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

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

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

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

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

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

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

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

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

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

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

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

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

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

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

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

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

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

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

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

.hinge {
  animation-name: hinge; }

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

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

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

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers (opinionated).
     */
body {
  margin: 0; }

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block; }

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px; }

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
     * Add the correct display in IE.
     */
main {
  display: block; }

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit; }

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder; }

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
  font-style: italic; }

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000; }

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%; }

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block; }

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none; }

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden; }

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
     * Show the overflow in IE.
     */
button {
  overflow: visible; }

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none; }

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible; }

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */ }
  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */ }

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
  overflow: auto; }

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block; }

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item; }

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block; }

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block; }

/**
     * Add the correct display in IE.
     */
template {
  display: none; }

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none; }

* {
  box-sizing: border-box;
  -ms-interpolation-mode: bicubic; }

*:focus {
  outline: none; }

body {
  font-family: Microsoft JhengHei;
  font-size: 1rem;
  height: 100%;
  width: 100%;
  display: block;
  margin: 0;
  background-color: #fff; }
  @media (min-width: 1200px) {
    body {
      position: inherit !important; } }

a {
  text-decoration: none; }

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none; }

#app {
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -ms-flex-direction: column;
  flex-direction: column; }

h1,
h2,
h3,
h4,
p {
  font-family: Microsoft JhengHei !important;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 1rem; }

#main-content {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  position: relative;
  min-height: 100px; }

header#header,
footer#footer {
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.sticky-wrapper {
  position: absolute;
  width: 10%; }

.sticker {
  width: 200px;
  border-left: 10px solid #0042ca; }
  .sticker ul li {
    width: 200px;
    padding: 10px 0; }
    .sticker ul li a {
      text-decoration: none;
      font-size: 16px; }
      .sticker ul li a span {
        font-weight: bold;
        color: #0042ca;
        letter-spacing: 1px;
        font-family: 'Lato', sans-serif; }
      .sticker ul li a p {
        color: #333333;
        letter-spacing: 1px; }
    .sticker ul li:hover {
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#91b2e1+0,8a9ee2+100&1+0,0+45 */
      /* FF3.6-15 */
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to right, #91b2e1 0%, rgba(142, 169, 225, 0) 80%, rgba(138, 158, 226, 0) 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .sticker {
      display: none; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .sticker {
      display: none; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .sticker {
      display: none; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .sticker {
      display: none; } }

.m-menu {
  margin: 0;
  display: none; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .m-menu {
      display: block; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .m-menu {
      display: block; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .m-menu {
      display: block; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .m-menu {
      display: block; } }

.bar {
  background-color: #44276e;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  left: 15px;
  top: 18px; }

.first {
  position: absolute; }

.second {
  margin-top: 10px;
  position: absolute; }

.third {
  margin-top: 20px;
  position: absolute; }

.icon {
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: absolute;
  left: 15px;
  top: 15px;
  border-radius: 5%; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .icon {
      top: 56px;
      left: 32px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .icon {
      top: 60px;
      left: 26px;
      display: block; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .icon {
      top: 50px;
      left: 26px;
      display: block; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .icon {
      top: 30px;
      left: 20px;
      display: block; } }

#menu_trigger {
  position: absolute;
  z-index: 2;
  top: -9999px;
  left: -9999px; }

.menu {
  height: 100%;
  margin: 0;
  width: 300px;
  position: fixed;
  left: -300px;
  background-color: #f2f2f2;
  z-index: 0; }
  .menu a,
  .menu .s-div {
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px; }
    .menu a span,
    .menu .s-div span {
      font-weight: bold;
      color: #2e3192;
      letter-spacing: 1px;
      font-family: 'Lato', sans-serif; }
    .menu a p,
    .menu .s-div p {
      color: #333333;
      letter-spacing: 1px; }
  @media (min-width: 1200px) {
    .menu {
      display: none; } }

.menu,
.menu_triger {
  transition: all 0.4s; }

#menu_trigger:checked ~ .menu {
  transform: translateX(300px); }

#menu_trigger:checked ~ .site {
  transform: translateX(300px); }
  @media (min-width: 1200px) {
    #menu_trigger:checked ~ .site {
      transform: translateX(0px); } }

.site {
  margin: 0;
  height: 100%;
  z-index: 0;
  transition: all 0.4s;
  font-family: Arial, Helvetica, sans-serif;
  color: #7f8c8d; }

.site h1 {
  margin-top: 150px; }

h1 {
  text-align: center; }

.menu .bar {
  background-color: #44276e; }

.menu .bar.first {
  transform-origin: 50% -50%;
  transform: rotate(45deg); }

.menu label {
  display: block;
  position: absolute;
  height: 40px;
  right: 0;
  cursor: pointer; }

.menu .bar.second {
  transform-origin: 5% 0%;
  transform: rotate(-45deg); }

.menu label {
  display: block;
  position: absolute;
  width: 50px;
  height: 40px;
  left: 20px;
  top: 20px;
  cursor: pointer; }

.menu > ul {
  width: 100%;
  margin-left: 0;
  list-style-type: none;
  margin-top: 60px; }

.menu li {
  min-height: 30px; }
  .menu li p {
    width: 200px;
    font-size: 17px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center; }
  .menu li a,
  .menu li .s-div {
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 15px; }

.menu a i {
  margin-left: 30px; }

.sub-m-menu {
  background: #e6e6e6; }
  .sub-m-menu li {
    border-bottom: 1px solid #f2f2f2; }
    .sub-m-menu li a {
      font-family: Microsoft JhengHei !important;
      padding-left: 50px;
      letter-spacing: 1px;
      font-size: 15px;
      color: #44276e;
      display: block; }

.hover-li div {
  transition: all 0.5s ease;
  background: #bdcce5;
  position: absolute;
  left: 150px;
  top: 5px;
  width: 160px;
  padding: 5px 10px;
  opacity: 0;
  display: block; }

.hover-li a p:after {
  content: "一線觀點"; }

.hover-li:hover a p:before {
  content: "一月更新"; }

.hover-li:hover a p:after {
  content: ""; }

.hover-li:hover div {
  opacity: 1; }

#header {
  height: 150px; }
  @media (min-width: 0px) and (max-width: 575px) {
    #header {
      height: 90px; } }

.logo {
  width: 100%;
  height: 50px;
  max-width: 250px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .logo img {
    width: 100%;
    height: auto; }
    @media (min-width: 0px) and (max-width: 575px) {
      .logo img {
        width: 165px;
        height: auto; } }

.h-rwd {
  display: none; }
  @media (min-width: 0px) and (max-width: 575px) {
    .h-rwd {
      display: block; } }

#footer {
  height: 70px;
  background: #8a9ee2;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #8a9ee2 0%, #2e3192 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
  #footer p {
    font-size: 13px;
    color: #eff0f2; }
    @media (min-width: 0px) and (max-width: 575px) {
      #footer p {
        text-align: center; } }

.uk-position-center-left svg, .uk-position-center-right svg {
  width: 25px;
  height: 25px; }

@media (min-width: 1200px) and (max-width: 1440px) {
  .main-banner.container {
    max-width: 900px; } }

.banner-title {
  color: #fff;
  font-size: 16px;
  z-index: 10;
  bottom: 12%;
  right: -3%;
  -ms-flex-align: center;
  align-items: center; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .banner-title {
      right: 0; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .banner-title {
      right: 10px;
      bottom: 15%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .banner-title {
      right: 0; } }
  .banner-title p {
    font-size: 17px;
    letter-spacing: 1px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .banner-title p {
        font-size: 17px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .banner-title p {
        font-size: 17px; } }
    @media (min-width: 576px) and (max-width: 767px) {
      .banner-title p {
        font-size: 13px; } }
    @media (min-width: 0px) and (max-width: 575px) {
      .banner-title p {
        font-size: 11px; } }
  .banner-title .line {
    margin-left: 10px;
    width: 150px;
    height: 10px;
    background-color: #fff; }
    @media (min-width: 0px) and (max-width: 575px) {
      .banner-title .line {
        display: none; } }

.banner-bg {
  right: -3%;
  top: -6%;
  width: 30vw;
  height: 25vw;
  background-color: #e3e3e6; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .banner-bg {
      width: 50vw;
      height: 35vw; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .banner-bg {
      width: 50vw;
      height: 35vw; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .banner-bg {
      width: 50vw;
      height: 35vw; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .banner-bg {
      display: none; } }

.banner-e {
  z-index: 10;
  right: 15%;
  top: -10%; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .banner-e {
      width: 200px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .banner-e {
      width: 150px; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .banner-e {
      width: 150px;
      right: 5%; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .banner-e {
      width: 100px;
      right: 5%; } }

.wrapper-bg {
  top: 500px;
  height: 380px;
  width: 70%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#91b2e1+0,8a9ee2+100&1+0,0.05+65 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #91b2e1 -20%, rgba(140, 165, 226, 0) 65%, rgba(138, 158, 226, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#91b2e1', endColorstr='#0d8a9ee2',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */ }
  @media (min-width: 1200px) and (max-width: 1440px) {
    .wrapper-bg {
      top: 400px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .wrapper-bg {
      top: 285px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .wrapper-bg {
      top: 8%;
      width: 100%;
      height: 300px; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .wrapper-bg {
      display: none; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .wrapper-bg {
      display: none; } }

.container.news-wrapper {
  margin-top: 80px; }
  @media (min-width: 1200px) and (max-width: 1440px) {
    .container.news-wrapper {
      max-width: 900px; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .container.news-wrapper {
      margin-top: 40px; } }

.news {
  margin-bottom: 40px; }
  @media (min-width: 576px) and (max-width: 767px) {
    .news {
      margin-bottom: 40px; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .news {
      margin-bottom: 40px; } }

p.color-p {
  bottom: 50px;
  left: -10%;
  letter-spacing: 2px;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  background-color: #003194;
  color: #fff;
  z-index: 3; }
  p.color-p:hover {
    background: #6f42c1 !important; }

@media (min-width: 768px) and (max-width: 991px) {
  width: 50%;
  p.color-p {
    left: 0;
    top: inherit;
    bottom: 6px !important; } }

.news-left {
  position: relative; }
  @media (min-width: 576px) and (max-width: 767px) {
    .news-left {
      width: 100%;
      padding: 0 15px; }
      .news-left img {
        width: 100%; }
      .news-left p {
        left: 15px;
        top: inherit;
        bottom: 0 !important; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .news-left {
      padding: 0 15px;
      width: 100%; }
      .news-left img {
        width: 100%; }
      .news-left p {
        left: 15px;
        top: inherit;
        bottom: 0 !important; } }

.news-right {
  top: 50%;
  left: 15%;
  transform: translate(0, -50%); }
  .news-right h2 {
    font-size: 25px;
    color: #0042ca;
    font-weight: bold;
    letter-spacing: 1px; }
    @media (min-width: 768px) and (max-width: 991px) {
      .news-right h2 {
        font-size: 23px; } }
    @media (min-width: 576px) and (max-width: 767px) {
      .news-right h2 {
        font-size: 23px; } }
    @media (min-width: 0px) and (max-width: 575px) {
      .news-right h2 {
        font-size: 20px; } }
  .news-right p {
    letter-spacing: 1px;
    text-align: justify;
    text-justify: distribute;
    color: #4d4d4d;
    line-height: 30px;
    font-size: 16px; }
  .news-right a {
    letter-spacing: 1px;
    text-decoration: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 140px;
    height: 38px;
    border: 2px solid #2e3192;
    color: #2e3192;
    font-family: 'Lato', sans-serif; }
    .news-right a:hover {
      background: #2e3192;
      color: #fff; }
  @media (min-width: 768px) and (max-width: 991px) {
    .news-right {
      position: static !important;
      transform: translate(0, 0); } }
  @media (min-width: 576px) and (max-width: 767px) {
    .news-right {
      position: static !important;
      transform: translate(0, 0); } }
  @media (min-width: 0px) and (max-width: 575px) {
    .news-right {
      position: static !important;
      transform: translate(0, 0); } }

.wrapper-circle {
  top: 1500px;
  right: -7.5%;
  width: 30vw;
  height: 15vw;
  transform: rotate(-90deg);
  border-radius: 20vw 20vw 0 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#662d91+0,8a9ee2+100&1+0,0.34+86 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#662d91+6,8a9ee2+100&0.58+0,0.34+62 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(102, 45, 145, 0.58) 0%, rgba(102, 45, 145, 0.56) 6%, rgba(123, 112, 193, 0.34) 62%, rgba(138, 158, 226, 0.34) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#94662d91', endColorstr='#578a9ee2', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */ }

div#philosophy .uk-position-center-left svg,
div#philosophy .uk-position-center-right svg {
  width: 25px;
  height: 25px; }

@media (min-width: 1200px) and (max-width: 1440px) {
  div#philosophy .main-banner.container {
    max-width: 900px; } }

div#philosophy .banner-title {
  color: #fff;
  font-size: 16px;
  z-index: 10;
  bottom: 12%;
  right: -3%;
  -ms-flex-align: center;
  align-items: center; }
  @media (min-width: 992px) and (max-width: 1199px) {
    div#philosophy .banner-title {
      right: 0; } }
  @media (min-width: 0px) and (max-width: 575px) {
    div#philosophy .banner-title {
      right: 10px;
      bottom: 15%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    div#philosophy .banner-title {
      right: 0; } }
  div#philosophy .banner-title p {
    letter-spacing: 1px;
    font-size: 17px; }
    @media (min-width: 992px) and (max-width: 1199px) {
      div#philosophy .banner-title p {
        font-size: 17px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      div#philosophy .banner-title p {
        font-size: 17px; } }
    @media (min-width: 576px) and (max-width: 767px) {
      div#philosophy .banner-title p {
        font-size: 13px; } }
    @media (min-width: 0px) and (max-width: 575px) {
      div#philosophy .banner-title p {
        font-size: 11px; } }
  div#philosophy .banner-title .line {
    margin-left: 10px;
    width: 150px;
    height: 10px;
    background-color: #fff; }
    @media (min-width: 0px) and (max-width: 575px) {
      div#philosophy .banner-title .line {
        display: none; } }

div#philosophy .banner-bg {
  right: -3%;
  top: -12%;
  width: 30vw;
  height: 14vw;
  background-color: #e3e3e6; }
  @media (min-width: 992px) and (max-width: 1199px) {
    div#philosophy .banner-bg {
      width: 50vw;
      height: 20vw; } }
  @media (min-width: 768px) and (max-width: 991px) {
    div#philosophy .banner-bg {
      width: 50vw;
      height: 20vw; } }
  @media (min-width: 576px) and (max-width: 767px) {
    div#philosophy .banner-bg {
      width: 50vw;
      height: 20vw; } }
  @media (min-width: 0px) and (max-width: 575px) {
    div#philosophy .banner-bg {
      display: none; } }

div#philosophy .banner-e {
  z-index: 10;
  right: 10%;
  top: -20%;
  width: 17%; }
  @media (min-width: 992px) and (max-width: 1199px) {
    div#philosophy .banner-e {
      width: 200px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    div#philosophy .banner-e {
      width: 150px; } }
  @media (min-width: 576px) and (max-width: 767px) {
    div#philosophy .banner-e {
      width: 150px;
      right: 5%; } }
  @media (min-width: 0px) and (max-width: 575px) {
    div#philosophy .banner-e {
      width: 100px;
      right: 5%; } }

div#philosophy .wrapper-bg {
  top: 323px;
  height: 380px;
  width: 70%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#91b2e1+0,8a9ee2+100&1+0,0.05+65 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #91b2e1 -20%, rgba(140, 165, 226, 0) 65%, rgba(138, 158, 226, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#91b2e1', endColorstr='#0d8a9ee2', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */ }
  @media (min-width: 1200px) and (max-width: 1440px) {
    div#philosophy .wrapper-bg {
      top: 271px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    div#philosophy .wrapper-bg {
      top: 285px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    div#philosophy .wrapper-bg {
      top: 221px;
      height: 200px;
      width: 100%; } }
  @media (min-width: 576px) and (max-width: 767px) {
    div#philosophy .wrapper-bg {
      display: none; } }
  @media (min-width: 0px) and (max-width: 575px) {
    div#philosophy .wrapper-bg {
      display: none; } }

div#philosophy .container.news-wrapper {
  margin-top: 80px; }
  @media (min-width: 1200px) and (max-width: 1440px) {
    div#philosophy .container.news-wrapper {
      max-width: 900px; } }
  @media (min-width: 0px) and (max-width: 575px) {
    div#philosophy .container.news-wrapper {
      margin-top: 40px; } }

div#philosophy .news {
  margin-bottom: 40px; }
  @media (min-width: 576px) and (max-width: 767px) {
    div#philosophy .news {
      margin-bottom: 40px; } }
  @media (min-width: 0px) and (max-width: 575px) {
    div#philosophy .news {
      margin-bottom: 40px; } }

div#philosophy .news-left {
  position: relative; }
  div#philosophy .news-left p {
    letter-spacing: 2px;
    top: 60%;
    left: -10%;
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    background-color: #1b2164;
    color: #fff; }
  @media (min-width: 768px) and (max-width: 991px) {
    div#philosophy .news-left {
      width: 50%; }
      div#philosophy .news-left p {
        left: 0;
        top: inherit;
        bottom: 6px !important; } }
  @media (min-width: 576px) and (max-width: 767px) {
    div#philosophy .news-left {
      width: 100%;
      padding: 0 15px; }
      div#philosophy .news-left img {
        width: 100%; }
      div#philosophy .news-left p {
        left: 15px;
        top: inherit;
        bottom: 0 !important; } }
  @media (min-width: 0px) and (max-width: 575px) {
    div#philosophy .news-left {
      padding: 0 15px;
      width: 100%; }
      div#philosophy .news-left img {
        width: 100%; }
      div#philosophy .news-left p {
        left: 15px;
        top: inherit;
        bottom: 0 !important; } }

div#philosophy .news-right {
  top: 50%;
  left: 15%;
  transform: translate(0, -50%); }
  div#philosophy .news-right h2 {
    font-size: 25px;
    color: #0042ca;
    font-weight: bold;
    letter-spacing: 1px; }
    @media (min-width: 768px) and (max-width: 991px) {
      div#philosophy .news-right h2 {
        font-size: 23px; } }
    @media (min-width: 576px) and (max-width: 767px) {
      div#philosophy .news-right h2 {
        font-size: 23px; } }
    @media (min-width: 0px) and (max-width: 575px) {
      div#philosophy .news-right h2 {
        font-size: 20px; } }
  div#philosophy .news-right p {
    letter-spacing: 1px;
    text-align: justify;
    text-justify: distribute;
    color: #4d4d4d;
    line-height: 30px;
    font-size: 16px; }
  div#philosophy .news-right a {
    text-decoration: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 140px;
    height: 38px;
    border: 2px solid #2e3192;
    color: #2e3192;
    font-family: 'Lato', sans-serif; }
    div#philosophy .news-right a:hover {
      background: #2e3192;
      color: #fff; }
  @media (min-width: 768px) and (max-width: 991px) {
    div#philosophy .news-right {
      position: static !important;
      transform: translate(0, 0); } }
  @media (min-width: 576px) and (max-width: 767px) {
    div#philosophy .news-right {
      position: static !important;
      transform: translate(0, 0); } }
  @media (min-width: 0px) and (max-width: 575px) {
    div#philosophy .news-right {
      position: static !important;
      transform: translate(0, 0); } }

@media (min-width: 1200px) and (max-width: 1440px) {
  .container.market {
    max-width: 900px; } }

.container.market .title div.line {
  width: 90%;
  height: 1px;
  background-color: #cccccc;
  margin: 0 auto;
  margin-top: 40px; }

.container.market .title h1 {
  font-size: 30px;
  color: #0042ca;
  margin-top: 60px;
  font-weight: bold; }
  @media (min-width: 0px) and (max-width: 575px) {
    .container.market .title h1 {
      margin-top: 0px;
      font-size: 20px; } }

.container.market .title h2 {
  margin-top: 20px;
  text-align: center;
  font-size: 18px; }
  @media (min-width: 0px) and (max-width: 575px) {
    .container.market .title h2 {
      font-size: 14px; } }

.container.market .title h3 {
  font-size: 25px;
  font-weight: bold;
  color: #0042ca;
  line-height: 30px; }
  @media (min-width: 0px) and (max-width: 575px) {
    .container.market .title h3 {
      font-size: 19px; } }

.container.market .title h4 {
  font-size: 25px;
  color: #433f67; }
  @media (min-width: 0px) and (max-width: 575px) {
    .container.market .title h4 {
      font-size: 18px; } }

.container.market .time {
  color: #0042ca;
  font-size: 15px; }
  @media (min-width: 0px) and (max-width: 575px) {
    .container.market .time {
      font-size: 13px; } }

.container.market .fb-img {
  width: 70px;
  height: 20px; }
  @media (min-width: 0px) and (max-width: 575px) {
    .container.market .fb-img {
      height: 15px; } }

.container.market .banner-bg {
  right: -5%;
  top: -12%;
  width: 60%;
  height: 20vw;
  background-color: #e3e3e6; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .container.market .banner-bg {
      width: 50vw;
      height: 35vw; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .container.market .banner-bg {
      top: -13%;
      width: 50vw;
      height: 35vw; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .container.market .banner-bg {
      top: -18%;
      width: 50vw;
      height: 35vw; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .container.market .banner-bg {
      display: none; } }

.container.market .text-style {
  letter-spacing: 1px;
  line-height: 30px; }
  .container.market .text-style p {
    font-size: 16px;
    color: #333333;
    text-align: justify;
    text-justify: distribute; }
  .container.market .text-style div.line {
    width: 90%;
    height: 1px;
    background-color: #cccccc;
    margin: 0 auto; }

.container.market .market-p {
  font-size: 15px;
  text-align: center;
  width: 100%;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, 0); }

.container.market .market-bg {
  transition: all 0.3s ease;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); }
  .container.market .market-bg:hover {
    background: transparent; }

.container.market .point {
  position: relative;
  font-weight: bold;
  position: relative;
  font-weight: bold;
  background: url(../images/bgbg.jpg) bottom left repeat-x; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 530px;
  margin-top: 20px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .videoWrapper {
      height: 530px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .videoWrapper {
      height: 450px; } }
  @media (min-width: 576px) and (max-width: 767px) {
    .videoWrapper {
      height: 400px; } }
  @media (min-width: 0px) and (max-width: 575px) {
    .videoWrapper {
      height: 250px; } }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.uk-dotnav > * > * {
  display: block;
  box-sizing: border-box;
  width: 60px;
  height: 5px;
  border-radius: 0;
  background: 0 0;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid rgba(102, 102, 102, 0.4);
  transition: .2s ease-in-out;
  transition-property: background-color, border-color;
  background-color: rgba(102, 102, 102, 0.6); }

.uk-dotnav > .uk-active > * {
  background-color: #2e3192;
  border-color: transparent; }

.scrollup {
  display: none;
  opacity: .6; }

.r-tog .r-hide {
  display: none; }

.r-tog:hover .r-hide {
  display: block; }

.r-tog:hover .r-show {
  display: none; }

.title-p {
  margin-bottom: 25px; }
  @media (min-width: 0px) and (max-width: 575px) {
    .title-p {
      margin-bottom: 25px; } }

.p-p {
  margin-bottom: 15px; }
  @media (min-width: 0px) and (max-width: 575px) {
    .p-p {
      margin-bottom: 15px; } }

.p-img {
  margin-bottom: 60px; }
  @media (min-width: 0px) and (max-width: 575px) {
    .p-img {
      margin-bottom: 40px; } }

.logo {
  width: 100%; }
  @media (min-width: 0px) and (max-width: 575px) {
    .logo {
      width: 150px; } }

.more {
  padding: 0 15px;
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (min-width: 0px) and (max-width: 575px) {
    .more {
      width: 100%; } }

.image-wrapper {
  background: url("../images/load.gif") top center no-repeat;
  background-size: 40px 40px;
  width: 100%; }

.name2 {
  margin-right: 5px;
  border-radius: 50%;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 35px;
  width: 35px;
  height: 35px;
  font-size: 20px;
  background-color: #2E3192;
  position: relative;
  top: -3px;
  font-family: Microsoft JhengHei; }

.name {
  margin-right: 5px;
  border-radius: 50%;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 35px;
  width: 35px;
  height: 35px;
  font-size: 20px;
  background-color: #FF5A75;
  position: relative;
  top: -3px;
  font-family: Microsoft JhengHei; }

.name-title2 {
  color: #2E3192;
  margin-right: 5px;
  font-size: 20px;
  position: relative;
  top: -2px; }

.name-title {
  color: #FF5A75;
  margin-right: 5px;
  font-size: 20px;
  position: relative;
  top: -2px; }

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