﻿
.component-small {
	width: 650px;
	height: 290px;
}
.component-fullwidth {
	width: 100%;
	margin-bottom: 0px;
	height: auto;
}
.component-transparent {
	width: 900px;
	height: 500px;
}
.component > UL {
	position: relative;
	padding-bottom: 0px;
	list-style-type: none;
	margin: 0px auto;
	padding-left: 0px;
	width: 100%;
	padding-right: 0px;
	max-width: 100%;
	height: 100%;
	list-style-image: none;
	padding-top: 0px;
}
.component-small > UL {
	width: 450px;
}
.component-fullwidth > UL {
	overflow: hidden;
}
.component-transparent > UL {
	width: 112px;
}
.component LI {
	z-index: 9;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	opacity: 0;
	pointer-events: none;
}
.component-fullwidth LI {
	overflow: hidden;
}
.component .current {
	z-index: 0;
	position: relative;
	opacity: 1;
	pointer-events: auto;
}
.component LI .description {
	z-index: 1;
	position: absolute;
	text-align: left;
	padding-left: 5%;
	width: 36%;
	padding-right: 5%;
	color: #fff;
	right: 0px;
	padding-top: 20%;
	opacity: 0;
	transition: 1s;
}
.component .current .description {
	opacity: 1;
}
.component LI IMG {
	display: block;
	max-width: 100%;
}
.component-fullwidth LI IMG {
	position: absolute;
	min-width: 100%;
	width: 100%;
	max-width: none;
	left: 0%;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}
.component nav A {
	position: absolute;
	text-align: center;
	line-height: 200px;
	outline-style: none;
	outline-color: invert;
	outline-width: medium;
	width: 50px;
	height: 50px;
	color: #000;
	overflow: hidden;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.component-small nav A.prev {
	left: 0px;
}
.component-transparent nav A.prev {
	left: 0px;
}
.component-small nav A.next {
	right: 0px;
}
.component-transparent nav A.next {
	right: 0px;
}
.component-fullwidth nav A {
	top: 0px;
	right: 0px;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
.component-fullwidth nav A.prev {
	margin-right: 100px;
}
.component-fullwidth nav A.next {
	margin-right: 50px;
}
.component-fullwidth nav A.close {
	margin-left: 20px;
}
.fxSoftScale .navOutNext {
	-webkit-animation: scaleUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: scaleUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxSoftScale .navInNext {
	-webkit-animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxSoftScale .navOutPrev {
	-webkit-animation: scaleDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: scaleDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxSoftScale .navInPrev {
	-webkit-animation: scaleUpDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: scaleUpDown 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes scaleUp { to { -webkit-transform: scale(1.2); opacity: 0; } }
@keyframes scaleUp { to { transform: scale(1.2); opacity: 0; } }
@-webkit-keyframes scaleDownUp { from { opacity: 0; -webkit-transform: scale(0.9); } to { opacity: 1; -webkit-transform: scale(1); } }
@keyframes scaleDownUp { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@-webkit-keyframes scaleDown { to { opacity: 0; -webkit-transform: scale(0.9); } }
@keyframes scaleDown { to { opacity: 0; transform: scale(0.9); } }
@-webkit-keyframes scaleUpDown { from { -webkit-transform: scale(1.2); } to { opacity: 1; -webkit-transform: scale(1); } }
@keyframes scaleUpDown { from { transform: scale(1.2); } to { opacity: 1; transform: scale(1); } }
.fxPressAway .navOutNext {
	-webkit-animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxPressAway .navInNext {
	opacity: 1;
	-webkit-animation: slideInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxPressAway .navOutPrev {
	-webkit-animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxPressAway .navInPrev {
	opacity: 1;
	-webkit-animation: slideInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes slideOutScaleRight { to { -webkit-transform: translateX(100%) scale(0.9); opacity: 0; } }
@keyframes slideOutScaleRight { to { transform: translateX(100%) scale(0.9); opacity: 0; } }
@-webkit-keyframes slideInFromLeft { from { -webkit-transform: translateX(-100%); } to { -webkit-transform: translateX(0); } }
@keyframes slideInFromLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@-webkit-keyframes slideOutScaleLeft { to { -webkit-transform: translateX(-100%) scale(0.9); opacity: 0; } }
@keyframes slideOutScaleLeft { to { transform: translateX(-100%) scale(0.9); opacity: 0; } }
@-webkit-keyframes slideInFromRight { from { -webkit-transform: translateX(100%); } to { -webkit-transform: translateX(0); } }
@keyframes slideInFromRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.fxSideSwing .navOutNext {
	-webkit-animation: slideOutScaleRight 1.2s forwards;
	animation: slideOutScaleRight 1.2s forwards;
	-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
	-webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
	animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}
.fxSideSwing .navInNext {
	opacity: 1;
	-webkit-animation: slideInFromLeft 1.2s forwards;
	animation: slideInFromLeft 1.2s forwards;
	-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
	-webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
	animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}
.fxSideSwing .navOutPrev {
	-webkit-animation: slideOutScaleLeft 1.2s forwards;
	animation: slideOutScaleLeft 1.2s forwards;
	-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
	-webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
	animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}
.fxSideSwing .navInPrev {
	opacity: 1;
	-webkit-animation: slideInFromRight 1.2s forwards;
	animation: slideInFromRight 1.2s forwards;
	-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
	-webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
	animation-timing-function: cubic-bezier(1, -0.2, 0, 1);
}
.fxFortuneWheel .itemwrap {
	-webkit-perspective: 1600px;
	perspective: 1600px;
}
.fxFortuneWheel .navOutNext {
	-webkit-animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideOutScaleRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxFortuneWheel .navInNext {
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-animation: rotateInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: rotateInFromLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxFortuneWheel .navOutPrev {
	-webkit-animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideOutScaleLeft 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxFortuneWheel .navInPrev {
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	-webkit-animation: rotateInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: rotateInFromRight 1.2s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes rotateInFromLeft { from { -webkit-transform: translateX(-100%) rotateY(-55deg); } to { -webkit-transform: translateX(0) rotateY(0deg); opacity: 1; } }
@keyframes rotateInFromLeft { from { transform: translateX(-100%) rotateY(-55deg); } to { transform: translateX(0) rotateY(0deg); opacity: 1; } }
@-webkit-keyframes rotateInFromRight { from { -webkit-transform: translateX(100%) rotateY(55deg); } to { -webkit-transform: translateX(0) rotateY(0deg); opacity: 1; } }
@keyframes rotateInFromRight { from { transform: translateX(100%) rotateY(55deg); } to { transform: translateX(0) rotateY(0deg); opacity: 1; } }
.fxSwipe .navOutNext {
	-webkit-animation: decreaseHeight 0.8s forwards ease-in-out;
	animation: decreaseHeight 0.8s forwards ease-in-out;
}
.fxSwipe .navInNext {
	-webkit-animation: show 0.8s forwards ease-in-out;
	animation: show 0.8s forwards ease-in-out;
}
.fxSwipe .navOutPrev {
	-webkit-animation: hide 0.8s forwards ease-in-out;
	animation: hide 0.8s forwards ease-in-out;
}
.fxSwipe .navInPrev {
	z-index: 1001;
	opacity: 1;
	-webkit-animation: increaseHeight 0.8s forwards ease-in-out;
	animation: increaseHeight 0.8s forwards ease-in-out;
}
@-webkit-keyframes decreaseHeight { to { height: 0; } }
@keyframes decreaseHeight { to { height: 0; } }
@-webkit-keyframes show { 0% { opacity: 0; } 1%,100% { opacity: 1; } }
@keyframes show { 0% { opacity: 0; } 1%,100% { opacity: 1; } }
@-webkit-keyframes hide { 0%,99% { opacity: 1; } 100% { opacity: 0; } }
@keyframes hide { 0%,99% { opacity: 1; } 100% { opacity: 0; } }
@-webkit-keyframes increaseHeight { from { height: 0; } to { height: 100%; } }
@keyframes increaseHeight { from { height: 0; } to { height: 100%; } }
.fxPushReveal .navOutNext {
	opacity: 1;
	-webkit-animation: slideOutBottom 0.7s forwards ease-in-out;
	animation: slideOutBottom 0.7s forwards ease-in-out;
}
.fxPushReveal .navInNext {
	opacity: 1;
	-webkit-animation: slideInHalfFromTop 0.7s forwards ease-in-out;
	animation: slideInHalfFromTop 0.7s forwards ease-in-out;
}
.fxPushReveal .navOutPrev {
	opacity: 1;
	-webkit-animation: slideOutHalfTop 0.7s forwards ease-in-out;
	animation: slideOutHalfTop 0.7s forwards ease-in-out;
}
.fxPushReveal .navInPrev {
	opacity: 1;
	z-index: 1001;
	-webkit-animation: slideInFromBottom 0.7s forwards ease-in-out;
	animation: slideInFromBottom 0.7s forwards ease-in-out;
}
@-webkit-keyframes slideOutBottom { to { -webkit-transform: translateY(100%); } }
@keyframes slideOutBottom { to { transform: translateY(100%); } }
@-webkit-keyframes slideInHalfFromTop { from { -webkit-transform: translateY(-50%); } to { -webkit-transform: translateY(0); } }
@keyframes slideInHalfFromTop { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@-webkit-keyframes slideOutHalfTop { to { -webkit-transform: translateY(-50%); } }
@keyframes slideOutHalfTop { to { transform: translateY(-50%); } }
@-webkit-keyframes slideInFromBottom { from { -webkit-transform: translateY(100%); } to { -webkit-transform: translateY(0); } }
@keyframes slideInFromBottom { from { transform: translateY(100%); } to { transform: translateY(0); } }
.fxSnapIn .navOutNext {
	-webkit-animation: slideOutLeft 0.5s forwards ease-in;
	animation: slideOutLeft 0.5s forwards ease-in;
}
.fxSnapIn .navInNext {
	z-index: 1001;
	opacity: 1;
	-webkit-animation: slideFromRightFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideFromRightFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxSnapIn .navOutPrev {
	-webkit-animation: slideOutRight 0.5s forwards ease-in;
	animation: slideOutRight 0.5s forwards ease-in;
}
.fxSnapIn .navInPrev {
	z-index: 1001;
	opacity: 1;
	-webkit-animation: slideFromLeftFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideFromLeftFast 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxSnapIn li::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(0,0,0,0.8);
	-webkit-transition: opacity 0.4s 0.1s ease-in;
	transition: opacity 0.4s 0.1s ease-in;
}
.fxSnapIn .navOutPrev::after, .fxSnapIn .navOutNext::after {
	opacity: 1;
}
@-webkit-keyframes slideOutLeft { to { -webkit-transform: translateX(-10%); } }
@keyframes slideOutLeft { to { transform: translateX(-10%); } }
@-webkit-keyframes slideFromRightFast { 0%,50% { -webkit-transform: translateX(100%); } 100% { -webkit-transform: translateX(0%); } }
@keyframes slideFromRightFast { 0%,50% { transform: translateX(100%); } 100% { transform: translateX(0%); } }
@-webkit-keyframes slideOutRight { to { -webkit-transform: translateX(10%); } }
@keyframes slideOutRight { to { transform: translateX(10%); } }
@-webkit-keyframes slideFromLeftFast { 0%,50% { -webkit-transform: translateX(-100%); } 100% { -webkit-transform: translateX(0%); } }
@keyframes slideFromLeftFast { 0%,50% { transform: translateX(-100%); } 100% { transform: translateX(0%); } }
.fxLetMeIn .itemwrap {
	-webkit-perspective: 1600px;
	perspective: 1600px;
}
.fxLetMeIn .navOutNext {
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	-webkit-animation: rotateOutRight 0.5s forwards ease-in-out;
	animation: rotateOutRight 0.5s forwards ease-in-out;
}
.fxLetMeIn .navInNext {
	z-index: 1001;
	opacity: 1;
	-webkit-animation: slideFromRightFast 0.5s forwards ease;
	animation: slideFromRightFast 0.5s forwards ease;
}
.fxLetMeIn .navOutPrev {
	-webkit-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
	-webkit-animation: rotateOutLeft 0.5s forwards ease-in-out;
	animation: rotateOutLeft 0.5s forwards ease-in-out;
}
.fxLetMeIn .navInPrev {
	z-index: 1001;
	opacity: 1;
	-webkit-animation: slideFromLeftFast 0.5s forwards ease;
	animation: slideFromLeftFast 0.5s forwards ease;
}
.fxLetMeIn li::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(0,0,0,0.6);
	-webkit-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.fxLetMeIn .navOutPrev::after, .fxLetMeIn .navOutNext::after {
	opacity: 1;
}
@-webkit-keyframes rotateOutRight { to { -webkit-transform: rotateY(10deg); } }
@keyframes rotateOutRight { to { transform: rotateY(10deg); } }
@-webkit-keyframes rotateOutLeft { to { -webkit-transform: rotateY(-10deg); } }
@keyframes rotateOutLeft { to { transform: rotateY(-10deg); } }
.fxStickIt .itemwrap {
	-webkit-perspective: 1600px;
	perspective: 1600px;
}
.fxStickIt .navOutNext {
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-animation: rotateBottomSideOut 0.8s forwards ease-in;
	animation: rotateBottomSideOut 0.8s forwards ease-in;
}
.fxStickIt .navInNext {
	z-index: 1001;
	opacity: 1;
	-webkit-animation: slideInFromBottomDelayed 0.8s forwards;
	animation: slideInFromBottomDelayed 0.8s forwards;
}
.fxStickIt .navOutPrev {
	opacity: 1;
	-webkit-animation: slideOutToBottom 0.8s forwards;
	animation: slideOutToBottom 0.8s forwards;
}
.fxStickIt .navInPrev {
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-animation: rotateBottomSideIn 0.8s 0.1s forwards ease-in;
	animation: rotateBottomSideIn 0.8s 0.1s forwards ease-in;
}
@-webkit-keyframes rotateBottomSideOut { 40% { -webkit-transform: rotateX(-15deg); -webkit-animation-timing-function: ease-out; } 100% { opacity: 0; -webkit-transform: scale(0.8) translateZ(-200px); } }
@keyframes rotateBottomSideOut { 40% { transform: rotateX(-15deg); animation-timing-function: ease-out; } 100% { opacity: 0; transform: scale(0.8) translateZ(-200px); } }
@-webkit-keyframes slideInFromBottomDelayed { 0%, 30% { -webkit-transform: translateY(100%); } 100% { -webkit-transform: translateY(0); } }
@keyframes slideInFromBottomDelayed { 0%, 30% { transform: translateY(100%); } 100% { transform: translateY(0); } }
@-webkit-keyframes rotateBottomSideIn { 0% { opacity: 0; -webkit-transform: scale(0.8) translateZ(-200px); } 60% { -webkit-transform: scale(1) translateZ(0) rotateX(-15deg); -webkit-animation-timing-function: ease-out; } 100% { opacity: 1; -webkit-transform: scale(1) translateZ(0) rotateX(0deg); } }
@keyframes rotateBottomSideIn { 0% { opacity: 0; transform: scale(0.8) translateZ(-200px); } 60% { transform: scale(1) translateZ(0) rotateX(-15deg); animation-timing-function: ease-out; } 100% { opacity: 1; transform: scale(1) translateZ(0) rotateX(0deg); } }
.fxArchiveMe .navOutNext {
	-webkit-animation: scaleHalfDown 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: scaleHalfDown 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxArchiveMe .navInNext {
	z-index: 1001;
	opacity: 1;
	-webkit-animation: slideInFromBottom 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideInFromBottom 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxArchiveMe .navOutPrev {
	-webkit-animation: slideOutToBottom 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: slideOutToBottom 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxArchiveMe .navInPrev {
	-webkit-animation: scaleHalfUp 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: scaleHalfUp 0.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxArchiveMe li::before, .fxArchiveMe li::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-color: rgba(0,0,0,0.7);
	-webkit-transition: opacity 0.7s cubic-bezier(0.7, 0, 0.3, 1);
	transition: opacity 0.7s cubic-bezier(0.7, 0, 0.3, 1);
}
.fxArchiveMe li::after, .fxArchiveMe .navOutNext::before {
	opacity: 1;
}
.fxArchiveMe li::before, .fxArchiveMe li.current::after, .fxArchiveMe .navInNext::after, .fxArchiveMe .navInPrev::after {
	opacity: 0;
}
.fxArchiveMe .navInNext::after {
	-webkit-transition: none;
	transition: none;
}
@-webkit-keyframes scaleHalfDown { to { -webkit-transform: scale(0.6); opacity: 0; } }
@keyframes scaleHalfDown { to { transform: scale(0.6); opacity: 0; } }
@-webkit-keyframes slideOutToBottom { to { -webkit-transform: translateY(100%); } }
@keyframes slideOutToBottom { to { transform: translateY(100%); } }
@-webkit-keyframes scaleHalfUp { from { opacity: 0; -webkit-transform: scale(0.6); } to { opacity: 1; -webkit-transform: scale(1); } }
@keyframes scaleHalfUp { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }
.fxVGrowth .navOutNext {
	-webkit-animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
	animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}
.fxVGrowth .navInNext {
	z-index: 1001;
	opacity: 1;
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
	animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}
.fxVGrowth .navOutPrev {
	-webkit-animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
	animation: scaleDown 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}
.fxVGrowth .navInPrev {
	z-index: 1001;
	opacity: 1;
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
	animation: maximize 0.6s forwards cubic-bezier(0.6, 0, 0.4, 1);
}
@-webkit-keyframes maximize { from { -webkit-transform: scale(0); } to { -webkit-transform: scale(1); } }
@keyframes maximize { from { transform: scale(0); } to { transform: scale(1); } }
.fxSlideBehind .itemwrap {
	-webkit-perspective: 1000px;
	perspective: 1000px;
}
.fxSlideBehind .navOutNext {
	-webkit-animation: hideLeft 0.8s forwards;
	animation: hideLeft 0.8s forwards;
}
.fxSlideBehind .navInNext {
	-webkit-animation: showRight 0.8s forwards;
	animation: showRight 0.8s forwards;
}
.fxSlideBehind .navOutPrev {
	-webkit-animation: hideRight 0.8s forwards;
	animation: hideRight 0.8s forwards;
}
.fxSlideBehind .navInPrev {
	-webkit-animation: showLeft 0.8s forwards;
	animation: showLeft 0.8s forwards;
}
@-webkit-keyframes hideLeft { 0% { -webkit-transform: translateZ( 0px ); } 40% { -webkit-transform: translate( 0, -40% ) scale( 0.8 ) rotateX( -20deg ); z-index: 9999; } 100% { opacity: 1; -webkit-transform: translateZ( -400px ); } }
@keyframes hideLeft { 0% { transform: translateZ( 0px ); } 40% { transform: translate( 0, -40% ) scale( 0.8 ) rotateX( -20deg ); z-index: 9999; } 100% { opacity: 1; transform: translateZ( -400px ); } }
@-webkit-keyframes showRight { 0% { -webkit-transform: translateZ( -400px ); opacity: 1; } 40% { -webkit-transform: translate( 0, 40% ) scale( 0.8 ) rotateX( 20deg ); opacity: 1; } 41% { -webkit-transform: translate( 0, 40% ) scale( 0.8 ) rotateX( 20deg ); opacity: 1; z-index: 9999; } 100% { -webkit-transform: translateZ( 0px ); opacity: 1; z-index: 9999; } }
@keyframes showRight { 0% { transform: translateZ( -400px ); opacity: 1; } 40% { transform: translate( 0, 40% ) scale( 0.8 ) rotateX( 20deg ); opacity: 1; } 41% { transform: translate( 0, 40% ) scale( 0.8 ) rotateX( 20deg ); opacity: 1; z-index: 9999; } 100% { transform: translateZ( 0px ); opacity: 1; z-index: 9999; } }
@-webkit-keyframes hideRight { 0% { -webkit-transform: translateZ( 0px ); } 40% { -webkit-transform: translate( 0, 40% ) scale( 0.8 ) rotateX( 20deg ); z-index: 9999; } 100% { opacity: 1; -webkit-transform: translateZ( -400px ); } }
@keyframes hideRight { 0% { transform: translateZ( 0px ); } 40% { transform: translate( 0, 40% ) scale( 0.8 ) rotateX( 20deg ); z-index: 9999; } 100% { opacity: 1; transform: translateZ( -400px ); } }
@-webkit-keyframes showLeft { 0% { -webkit-transform: translateZ( -400px ); opacity: 1; } 40% { -webkit-transform: translate( 0, -40% ) scale( 0.8 ) rotateX( -20deg ); opacity: 1; } 41% { -webkit-transform: translate( 0, -40% ) scale( 0.8 ) rotateX( -20deg ); opacity: 1; z-index: 9999; } 100% { -webkit-transform: translateZ( 0px ); opacity: 1; z-index: 9999; } }
@keyframes showLeft { 0% { transform: translateZ( -400px ); opacity: 1; } 40% { transform: translate( 0, -40% ) scale( 0.8 ) rotateX( -20deg ); opacity: 1; } 41% { transform: translate( 0, -40% ) scale( 0.8 ) rotateX( -20deg ); opacity: 1; z-index: 9999; } 100% { transform: translateZ( 0px ); opacity: 1; z-index: 9999; } }
.fxSoftPulse .navOutPrev, .fxSoftPulse .navOutNext {
	-webkit-animation: scaleUpFadeOut 0.8s forwards ease-in;
	animation: scaleUpFadeOut 0.8s forwards ease-in;
}
.fxSoftPulse .navInPrev, .fxSoftPulse .navInNext {
	-webkit-animation: scaleDownFadeIn 0.8s forwards ease-out;
	animation: scaleDownFadeIn 0.8s forwards ease-out;
}
@-webkit-keyframes scaleUpFadeOut { 50% { -webkit-transform: scale(1.2); opacity: 1; } 75% { -webkit-transform: scale(1.1); opacity: 0; } 100% { -webkit-transform: scale(1); opacity: 0; } }
@keyframes scaleUpFadeOut { 50% { transform: scale(1.2); opacity: 1; } 75% { transform: scale(1.1); opacity: 0; } 100% { transform: scale(1); opacity: 0; } }
@-webkit-keyframes scaleDownFadeIn { 50% { opacity: 1; -webkit-transform: scale(1.2); } 100% { opacity: 1; -webkit-transform: scale(1); } }
@keyframes scaleDownFadeIn { 50% { opacity: 1; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
.fxEarthquake .navOutNext {
	opacity: 1;
	-webkit-animation: shakeSlideBottom 1s 0.1s forwards;
	animation: shakeSlideBottom 1s 0.1s forwards;
}
.fxEarthquake .navInNext {
	-webkit-animation: pushFromTop 1s 0.1s forwards;
	animation: pushFromTop 1s 0.1s forwards;
}
.fxEarthquake .navOutPrev {
	opacity: 1;
	-webkit-animation: shakeSlideTop 1s 0.1s forwards;
	animation: shakeSlideTop 1s 0.1s forwards;
}
.fxEarthquake .navInPrev {
	opacity: 1;
	-webkit-animation: pushFromBottom 1s 0.1s forwards;
	animation: pushFromBottom 1s 0.1s forwards;
}
.fxEarthquake li::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.fxEarthquake .navOutPrev::after, .fxEarthquake .navOutNext::after {
	opacity: 1;
}
@-webkit-keyframes shakeSlideBottom { 0% { -webkit-transform: translate(0px, 0px) rotate(0deg); } 2% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 4% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 6% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 8% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 10% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 12% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 14% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 16% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 18% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 20% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 22% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 24% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 26% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 28% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 30% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 32% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 34% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 36% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 38% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 40% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 42% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 44% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 46% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 48% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 50% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 52% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 54% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 56% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 58% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 60% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 62% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 64% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 66% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 68% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 70% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 100% { -webkit-transform: translateY(100%); } }
@keyframes shakeSlideBottom { 0% { transform: translate(0px, 0px) rotate(0deg); } 2% { transform: translate(-1px, -1px) rotate(-0.5deg); } 4% { transform: translate(-1px, -1px) rotate(-0.5deg); } 6% { transform: translate(0px, 0px) rotate(-0.5deg); } 8% { transform: translate(-1px, -1px) rotate(-0.5deg); } 10% { transform: translate(-1px, -1px) rotate(-0.5deg); } 12% { transform: translate(0px, 0px) rotate(-0.5deg); } 14% { transform: translate(-1px, -1px) rotate(-0.5deg); } 16% { transform: translate(0px, 0px) rotate(-0.5deg); } 18% { transform: translate(0px, -1px) rotate(-0.5deg); } 20% { transform: translate(0px, -1px) rotate(-0.5deg); } 22% { transform: translate(0px, -1px) rotate(-0.5deg); } 24% { transform: translate(-1px, 0px) rotate(-0.5deg); } 26% { transform: translate(0px, 0px) rotate(-0.5deg); } 28% { transform: translate(-1px, 0px) rotate(-0.5deg); } 30% { transform: translate(0px, -1px) rotate(-0.5deg); } 32% { transform: translate(-1px, 0px) rotate(-0.5deg); } 34% { transform: translate(0px, -1px) rotate(-0.5deg); } 36% { transform: translate(0px, 0px) rotate(-0.5deg); } 38% { transform: translate(-1px, -1px) rotate(-0.5deg); } 40% { transform: translate(0px, 0px) rotate(-0.5deg); } 42% { transform: translate(-1px, 0px) rotate(-0.5deg); } 44% { transform: translate(0px, -1px) rotate(-0.5deg); } 46% { transform: translate(-1px, -1px) rotate(-0.5deg); } 48% { transform: translate(-1px, -1px) rotate(-0.5deg); } 50% { transform: translate(0px, -1px) rotate(-0.5deg); } 52% { transform: translate(-1px, 0px) rotate(-0.5deg); } 54% { transform: translate(0px, -1px) rotate(-0.5deg); } 56% { transform: translate(-1px, -1px) rotate(-0.5deg); } 58% { transform: translate(0px, 0px) rotate(-0.5deg); } 60% { transform: translate(-1px, 0px) rotate(-0.5deg); } 62% { transform: translate(-1px, -1px) rotate(-0.5deg); } 64% { transform: translate(0px, -1px) rotate(-0.5deg); } 66% { transform: translate(-1px, -1px) rotate(-0.5deg); } 68% { transform: translate(-1px, 0px) rotate(-0.5deg); } 70% { transform: translate(0px, 0px) rotate(-0.5deg); } 100% { transform: translateY(100%); } }
@-webkit-keyframes pushFromTop { 0%, 70% { opacity: 0; -webkit-transform: translateY(-100%); } 100% { opacity: 1; -webkit-transform: translateY(0); } }
@keyframes pushFromTop { 0%, 70% { opacity: 0; transform: translateY(-100%); } 100% { opacity: 1; transform: translateY(0); } }
@-webkit-keyframes shakeSlideTop { 0% { -webkit-transform: translate(0px, 0px) rotate(0deg); } 2% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 4% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 6% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 8% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 10% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 12% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 14% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 16% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 18% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 20% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 22% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 24% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 26% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 28% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 30% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 32% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 34% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 36% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 38% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 40% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 42% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 44% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 46% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 48% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 50% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 52% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 54% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 56% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 58% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 60% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 62% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 64% { -webkit-transform: translate(0px, -1px) rotate(-0.5deg); } 66% { -webkit-transform: translate(-1px, -1px) rotate(-0.5deg); } 68% { -webkit-transform: translate(-1px, 0px) rotate(-0.5deg); } 70% { -webkit-transform: translate(0px, 0px) rotate(-0.5deg); } 100% { -webkit-transform: translateY(-100%); } }
@keyframes shakeSlideTop { 0% { transform: translate(0px, 0px) rotate(0deg); } 2% { transform: translate(-1px, -1px) rotate(-0.5deg); } 4% { transform: translate(-1px, -1px) rotate(-0.5deg); } 6% { transform: translate(0px, 0px) rotate(-0.5deg); } 8% { transform: translate(-1px, -1px) rotate(-0.5deg); } 10% { transform: translate(-1px, -1px) rotate(-0.5deg); } 12% { transform: translate(0px, 0px) rotate(-0.5deg); } 14% { transform: translate(-1px, -1px) rotate(-0.5deg); } 16% { transform: translate(0px, 0px) rotate(-0.5deg); } 18% { transform: translate(0px, -1px) rotate(-0.5deg); } 20% { transform: translate(0px, -1px) rotate(-0.5deg); } 22% { transform: translate(0px, -1px) rotate(-0.5deg); } 24% { transform: translate(-1px, 0px) rotate(-0.5deg); } 26% { transform: translate(0px, 0px) rotate(-0.5deg); } 28% { transform: translate(-1px, 0px) rotate(-0.5deg); } 30% { transform: translate(0px, -1px) rotate(-0.5deg); } 32% { transform: translate(-1px, 0px) rotate(-0.5deg); } 34% { transform: translate(0px, -1px) rotate(-0.5deg); } 36% { transform: translate(0px, 0px) rotate(-0.5deg); } 38% { transform: translate(-1px, -1px) rotate(-0.5deg); } 40% { transform: translate(0px, 0px) rotate(-0.5deg); } 42% { transform: translate(-1px, 0px) rotate(-0.5deg); } 44% { transform: translate(0px, -1px) rotate(-0.5deg); } 46% { transform: translate(-1px, -1px) rotate(-0.5deg); } 48% { transform: translate(-1px, -1px) rotate(-0.5deg); } 50% { transform: translate(0px, -1px) rotate(-0.5deg); } 52% { transform: translate(-1px, 0px) rotate(-0.5deg); } 54% { transform: translate(0px, -1px) rotate(-0.5deg); } 56% { transform: translate(-1px, -1px) rotate(-0.5deg); } 58% { transform: translate(0px, 0px) rotate(-0.5deg); } 60% { transform: translate(-1px, 0px) rotate(-0.5deg); } 62% { transform: translate(-1px, -1px) rotate(-0.5deg); } 64% { transform: translate(0px, -1px) rotate(-0.5deg); } 66% { transform: translate(-1px, -1px) rotate(-0.5deg); } 68% { transform: translate(-1px, 0px) rotate(-0.5deg); } 70% { transform: translate(0px, 0px) rotate(-0.5deg); } 100% { transform: translateY(-100%); } }
@-webkit-keyframes pushFromBottom { 0%, 70% { opacity: 0; -webkit-transform: translateY(100%); } 100% { opacity: 1; -webkit-transform: translateY(0); } }
@keyframes pushFromBottom { 0%, 70% { opacity: 0; transform: translateY(100%); } 100% { opacity: 1; transform: translateY(0); } }
.fxCliffDiving li {
	-webkit-transform-origin: 50% 400%;
	transform-origin: 50% 400%;
}
.fxCliffDiving .navOutNext {
	opacity: 1;
	-webkit-animation: rotateOutCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: rotateOutCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxCliffDiving .navInNext {
	opacity: 1;
	-webkit-animation: rotateInCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: rotateInCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxCliffDiving .navOutPrev {
	opacity: 1;
	-webkit-animation: rotateOutCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: rotateOutCircRight 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxCliffDiving .navInPrev {
	opacity: 1;
	-webkit-animation: rotateInCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
	animation: rotateInCircLeft 0.9s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.fxCliffDiving li::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(0,0,0,1);
	-webkit-transition: opacity 0.9s cubic-bezier(0.7, 0, 0.3, 1);
	transition: opacity 0.9s cubic-bezier(0.7, 0, 0.3, 1);
}
.fxCliffDiving .navOutPrev::after, .fxCliffDiving .navOutNext::after {
	opacity: 1;
}
@-webkit-keyframes rotateOutCircLeft { to { -webkit-transform: rotate(-20deg) translateX(-100%); } }
@keyframes rotateOutCircLeft { to { transform: rotate(-20deg) translateX(-100%); } }
@-webkit-keyframes rotateInCircRight { from { -webkit-transform: rotate(20deg) translateX(100%); } to { -webkit-transform: rotate(0deg) translateX(0); } }
@keyframes rotateInCircRight { from { transform: rotate(20deg) translateX(100%); } to { transform: rotate(0deg) translateX(0); } }
@-webkit-keyframes rotateOutCircRight { to { -webkit-transform: rotate(20deg) translateX(100%); } }
@keyframes rotateOutCircRight { to { transform: rotate(20deg) translateX(100%); } }
@-webkit-keyframes rotateInCircLeft { from { -webkit-transform: rotate(-20deg) translateX(-100%); } to { -webkit-transform: rotate(0deg) translateX(0); } }
@keyframes rotateInCircLeft { from { transform: rotate(-20deg) translateX(-100%); } to { transform: rotate(0deg) translateX(0); } }
.c_ebizads_banner-29002 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
.e_AllWBox-001 {
	width: 490px;
	height: 39px;
	background-color: rgba(77,144,203,1);
}
.w_wbox-001 .p_wbox {
	background-color: rgba(255,255,255,1);
}
.w_bbox-001 .w_wbox-001 .p_wbox {
	margin-top: 20px;
}
.w_wbox-001 {
	position: absolute;
	width: 100%;
	height: 120px;
}
.w_video-000 {
	position: absolute;
	width: 480px;
	height: 270px;
}
.w_video-000 .w_video {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.w_video-000 .w_video .p_video {
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.w_video-000 .w_video .p_video + div {
	display: none;
}
.e_SideMajorStyleBox-001 {
	width: 100%;
	height: auto;
	width-uint: %;
}
.e_SideMajorStyleBox-001 .stylebox_link {
	color: #666666;
	font-size: 14px;
	display: table;
	height: inherit;
	border-width: 0;
	float: right;
	vertical-align: middle;
	margin-right: 15px;
}
.e_SideMajorStyleBox-001 .stylebox_top {
	width: auto;
	height: 40px;
	background-color: rgba(101, 190, 186, 1);
}
.e_SideMajorStyleBox-001 .title_icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	margin-right: 10px;
	font-size: medium;
}
.e_SideMajorStyleBox-001 .title_icon::before {
	content: "";
}
.e_SideMajorStyleBox-001 .title_main {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	font-weight: normal;
	font-size: 16px;
	max-width: 600px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.e_SideMajorStyleBox-001 .title_sub {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	font-size: 14px;
	font-weight: normal;
	margin-left: 10px;
}
.e_SideMajorStyleBox-001 .stylebox_title {
	display: inline-block;
	width: auto;
	height: inherit;
	background-color: rgba(101, 190, 186, 1);
	padding-left: 15px;
	padding-right: 15px;
	font-size: 0;
	vertical-align: bottom;
	white-space: nowrap;
}
.e_SideMajorStyleBox-001 .stylebox_link a {
	color: inherit;
	display: table-cell;
	vertical-align: middle;
}
.e_SideMajorStyleBox-001 .link_icon {
	display: inline-block;
	margin-left: 5px;
}
.e_SideMajorStyleBox-001 .link_icon::before {
	content: '\e6af';
}
.e_SideMajorStyleBox-001 .stylebox_top_line {
	height: 1px;
	background-color: rgba(240,240,240,1);
}
.e_SideMajorStyleBox-001 .stylebox_content {
	border-style: solid;
	border-width: 1px;
	border-color: #f0f0f0;
	width: 100%;
	width-uint: %;
}
.e_SideMajorStyleBox-001 .stylebox_bottom_line {
	height: 1px;
	background-color: rgba(240,240,240,1);
}
.e_ContentOrdinaryStyleBox-001 {
	width: 100%;
	height: auto;
	width-uint: %;
}
.e_ContentOrdinaryStyleBox-001 .stylebox_link {
	color: #666666;
	font-size: 14px;
	display: table;
	height: inherit;
	border-width: 0;
	float: right;
	vertical-align: middle;
	margin-right: 15px;
}
.e_ContentOrdinaryStyleBox-001 .stylebox_link:hover {
	color: rgba(101,190,186,1);
}
.e_ContentOrdinaryStyleBox-001 .stylebox_link:active {
	color: rgba(101,190,186,1);
}
.e_ContentOrdinaryStyleBox-001 .stylebox_top {
	width: auto;
	height: 40px;
	background-color: transparent;
}
.e_ContentOrdinaryStyleBox-001 .title_icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	margin-right: 10px;
	font-size: medium;
}
.e_ContentOrdinaryStyleBox-001 .title_icon::before {
	content: "";
}
.e_ContentOrdinaryStyleBox-001 .title_main {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	font-weight: normal;
	font-size: 16px;
	max-width: 600px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.e_ContentOrdinaryStyleBox-001 .title_sub {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	font-size: 14px;
	font-weight: normal;
	margin-left: 10px;
}
.e_ContentOrdinaryStyleBox-001 .stylebox_title {
	display: inline-block;
	width: auto;
	height: inherit;
	background-color: rgba(101, 190, 186, 1);
	padding-left: 15px;
	padding-right: 15px;
	font-size: 0;
	vertical-align: bottom;
	white-space: nowrap;
}
.e_ContentOrdinaryStyleBox-001 .stylebox_link a {
	color: inherit;
	display: table-cell;
	vertical-align: middle;
}
.e_ContentOrdinaryStyleBox-001 .link_icon {
	display: inline-block;
	margin-left: 5px;
}
.e_ContentOrdinaryStyleBox-001 .link_icon::before {
	content: '\e6af';
}
.e_ContentOrdinaryStyleBox-001 .stylebox_top_line {
	height: 1px;
	background-color: rgba(240,240,240,1);
}
.e_ContentOrdinaryStyleBox-001 .stylebox_content {
	border-style: solid;
	border-width: 1px;
	border-color: #f0f0f0;
	width: 100%;
	width-uint: %;
}
.e_ContentOrdinaryStyleBox-001 .stylebox_bottom_line {
	height: 1px;
	background-color: rgba(240,240,240,1);
}
.e_AllWBox-001 {
	width: 490px;
	height: 39px;
	background-color: rgba(77,144,203,1);
}
.w_bbox-001 .p_wbox {
	background-color: rgba(255,255,255,1);
}
.w_bbox-001 .w_bbox-001 .p_wbox {
	margin-top: 20px;
}
.w_bbox-001 {
	position: absolute;
	width: 100%;
	height: 120px;
}
.w_img-001 .p_title {
	display: inline-table;
	margin: 0;
	min-width: 37px;
	padding: 0;
	color: rgba(51,51,51,1);
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
}
.w_img-001 .p_title .font {
	vertical-align: middle;
	line-height: 21px;
}
.w_img-001 .p_title:hover {
	color: rgba(87,177,173,1);
}
.w_img-001 .p_title:active {
	color: rgba(69,165,161,1);
}
.w_img-001 .p_title .iconfont:before {
	display: inline-block;
	content: "";
}
.w_img-001 .p_dimage {
	padding: 0;
	border-width: 0px;
	border-style: solid;
	border-color: rgba(228,228,228,1);
	background-color: transparent;
	overflow: hidden;
}
.w_img-001 .p_dimage:hover {
	border-width: 0px;
	border-style: solid;
	border-color: rgba(228,228,228,1);
	background-color: transparent;
}
.w_img-001 .p_dimage:active {
	border-width: 0px;
	border-style: solid;
	border-color: rgba(228,228,228,1);
	background-color: transparent;
}
.e_title.w_img-001 .p_link002 {
	display: inline-block;
	padding: 0;
	color: #707070;
	font-size: 14px;
	text-align: left;
}
.e_title.w_img-001 .p_link002 {
	white-space: nowrap;
	vertical-align: middle;
	line-height: 19px;
}
a > .e_title.w_img-001 .p_link002:hover {
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
	color: #60a9d7;
}
a > .e_title.w_img-001 .p_link002:active {
	color: #60a9d7;
	font-weight: 400;
}
a > .e_title.w_img-001 .p_link002:active {
	text-decoration: none;
	margin-top: 0;
}
.e_title.w_img-001 .p_link002 .iconfont:before {
	display: inline-block;
	content: "";
}
.e_title.w_img-001 .p_link001 {
	display: inline-block;
	padding: 0;
	color: #707070;
	font-size: 14px;
	text-align: left;
}
.e_title.w_img-001 .p_link001 {
	white-space: nowrap;
	vertical-align: middle;
	line-height: 19px;
}
a > .e_title.w_img-001 .p_link001:hover {
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
	color: #60a9d7;
}
a > .e_title.w_img-001 .p_link001:active {
	color: #60a9d7;
	font-weight: 400;
}
a > .e_title.w_img-001 .p_link001:active {
	text-decoration: none;
	margin-top: 0;
}
.e_title.w_img-001 .p_link001 .iconfont:before {
	display: inline-block;
	content: "";
}
.w_img-001 .p_box {
	margin: 0;
	width: 236px;
	height: 317px;
	padding: 0;
	border-width: 1px;
	border-style: none;
	border-color: rgba(228,228,228,0);
	background-color: transparent;
	overflow: hidden;
}
.w_img-001 {
	position: absolute;
	width: 280px;
	height: 250px;
}
.w_img-001 .animated {
	width: 100%;
	height: 100%;
}
.w_img-001 .font {
	white-space: nowrap;
}
.w_img-001 .p_link001 {
	width: 100%;
	height: calc(100% - 30px);
}
.w_img-001 .p_link002 {
	width: 100%;
	height: 30px;
}
.w_img-001 .p_box {
	width: 100%;
	height: 100%;
	text-align: center;
}
.w_img-001 .p_dimage {
	height: inherit;
	overflow: hidden;
	font-size: 0;
}
.w_img-001 .e_image:hover:after {
	background: transparent;
}
.w_rbox-001 {
	position: absolute;
	width: 300px;
	height: 300px;
}
.w_rbox-001 .p_stylebox {
	width: 100%;
}
.w_rbox-001 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
.w_rbox-001 > div {
	animation-fill-mode: both;
}
.e_IndexOrdinaryStyleBox-001 {
	width: 100%;
	height: auto;
	width-uint: %;
}
.e_IndexOrdinaryStyleBox-001 .stylebox_top {
	background-color: transparent;
}
.e_IndexOrdinaryStyleBox-001 .stylebox_link {
	color: #666666;
	font-size: 14px;
	display: table;
	height: inherit;
	border-width: 0;
}
.e_IndexOrdinaryStyleBox-001 .stylebox_link:hover {
	color: rgba(101,190,186,1);
}
.e_IndexOrdinaryStyleBox-001 .stylebox_link:active {
	color: rgba(101,190,186,1);
}
.e_IndexOrdinaryStyleBox-001 .stylebox_top {
	width: auto;
	height: 40px;
}
.e_IndexOrdinaryStyleBox-001 .title_icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	margin-right: 10px;
	font-size: medium;
}
.e_IndexOrdinaryStyleBox-001 .title_icon::before {
	content: "";
}
.e_IndexOrdinaryStyleBox-001 .title_main {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	font-weight: normal;
	font-size: 16px;
	max-width: 600px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.e_IndexOrdinaryStyleBox-001 .title_sub {
	display: inline-block;
	vertical-align: middle;
	line-height: 40px;
	color: rgba(255,255,255,1);
	font-size: 14px;
	font-weight: normal;
	margin-left: 10px;
}
.e_IndexOrdinaryStyleBox-001 .stylebox_title {
	display: inline-block;
	width: auto;
	height: inherit;
	background-color: rgba(101, 190, 186, 1);
	padding-left: 15px;
	padding-right: 15px;
	font-size: 0;
	vertical-align: bottom;
	white-space: nowrap;
}
.e_IndexOrdinaryStyleBox-001 .stylebox_link {
	float: right;
	vertical-align: middle;
	margin-right: 15px;
}
.e_IndexOrdinaryStyleBox-001 .stylebox_link a {
	color: inherit;
	display: table-cell;
	vertical-align: middle;
}
.e_IndexOrdinaryStyleBox-001 .link_icon {
	display: inline-block;
	margin-left: 5px;
}
.e_IndexOrdinaryStyleBox-001 .link_icon::before {
	content: '\e6af';
}
.e_IndexOrdinaryStyleBox-001 .stylebox_top_line {
	height: 1px;
	background-color: rgba(240,240,240,1);
}
.e_IndexOrdinaryStyleBox-001 .stylebox_content {
	border-style: solid;
	border-width: 1px;
	border-color: #f0f0f0;
	width: 100%;
	height: calc(100% - 48px);
	width-uint: %;
}
.e_IndexOrdinaryStyleBox-001 .stylebox_bottom_line {
	height: 1px;
	background-color: rgba(240,240,240,1);
}
@CHARSET "UTF-8";
#c_ebizads_banner-15295520573081308 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#c_ebizads_banner-15295520573081308 {
	z-index: -1;
	width: 642px;
	height: 435px;
	overflow: hidden;
	position:absolute;
	right:0px;
}
#w_img-1529549643048 .p_link001 {
	height: calc(100%);
}
#w_img-1529549643048 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_img-1529549643048 > div {
	animation-fill-mode: both;
}
#w_rbox-1529550270980 div.w_rbox > .p_rbox {
	background-color: rgba(0, 0, 0, 0.05);
}
#w_rbox-1529550270980 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_rbox-1529550270980 > div {
	animation-fill-mode: both;
}
#w_wbox-1529550373946 .p_wbox {
	background-color: rgba(247, 246, 246, 1);
}
#w_wbox-1529550373946 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_wbox-1529550373946 > div {
	animation-fill-mode: both;
}
#w_rbox-1529551686887 div.w_rbox > .p_rbox {
	background-color: rgba(1, 132, 84, 1);
}
#w_rbox-1529551686887 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_rbox-1529551686887 > div {
	animation-fill-mode: both;
}
#w_rbox-1529558057800 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_rbox-1529558057800 > div {
	animation-fill-mode: both;
}
#w_rbox-1529558057800 > div > .p_rbox {
	background-image: url(/img/dt.jpg?tenantId=55664&viewType=1&v=1606877458000);
	background-image-part-image: url(/img/dt.jpg?tenantId=55664&viewType=1&v=1606877458000);
	background-repeat: no-repeat;
	background-position: top center;
}
#w_img-1529558107793 .p_link001 {
	height: calc(100%);
}
#w_img-1529558107793 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_img-1529558107793 > div {
	animation-fill-mode: both;
}
#w_wbox-1529559186333 .p_wbox {
	background-image: url(/img/de.jpg?tenantId=55664&viewType=1&v=1606877458000);
	background-image-part-image: url(/img/de.jpg?tenantId=55664&viewType=1&v=1606877458000);
	background-repeat: no-repeat;
	background-position: top center;
}
#w_wbox-1529559186333 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_wbox-1529559186333 > div {
	animation-fill-mode: both;
}
#w_rbox-1529551558994 div.w_rbox > .p_rbox {
	background-color: rgba(0, 0, 0, 0.05);
}
#w_rbox-1529551558994 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_rbox-1529551558994 > div {
	animation-fill-mode: both;
}
#w_img-1529551211870 .p_link001 {
	height: calc(100%);
}
#w_img-1529551211870 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_img-1529551211870 > div {
	animation-fill-mode: both;
}
#w_img-1529551291711 .p_link001 {
	height: calc(100%);
}
#w_img-1529551291711 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_img-1529551291711 > div {
	animation-fill-mode: both;
}
#w_img-1529551272517 .p_link001 {
	height: calc(100%);
}
#w_img-1529551272517 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_img-1529551272517 > div {
	animation-fill-mode: both;
}
#w_img-1529550396492 .p_link001 {
	height: calc(100%);
}
#w_img-1529550396492 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_img-1529550396492 > div {
	animation-fill-mode: both;
}
#w_img-1529551281894 .p_link001 {
	height: calc(100%);
}
#w_img-1529551281894 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_img-1529551281894 > div {
	animation-fill-mode: both;
}
#w_img-1529559570248 .p_link001 {
	height: calc(100%);
}
#w_img-1529559570248 .p_MatteIcon .iconfont:before {
	content: '\e602';
}
#w_img-1529559570248 > div {
	animation-fill-mode: both;
}
#w_img-1529549643048 {
	position: absolute;
	top: 694px;
	left: 0px;
	z-index: 102;
	width: 1201px;
	height: 59px;
}
#w_video-1529557916162 {
	position: absolute;
	top: 756px;
	left: 803px;
	z-index: 108;
	width: 397px;
	height: 300px;
}
#w_common_text-1529550153639 {
	position: absolute;
	top: 784px;
	left: 2px;
	z-index: 103;
	width: 709px;
	height: 160px;
}
#w_rbox-1529550270980 {
	position: absolute;
	top: 991px;
	left: 2px;
	z-index: 104;
	width: 122px;
	height: 41px;
}
#w_wbox-1529550373946 {
	position: absolute;
	top: 1116px;
	left: -356px;
	z-index: 105;
	width: 1912px;
	height: 728px;
}
#w_rbox-1529551686887 {
	position: absolute;
	top: 2044.5px;
	left: 124px;
	z-index: 106;
	width: 66px;
	height: 6px;
}
#w_rbox-1529558057800 {
	position: absolute;
	top: 2268px;
	left: 33.3125px;
	z-index: 109;
	width: 591px;
	height: 332px;
}
#w_img-1529558107793 {
	position: absolute;
	top: 2268px;
	left: 0.328125px;
	z-index: 110;
	width: 34px;
	height: 175px;
}
#w_wbox-1529559186333 {
	position: absolute;
	top: 2681px;
	left: -356px;
	z-index: 111;
	width: 1912px;
	height: 288px;
}
#w_bbox-1529559244150 {
	position: absolute;
	top: 3025px;
	left: -356px;
	z-index: auto;
	width: 1912px;
	height: 56px;
}
#w_rbox-1529551558994 {
	position: absolute;
	top: 637px;
	left: 895px;
	z-index: 7;
	width: 122px;
	height: 41px;
}
#w_common_text-1529550294678 {
	position: absolute;
	top: 8px;
	left: 15px;
	z-index: 1;
	width: 91px;
	height: 26px;
}
#w_common_text-1529551559008 {
	position: absolute;
	top: 8px;
	left: 18px;
	z-index: 1;
	width: 91px;
	height: 26px;
}
#w_common_text-1529551657677 {
	position: absolute;
	top: 967.5px;
	left: 420px;
	z-index: 9;
	width: 397px;
	height: 160px;
}
#w_img-1529551211870 {
	position: absolute;
	top: 178.5px;
	left: 356px;
	z-index: 3;
	width: 260px;
	height: 452px;
}
#w_img-1529551291711 {
	position: absolute;
	top: 178.5px;
	left: 1298px;
	z-index: 6;
	width: 259px;
	height: 452px;
}
#w_common_text-1529551597791 {
	position: absolute;
	top: 834px;
	left: 356px;
	z-index: 8;
	width: 456px;
	height: 113px;
}
#w_img-1529551272517 {
	position: absolute;
	top: 179px;
	left: 670.667px;
	z-index: 4;
	width: 259px;
	height: 452px;
}
#w_img-1529550396492 {
	position: absolute;
	top: 58px;
	left: 771.5px;
	z-index: 1;
	width: 369px;
	height: 81px;
}
#w_img-1529551281894 {
	position: absolute;
	top: 178.5px;
	left: 984.333px;
	z-index: 5;
	width: 259px;
	height: 452px;
}
#w_common_text-1529558144505 {
	position: absolute;
	top: 45px;
	left: 31.1719px;
	z-index: 1;
	width: 529px;
	height: 43px;
}
#w_common_text-1529558172291 {
	position: absolute;
	top: 103px;
	left: 31.1719px;
	z-index: 2;
	width: 529px;
	height: 192px;
}
#w_common_text-1529559278625 {
	position: absolute;
	top: 21.5px;
	left: 897px;
	z-index: 1;
	width: 658px;
	height: 29px;
}
#w_common_text-1529559306139 {
	position: absolute;
	top: 118px;
	left: 934px;
	z-index: 2;
	width: 180px;
	height: 51px;
}
#w_common_text-1529559333585 {
	position: absolute;
	top: 118px;
	left: 1214px;
	z-index: 3;
	width: 304px;
	height: 51px;
}
#w_common_text-1529559356896 {
	position: absolute;
	top: 194px;
	left: 934px;
	z-index: 4;
	width: 180px;
	height: 32px;
}
#w_common_text-1529559378136 {
	position: absolute;
	top: 193.5px;
	left: 1214px;
	z-index: 5;
	width: 273px;
	height: 50px;
}
#w_img-1529559570248 {
	position: absolute;
	top: 151px;
	left: 440px;
	z-index: 6;
	width: 112px;
	height: 111px;
}
#w_common_text-1529559610452 {
	position: absolute;
	top: 175px;
	left: 571px;
	z-index: 7;
	width: 96px;
	height: 64px;
}
#w_common_text-1529559430608 {
	position: absolute;
	top: 11.5px;
	left: 728px;
	z-index: 1;
	width: 544px;
	height: 32px;
}
@media screen and (max-width: 800px) {
#c_ebizads_banner-15295520573081308{
	position:relative;
	float: left;
	width: 100%;
	height:222px;
	margin-top:20px;
}
}

