
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

@-webkit-keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	to {
		transform: translateY(0)
	}

	40% {
		transform: translateY(-30px)
	}

	60% {
		transform: translateY(-15px)
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	to {
		transform: translateY(0)
	}

	40% {
		transform: translateY(-30px)
	}

	60% {
		transform: translateY(-15px)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce
}

@-webkit-keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

@keyframes pulse {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		transform: scale(1)
	}

	30% {
		transform: scaleX(1.25) scaleY(.75)
	}

	40% {
		transform: scaleX(.75) scaleY(1.25)
	}

	60% {
		transform: scaleX(1.15) scaleY(.85)
	}

	to {
		transform: scale(1)
	}
}

@keyframes rubberBand {
	0% {
		transform: scale(1)
	}

	30% {
		transform: scaleX(1.25) scaleY(.75)
	}

	40% {
		transform: scaleX(.75) scaleY(1.25)
	}

	60% {
		transform: scaleX(1.15) scaleY(.85)
	}

	to {
		transform: scale(1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {

	0%,
	to {
		transform: translateX(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-10px)
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(10px)
	}
}

@keyframes shake {

	0%,
	to {
		transform: translateX(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-10px)
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(10px)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@-webkit-keyframes swing {
	20% {
		transform: rotate(15deg)
	}

	40% {
		transform: rotate(-10deg)
	}

	60% {
		transform: rotate(5deg)
	}

	80% {
		transform: rotate(-5deg)
	}

	to {
		transform: rotate(0deg)
	}
}

@keyframes swing {
	20% {
		transform: rotate(15deg)
	}

	40% {
		transform: rotate(-10deg)
	}

	60% {
		transform: rotate(5deg)
	}

	80% {
		transform: rotate(-5deg)
	}

	to {
		transform: rotate(0deg)
	}
}

.swing {
	-webkit-animation-name: swing;
	animation-name: swing;
	transform-origin: top center
}

@-webkit-keyframes tada {
	0% {
		transform: scale(1)
	}

	10%,
	20% {
		transform: scale(.9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale(1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		transform: scale(1.1) rotate(-3deg)
	}

	to {
		transform: scale(1) rotate(0)
	}
}

@keyframes tada {
	0% {
		transform: scale(1)
	}

	10%,
	20% {
		transform: scale(.9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale(1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		transform: scale(1.1) rotate(-3deg)
	}

	to {
		transform: scale(1) rotate(0)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		transform: translateX(0)
	}

	15% {
		transform: translateX(-25%) rotate(-5deg)
	}

	30% {
		transform: translateX(20%) rotate(3deg)
	}

	45% {
		transform: translateX(-15%) rotate(-3deg)
	}

	60% {
		transform: translateX(10%) rotate(2deg)
	}

	75% {
		transform: translateX(-5%) rotate(-1deg)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes wobble {
	0% {
		transform: translateX(0)
	}

	15% {
		transform: translateX(-25%) rotate(-5deg)
	}

	30% {
		transform: translateX(20%) rotate(3deg)
	}

	45% {
		transform: translateX(-15%) rotate(-3deg)
	}

	60% {
		transform: translateX(10%) rotate(2deg)
	}

	75% {
		transform: translateX(-5%) rotate(-1deg)
	}

	to {
		transform: translateX(0)
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3)
	}

	50% {
		opacity: 1;
		transform: scale(1.05)
	}

	70% {
		transform: scale(.9)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3)
	}

	50% {
		opacity: 1;
		transform: scale(1.05)
	}

	70% {
		transform: scale(.9)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	60% {
		opacity: 1;
		transform: translateY(30px)
	}

	80% {
		transform: translateY(-10px)
	}

	to {
		transform: translateY(0)
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	60% {
		opacity: 1;
		transform: translateY(30px)
	}

	80% {
		transform: translateY(-10px)
	}

	to {
		transform: translateY(0)
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	60% {
		opacity: 1;
		transform: translateX(30px)
	}

	80% {
		transform: translateX(-10px)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	60% {
		opacity: 1;
		transform: translateX(30px)
	}

	80% {
		transform: translateX(-10px)
	}

	to {
		transform: translateX(0)
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	60% {
		opacity: 1;
		transform: translateX(-30px)
	}

	80% {
		transform: translateX(10px)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	60% {
		opacity: 1;
		transform: translateX(-30px)
	}

	80% {
		transform: translateX(10px)
	}

	to {
		transform: translateX(0)
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	60% {
		opacity: 1;
		transform: translateY(-30px)
	}

	80% {
		transform: translateY(10px)
	}

	to {
		transform: translateY(0)
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	60% {
		opacity: 1;
		transform: translateY(-30px)
	}

	80% {
		transform: translateY(10px)
	}

	to {
		transform: translateY(0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	0% {
		transform: scale(1)
	}

	25% {
		transform: scale(.95)
	}

	50% {
		opacity: 1;
		transform: scale(1.1)
	}

	to {
		opacity: 0;
		transform: scale(.3)
	}
}

@keyframes bounceOut {
	0% {
		transform: scale(1)
	}

	25% {
		transform: scale(.95)
	}

	50% {
		opacity: 1;
		transform: scale(1.1)
	}

	to {
		opacity: 0;
		transform: scale(.3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	0% {
		transform: translateY(0)
	}

	20% {
		opacity: 1;
		transform: translateY(-20px)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

@keyframes bounceOutDown {
	0% {
		transform: translateY(0)
	}

	20% {
		opacity: 1;
		transform: translateY(-20px)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	0% {
		transform: translateX(0)
	}

	20% {
		opacity: 1;
		transform: translateX(20px)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

@keyframes bounceOutLeft {
	0% {
		transform: translateX(0)
	}

	20% {
		opacity: 1;
		transform: translateX(20px)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	0% {
		transform: translateX(0)
	}

	20% {
		opacity: 1;
		transform: translateX(-20px)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

@keyframes bounceOutRight {
	0% {
		transform: translateX(0)
	}

	20% {
		opacity: 1;
		transform: translateX(-20px)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	0% {
		transform: translateY(0)
	}

	20% {
		opacity: 1;
		transform: translateY(20px)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

@keyframes bounceOutUp {
	0% {
		transform: translateY(0)
	}

	20% {
		opacity: 1;
		transform: translateY(20px)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(20px)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(20px)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-20px)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-20px)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(20px)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(20px)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-20px)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-20px)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1)
	}

	40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1)
	}

	50% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1)
	}

	80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(0) rotateY(1turn) scale(.95)
	}

	to {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(0) rotateY(1turn) scale(1)
	}
}

@keyframes flip {
	0% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1)
	}

	40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1)
	}

	50% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1)
	}

	80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(0) rotateY(1turn) scale(.95)
	}

	to {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(0) rotateY(1turn) scale(1)
	}
}

.animated.flip {
	-webkit-animation-name: flip;
	animation-name: flip;
	-webkit-backface-visibility: visible;
	backface-visibility: visible
}

@-webkit-keyframes flipInX {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}

	40% {
		transform: perspective(400px) rotateX(-10deg)
	}

	70% {
		transform: perspective(400px) rotateX(10deg)
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg)
	}
}

@keyframes flipInX {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}

	40% {
		transform: perspective(400px) rotateX(-10deg)
	}

	70% {
		transform: perspective(400px) rotateX(10deg)
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg)
	}
}

.flipInX {
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipInY {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}

	40% {
		transform: perspective(400px) rotateY(-10deg)
	}

	70% {
		transform: perspective(400px) rotateY(10deg)
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateY(0deg)
	}
}

@keyframes flipInY {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}

	40% {
		transform: perspective(400px) rotateY(-10deg)
	}

	70% {
		transform: perspective(400px) rotateY(10deg)
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateY(0deg)
	}
}

.flipInY {
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutX {
	0% {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg)
	}

	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
}

@keyframes flipOutX {
	0% {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg)
	}

	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
	0% {
		opacity: 1;
		transform: perspective(400px) rotateY(0deg)
	}

	to {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
}

@keyframes flipOutY {
	0% {
		opacity: 1;
		transform: perspective(400px) rotateY(0deg)
	}

	to {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
}

.flipOutY {
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes lightSpeedIn {
	0% {
		opacity: 0;
		transform: translateX(100%) skewX(-30deg)
	}

	60% {
		opacity: 1;
		transform: translateX(-20%) skewX(30deg)
	}

	80% {
		opacity: 1;
		transform: translateX(0) skewX(-15deg)
	}

	to {
		opacity: 1;
		transform: translateX(0) skewX(0deg)
	}
}

@keyframes lightSpeedIn {
	0% {
		opacity: 0;
		transform: translateX(100%) skewX(-30deg)
	}

	60% {
		opacity: 1;
		transform: translateX(-20%) skewX(30deg)
	}

	80% {
		opacity: 1;
		transform: translateX(0) skewX(-15deg)
	}

	to {
		opacity: 1;
		transform: translateX(0) skewX(0deg)
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1;
		transform: translateX(0) skewX(0deg)
	}

	to {
		opacity: 0;
		transform: translateX(100%) skewX(-30deg)
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1;
		transform: translateX(0) skewX(0deg)
	}

	to {
		opacity: 0;
		transform: translateX(100%) skewX(-30deg)
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		opacity: 0;
		transform: rotate(-200deg);
		transform-origin: center center
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: center center
	}
}

@keyframes rotateIn {
	0% {
		opacity: 0;
		transform: rotate(-200deg);
		transform-origin: center center
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: center center
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: left bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}
}

@keyframes rotateInDownLeft {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: left bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}
}

@keyframes rotateInDownRight {
	0% {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: left bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}
}

@keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: left bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}
}

@keyframes rotateInUpRight {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: center center
	}

	to {
		opacity: 0;
		transform: rotate(200deg);
		transform-origin: center center
	}
}

@keyframes rotateOut {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: center center
	}

	to {
		opacity: 0;
		transform: rotate(200deg);
		transform-origin: center center
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}

	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: left bottom
	}
}

@keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}

	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: left bottom
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}

	to {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}
}

@keyframes rotateOutDownRight {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}

	to {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}

	to {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: left bottom
	}
}

@keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}

	to {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: left bottom
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}

	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}
}

@keyframes rotateOutUpRight {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}

	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes slideInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	to {
		transform: translateY(0)
	}
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	to {
		transform: translateY(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	to {
		transform: translateX(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	to {
		transform: translateX(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideOutLeft {
	0% {
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

@keyframes slideOutLeft {
	0% {
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

@keyframes slideOutRight {
	0% {
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

@keyframes slideOutUp {
	0% {
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

@-webkit-keyframes slideInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes slideInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

@keyframes slideOutDown {
	0% {
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(0);
		transform-origin: top left
	}

	20%,
	60% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(80deg);
		transform-origin: top left
	}

	40% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(60deg);
		transform-origin: top left
	}

	80% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg) translateY(0);
		transform-origin: top left
	}

	to {
		opacity: 0;
		transform: translateY(700px)
	}
}

@keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(0);
		transform-origin: top left
	}

	20%,
	60% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(80deg);
		transform-origin: top left
	}

	40% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(60deg);
		transform-origin: top left
	}

	80% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg) translateY(0);
		transform-origin: top left
	}

	to {
		opacity: 0;
		transform: translateY(700px)
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		transform: translateX(-100%) rotate(-120deg)
	}

	to {
		opacity: 1;
		transform: translateX(0) rotate(0deg)
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translateX(-100%) rotate(-120deg)
	}

	to {
		opacity: 1;
		transform: translateX(0) rotate(0deg)
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
		transform: translateX(0) rotate(0deg)
	}

	to {
		opacity: 0;
		transform: translateX(100%) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
		transform: translateX(0) rotate(0deg)
	}

	to {
		opacity: 0;
		transform: translateX(100%) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale(.3)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale(.3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateY(-2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateY(60px)
	}
}

@keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateY(-2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateY(60px)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateX(-2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateX(48px)
	}
}

@keyframes zoomInLeft {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateX(-2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateX(48px)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateX(2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateX(-48px)
	}
}

@keyframes zoomInRight {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateX(2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateX(-48px)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateY(2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateY(-60px)
	}
}

@keyframes zoomInUp {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateY(2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateY(-60px)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: 0;
		transform: scale(.3)
	}

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: 0;
		transform: scale(.3)
	}

	to {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateY(-60px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateY(2000px);
		transform-origin: center bottom
	}
}

@keyframes zoomOutDown {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateY(-60px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateY(2000px);
		transform-origin: center bottom
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateX(42px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateX(-2000px);
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateX(42px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateX(-2000px);
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateX(-42px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateX(2000px);
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateX(-42px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateX(2000px);
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateY(60px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateY(-2000px);
		transform-origin: center top
	}
}

@keyframes zoomOutUp {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateY(60px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateY(-2000px);
		transform-origin: center top
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

body {
	margin: 0
}

.unleash_slider {
	box-shadow: 0 0 10px #010101;
	display: block;
	overflow: hidden;
	position: relative
}

.unleash_slide {
	zoom: 1;
	background: #000;
	box-shadow: -5px 0 5px rgba(1, 1, 1, .3);
	display: block;
	display: inline-block;
	float: left;
	overflow: hidden
}

.unleash_caption,
.unleash_slide {
	position: absolute
}

.unleash_caption h6,
.unleash_caption p {
	color: #fff
}

.unleash_content {
	display: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.unleash_drag {
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab
}

.unleash_slide_mouseDown {
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing
}

.example_1 {
	box-shadow: 5px 0 5px rgba(1, 1, 1, .3)
}

.unleash_slide img,
.unleash_slide video {
	opacity: .7;
	position: relative;
	transition: opacity .7s;
	width: 100%
}

.unleash_slide.active img,
.unleash_slide.active video,
.unleash_slide img:hover,
.unleash_slide video:hover {
	opacity: 1
}

.upper_text {
	margin: none;
	position: absolute;
	width: 100%
}

.upper_text h4,
.upper_text h4 a {
	margin: 0;
	text-align: center
}

.upper_text h4 a {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 55px;
	text-decoration: none
}

.lower_text {
	margin: none;
	padding: 0 5%;
	position: absolute;
	text-align: center;
	width: 100%
}

.lower_text p {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	margin: 0;
	text-align: center
}

@media screen and (max-width:800px) {
	.upper_text h4 a {
		font-size: 20px
	}

	.lower_text p {
		display: none
	}
}

.main_nav {
	background: #111;
	box-shadow: 0 2px 10px rgba(1, 1, 1, .81);
	padding: 5px 0
}

.color {
	padding: 40px 0
}

.unleash_container {
	position: relative
}

.unleash_controls {
	height: 40px;
	overflow: hidden;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 120px
}

.unleash_loader {
	background: #00f0ff;
	box-shadow: 0 0 3px 1px #00f0ff;
	-webkit-box-shadow: 0 0 3px 1px #00f0ff;
	-moz-box-shadow: 0 0 3px 1px #00f0ff;
	height: 2px;
	position: absolute;
	position: relative;
	top: 10px;
	z-index: 1000
}

.unleash_loader_bg {
	background: #000;
	height: 20px;
	overflow: hidden;
	position: absolute;
	top: -12px;
	width: 100%;
	z-index: 999
}

.unleash_pause {
	background: #fff;
	cursor: pointer;
	float: left;
	height: 30px;
	width: 40px
}

.unleash_buttons {
	margin: 20px auto 0;
	overflow: hidden;
	text-align: center;
	width: 100%
}

.unleash_buttons i {
	color: #fff;
	cursor: pointer;
	font-size: 18px
}

.emboss {
	background: hsla(0, 0%, 100%, .25);
	height: 1px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10
}

.main_slider {
	background: #040d1c;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDQwZDFjIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMWMzOTQ5Ii8+PC9saW5lYXJHcmFkaWVudD48cGF0aCBmaWxsPSJ1cmwoI2EpIiBkPSJNMCAwaDF2MUgweiIvPjwvc3ZnPg==);
	background: linear-gradient(180deg, #040d1c 0, #437591);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#040d1c", endColorstr="#1c3949", GradientType=0)
}



[class*=" icon-"]:before,
[class^=icon-]:before {
	speak: none;
	display: inline-block;
	font-family: fontello;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1em;
	margin-left: .2em;
	margin-right: .2em;
	text-align: center;
	text-decoration: inherit;
	text-transform: none;
	width: 1em
}


*{margin:0;padding:0}
body{margin:0 auto;padding:0;background:#fff url(../images/banner.jpg) no-repeat top center;font-size:12px;color:#3e3e3e;font-family:'microsoft yahei';}
body > div{margin-right:auto;margin-left:auto;}
div,form,ul,ol,li,span,p{margin:0;padding:0;border:0;}
img,a img{border:0;margin:0;padding:0; vertical-align:middle }
h1,h2,h3,h4,h5,h6{margin:0;padding:0;font-size:12px;font-weight:normal;}
ul,ol,li{list-style:none}
table,td,input{font-size:12px}
UL{margin:0px auto;margin /**/:0px;}

a{color: #3e3e3e;text-decoration:none}
a:hover{text-decoration:underline;}

.unline,.unline a {text-decoration:underline}

.wrapper {
	width: 1200px;
	margin: 0 auto;
}


.wrapper a {
	color: #000
}

.wrapper a:hover {
	color: #aa182c;
	text-decoration: none
}

.clear { clear: both; visibility: hidden;}
.blank850 {margin:0 auto; width:100%; height:850px; clear:both;}
.blank60 {margin:0 auto; width:100%; height:60px; clear:both;}
.blank30 {margin:0 auto; width:100%; height:30px; clear:both;}
.blank20 {margin:0 auto; width:100%; height:20px; clear:both;}
.title {text-align: center; padding-bottom: 25px;}
.tupian {
    position: relative;
	background: linear-gradient(to right, #b32713 0%, #f6c86a 100%);
	border-radius: 20px 20px 20px 20px;
	width: 1200px;
	height: 684px;
}
.tupian a {
    display: block;
}
.tupian a .play {
    position: absolute;
    top: 38%;
    left: 46%;
    width: 102px;
    height: 102px;
    background: url(../images/bofang.png) no-repeat center;
}
.tupian a img {
    display: block;
	border-radius: 20px 20px 20px 20px;
	padding-left: 6px;
	padding-top: 6px;
}
.tupian a .biaoti {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 0;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7F000000', endColorstr='#7F000000');
    text-indent: 1em;
    font-size: 24px;
    height: 60px;
    line-height: 60px;
    font-weight: 600;
	border-radius: 0px 0px 20px 20px;
	width: 1188px;
}

.wrapper .w1200 {
	margin: 0 auto;
	width: 1200px
}


.wrapper .row4 {
	margin-bottom: 30px;
	padding-top: 20px
}

.wrapper .row4 .unleash_loader_bg {
	background-color: transparent;
	top: -20px
}

.wrapper .row4 .w1200 {
	position: relative
}


.wrapper .row4 .w1200 .title {
	height: 34px;
	margin-bottom: 20px;
	position: relative;
	width: 100%;
	z-index: 99
}

.wrapper .row4 .w1200 .title .left {
	float: left
}


.wrapper .row4 .w1200 .title .right {
	float: right;
	position: relative
}


.wrapper .row4.xingzhen .box {
	position: relative
}

.wrapper .row4.xingzhen .box .arrow_left {
	cursor: pointer;
	height: 44px;
	margin-top: -27.5px;
	position: absolute;
	top: 50%;
	transition: transform 0s ease-in-out .2s;
	width: 20px;
	z-index: 99
}

.wrapper .row4.xingzhen .box .arrow_left.swiper-button-disabled {
	opacity: .6
}


.wrapper .row4.xingzhen .box .arrow_right {
	cursor: pointer;
	height: 44px;
	margin-top: -27.5px;
	position: absolute;
	top: 50%;
	transition: transform 0s ease-in-out .2s;
	width: 20px;
	z-index: 99
}

.wrapper .row4.xingzhen .box .arrow_right.swiper-button-disabled {
	opacity: .6
}


.wrapper .row4.xingzhen .swiper-container {
	background-color: #000;
	height: 310px;
	position: relative;
	width: 1200px
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide {
	font-size: 0
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider,
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide {
	box-shadow: none
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content {
	display: block
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .shadow {
	background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0, transparent);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=0);
	height: 66px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .tit {
	background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .5));
	bottom: 0;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=0);
	height: 44px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: auto;
	width: 100%
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .tit a {
	color: #fff;
	display: block;
	font-size: 18px;
	line-height: 44px;
	overflow: hidden;
	text-indent: 1em;
	white-space: nowrap
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .slogen {
	color: #fff;
	font-size: 14px;
	left: 120px;
	opacity: 0;
	position: absolute;
	top: 27px
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .localname {
	font-weight: 700;
	height: 22px;
	left: 43px;
	position: absolute;
	top: 28px;
	transform: rotate(90deg);
	transform-origin: 0 0
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .localname a {
	color: #fff;
	display: block;
	font-size: 22px;
	height: 100%;
	line-height: 22px;
	width: 100%
}

.rotateIn90 {
	-webkit-animation-name: rotateIn90;
	animation-name: rotateIn90
}

.rotateOut90 {
	-webkit-animation-name: rotateOut90;
	animation-name: rotateOut90
}

@-webkit-keyframes rotateIn90 {
	0% {
		transform: rotate(90deg)
	}

	to {
		transform: rotate(0deg)
	}
}

@keyframes rotateIn90 {
	0% {
		transform: rotate(90deg)
	}

	to {
		transform: rotate(0deg)
	}
}

@-webkit-keyframes rotateOut90 {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(90deg)
	}
}

@keyframes rotateOut90 {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(90deg)
	}
}


.row3 .slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.row3 .slider .lhtj-arrow-left {
    position: absolute;
    top: 30px;
    left: 0;
    width: 44px;
    height: 112px;
    background: url(../images/left01.png) no-repeat center;
}
.row3 .slider .lhtj-arrow-right {
    position: absolute;
    top: 30px;
    right: 0;
    width: 44px;
    height: 112px;
    background: url(../images/right01.png) no-repeat center;
}
.row3 .slider .swiper-container {
    width: 1026px;
	margin: 0 auto;
	height: 290px;
}
.row3 .slider .swiper-slide a {
    display: block;
    position: relative;
}
.row3 .slider .swiper-slide a img {
    display: block;
	width: 100%;
	height: 172px;
	border: 4px solid #ffffff;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0 10px 5px -5px rgb(255 0 0 / 30%);
}
.row3 .slider .swiper-slide h3 {
    text-align: center;
    color: #ffffff;
    line-height: 30px;
    margin-top: 0;
}
.row3 .slider .swiper-slide h3 a {
    color: #000;
    font-size: 18px;
    display: block;
    overflow: hidden;
    height: 30px;
}
.border .biaoti {
    font-size: 18px;
    line-height: 35px;
    font-weight: 600;
    text-align: center;
}
.wrapper1 {
    position: relative;
    width: 315px;
    height: 290px;
}
.blank1_b {
    margin: 0 auto;
    width: 142px;
    height: 3px;
    background: #bd3120;
    clear: both;
}

  
  
  .row5 .slider {
      position: relative;
      height: 550px;
      overflow: hidden;
  }
  .row5 .slider .qctj-arrow-left {
      position: absolute;
      top: 180px;
      left: 0;
      width: 40px;
      height: 90px;
      border-radius: 10px 0 0 10px;
      background: url(../images/left02.png) no-repeat center;
  }
  .row5 .slider .qctj-arrow-right {
      position: absolute;
      top: 180px;
      right: 0;
      width: 40px;
      height: 90px;
      border-radius: 10px 0 0 10px;
      background: url(../images/right02.png) no-repeat center;
  }
  .row5 .slider .swiper-container {
      width: 1062px;
      height: 550px;
      margin-top: 15px;
  }
  .row5 .slider .swiper-slide a {
      display: block;
      position: relative;
  }
  .row5 .slider .swiper-slide a img {
      display: block;
	  border: 4px solid #d06b38;
	  border-radius: 6px 6px 6px 6px;
	  box-shadow: 0 10px 5px -5px rgb(255 0 0 / 30%);
  }
  .row5 .slider .swiper-slide h3 {
      text-align: center;
      color: #ffffff;
      line-height: 26px;
      margin-top: 20px;
	  width: 248px;
  }
  .row5 .slider .swiper-slide h3 a {
      color: #000;
      font-size: 18px;
      display: block;
      overflow: hidden;
  }

