<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Minification failed. Returning unminified contents.
(5595,30): run-time error CSS1046: Expect comma, found '12'
(5595,36): run-time error CSS1046: Expect comma, found '/'
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
/*h1, h2, h3,*/ h4, h5, h6, /*p,*/ blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, /*em,*/ img, ins, kbd, q, s, samp,
small, strike, /*strong,*/ /*sub, sup,*/ tt, var,
b, u, i, center,
dl, dt, dd, /*ol, ul, li,*/
fieldset, form, label, legend,
/*table, caption, tbody, tfoot, thead, tr, th, td,*/
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {

}
/*ol, ul {
	list-style: none;
}*/
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@charset "UTF-8";

/*!
 * 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 {
  -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;
}

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

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

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

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

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

@keyframes flash {
  from, 50%, to {
    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 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

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

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

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) 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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms &amp; transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */



.pushy {
  position: fixed;
  width: 260px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #000;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
}
.pushy a {
  display: block;
  color: #fff;
  /*padding: 15px 30px;*/
  text-decoration: none;
}
.pushy a:hover {
  color: #FFF;
}
.pushy ul:first-child {
  margin-top: 10px;
}
.pushy.pushy-left {
  left: 0;
}
.pushy.pushy-right {
  right: 0;
}
/*ginny*/
.pushy-content {
  visibility: hidden;
  color:#fff;
  letter-spacing:2px;
  font-weight:bolder;
  font-size:0.95em;
  
}

.pushy-content img{width:auto;}
.pushy-content ul{
	padding-left:0;
	list-style-type:none;
 }
 .pushy-content ul li{
	
 }
.pushy-content .p-bottom{
	border-bottom:1px #999 solid;
}
/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-260px, 0, 0);
  -ms-transform: translate3d(-260px, 0, 0);
  transform: translate3d(-260px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(130px, 0, 0);
  -ms-transform: translate3d(130px, 0, 0);
  transform: translate3d(130px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(260px, 0, 0);
  -ms-transform: translate3d(260px, 0, 0);
  transform: translate3d(260px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-130px, 0, 0);
  -ms-transform: translate3d(-130px, 0, 0);
  transform: translate3d(-130px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

/*@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}*/
/* Submenu Appearance */
.pushy-submenu {
	
  /* Submenu Buttons */
  /* Submenu Icon */
}
.pushy-submenu ul {
	padding:10px;
  padding-left: 0px;
  transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.pushy-submenu ul .pushy-link {
  transition: opacity 0.2s ease-in-out;
}
.pushy-submenu button {
  width: 100%;
  color: #fff;
  padding: 15px 0px;
  text-align: left;
  background: transparent;
  border: 0;
  font-size:1em;
  font-weight:bolder;
  background-color:#333;
  padding-left:20px;
  letter-spacing:2px;
  font-family: "微軟正黑體", "Microsoft JhengHei", "PMingLiU", "新細明體", "MingLiU", "標楷體", "DFKai-sb", Arial, Helvetica, FreeSans, sans-serif;
}

.pushy-submenu button:hover {
  color: #FFF;
}
.pushy-submenu &gt; a,
.pushy-submenu &gt; button {
  position: relative;
}
/*.pushy-submenu &gt; a::after,
.pushy-submenu &gt; button::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  background: url("../img/arrow.svg") no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: transform 0.2s;
}*/

/* Submenu Movement */
.pushy-submenu-closed ul {
 /* max-height: 0;*/
 overflow:hidden;
  /*visibility: hidden;*/
}
.pushy-submenu-closed .pushy-link {
  /*opacity: 0;*/
  
}

.pushy-submenu-open {
  /* Submenu Icon */
}
.pushy-submenu-open ul {
  max-height: 1000px;
  overflow:hidden;
}
.pushy-submenu-open .pushy-link {
  opacity: 1;
}
.pushy-submenu-open a::after,
.pushy-submenu-open button::after {
 -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.pushy-link {
 /*width: 100%;*/
  color: #fff;
  padding: 15px 0px;
  text-align: left;
  
  border: 0;
  font-size:1em;
  font-weight:bolder;
  background-color:#333;
  padding-left:20px;
  border-bottom:1px #999 solid;
}

.pushy-submenu .pushy-link{
	display:inline-block;
	width:30%;
	float:left;
	background: transparent;
	border-bottom:0;
	padding:3px 0 2px 20px;
	

}
/*# sourceMappingURL=pushy.css.map */

#menu-footer{
	padding:20px;
	font-weight:lighter;
}

#menu-footer a{
	display:inline-block;
}
@charset "utf-8";
/* 修正粗體 */
@font-face {
    font-family: "微軟正黑體修正";
    unicode-range: U+7db0, U+78A7, U+7B75; /* ASCII (碧筵綰) */
    font-style: normal;
    font-weight: bold;
    src: local("MS Gothic"), local("Yu Gothic");
}
/* 一般粗細的時候改回微軟正黑 */
@font-face {
    font-family: "微軟正黑體修正";
    unicode-range: U+7db0, U+78A7, U+7B75; /* ASCII (碧筵綰) */
    font-style: normal;
    font-weight: normal;
    src: local("Microsoft JhengHei");
}

/*If you want to prevent scrolling of your site when Pushy is open just add overflow-x: hidden and height: 100% to both the html &amp; body tags.*/
html, body {
    /*overflow-x: hidden;*/
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

    /*行動版本導覽選單出現時鎖定 body 高度防止 body 可捲動*/
    html, body.pushy-open-left {
        height: 100%;
    }

/* outline-off */

a {
    cursor: pointer;
    color: #000000;
}

    a:link {
        text-decoration: none;
    }

    a:visited {
        text-decoration: none;
    }

    a:hover {
        text-decoration: none;
    }

    a:active {
        text-decoration: none;
    }

.left {
    float: left;
}

.right {
    float: right;
}

.yellow-text {
    color: #f5d83c;
}

.red-text {
    color: #e62117;
}

.clear {
    display: block;
    clear: both;
}

#arrow-left-w {
    position: absolute;
    top: 13%;
    z-index: 3;
    left: 0;
    cursor: pointer;
}

#arrow-right-w {
    position: absolute;
    top: 13%;
    z-index: 3;
    right: 0;
    cursor: pointer;
}

#arrow-left-y {
    position: absolute;
    top: 40%;
    z-index: 3;
    left: 0;
    cursor: pointer;
}

#arrow-right-y {
    position: absolute;
    top: 40%;
    z-index: 3;
    right: 0;
    cursor: pointer;
}

.onair, .read {
    position: absolute;
    top: 0;
    z-index: 3;
    right: 0;
}

    .onair img, .read img {
        width: auto;
    }

.play-icon {
    position: absolute;
    top: 22%;
    left: 33%;
    z-index: 2;
}

    .play-icon img {
        width: 70%;
        opacity: 0.8;
        filter: alpha(opacity=80);
    }

.small-gray-text {
    color: #666666;
    font-size: 0.75em;
    letter-spacing: 0;
    margin-left: 5px;
    margin-right: 5px;
}

.white-box {
    background-color: #FFF;
}
.gray-box {
    background-color: #f4f4f4;
}
.yellow-box {
    background-color: #f5d83c;
}
/*这行代码对于大多数嵌入网页的图片+视频有效，所以可以写成*/
img, object {
    max-width: 100%;
    border: 0;
}

/*老版本的IE不支持max-width，所以只好写成*/
img {
    width: 100%;
    border: 0;
}

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



body {
    font-family: "微軟正黑體修正", "微軟正黑體", "Microsoft JhengHei", "STHeiti", "PMingLiU", "新細明體", "MingLiU","DFKai-sb", Arial, Helvetica, FreeSans, sans-serif;
    margin: 0 auto;
    font-size: 1em;
    overflow-x: hidden;
    line-height: 1.8em;
    /*background-image: url("../images/bgbg.jpg");*/
    background-color: #eeeeee;
}

    body img {
        border: 0px;
    }


#wrap {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    text-align: justify;
    word-wrap: break-word;
    /*word-break: break-all;*/  /*為了英文單字完整斷行,故拿掉*/
}
/*手機上方新聞分享*/
.mobile-topper-share-margin {
    height: 55px;
}

.mobile-topper-share {
    padding: 15px 2.5% 5px 2.5%;
    background-color: #f5d83c;
    position: fixed;
    top: 0;
    width: 95%;
    font-weight: bolder;
    height: 45px;
    z-index: 50;
}

    .mobile-topper-share img {
        width: auto;
    }

.mid {
    display: none;
}


/*pc-top-ad*/
#pc-top-ad {
    /*width: 1002px;
    height: 180px;*/
    margin: 10px auto;
    display: block;
    position: relative;
    /*display: none;*/
}

    #pc-top-ad img {
        width: auto;
    }

.topad1024 {
    width: 1024px;
    margin: 0 auto;
    position: relative;
}

.topad970 {
    width: 970px;
    margin: 0 auto;
    position: relative;
}

.top-ad-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
}


/*黑底pc-header*/
#pc-header-inner {
    margin: 0 auto;
    background-color: #000000;
    color: #FFF;
    height: 43px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    letter-spacing: 2px;
    display: none;
}

    #pc-header-inner a {
        color: #fff;
    }

    #pc-header-inner img {
        width: auto;
    }

.top-search {
    height: 26px;
    padding: 1px 5px;
    color: #ccc;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    font-size: 0.9em;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-right: 0;
    vertical-align: middle;
}

.top-search-button {
    height: 30px;
    width: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -7px;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    background-color: #CCC;
}

/*灰底mobile-APP下載*/
#mobile-app-inner {
    margin: 0 auto;
    background-color: #eeeeee;
    height: 40px;
    padding: 10px 10px 10px 0;
}

    #mobile-app-inner img {
        width: auto;
    }

.app-text {
    line-height: 1.2em;
}

.yellow-btn {
    background-color: #f5d83c;
    font-weight: bolder;
    padding: 3px 15px;
    letter-spacing: 2px;
}

/*紅漸層底pc-logo*/
#pc-logo-inner {
    margin: 0 auto;
    background: #e91306;
    background: -moz-linear-gradient(top, #e91306 0%, #a90a00 100%);
    background: -webkit-linear-gradient(top, #e91306 0%,#a90a00 100%);
    background: linear-gradient(to bottom, #e91306 0%,#a90a00 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e91306', endColorstr='#a90a00',GradientType=0 );
    padding: 25px 10px;
    display: none;
    color: #eee;
}

    #pc-logo-inner img {
        width: auto;
    }


#red-ad-text {
    padding-bottom: 25px;
}

    #red-ad-text ul {
        padding: 0;
        border: 0;
    }

        #red-ad-text ul li {
            list-style: none;
            padding: 0;
            border: 0;
            float: left;
            width: 30%;
            margin-right: 3%;
        }

            #red-ad-text ul li a {
                color: #eee;
            }

/*mobile-LOGO*/
#mobile-logo-inner {
    margin: 0 auto;
    background: #e91306;
    background: -moz-linear-gradient(top, #e91306 0%, #a90a00 100%);
    background: -webkit-linear-gradient(top, #e91306 0%,#a90a00 100%);
    background: linear-gradient(to bottom, #e91306 0%,#a90a00 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e91306', endColorstr='#a90a00',GradientType=0 );
    text-align: center;
    padding: 5px 0;
    position: fixed;
    top: 0;
    z-index: 5;
    width: 100%;
}

#mobile-logo-inner-margin {
    height: 75px;
}

#mobile-logo-inner img {
    width: auto;
}

.logo-ss {
    display: inline-block;
    width: 65%;
    margin: 0 auto;
    padding: 7px 0;
}


/*黃底pc-NAV*/

#pc-nav-inner {
    margin: 0 auto;
    background: #f5d83c;
    background: -moz-linear-gradient(top, #f5d83c 0%, #fdbb12 100%);
    background: -webkit-linear-gradient(top, #f5d83c 0%,#fdbb12 100%);
    background: linear-gradient(to bottom, #f5d83c 0%,#fdbb12 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5d83c', endColorstr='#fdbb12',GradientType=0 );
    padding-left: 40px;
    padding-right: 10px;
    letter-spacing: 1px;
    font-weight: bolder;
    width: auto;
    /*overflow: hidden;*/
    height: 60px;
    position: relative;
    display: none; /*手機板取消左右滑動-&gt;不顯示*/
}

    #pc-nav-inner img {
        width: auto;
    }

#pc-nav ul {
    padding: 0;
    margin-top: 0;
}

    #pc-nav ul li {
        float: left;
        list-style: none;
        padding: 0px 2px 20px 0;
    }

        #pc-nav ul li::after {
            content: " ｜";
        }

        #pc-nav ul li:last-child::after {
            content: " ";
        }

        #pc-nav ul li.navbarclose::after {
            content: " ";
        }


/*#灰底pc-submenu */

#pc-submenu-inner {
    margin: 0 auto;
    background: #eeeeee;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: 1px;
    margin-top: -16px;
    display: none;
    font-weight: bolder;
}

    #pc-submenu-inner img {
        width: auto;
    }

#pc-submenu ul {
    padding: 0;
    margin-top: 0;
}

    #pc-submenu ul li {
        float: left;
        list-style: none;
        padding: 10px 5px 10px 0;
    }

        #pc-submenu ul li::after {
            content: " ｜";
        }

        #pc-submenu ul li:last-child::after {
            content: " ";
        }


/*marquee*/

#marquee-box {
    margin: 0 auto;
    /*background-color: #eeeeee;*/
    background-color: #fff;
    height: 55px;
    border: 2px solid #e62117;
    margin: 10px auto 0 auto;
    overflow: hidden;
}

#marquee-title {
    /*background-image: url("../images/marquee.png");*/
    background-image: url("../images/marquee-2.png");
    background-repeat: no-repeat;
    float: left;
    /*width: 90px;*/
    width: 50px;
    height: 32px;
    font-weight: bolder;
    color: #FFFFFF;
    padding: 13px;
    letter-spacing: 2px;
}

#marquee-text {
    float: left;
    /*width: 60%;*/
    width: 75%;
}

    #marquee-text ul {
        padding: 0;
        margin: 0;
    }

        #marquee-text ul li {
            list-style: none;
            padding: 13px 10px;
            overflow: hidden;
            height: 29px;
            line-height: 2.1em;
        }

/*MAIN主要內容*/

#main-inner {
    margin: 0 auto;
    margin-top: 10px;
    letter-spacing: 1px;
    position: relative;
}

#main {
}

#main-left {
    margin-top: 10px;
}

#main-right {
    display: none;
    margin-top: 10px;
}


/*導航*/
#web-map {
    /*color: #FFFFFF;*/
    color: #000;
    font-size: 0.875em;
}

    #web-map a {
        /*color: #FFFFFF;*/
        color: #000;
        text-decoration: underline;
    }


/*24小時直播*/
#live-24hrs {
    margin: 0 auto;
    position: relative;
    width: 100%;
}


.box-title {
    padding: 20px;
    letter-spacing: 2px;
    font-weight: bolder;
    background-image: url("../images/yellow-left.png");
    background-repeat: no-repeat;
    background-position: center left;
}

.fulllive-btn {
    background-color: #be2513;
    font-weight: bolder;
    padding: 1px 5px;
    letter-spacing: 2px;
    color: #FFF;
    margin-right: 10px;
    margin-top: 20px;
    display: none;
}
/*精彩節目大影片*/
#fncvideo-big {
    margin: 0 auto;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.fncvideo-btn {
    background-color: #f5d83c;
    font-weight: bolder;
    padding: 1px 5px;
    letter-spacing: 2px;
    margin-top: 20px;
}

/* Flexible iFrame */

.Flexible-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .Flexible-container iframe,
    .Flexible-container object,
    .Flexible-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/*首頁其他直播*/
#live-else {
    margin: 0 auto;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.live-else-little-box {
    float: left;
    min-height: 160px;
    width: 40%;
    margin: 0 1%;
}

    .live-else-little-box .pic {
        position: relative;
    }

    .live-else-little-box .title {
        letter-spacing: 0;
        font-size: 0.875em;
        line-height: 1.2em;
    }

    .live-else-little-box .view {
        letter-spacing: 0;
        font-size: 0.75em;
        color: #666666;
    }

/*新聞單則內容*/
.fncnews-content {
    margin: 0 auto;
    position: relative;
    padding: 10px;
    padding-bottom: 50px;
}

    .fncnews-content h1 {
        font-size: 1.8em;
        font-weight: bolder;
        margin-bottom: 10px;
        line-height: 1.3em;
    }

.news-cover {
    position: relative;
    margin-bottom: 30px;
}

    .news-cover .play-icon {
        top: 29%;
        left: 38%;
    }

        .news-cover .play-icon img {
            width: auto;
        }

.fncnews-content img {
    width: auto;
}

.fncnews-content .info {
    margin-bottom: 10px;
}

.fncnews-content p {
    letter-spacing: 0;
}

.keyword {
    margin: 20px 0 10px 0;
    color: #000983;
    font-size: 0.875em;
    padding-top: 10px;
    border-top: 2px solid #f5d83c;
}

    .keyword a {
        color: #000983;
    }

/*下則新聞*/
.next-news {
    color: #000983;
    font-size: 0.875em;
    line-height: 1.5em;
    margin-bottom: 20px;
    /*text-align: right;*/
    padding: 10px;
    position: relative;
}

    .next-news a {
        color: #000983;
    }
/*兩則300廣告*/
.two300ad {
    padding: 20px 0;
    margin: 0 auto;
    position: relative;
}

    .two300ad .ad_300250 {
        margin: 10px auto;
        text-align: center;
    }

    .two300ad .last {
        display: none;
    }
/*FB留言*/
.fb-comments {
    margin: 10px auto;
}

/*新聞已讀樣式*/
.rade {
    background-color: #fafafa;
}

    .rade .text {
        color: #999;
    }

/*精彩節目節目清單*/
.fncvideo-list-area {
    margin: 0 auto;
    position: relative;
    padding: 0px 10px;
    margin-bottom: 20px;
}

.fncvideo-list-little-box {
    float: left;
    height: 180px;
    width: 48%;
    margin: 0 1%;
    overflow: hidden;
    margin-bottom: 10px;
}

.fncvideo-list-little-box {
    float: left;
    height: 180px;
    width: 48%;
    margin: 0 1%;
    overflow: hidden;
    margin-bottom: 10px;
}

    .fncvideo-list-little-box .pic {
        position: relative;
    }

    .fncvideo-list-little-box .title {
        letter-spacing: 0;
        font-size: 0.875em;
        line-height: 1.2em;
    }


    .fncvideo-list-little-box .view, .fncvideo-list-little-box .time {
        letter-spacing: 0;
        font-size: 0.75em;
        color: #666666;
        line-height: 1.5em;
    }
/*首頁即時新聞*/

#index-news {
    margin: 0 auto;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

    #index-news ul {
        padding: 20px;
        margin: 0;
        padding-top: 0;
    }

        #index-news ul img {
            width: auto;
        }

        #index-news ul li {
            padding-left: 30px;
            margin: 0;
            list-style: none;
            background-image: url("../images/flag-icon.png");
            background-repeat: no-repeat;
            background-position: left top;
            letter-spacing: 0;
            line-height: 1.4em;
            margin-bottom: 5px;
            font-size: 1.04em;
        }

.moremore {
    border-top: 1px #ccc solid;
    font-size: 0.875em;
    margin: 0 20px;
    padding: 5px;
    text-align: right;
}

    .moremore a {
        color: #000983;
    }

.moremore_showintro {
    border-top: 1px #ccc solid;
    font-size: 0.875em;
    margin-top: 10px;
    padding: 5px 5px 0 5px;
    text-align: right;
}

    .moremore_showintro a {
        color: #000983;
    }

/*新聞列表*/
.fncnews-list-area {
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px;
}

.fncnews-list-box {
    padding: 0 10px 10px 10px;
    font-size: 1.15em;
}

.style1, .style2 {
    margin-bottom: 10px;
}

    .style1 .pic {
        width: 140px;
        position: relative;
    }

    .style1 .text {
        padding: 5px;
        margin-left: 145px;
        font-size: 0.875em;
        line-height: 1.4em;
        position: relative; /*為了置頂貼文新加*/
    }

        .style1 .text img, .style2 .text img {
            width: auto;
        }

    .style2 .text {
        padding: 5px;
        font-size: 0.875em;
        line-height: 1.4em;
        position: relative; /*為了置頂貼文新加*/
    }

.target-img {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

    .target-img img {
        width: 100%;
    }

/*不分裝置 兩行*/
.fncnews-list-box a p, .fncvideo-list-little-box a .title, .live-else-little-box a .title, #watch-playlist a .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0;
}

/*頁數*/
.page-area {
    padding: 20px 10px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

    .page-area a {
        display: inline-block;
        margin: 0 10px;
    }

.white-btn {
    background-color: #fff;
    font-weight: bolder;
    padding: 3px 10px;
    letter-spacing: 2px;
}

/*載入更多*/
.load-more {
    margin: 20px auto;
    position: relative;
    text-align: center;
    height: 70px;
}

.load-more-btn {
    background-color: #FFFFFF;
    padding: 20px 80px;
    letter-spacing: 2px;
    border: 1px solid #eee;
}
/*57精彩節目*/
#index-fncVideo {
    margin-top: 20px;
}

#index-fncVideo-cover {
    padding: 20px;
    padding-top: 0;
}

    #index-fncVideo-cover img {
        /*float:left;*/
        width: auto;
    }

/*系統商整合資訊*/
.system-integrator {
    margin-top: 20px;
}

.system-integrator-info {
    padding: 20px;
    padding-top: 0;
}

/*全球股市最新動態*/
.worldmap {
    background-image: url(../images/map.png);
    -moz-background-size: 100%;
    -webkit-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    font-size: 0.75em;
    line-height: 1.5em;
    letter-spacing: 0;
    position: relative;
}

.w23 {
    width: 23%;
    margin: 1%
}

.onebox-map {
    background: rgba(255,255,255,0.6);
    padding: 5px;
    -webkit-box-shadow: 0 0 15px #eee;
    -moz-box-shadow: 0 0 15px #eee;
    box-shadow: 0 0 15px #eee;
    margin-bottom: 5px;
}

    .onebox-map .flag {
        margin: 0 auto;
        position: relative;
        text-align: center;
    }

        .onebox-map .flag img {
            width: auto;
            border: 1px solid #eee;
        }

    .onebox-map .time {
        display: none;
        color: #666666;
    }

    .onebox-map .time, .onebox-map .unit, .onebox-map .data-a, .onebox-map .data-b {
        text-align: center;
    }

.dn {
    color: #00861f;
}

.up {
    color: #ff0000;
}

.world-else {
    font-size: 0.75em;
    line-height: 1.5em;
    letter-spacing: 0;
    position: relative;
}

.world-else-box-title {
    margin: 20px 0;
    padding: 0 10px;
    letter-spacing: 2px;
    font-weight: bolder;
    font-size: 1.1em;
    color: #FFFFFF;
    background-image: url("../images/marquee.png");
    background-repeat: no-repeat;
    background-position: left center;
    border-bottom: 2px solid #e62117;
}

.w27 {
    width: 27%;
    margin: 1%
}
/*主持人專區*/
.artist-area {
    margin: 0 auto;
    position: relative;
}

.artist-box {
    padding: 10px;
}

.artist-top {
    border-bottom: 1px #ccc solid;
    margin-bottom: 10px;
    position: relative;
}

.artist-box ul {
    padding: 0;
    margin: 0;
}

    .artist-box ul li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

.artist-box .pic {
    position: relative;
}

.pic-text .name {
    font-size: 2em;
    line-height: 2em;
}

.pic-text .now ul li a {
    color: #c41629;
    text-decoration: underline;
}

.artist-fb img {
    width: auto;
    margin: 10px 0;
}

.artist-list-box {
    margin-bottom: 20px;    /*2017.8.25 加大與下一個的間距*/
}

    .artist-list-box .artist {
        font-size: 1em;
    }


/*旅遊美食*/
.travelfood-area {
    margin-bottom: 20px;
}

    .travelfood-area img {
        width: auto;
    }

.travelfood-btn {
    padding: 5px 0;
}

    .travelfood-btn .yellow-btn {
        font-size: 0.875em;
        margin: 0 2px;
        padding: 3px 10px;
    }

.travelfood-list-box {
    padding: 10px;
}

.travelfood-one {
    padding: 10px;
    margin-bottom: 20px;
}

    .travelfood-one .summary {
        font-weight: bolder;
    }

    .travelfood-one .tel, .travelfood-one .add, .travelfood-one .recommend {
        line-height: 1.5em;
    }

.travelfood-theme {
    margin-bottom: 10px;
}

    .travelfood-theme p {
        padding: 0 20px 20px 20px;
    }

.travelfood-one .pic {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}


/*即時留言板*/
#youtube_live_chat {
    width: 300px;
    height: 500px;
    margin-bottom: 20px;
}

    #youtube_live_chat img {
        width: auto;
    }

/*輪播清單*/
#watch-playlist-area {
    /*margin-top:28px;*/
    margin-bottom: 20px;
}

#watch-playlist {
    width: 300px;
    /*height:495px;*/
    max-height: 495px;
    overflow-y: scroll;
    overflow-x: hidden;
}

    #watch-playlist ul {
        padding: 0;
        margin: 0;
    }

        #watch-playlist ul li {
            padding: 0;
            margin: 0;
            margin-bottom: 10px;
            line-height: 1.3em;
            list-style: none;
            padding-top: 3px;
        }

.nowplaying {
    background-color: #f5d83c;
}

#watch-playlist .pic {
    width: 145px;
    position: relative;
}

#watch-playlist .title {
    font-size: .9em;
    margin-left: 5px;
    margin-right: 5px;
}

/*廣告*/
.ad_72890 {
    width: 728px;
    height: 90px;
}

.ad_300600 {
    width: 300px;
    height: 600px;
    margin-bottom: 20px;
}

.ad_300250 {
    width: 300px;
    /*height: 250px;*/
    margin-bottom: 20px;
}

.ad_336280 {
    width: 336px;
    /*height: 280px;*/
    margin: 20px auto;
}

/*彩球*/
#lotteryfnc {
    letter-spacing: 0;
    margin-bottom: 20px;
}

    #lotteryfnc img {
        width: auto;
    }

#lotteryfnc-window {
    width: 295px;
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-left: 5px;
}

.lotteryfnc-box01, .lotteryfnc-box02, .lotteryfnc-box03, .lotteryfnc-box04, .lotteryfnc-box05, .lotteryfnc-box06, .lotteryfnc-box07, .lotteryfnc-box08, .lotteryfnc-box09, .lotteryfnc-box10 {
    width: 295px;
    height: 70px;
    border-bottom: #CCCCCC 1px solid;
    background-repeat: no-repeat;
    background-position: left top;
    font-size: 0.9em;
}

.lotteryfnc-box01 {
    background-image: url("../images/lotteryfnc_01.png");
}

.lotteryfnc-box02 {
    background-image: url("../images/lotteryfnc_02.png");
}

.lotteryfnc-box03 {
    background-image: url("../images/lotteryfnc_03.png");
}

.lotteryfnc-box04 {
    background-image: url("../images/lotteryfnc_04.png");
}

.lotteryfnc-box05 {
    background-image: url("../images/lotteryfnc_05.png");
}

.lotteryfnc-box06 {
    background-image: url("../images/lotteryfnc_06.png");
}

.lotteryfnc-box07 {
    background-image: url("../images/lotteryfnc_07.png");
}

.lotteryfnc-box08 {
    background-image: url("../images/lotteryfnc_08.png");
}

.lotteryfnc-box09 {
    background-image: url("../images/lotteryfnc_09.png");
}

.lotteryfnc-box10 {
    background-image: url("../images/lotteryfnc_10.png");
}

.lotto-no {
    margin-left: 80px;
    padding-top: 0px;
    height: 16px;
    font-weight: bolder;
}

.lotto-ball {
    width: 300px;
    margin-top: 5px;
}

    .lotto-ball ul {
        padding: 0;
        margin: 0;
        padding-top: 10px;
    }

        .lotto-ball ul li {
            padding: 0;
            margin: 0;
            float: left;
            margin-left: 2px;
            list-style: none;
        }

.green, .red, .yellow, .purple, .watermelon, .blue, .purple, .aqua {
    height: 32px;
    width: 32px;
    padding-top: 4px;
    padding-left: 4px;
    text-align: center;
    font-weight: bolder;
    background-repeat: no-repeat;
}

.green {
    background-image: url("../images/ball_g.png");
}

.red {
    background-image: url("../images/ball_r.png");
}

.yellow {
    background-image: url("../images/ball_y.png");
}

.watermelon {
    background-image: url("../images/ball_w.png");
}

.blue {
    background-image: url("../images/ball_b.png");
}

.purple {
    background-image: url("../images/ball_p.png");
}

.aqua {
    background-image: url("../images/ball_b2.png");
}

/*樂透快訊*/
#lottery-text {
    position: relative;
    background-color: #f5dc1f;
    height: 40px;
    width: 100%;
    margin-top: -15px;
}

        #lottery-text div div {
        padding: 1px 5px;
        line-height: 20px;
        font-size: 0.9em;
        word-wrap: break-word;
        word-break: break-all;
    }

/*RIGHT BANNER*/
.banner {
    margin-bottom: 20px;
}

/*RIGHT FB*/
.right-fb {
    margin-bottom: 20px;
}

/*RIGHT LIVE BOX*/
.right-live-box {
    margin-bottom: 20px;
    border-top: 5px solid #f5d83c;
    font-weight: bolder;
    position: relative;
}

    .right-live-box span {
        display: block;
        padding: 10px;
        position: relative;
    }

    .right-live-box .live_img {
        z-index: 1;
        position: relative;
    }

        .right-live-box .live_img img {
            width: 300px;
        }

/*FOOTER*/
#footer-inner {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    /*background-color: #000000;*/
    background-image: url("../images/bgbg.jpg");
    letter-spacing: 0px;
    padding: 15px 10px 15px 10px;
    color: #FFF;
    margin-top: 20px;
}

    #footer-inner a {
        color: #fff;
    }

    #footer-inner img {
        width: auto;
    }

#footer {
    margin: 0 auto;
}

.footer-0 {
    font-size: 0.75em;
    text-align: center;
    line-height: 1.5em;
}

.footer-1 {
    display: none;
}

.footer-2 {
    display: none;
}





/*浮動社群分享*/
#pageshare {
    display: none;
}


/*手機板固定下方廣告*/

#mobile-footer-ad {
    position: fixed;
    bottom: 0;
    z-index: 50;
    max-height: 200px;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

    #mobile-footer-ad img {
        width: 100%;
    }


/*手機關鍵字搜尋頁*/
#searchbox {
    margin: 0 auto;
    position: relative;
    text-align: center;
}

    #searchbox img {
        width: auto;
    }

/* 熱搜關鍵字*/
#hot_keyword {
    margin: 20px auto;
    position: relative;
    padding-bottom: 20px;
}

    #hot_keyword a {
        display: block;
        float: left;
        width: 33%;
        text-align: center;
        color: #000983;
        margin: 10px 0;
        font-size: 0.875em;
    }





/* select */
.shSelect {
    font-family: Arial, Helvetica, sans-serif, "微軟正黑體", "新細明體", "標楷體";
    width: 200px;
    font-size: 15px;
    padding: 4px 6px;
    color: #555555;
    vertical-align: middle;
    margin: 5px 15px 5px 0;
    height: 30px;
    /* In IE7, the height of the select element cannot be changed by height, only font-size */
    *margin-top: 4px;
    /* For IE7, add top margin to align select with labels */
    line-height: 30px;
    /* select 邊框拿掉 */
    border: 1px solid #cccccc;
    background-color: #ffffff;
    /* 圓框 */
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-radius: 4px;
    -webkit-background-clip: padding-box;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-radius: 4px;
    background-clip: padding-box;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius: 4px;
    -moz-background-clip: padding;
}
/* textarea */
.textarea {
    font-family: Arial, Helvetica, sans-serif, "微軟正黑體", "新細明體", "標楷體";
    height: 100px;
    width: 95%;
    padding: 4px 6px;
    margin: 5px 15px 5px 0;
    border: solid 1px #ccc;
    font-size: 15px;
    /* 圓框 */
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-radius: 4px;
    -webkit-background-clip: padding-box;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-radius: 4px;
    background-clip: padding-box;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius: 4px;
    -moz-background-clip: padding;
}









/* textbox */
.shText {
    height: 26px;
    width: 250px;
    font-size: 0.9em;
    padding: 1px 5px;
    margin: 20px 10px;
    border: 1px solid #ccc;
    vertical-align: middle;
    color: #ccc;
    background-color: #fff;
    background-image: none;
    /* 圓框 */
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-radius: 4px;
    -webkit-background-clip: padding-box;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-radius: 4px;
    background-clip: padding-box;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius: 4px;
    -moz-background-clip: padding;
}

/*checkbox*/
.squaredFour {
    margin: 5px 15px 5px 0;
    position: relative;
    font-size: 1.2em;
    height: 1.5em;
    width: 75%;
    /* 圓框 */
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-radius: 4px;
    -webkit-background-clip: padding-box;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-radius: 4px;
    background-clip: padding-box;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius: 4px;
    -moz-background-clip: padding;
}


/*Smooth Page Scroll to Top */
.scrollup {
    width: 40px;
    height: 50px;
    text-indent: -9999px;
    opacity: 0.85;
    position: fixed;
    bottom: 0px;
    right: 5%;
    /*display: none;*/
    background: url(../images/icon_top.png) no-repeat center top #000;
    z-index: 50;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


/*************overlay***************/

/* Overlay style */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(25,25,25,0.95);
    z-index: 100;
}

    /* Overlay closing cross */
    .overlay .overlay-close {
        width: 40px;
        height: 40px;
        position: absolute;
        right: 15px;
        top: 15px;
        overflow: hidden;
        border: none;
        background: url(../images/cross.png) no-repeat center center;
        -moz-background-size: 100% 100%; /* 老版本的 Firefox */
        background-size: 100% 100%;
        text-indent: 200%;
        color: transparent;
        outline: none;
        z-index: 100;
        cursor: pointer;
    }

    .overlay .overlay-logo {
        width: 256px;
        height: 25px;
        position: absolute;
        left: 15px;
        top: 25px;
        overflow: hidden;
        border: none;
        background: url(../images/overlay-logo.png) no-repeat center center;
        -moz-background-size: 100% 100%; /* 老版本的 Firefox */
        background-size: 100% 100%;
        text-indent: 200%;
        color: transparent;
        outline: none;
        z-index: 100;
        cursor: pointer;
    }

    .overlay .overlay-content {
        color: #fff;
        position: relative;
        top: 55%;
        height: 85%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 90%;
        margin: 0 auto;
        padding: 2%;
        overflow: scroll;
        overflow-x: hidden;
        overflow-y: auto;
    }

        .overlay .overlay-content img {
            width: auto;
            margin: 2px;
        }

.final-top {
    margin-bottom: 20px;
}

.fb a {
    background-color: #4267b2;
    padding: 5px;
    color: #fff;
}

.social-gray {
    padding: 10px;
}

    .social-gray span {
        margin-left: 5px;
    }


.app-box {
    padding: 10px 10px 0 10px;
    margin-bottom: 20px;
    background-color: #c2c2c3;
    font-size: 0.875em;
}


.final-bottom .box-title {
    background-position: left 5px;
    padding-top: 0px;
    font-size: 1.125em;
}

.final-bottom .text {
    font-size: 0.875em;
    line-height: 1.5em;
}
/* Effects */
.overlay-scale {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

    .overlay-scale.open {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
        transition: transform 0.4s, opacity 0.4s;
    }

/*手機新聞分享*/
.mobile-share {
    padding: 10px 0% 15px 0%;
}

    .mobile-share a {
        display: inline-block;
        width: 17%;
        margin: 0 1px;
        text-align: center;
    }

/*overlay AD*/
.overlay-ad {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(25,25,25,0.95);
    z-index: 100;
}

.wrap-ad {
    color: #e9e9e9;
    text-align: center;
    /*width: 90%;*/
    margin: 0 auto;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
}

.overlay-ad .overlay-close {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 5px;
    top: 5px;
    overflow: hidden;
    border: none;
    background: url(../images/close-icon-30.png) no-repeat center center;
    -moz-background-size: 100% 100%; /* 老版本的 Firefox */
    background-size: 100% 100%;
    text-indent: 200%;
    color: transparent;
    outline: none;
    z-index: 100;
    cursor: pointer;
}

.ad-img {
    /*padding-top: 5%;*/
    text-align: center;
    margin: 0 auto;
}

    .ad-img img {
        width: auto;
    }

#viewImage img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/*BBC*/
.bbc {
    width: 100%;
    background-color: #bb1919;
    padding-bottom: 3px;
    margin-bottom: 10px;
}

    .bbc img {
        width: auto;
    }


figure {
    position: relative;
}

.fncnews-content figure img {
    width: 100%;
}

.fncnews-content figure video {
    width: 100%;
}

figure footer {
    background: #404040;
    background: rgba(0,0,0,0.6);
    top: 0;
    color: #ececec;
    letter-spacing: .25px;
    padding: 3px 8px 1px;
    position: absolute;
    right: 0;
    font-size: 0.7em;
}

figcaption {
    background-color: #222;
    color: #fff;
    padding: 8px;
    font-size: 0.7em;
    margin-top: -15px;
    line-height: 1.7em;
    margin-bottom: 10px;
}
figure audio {
    bottom: 5%;
    padding: 3px 8px;
    position: absolute;
    left: 0;
}
/*顯示直播人數*/
.number_of_people_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number_of_people {
    position: absolute;
    margin: 0 auto;
    z-index: 1;
    top: 0;
}

.number_of_people_l {
    float: left;
    background-color: red;
    font-size: 1em;
    color: white;
    padding: 5px 10px
}

.number_of_people_r {
    float: left;
    background-color: rgb(12 12 12 / 70%);
    font-size: 1em;
    color: white;
    padding: 5px 10px;
    margin-left: 5px;
}

    .number_of_people_r img {
        width: 15px;
        line-height: 0;
        vertical-align: middle;
        margin-right: 5px;
    }


.dfp_ad:has(iframe, img)::before, .dfp_ad:has(iframe, img)::after {
    display: none;
}

@media screen and (min-width: 320px) {
    .s_adbox, .big_adbox, .right_adbox {
        position: relative;
    }

    .s_adbox {
        display: block;
        height: 250px;
    }

    .s_adbox::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid #ddd;
    }

        .s_adbox::after {
            content: 'AD';
            position: absolute;
            top: 50%;
            left: 50%;
            color: #aaa;
            font-size: 16px;
            font-weight: 400;
            transform: translate(-50%, -50%);
        }

    #live_box {
        height: 464px;
    }
}

@media screen and (min-width: 375px) {
    #live_box {
        height: 515px;
    }
}

/*句式只在viewport 寬度不小於400px才生效*/
@media screen and (min-width: 400px) {
    #live_box {
        height: 537px;
    }
    .logo-ss {
        padding: 5px 0;
    }

    #mobile-logo-inner {
        width: 96%;
        padding: 5px 2%;
    }

    #marquee-text {
        width: 70%;
    }

    /*精彩節目節目清單*/
    .fncvideo-list-little-box {
        height: 200px;
    }
    /*新聞單則內容*/
    .news-cover .play-icon {
        top: 31%;
        left: 38%;
    }
    /*主播主持人*/
    .artist-list-box {
        float: left;
        width: 48%;
        margin: 0 1%;
        margin-bottom: 20px; /*2017.8.25 加大與下一個的間距*/
    }
}

@media screen and (min-width: 425px) {
    #live_box {
        height: 561px;
    }
}

/*句式只在viewport 寬度不小於500px才生效*/
@media screen and (min-width: 500px) {
    #live_box {
        height: 630px;
    }
    .fulllive-btn {
        display: block;
    }

    .live-else-little-box {
        width: 31%;
        margin: 0 1%;
    }

    #index-fncVideo-cover img {
        float: left;
        width: 48%;
        margin: 1%;
    }

    /*精彩節目節目清單*/
    .fncvideo-list-little-box {
        width: 31%;
        margin: 0 1%;
    }
    /*新聞單則內容*/
    .news-cover .play-icon {
        top: 33%;
        left: 43%;
    }
    /*美食*/
    .travelfood-one .pic {
        width: 220px;
        margin-bottom: 0px;
        padding-top: 5px;
    }

    .travelfood-one .text {
        padding-left: 5px;
        margin-left: 225px;
    }
}

/*句式只在viewport 寬度不小於520px才生效*/
@media screen and (min-width: 520px) {
    /*手機上方新聞分享*/
    .small {
        display: none;
    }

    .mid {
        display: block;
    }
}

@media screen and (min-width: 600px) {
    #live_box {
        height: 655px;
    }
}

/*句式只在viewport 寬度不小於640px才生效*/
@media screen and (min-width: 640px) {
    /*手機板固定下方廣告*/
    #mobile-footer-ad {
        bottom: 60px;
        /*display: none;*/
    }

    #mobile-footer-ad-margin {
        /*display: none;*/
    }

    /*新聞列表*/


    .style1 .pic {
        width: 155px;
    }

    .style1 .text {
        padding: 10px;
        font-size: 1em;
        margin-left: 160px;
        /*line-height:1.4em;*/
    }

    .style2 .text {
        padding: 10px;
        font-size: 1em;
    }
    /*頁數*/

    .page-area a {
        margin: 0 15px;
    }

    .fncvideo-btn {
        margin-right: 20px;
    }
    /*精彩節目節目清單*/
    .fncvideo-list-little-box {
        height: 220px;
    }

    /*新聞單則內容*/
    .news-cover .play-icon {
        top: 40%;
        left: 43%;
    }

    /*旅遊美食*/
    .travelfood-btn .yellow-btn {
        font-size: 1em;
        margin: 0 5px;
    }

    .travelfood-list-box {
        padding: 20px;
    }
    /*全球股市最新動態*/

    .onebox-map .flag {
        float: left;
        margin-right: 5px;
    }

    .onebox-map .info {
        float: right;
    }

    .onebox-map .time {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    #live_box {
        height: 773px;
    }
}

/*句式只在viewport 寬度不小於800px才生效*/
@media screen and (min-width: 800px) {
    #live_box {
        height: 799px;
    }
    #pc-header-inner {
        display: block;
    }

    #mobile-app-inner {
        display: none;
    }

    #marquee-text {
        width: 80%;
    }

    #mobile-logo-inner-margin {
        display: none;
    }

    #mobile-logo-inner {
        position: relative;
    }

    .halfhalf {
        width: 49%;
        margin-right: 2%;
        float: left;
    }

    .footer-0 {
        display: none;
    }

    .footer-1 {
        display: block;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
    }

    .footer-1-1 {
        margin: 5px auto;
        text-align: left;
        position: relative;
    }

    .footer-1 ul {
        padding: 0;
        margin: 0;
    }

        .footer-1 ul li {
            list-style: none;
            float: left;
        }

            .footer-1 ul li::after {
                content: " ｜";
            }

            .footer-1 ul li:last-child::after {
                content: " ";
            }

    .footer-1-2 {
        font-size: 0.875em;
        margin: 5px auto;
        text-align: left;
        position: relative;
    }

    .footer-2 {
        display: block;
        padding-right: 20px;
    }

        .footer-2 .right {
            font-size: 0.75em;
            text-align: right;
        }

    #pageshare {
        display: block;
        position: fixed;
        bottom: 30%;
        float: left;
        border-radius: 4px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        background-color: #eed74b;
        padding: 8px 8px 8px 10px;
        z-index: 10;
        -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        border-left: 5px #c6261e solid;
    }

    /*新聞列表*/

    .style1 .text, .style2 .text {
        /*padding: 15px;*/
    }
    /*精彩節目節目清單*/
    .fncvideo-list-little-box {
        height: 240px;
    }
    /*新聞單則內容*/
    .fncnews-content {
        padding: 20px;
        margin-bottom: 20px;
        padding-bottom: 50px;
    }
    /*下則新聞*/
    .next-news {
        display: none;
    }

    /*主播主持人*/
    .artist-top {
        border-bottom: 0;
    }

    .pic-text {
        position: absolute;
        top: 6%;
        left: 50px;
        z-index: 2;
    }

        .pic-text .name {
            font-size: 3.75em;
            line-height: 3em;
        }

        .pic-text .now ul li {
            font-size: 0.875em;
        }


    .artist-list-box {
        width: 31.3%;
    }

    /*全球股市最新動態*/
    .worldmap {
        -moz-background-size: 80%;
        -webkit-background-size: 80%;
        -o-background-size: 80%;
        background-size: 80%;
        background-position: center center;
    }

    .onebox-map .data-a, .onebox-map .data-b {
        float: left;
        text-align: left;
    }

    .w27 {
        width: 20%;
    }
}

@media screen and (min-width: 900px) {
    #live_box {
        height: 879px;
    }
}

/*句式只在viewport 寬度不小於1002px才生效*/
@media screen and (min-width: 1002px) {
    #live_box {
        height: 705px;
    }

    .big_adbox {
        display: block;
        height: 250px;
    }

    .right_adbox {
        min-height: 250px;
    }

        .big_adbox::before,  .right_adbox::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid #ddd;
        }

        .big_adbox::after, .right_adbox::after {
            content: 'AD';
            position: absolute;
            top: 50%;
            left: 50%;
            color: #aaa;
            font-size: 16px;
            font-weight: 400;
            transform: translate(-50%, -50%);
        }

    #pc-top-ad {
        display: block;
    }

    #pc-logo-inner {
        display: block;
    }

    #mobile-logo-inner {
        display: none;
    }

    #pc-nav-inner {
        display: block;
        padding-left: 10px;
    }
    #pc-nav {
        display: flex;
        align-items: center;
        top: 15px;
        position: relative;
    }

    #pc-nav ul {
        padding: 0;
        margin-top: 0;
        height: 30px;
    }


    #pc-nav ul li {
        float: left;
        list-style: none;
        padding: 0px 0px 20px 0;
    }


    .navbar {
        position: relative;
        left: 0px;
    }

        .navbar a {
            /*float: left;*/
            font-size: 1em;
            color: white;
            text-align: center;
            text-decoration: none;
        }

    .dropdown {
        float: left;
        overflow: hidden;
    }

        .dropdown .dropbtn {
            font-size: 1em;
            border: none;
            outline: none;
            color: black;
            background-color: inherit;
            font-weight: bolder;
        }

        .dropdown:hover .dropbtn {
            /*background-color: red;*/
            cursor: pointer;
        }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 140px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 999;
        right: 0px
    }

        .dropdown-content a {
            float: none;
            color: black;
            padding: 12px 16px !important;
            text-decoration: none;
            display: block;
            text-align: left;
            right: 0px;
        }

            .dropdown-content a:hover {
                display: block;
                background-color: #ddd;
            }

    .dropdown:hover .dropdown-content {
        display: block;
    }


    #pc-submenu-inner {
        display: block;
    }

    #arrow-left-w, #arrow-right-w {
        display: none;
    }

    #main-inner {
        padding: 0 10px 10px 10px;
    }

    #main {
    }

    #main-left {
        margin-left: -320px;
        float: left;
        width: 100%;
    }

    #contentb { /*真正的“main-left”变成了contentb，他的宽度跟以前的main-left一样，是100%-320.*/
        margin-left: 320px;
    }

    #main-right {
        display: block;
        float: right;
        width: 300px;
    }

    #index-news ul li {
        font-size: 1em;
    }

    .fncnews-list-box {
        font-size: 1em;
    }

    .sbutton {
        margin: 5px 5px 0 5px;
    }
    /*精彩節目節目清單*/
    .fncvideo-list-little-box {
        height: 220px;
    }
    /*兩則300廣告*/
    .two300ad {
        text-align: center;
    }

        .two300ad .ad_300250 {
            display: inline-block;
            margin: 0 5px;
        }

        .two300ad .last {
            display: inline-block;
        }
    /*************overlay***************/
    .overlay .overlay-close {
        width: 50px;
        height: 50px;
    }

    .overlay .overlay-content {
        top: 60%;
        width: 936px;
    }

    .final-top {
        margin-left: -356px;
        float: left;
        width: 100%;
    }

    .final-bottom {
        float: right;
        width: 336px;
    }

    .contentb2 {
        margin-left: 356px;
    }
    /*主播主持人*/

    .pic-text {
        top: 0%;
    }
    /*全球股市最新動態*/
    .w27 {
        width: 27%;
    }
}

@media screen and (min-width: 1024px) {
    #live_box {
        height: 722px;
    }
}

/*句式只在viewport 寬度不小於1200px才生效*/
@media screen and (min-width: 1200px) {
    #live_box {
        height: 739px;
    }
    #pc-header, #pc-logo, #pc-nav, #pc-submenu, #main, #footer {
        margin: 0 auto;
        width: 1024px;
    }

    #marquee-box {
        margin: 20px auto 0 auto;
        width: 1024px;
    }

    .footer-2 {
        padding-right: 0px;
    }

    /*精彩節目節目清單*/
    .fncvideo-list-little-box {
        height: 210px;
    }
}

@media screen and (max-width: 1399px) {
    #pc-nav .open {
        display: none;
    }
}

/*句式只在viewport 寬度不小於1400px才生效*/
@media screen and (min-width: 1400px) {
    #live_box {
        height: 1007px;
    }
    #pc-header, #pc-logo, #pc-nav, #pc-submenu, #marquee-box, #main, #footer {
        width: 1380px;
    }

        #pc-nav ul li a {
            padding: 20px 10px 0px 10px;
        }

        #pc-submenu ul li a {
            padding: 20px 10px 0px 10px;
        }

    .navbarclose {
        display: none;
    }

    #marquee-text {
        width: 90%;
    }

    #index-fncVideo-cover img {
        width: 32%;
        margin: 0.5%;
    }

    #pc-logo .ad_72890 {
        padding-right: 320px;
    }

    /*新聞列表*/

    .style1 .pic {
        width: 200px;
    }

    .style1 .text {
        margin-left: 205px;
    }

    .style1 .text, .style2 .text {
        padding: 20px;
    }

    /*精彩節目節目清單*/
    .fncvideo-list-little-box {
        height: 260px;
    }


    .play-icon img {
        width: 90%;
    }

    /*新聞單則內容*/
    .news-cover .play-icon {
        top: 45%;
        left: 45%;
    }
    /*主播主持人*/

    .pic-text {
        top: 8%;
        left: 70px;
        position: absolute;
    }

        .pic-text .name {
            letter-spacing: 10px;
        }

        .pic-text .now ul li {
            font-size: 0.875em;
        }
    /*全球股市最新動態*/

    .worldmap {
        font-size: 0.875em;
        letter-spacing: 1px;
        height: 500px;
    }

    .world-else {
        font-size: 0.875em;
        letter-spacing: 1px;
    }

    .onebox-map {
        position: absolute;
    }

    .line1-1 {
        top: 20px;
        left: 20px;
    }

    .line1-2 {
        top: 120px;
        left: 50px;
    }

    .line1-3 {
        top: 220px;
        left: 20px;
    }

    .line1-4 {
        top: 320px;
        left: 60px;
    }

    .line2-1 {
        top: 30px;
        left: 270px;
    }

    .line2-2 {
        top: 130px;
        left: 280px;
    }

    .line3-1 {
        top: 0px;
        left: 520px;
    }

    .line3-2 {
        top: 100px;
        left: 540px;
    }

    .line3-3 {
        top: 200px;
        left: 520px;
    }

    .line3-4 {
        top: 300px;
        left: 560px;
    }

    .line3-5 {
        top: 400px;
        left: 520px;
    }

    .line4-1 {
        top: 30px;
        left: 790px;
    }

    .line4-2 {
        top: 130px;
        left: 790px;
    }

    .w27 {
        width: 20%;
    }

    /*************overlay***************/

    .overlay .overlay-content {
        top: 60%;
        width: 1236px;
    }

    .final-top {
        margin-left: -356px;
        float: left;
        width: 100%;
    }

    .final-bottom {
        float: right;
        width: 336px;
    }

    .contentb2 {
        margin-left: 356px;
    }

    .errorr {
        text-align: center;
    }

        .errorr img {
            width: auto;
        }
}

/*.single-line-overflow-ellipsis {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}*/

/*--強制回復原始樣式 start--*/
.origin-style {
    font-size: 1.3em;
    line-height: 1.8em;
}
.origin-style :link, :visited {
    text-decoration: underline;
}
.origin-style h1 {
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
}
.origin-style h2 {
    font-size: 1.3em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
}
.origin-style h3 {
    font-size: 1.15em;
    margin-top: 1em;
    margin-bottom: 1em;
}
/*.origin-style h4 {
    margin-top: 1.33em;
    margin-bottom: 1.33em;
}
.origin-style h5 {
    font-size: .83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
}
.origin-style h6 {
    font-size: .67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
}*/
.origin-style /*h1, h2, h3,*/ h4, h5, h6 {
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
/*.origin-style blockquote {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 40px;
    margin-right: 40px;
    padding-left: 10px;
    border-left: 2px solid #ccc;
    font-style: italic;
}*/
    .origin-style ul {
        list-style-type: disc;
    }
    .origin-style ol {
        list-style-type: decimal;
    }
        .origin-style ol ul, ul ol, ul ul, ol ol {
            margin-top: 0;
            margin-bottom: 0;
        }
/*--強制回復原始樣式 end--*/

.overlay .overlay-content .login-top {
    text-align: left;
    margin-left: 35%;
}

.overlay .overlay-content .login-bottom {
    text-align: center;
}

.login-top .cate {
    border-left: solid 5px #f5d83c;
    padding-left: 20px;
    font-size: 1.25em;
    letter-spacing: 4px;
}

.checknumber {
    display: block;
    font-size: 0.9em;
}

.login_btn {
    margin: 0 auto;
    margin-top: 20px;
    color: #000;
    border: 0;
    font-family: Arial, Helvetica, sans-serif, "微軟正黑體", "新細明體", "標楷體";
    font-size: 1em;
    padding: 8px 38px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    background-color: #f5d83c;
    text-align: center;
}

    .login_btn:active, .login_btn:hover {
        background-color: #f5bf3c;
    }

@media screen and (min-width: 1002px) {
    .checknumber {
        display: inline-block;
    }
}

.news-read {
    color: #666666;
}

.top-search {
    color: #000000;
}

</pre></body></html>