@charset "UTF-8";

.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
}

@keyframes bounce {

	0%,
	100%,
	20%,
	53%,
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	40%,
	43% {
		-webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		-webkit-transform: translate3d(0, -30px, 0);
		-ms-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		-webkit-transform: translate3d(0, -15px, 0);
		-ms-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		-ms-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom
}

@keyframes flash {

	0%,
	100%,
	50% {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		-ms-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		-ms-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}

	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		-ms-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		-ms-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		-ms-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		-ms-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@keyframes shake {

	0%,
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		-ms-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		-ms-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		-ms-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}

	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		-ms-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}

	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		-ms-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		-ms-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}

	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		-ms-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		-ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		-ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		-ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		-ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		-ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@keyframes bounceIn {

	0%,
	100%,
	20%,
	40%,
	60%,
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		-ms-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		-ms-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		-ms-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		-ms-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@keyframes bounceInDown {

	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		-ms-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		-ms-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		-ms-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		-ms-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@keyframes bounceInLeft {

	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		-ms-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		-ms-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		-ms-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		-ms-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@keyframes bounceInRight {

	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		-ms-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		-ms-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		-ms-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		-ms-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@keyframes bounceInUp {

	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		-ms-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		-ms-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		-ms-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		-ms-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		-ms-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		-ms-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		-ms-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		-ms-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		-ms-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		-ms-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		-ms-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		-ms-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		-ms-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		-ms-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		-ms-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		-ms-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		-ms-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		-ms-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		-ms-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		-ms-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		-ms-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		-ms-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		-ms-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		-ms-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		-ms-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		-ms-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		-ms-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		-ms-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		-ms-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	100% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	-ms-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		-ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		-ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}

	100% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		-ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		-ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}

	100% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}

	100% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		-ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}

	100% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		-ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}

	60% {
		-webkit-transform: skewX(20deg);
		-ms-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		-ms-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1
	}

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	100% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		-ms-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		-ms-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		-ms-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		-ms-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		-ms-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		-ms-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		-ms-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0, 0, 1, 45deg);
		-ms-transform: rotate(0, 0, 1, 45deg);
		transform: rotate(0, 0, 1, 45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		-ms-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		-ms-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		-ms-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		-ms-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		-ms-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		-ms-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		-ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@keyframes rollOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		-ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	100% {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		-ms-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		-ms-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		-ms-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		-ms-transform-origin: right center;
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		-ms-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

.rotate_circle {
	width: 100%;
	height: 100%;
	position: relative;
	background: transparent;
}

.rotate_circle,
.rotate_circle * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.rotate_circle .pie {
	width: 50%;
	height: 100%;
	transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	position: absolute;
	background: transparent;
	border: none;
}

.rotate_circle:hover .pie {
	border: 2px solid #fff;
}

.rotate_circle .spinner {
	border-radius: 100% 0 0 100% / 50% 0 0 50%;
	z-index: 0;
	border-right: none;
	-webkit-animation: rota 2s linear infinite;
	-ms-animation: rota 2s linear infinite;
}

.rotate_circle:hover .spinner {
	border-right: none;
}

.rotate_circle:hover .spinner,
.rotate_circle:hover .filler,
.rotate_circle:hover .mask {
	animation-play-state: running;
	-ms-animation-play-state: running;
}

.rotate_circle .filler {
	border-radius: 0 100% 100% 0 / 0 50% 50% 0;
	left: 50%;
	opacity: 0;
	-webkit-animation: opa 2s steps(1, end) infinite reverse;
	-ms-animation: opa 2s steps(1, end) infinite reverse;
	border-left: none;
}

.rotate_circle:hover .filler {
	border-left: none;
}

.rotate_circle .mask {
	width: 50%;
	height: 100%;
	position: absolute;
	background: inherit;
	opacity: 1;
	-webkit-animation: opa 2s steps(1, end) infinite;
	-ms-animation: opa 2s steps(1, end) infinite;
}

@-ms-keyframes rota {
	0% {
		transform: rotate(0deg);
		border-color: #fff;
	}

	100% {
		transform: rotate(360deg);
		z-index: 0;
	}
}

@-ms-keyframes opa {
	0% {
		opacity: 1;
	}

	50%,
	100% {
		opacity: 0;
	}
}

.rotate_circle_circle {
	padding: 0;
}

.rotate_circle_circle .pie {
	width: 50%;
	height: 100%;
	transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	position: absolute;
	background: transparent;
	border: none;
}

@media(min-width:1024px) {
	.circle-active .rotate_circle_circle .pie {
		border: 2px solid #f00;
	}
}

.circle-active .rotate_circle_circle .pie.spinner {
	border-radius: 100% 0 0 100% / 50% 0 0 50%;
	z-index: 0;
	border-right: none;
	-webkit-animation: rota_circle 2s linear;
	-ms-animation: rota_circle 2s linear;
}

.circle-active .rotate_circle_circle .pie.filler {
	border-radius: 0 100% 100% 0 / 0 50% 50% 0;
	left: 50%;
	-webkit-animation: opa_circle 1s steps(1, end) reverse;
	-ms-animation: opa_circle 1s steps(1, end) reverse;
	-webkit-animation: opa_circle 2s linear;
	-ms-animation: opa_circle 2s linear;
	border-left: none;
}

.rotate_circle_content {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: table;
	vertical-align: middle;
}

.rotate_circle_text {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	text-align: center;
}

.chosen-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.chosen-container * {
	box-sizing: border-box
}

.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	z-index: 1010;
	width: 100%;
	border: 1px solid #aaa;
	border-top: 0;
	background: #fff;
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	clip: rect(0, 0, 0, 0)
}

.chosen-container.chosen-with-drop .chosen-drop {
	clip: auto
}

.chosen-container a {
	cursor: pointer
}

.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
	margin-right: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 400;
	color: #999
}

.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
	content: ":";
	padding-left: 2px;
	vertical-align: top
}

.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 0 0 8px;
	height: 25px;
	border: 1px solid #aaa;
	border-radius: 5px;
	background-color: #fff;
	background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
	background-clip: padding-box;
	box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
	color: #444;
	text-decoration: none;
	white-space: nowrap;
	line-height: 24px
}

.chosen-container-single .chosen-default {
	color: #999
}

.chosen-container-single .chosen-single span {
	display: block;
	overflow: hidden;
	margin-right: 26px;
	text-overflow: ellipsis;
	white-space: nowrap
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px
}

.chosen-container-single .chosen-single abbr {
	position: absolute;
	top: 6px;
	right: 26px;
	display: block;
	width: 12px;
	height: 12px;
	background: url(../_ui/responsive/theme-alpha/images/chosen-sprite.png) -42px 1px no-repeat;
	font-size: 1px
}

.chosen-container-single .chosen-single abbr:hover {
	background-position: -42px -10px
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px
}

.chosen-container-single .chosen-single div {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 18px;
	height: 100%
}

.chosen-container-single .chosen-single div b {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../_ui/responsive/theme-alpha/images/chosen-sprite.png) no-repeat 0 2px
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 3px 4px;
	white-space: nowrap
}

.chosen-container-single .chosen-search input[type=text] {
	margin: 1px 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
	height: auto;
	outline: 0;
	border: 1px solid #aaa;
	background: url(../_ui/responsive/theme-alpha/images/chosen-sprite.png) no-repeat 100% -20px;
	font-size: 1em;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0
}

.chosen-container-single .chosen-drop {
	margin-top: -1px;
	border-radius: 0 0 4px 4px;
	background-clip: padding-box
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	clip: rect(0, 0, 0, 0)
}

.chosen-container .chosen-results {
	color: #444;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0 4px 4px 0;
	padding: 0 0 0 4px;
	max-height: 240px;
	-webkit-overflow-scrolling: touch
}

.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 5px 6px;
	list-style: none;
	line-height: 15px;
	word-wrap: break-word;
	-webkit-touch-callout: none
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default
}

.chosen-container .chosen-results li.highlighted {
	background-color: #3875d7;
	background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
	color: #fff
}

.chosen-container .chosen-results li.no-results {
	color: #777;
	display: list-item;
	background: #f4f4f4
}

.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: 700;
	cursor: default
}

.chosen-container .chosen-results li.group-option {
	padding-left: 15px
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline
}

.chosen-container-multi .chosen-choices {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0 5px;
	width: 100%;
	height: auto;
	border: 1px solid #aaa;
	background-color: #fff;
	background-image: linear-gradient(#eee 1%, #fff 15%);
	cursor: text
}

.chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none
}

.chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
	margin: 1px 0;
	padding: 0;
	height: 25px;
	outline: 0;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none;
	color: #999;
	font-size: 100%;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0;
	width: 25px
}

.chosen-container-multi .chosen-choices li.search-choice {
	position: relative;
	margin: 3px 5px 3px 0;
	padding: 3px 20px 3px 5px;
	border: 1px solid #aaa;
	max-width: 100%;
	border-radius: 3px;
	background-color: #eee;
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	background-size: 100% 19px;
	background-repeat: repeat-x;
	background-clip: padding-box;
	box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
	color: #333;
	line-height: 13px;
	cursor: default
}

.chosen-container-multi .chosen-choices li.search-choice span {
	word-wrap: break-word
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	position: absolute;
	top: 4px;
	right: 3px;
	display: block;
	width: 12px;
	height: 12px;
	background: url(../_ui/responsive/theme-alpha/images/chosen-sprite.png) -42px 1px no-repeat;
	font-size: 1px
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	background-position: -42px -10px
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
	padding-right: 5px;
	border: 1px solid #ccc;
	background-color: #e4e4e4;
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	color: #666
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
	background-position: -42px -10px
}

.chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0
}

.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default
}

.chosen-container-active .chosen-single {
	border: 1px solid #5897fb;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3)
}

.chosen-container-active.chosen-with-drop .chosen-single {
	border: 1px solid #aaa;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	background-image: linear-gradient(#eee 20%, #fff 80%);
	box-shadow: 0 1px 0 #fff inset
}

.chosen-container-active.chosen-with-drop .chosen-single div {
	border-left: 0;
	background: transparent
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -18px 2px
}

.chosen-container-active .chosen-choices {
	border: 1px solid #5897fb;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3)
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
	color: #222 !important
}

.chosen-disabled {
	opacity: .5 !important;
	cursor: default
}

.chosen-disabled .chosen-single {
	cursor: default
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default
}

.chosen-rtl {
	text-align: right
}

.chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 8px 0 0
}

.chosen-rtl .chosen-single span {
	margin-right: 0;
	margin-left: 26px;
	direction: rtl
}

.chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px
}

.chosen-rtl .chosen-single div {
	right: auto;
	left: 3px
}

.chosen-rtl .chosen-single abbr {
	right: auto;
	left: 26px
}

.chosen-rtl .chosen-choices li {
	float: right
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
	direction: rtl
}

.chosen-rtl .chosen-choices li.search-choice {
	margin: 3px 5px 3px 0;
	padding: 3px 5px 3px 19px
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	right: auto;
	left: 4px
}

.chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 4px 4px;
	padding: 0 4px 0 0
}

.chosen-rtl .chosen-results li.group-option {
	padding-right: 15px;
	padding-left: 0
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
	border-right: 0
}

.chosen-rtl .chosen-search input[type=text] {
	padding: 4px 5px 4px 20px;
	background: url(../_ui/responsive/theme-alpha/images/chosen-sprite.png) no-repeat -30px -20px;
	direction: rtl
}

.chosen-rtl.chosen-container-single .chosen-single div b {
	background-position: 6px 2px
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
	background-position: -12px 2px
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi),
only screen and (min-resolution:1.5dppx) {

	.chosen-rtl .chosen-search input[type=text],
	.chosen-container-single .chosen-single abbr,
	.chosen-container-single .chosen-single div b,
	.chosen-container-single .chosen-search input[type=text],
	.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
	.chosen-container .chosen-results-scroll-down span,
	.chosen-container .chosen-results-scroll-up span {}
}

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer,
.fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
	background-image: url(../_ui/responsive/theme-alpha/images/fancybox_sprite.png);
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url(../_ui/responsive/theme-alpha/images/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url(../_ui/responsive/theme-alpha/images/blank.gif);
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

.fancybox-lock {
	overflow: visible !important;
	width: auto;
}

.fancybox-lock body {
	overflow: hidden !important;
}

.fancybox-lock-test {
	overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url(../_ui/responsive/theme-alpha/images/fancybox_overlay.png);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent;
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {

	#fancybox-loading,
	.fancybox-close,
	.fancybox-prev span,
	.fancybox-next span {
		background-image: url(../_ui/responsive/theme-alpha/images/fancybox_sprite@2x.png);
		background-size: 44px 152px;
	}

	#fancybox-loading div {
		background-image: url(../_ui/responsive/theme-alpha/images/fancybox_loading@2x.gif);
		background-size: 24px 24px;
	}
}

.owl-carousel,
.owl-carousel .owl-item {
	-webkit-tap-highlight-color: transparent;
	position: relative
}

.owl-carousel {
	display: none;
	width: 100%;
	z-index: 1
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	-moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
	display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block
}

.owl-carousel.owl-hidden {
	opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab
}

.owl-carousel.owl-rtl {
	direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
	float: right
}

.owl-carousel .animated {
	animation-duration: 1s;
	animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
	z-index: 0
}

.owl-carousel .owl-animated-out {
	z-index: 1
}

.owl-carousel .fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.owl-height {
	transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity .4s ease
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(../_ui/responsive/theme-alpha/css/owl.video.play.png) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display: none
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%
}

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

@media print {

	*,
	*:before,
	*:after {}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: "("attr(href) ")";
	}

	abbr[title]:after {
		content: "("attr(title) ")";
	}

	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}

	.navbar {
		display: none;
	}

	.btn>.caret,
	.dropup>.btn>.caret {
		border-top-color: #000 !important;
	}

	.label {
		border: 1px solid #000;
	}

	.table {
		border-collapse: collapse !important;
	}

	.table td,
	.table th {
		background-color: #fff !important;
	}

	.table-bordered th,
	.table-bordered td {
		border: 1px solid #ddd !important;
	}
}

@font-face {
	font-family: 'Glyphicons Halflings';
	src: url('../_ui/responsive/theme-alpha/fonts/glyphicons-halflings-regular.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../_ui/responsive/theme-alpha/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
	content: "\002a";
}

.glyphicon-plus:before {
	content: "\002b";
}

.glyphicon-euro:before,
.glyphicon-eur:before {
	content: "\20ac";
}

.glyphicon-minus:before {
	content: "\2212";
}

.glyphicon-cloud:before {
	content: "\2601";
}

.glyphicon-envelope:before {
	content: "\2709";
}

.glyphicon-pencil:before {
	content: "\270f";
}

.glyphicon-glass:before {
	content: "\e001";
}

.glyphicon-music:before {
	content: "\e002";
}

.glyphicon-search:before {
	content: "\e003";
}

.glyphicon-heart:before {
	content: "\e005";
}

.glyphicon-star:before {
	content: "\e006";
}

.glyphicon-star-empty:before {
	content: "\e007";
}

.glyphicon-user:before {
	content: "\e008";
}

.glyphicon-film:before {
	content: "\e009";
}

.glyphicon-th-large:before {
	content: "\e010";
}

.glyphicon-th:before {
	content: "\e011";
}

.glyphicon-th-list:before {
	content: "\e012";
}

.glyphicon-ok:before {
	content: "\e013";
}

.glyphicon-remove:before {
	content: "\e014";
}

.glyphicon-zoom-in:before {
	content: "\e015";
}

.glyphicon-zoom-out:before {
	content: "\e016";
}

.glyphicon-off:before {
	content: "\e017";
}

.glyphicon-signal:before {
	content: "\e018";
}

.glyphicon-cog:before {
	content: "\e019";
}

.glyphicon-trash:before {
	content: "\e020";
}

.glyphicon-home:before {
	content: "\e021";
}

.glyphicon-file:before {
	content: "\e022";
}

.glyphicon-time:before {
	content: "\e023";
}

.glyphicon-road:before {
	content: "\e024";
}

.glyphicon-download-alt:before {
	content: "\e025";
}

.glyphicon-download:before {
	content: "\e026";
}

.glyphicon-upload:before {
	content: "\e027";
}

.glyphicon-inbox:before {
	content: "\e028";
}

.glyphicon-play-circle:before {
	content: "\e029";
}

.glyphicon-repeat:before {
	content: "\e030";
}

.glyphicon-refresh:before {
	content: "\e031";
}

.glyphicon-list-alt:before {
	content: "\e032";
}

.glyphicon-lock:before {
	content: "\e033";
}

.glyphicon-flag:before {
	content: "\e034";
}

.glyphicon-headphones:before {
	content: "\e035";
}

.glyphicon-volume-off:before {
	content: "\e036";
}

.glyphicon-volume-down:before {
	content: "\e037";
}

.glyphicon-volume-up:before {
	content: "\e038";
}

.glyphicon-qrcode:before {
	content: "\e039";
}

.glyphicon-barcode:before {
	content: "\e040";
}

.glyphicon-tag:before {
	content: "\e041";
}

.glyphicon-tags:before {
	content: "\e042";
}

.glyphicon-book:before {
	content: "\e043";
}

.glyphicon-bookmark:before {
	content: "\e044";
}

.glyphicon-print:before {
	content: "\e045";
}

.glyphicon-camera:before {
	content: "\e046";
}

.glyphicon-font:before {
	content: "\e047";
}

.glyphicon-bold:before {
	content: "\e048";
}

.glyphicon-italic:before {
	content: "\e049";
}

.glyphicon-text-height:before {
	content: "\e050";
}

.glyphicon-text-width:before {
	content: "\e051";
}

.glyphicon-align-left:before {
	content: "\e052";
}

.glyphicon-align-center:before {
	content: "\e053";
}

.glyphicon-align-right:before {
	content: "\e054";
}

.glyphicon-align-justify:before {
	content: "\e055";
}

.glyphicon-list:before {
	content: "\e056";
}

.glyphicon-indent-left:before {
	content: "\e057";
}

.glyphicon-indent-right:before {
	content: "\e058";
}

.glyphicon-facetime-video:before {
	content: "\e059";
}

.glyphicon-picture:before {
	content: "\e060";
}

.glyphicon-map-marker:before {
	content: "\e062";
}

.glyphicon-adjust:before {
	content: "\e063";
}

.glyphicon-tint:before {
	content: "\e064";
}

.glyphicon-edit:before {
	content: "\e065";
}

.glyphicon-share:before {
	content: "\e066";
}

.glyphicon-check:before {
	content: "\e067";
}

.glyphicon-move:before {
	content: "\e068";
}

.glyphicon-step-backward:before {
	content: "\e069";
}

.glyphicon-fast-backward:before {
	content: "\e070";
}

.glyphicon-backward:before {
	content: "\e071";
}

.glyphicon-play:before {
	content: "\e072";
}

.glyphicon-pause:before {
	content: "\e073";
}

.glyphicon-stop:before {
	content: "\e074";
}

.glyphicon-forward:before {
	content: "\e075";
}

.glyphicon-fast-forward:before {
	content: "\e076";
}

.glyphicon-step-forward:before {
	content: "\e077";
}

.glyphicon-eject:before {
	content: "\e078";
}

.glyphicon-chevron-left:before {
	content: "\e079";
}

.glyphicon-chevron-right:before {
	content: "\e080";
}

.glyphicon-plus-sign:before {
	content: "\e081";
}

.glyphicon-minus-sign:before {
	content: "\e082";
}

.glyphicon-remove-sign:before {
	content: "\e083";
}

.glyphicon-ok-sign:before {
	content: "\e084";
}

.glyphicon-question-sign:before {
	content: "\e085";
}

.glyphicon-info-sign:before {
	content: "\e086";
}

.glyphicon-screenshot:before {
	content: "\e087";
}

.glyphicon-remove-circle:before {
	content: "\e088";
}

.glyphicon-ok-circle:before {
	content: "\e089";
}

.glyphicon-ban-circle:before {
	content: "\e090";
}

.glyphicon-arrow-left:before {
	content: "\e091";
}

.glyphicon-arrow-right:before {
	content: "\e092";
}

.glyphicon-arrow-up:before {
	content: "\e093";
}

.glyphicon-arrow-down:before {
	content: "\e094";
}

.glyphicon-share-alt:before {
	content: "\e095";
}

.glyphicon-resize-full:before {
	content: "\e096";
}

.glyphicon-resize-small:before {
	content: "\e097";
}

.glyphicon-exclamation-sign:before {
	content: "\e101";
}

.glyphicon-gift:before {
	content: "\e102";
}

.glyphicon-leaf:before {
	content: "\e103";
}

.glyphicon-fire:before {
	content: "\e104";
}

.glyphicon-eye-open:before {
	content: "\e105";
}

.glyphicon-eye-close:before {
	content: "\e106";
}

.glyphicon-warning-sign:before {
	content: "\e107";
}

.glyphicon-plane:before {
	content: "\e108";
}

.glyphicon-calendar:before {
	content: "\e109";
}

.glyphicon-random:before {
	content: "\e110";
}

.glyphicon-comment:before {
	content: "\e111";
}

.glyphicon-magnet:before {
	content: "\e112";
}

.glyphicon-chevron-up:before {
	content: "\e113";
}

.glyphicon-chevron-down:before {
	content: "\e114";
}

.glyphicon-retweet:before {
	content: "\e115";
}

.glyphicon-shopping-cart:before {
	content: "\e116";
}

.glyphicon-folder-close:before {
	content: "\e117";
}

.glyphicon-folder-open:before {
	content: "\e118";
}

.glyphicon-resize-vertical:before {
	content: "\e119";
}

.glyphicon-resize-horizontal:before {
	content: "\e120";
}

.glyphicon-hdd:before {
	content: "\e121";
}

.glyphicon-bullhorn:before {
	content: "\e122";
}

.glyphicon-bell:before {
	content: "\e123";
}

.glyphicon-certificate:before {
	content: "\e124";
}

.glyphicon-thumbs-up:before {
	content: "\e125";
}

.glyphicon-thumbs-down:before {
	content: "\e126";
}

.glyphicon-hand-right:before {
	content: "\e127";
}

.glyphicon-hand-left:before {
	content: "\e128";
}

.glyphicon-hand-up:before {
	content: "\e129";
}

.glyphicon-hand-down:before {
	content: "\e130";
}

.glyphicon-circle-arrow-right:before {
	content: "\e131";
}

.glyphicon-circle-arrow-left:before {
	content: "\e132";
}

.glyphicon-circle-arrow-up:before {
	content: "\e133";
}

.glyphicon-circle-arrow-down:before {
	content: "\e134";
}

.glyphicon-globe:before {
	content: "\e135";
}

.glyphicon-wrench:before {
	content: "\e136";
}

.glyphicon-tasks:before {
	content: "\e137";
}

.glyphicon-filter:before {
	content: "\e138";
}

.glyphicon-briefcase:before {
	content: "\e139";
}

.glyphicon-fullscreen:before {
	content: "\e140";
}

.glyphicon-dashboard:before {
	content: "\e141";
}

.glyphicon-paperclip:before {
	content: "\e142";
}

.glyphicon-heart-empty:before {
	content: "\e143";
}

.glyphicon-link:before {
	content: "\e144";
}

.glyphicon-phone:before {
	content: "\e145";
}

.glyphicon-pushpin:before {
	content: "\e146";
}

.glyphicon-usd:before {
	content: "\e148";
}

.glyphicon-gbp:before {
	content: "\e149";
}

.glyphicon-sort:before {
	content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
	content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
	content: "\e152";
}

.glyphicon-sort-by-order:before {
	content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
	content: "\e154";
}

.glyphicon-sort-by-attributes:before {
	content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
	content: "\e156";
}

.glyphicon-unchecked:before {
	content: "\e157";
}

.glyphicon-expand:before {
	content: "\e158";
}

.glyphicon-collapse-down:before {
	content: "\e159";
}

.glyphicon-collapse-up:before {
	content: "\e160";
}

.glyphicon-log-in:before {
	content: "\e161";
}

.glyphicon-flash:before {
	content: "\e162";
}

.glyphicon-log-out:before {
	content: "\e163";
}

.glyphicon-new-window:before {
	content: "\e164";
}

.glyphicon-record:before {
	content: "\e165";
}

.glyphicon-save:before {
	content: "\e166";
}

.glyphicon-open:before {
	content: "\e167";
}

.glyphicon-saved:before {
	content: "\e168";
}

.glyphicon-import:before {
	content: "\e169";
}

.glyphicon-export:before {
	content: "\e170";
}

.glyphicon-send:before {
	content: "\e171";
}

.glyphicon-floppy-disk:before {
	content: "\e172";
}

.glyphicon-floppy-saved:before {
	content: "\e173";
}

.glyphicon-floppy-remove:before {
	content: "\e174";
}

.glyphicon-floppy-save:before {
	content: "\e175";
}

.glyphicon-floppy-open:before {
	content: "\e176";
}

.glyphicon-credit-card:before {
	content: "\e177";
}

.glyphicon-transfer:before {
	content: "\e178";
}

.glyphicon-cutlery:before {
	content: "\e179";
}

.glyphicon-header:before {
	content: "\e180";
}

.glyphicon-compressed:before {
	content: "\e181";
}

.glyphicon-earphone:before {
	content: "\e182";
}

.glyphicon-phone-alt:before {
	content: "\e183";
}

.glyphicon-tower:before {
	content: "\e184";
}

.glyphicon-stats:before {
	content: "\e185";
}

.glyphicon-sd-video:before {
	content: "\e186";
}

.glyphicon-hd-video:before {
	content: "\e187";
}

.glyphicon-subtitles:before {
	content: "\e188";
}

.glyphicon-sound-stereo:before {
	content: "\e189";
}

.glyphicon-sound-dolby:before {
	content: "\e190";
}

.glyphicon-sound-5-1:before {
	content: "\e191";
}

.glyphicon-sound-6-1:before {
	content: "\e192";
}

.glyphicon-sound-7-1:before {
	content: "\e193";
}

.glyphicon-copyright-mark:before {
	content: "\e194";
}

.glyphicon-registration-mark:before {
	content: "\e195";
}

.glyphicon-cloud-download:before {
	content: "\e197";
}

.glyphicon-cloud-upload:before {
	content: "\e198";
}

.glyphicon-tree-conifer:before {
	content: "\e199";
}

.glyphicon-tree-deciduous:before {
	content: "\e200";
}

.glyphicon-cd:before {
	content: "\e201";
}

.glyphicon-save-file:before {
	content: "\e202";
}

.glyphicon-open-file:before {
	content: "\e203";
}

.glyphicon-level-up:before {
	content: "\e204";
}

.glyphicon-copy:before {
	content: "\e205";
}

.glyphicon-paste:before {
	content: "\e206";
}

.glyphicon-alert:before {
	content: "\e209";
}

.glyphicon-equalizer:before {
	content: "\e210";
}

.glyphicon-king:before {
	content: "\e211";
}

.glyphicon-queen:before {
	content: "\e212";
}

.glyphicon-pawn:before {
	content: "\e213";
}

.glyphicon-bishop:before {
	content: "\e214";
}

.glyphicon-knight:before {
	content: "\e215";
}

.glyphicon-baby-formula:before {
	content: "\e216";
}

.glyphicon-tent:before {
	content: "\26fa";
}

.glyphicon-blackboard:before {
	content: "\e218";
}

.glyphicon-bed:before {
	content: "\e219";
}

.glyphicon-apple:before {
	content: "\f8ff";
}

.glyphicon-erase:before {
	content: "\e221";
}

.glyphicon-hourglass:before {
	content: "\231b";
}

.glyphicon-lamp:before {
	content: "\e223";
}

.glyphicon-duplicate:before {
	content: "\e224";
}

.glyphicon-piggy-bank:before {
	content: "\e225";
}

.glyphicon-scissors:before {
	content: "\e226";
}

.glyphicon-bitcoin:before {
	content: "\e227";
}

.glyphicon-btc:before {
	content: "\e227";
}

.glyphicon-xbt:before {
	content: "\e227";
}

.glyphicon-yen:before {
	content: "\00a5";
}

.glyphicon-jpy:before {
	content: "\00a5";
}

.glyphicon-ruble:before {
	content: "\20bd";
}

.glyphicon-rub:before {
	content: "\20bd";
}

.glyphicon-scale:before {
	content: "\e230";
}

.glyphicon-ice-lolly:before {
	content: "\e231";
}

.glyphicon-ice-lolly-tasted:before {
	content: "\e232";
}

.glyphicon-education:before {
	content: "\e233";
}

.glyphicon-option-horizontal:before {
	content: "\e234";
}

.glyphicon-option-vertical:before {
	content: "\e235";
}

.glyphicon-menu-hamburger:before {
	content: "\e236";
}

.glyphicon-modal-window:before {
	content: "\e237";
}

.glyphicon-oil:before {
	content: "\e238";
}

.glyphicon-grain:before {
	content: "\e239";
}

.glyphicon-sunglasses:before {
	content: "\e240";
}

.glyphicon-text-size:before {
	content: "\e241";
}

.glyphicon-text-color:before {
	content: "\e242";
}

.glyphicon-text-background:before {
	content: "\e243";
}

.glyphicon-object-align-top:before {
	content: "\e244";
}

.glyphicon-object-align-bottom:before {
	content: "\e245";
}

.glyphicon-object-align-horizontal:before {
	content: "\e246";
}

.glyphicon-object-align-left:before {
	content: "\e247";
}

.glyphicon-object-align-vertical:before {
	content: "\e248";
}

.glyphicon-object-align-right:before {
	content: "\e249";
}

.glyphicon-triangle-right:before {
	content: "\e250";
}

.glyphicon-triangle-left:before {
	content: "\e251";
}

.glyphicon-triangle-bottom:before {
	content: "\e252";
}

.glyphicon-triangle-top:before {
	content: "\e253";
}

.glyphicon-console:before {
	content: "\e254";
}

.glyphicon-superscript:before {
	content: "\e255";
}

.glyphicon-subscript:before {
	content: "\e256";
}

.glyphicon-menu-left:before {
	content: "\e257";
}

.glyphicon-menu-right:before {
	content: "\e258";
}

.glyphicon-menu-down:before {
	content: "\e259";
}

.glyphicon-menu-up:before {
	content: "\e260";
}

* {
	-moz-box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: 10px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #19212b;
	background-color: #ffffff;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

a {
	color: #ec7205;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #154259;
	text-decoration: underline;
}

a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

figure {
	margin: 0;
}

img {
	vertical-align: middle;
}

.img-responsive,
.thumbnail>img,
.thumbnail a>img,
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-rounded {
	border-radius: 0;
}

.img-thumbnail {
	padding: 4px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-sm-transition: all 0.2s ease-in-out;
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.img-circle {
	border-radius: 50%;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #eeeeee;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

[role="button"] {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: inherit;
	font-weight: 500;
	line-height: 1.1;
	color: inherit;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
	font-weight: normal;
	line-height: 1;
	color: #777777;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
	margin-top: 20px;
	margin-bottom: 10px;
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
	font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin-top: 10px;
	margin-bottom: 10px;
}

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
	font-size: 75%;
}

h1,
.h1 {
	font-size: 36px;
}

h2,
.h2 {
	font-size: 30px;
}

h3,
.h3 {
	font-size: 24px;
}

h4,
.h4 {
	font-size: 18px;
}

h5,
.h5 {
	font-size: 14px;
}

h6,
.h6 {
	font-size: 12px;
}

p {
	margin: 0 0 10px;
}

.lead {
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
}

@media(min-width:640px) {
	.lead {
		font-size: 21px;
	}
}

small,
.small {
	font-size: 92%;
}

mark,
.mark {
	background-color: #fcf8e3;
	padding: .2em;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}

.text-nowrap {
	white-space: nowrap;
}

.text-lowercase {
	text-transform: lowercase;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-capitalize {
	text-transform: capitalize;
}

.text-muted {
	color: #777777;
}

.text-primary {
	color: #47b6b1;
}

a.text-primary:hover,
a.text-primary:focus {
	color: #39918d;
}

.text-success {
	color: #3e5983;
}

a.text-success:hover,
a.text-success:focus {
	color: #2e4160;
}

.text-info {
	color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
	color: #245269;
}

.text-warning {
	color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
	color: #66512c;
}

.text-danger {
	color: #19212b;
}

a.text-danger:hover,
a.text-danger:focus {
	color: #06080b;
}

.bg-primary {
	color: #fff;
	background-color: #47b6b1;
}

a.bg-primary:hover,
a.bg-primary:focus {
	background-color: #39918d;
}

.bg-success {
	background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
	background-color: #c1e2b3;
}

.bg-info {
	background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
	background-color: #afd9ee;
}

.bg-warning {
	background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
	background-color: #f7ecb5;
}

.bg-danger {
	background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
	background-color: #e4b9b9;
}

.page-header {
	padding-bottom: 9px;
	margin: 40px 0 20px;
	border-bottom: 1px solid #eeeeee;
}

ul,
ol {}

ul ul,
ol ul,
ul ol,
ol ol {
	margin-bottom: 0;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	list-style: none;
	margin-left: -5px;
}

.list-inline>li {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

dl {
	margin-top: 0;
	margin-bottom: 20px;
}

dt,
dd {
	line-height: 1.42857143;
}

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

@media(min-width:640px) {
	.dl-horizontal dt {
		float: left;
		width: 160px;
		clear: left;
		text-align: right;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.dl-horizontal dd {
		margin-left: 180px;
	}
}

abbr[title],
abbr[data-original-title] {
	cursor: help;
	border-bottom: 1px dotted #777777;
}

.initialism {
	font-size: 90%;
	text-transform: uppercase;
}

blockquote {
	padding: 10px 20px;
	margin: 0 0 20px;
	font-size: 17.5px;
	border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
	margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
	display: block;
	font-size: 80%;
	line-height: 1.42857143;
	color: #777777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
	content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
	padding-right: 15px;
	padding-left: 0;
	border-right: 5px solid #eeeeee;
	border-left: 0;
	text-align: right;
}

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
	content: '';
}

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
	content: '\00A0 \2014';
}

address {
	margin-bottom: 20px;
	font-style: normal;
	line-height: 1.42857143;
}

code,
kbd,
pre,
samp {
	font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
	padding: 2px 4px;
	font-size: 90%;
	color: #c7254e;
	background-color: #f9f2f4;
	border-radius: 0;
}

kbd {
	padding: 2px 4px;
	font-size: 90%;
	color: #ffffff;
	background-color: #333333;
	border-radius: 0;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: bold;
	box-shadow: none;
}

pre {
	display: block;
	padding: 9.5px;
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.42857143;
	word-break: break-all;
	word-wrap: break-word;
	color: #333333;
	background-color: #f5f5f5;
	border: 1px solid #cccccc;
	border-radius: 0;
}

pre code {
	padding: 0;
	font-size: inherit;
	color: inherit;
	white-space: pre-wrap;
	background-color: transparent;
	border-radius: 0;
}

.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll;
}

.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 10px;
	padding-right: 10px;
}

@media(min-width:640px) {
	.container {
		width: 100%;
	}
}

@media(min-width:1024px) {
	.container {
		width: 1024px;
	}
}

@media(min-width:1400px) {
	.container {
		width: 1366px;
	}
}

.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 10px;
	padding-right: 10px;
}

.row {
	margin-left: -10px;
	margin-right: -10px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
	position: relative;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
	float: left;
}

.col-xs-12 {
	width: 100%;
}

.col-xs-11 {
	width: 91.66666667%;
}

.col-xs-10 {
	width: 83.33333333%;
}

.col-xs-9 {
	width: 75%;
}

.col-xs-8 {
	width: 66.66666667%;
}

.col-xs-7 {
	width: 58.33333333%;
}

.col-xs-6 {
	width: 50%;
}

.col-xs-5 {
	width: 41.66666667%;
}

.col-xs-4 {
	width: 33.33333333%;
}

.col-xs-3 {
	width: 25%;
}

.col-xs-2 {
	width: 16.66666667%;
}

.col-xs-1 {
	width: 8.33333333%;
}

.col-xs-pull-12 {
	right: 100%;
}

.col-xs-pull-11 {
	right: 91.66666667%;
}

.col-xs-pull-10 {
	right: 83.33333333%;
}

.col-xs-pull-9 {
	right: 75%;
}

.col-xs-pull-8 {
	right: 66.66666667%;
}

.col-xs-pull-7 {
	right: 58.33333333%;
}

.col-xs-pull-6 {
	right: 50%;
}

.col-xs-pull-5 {
	right: 41.66666667%;
}

.col-xs-pull-4 {
	right: 33.33333333%;
}

.col-xs-pull-3 {
	right: 25%;
}

.col-xs-pull-2 {
	right: 16.66666667%;
}

.col-xs-pull-1 {
	right: 8.33333333%;
}

.col-xs-pull-0 {
	right: auto;
}

.col-xs-push-12 {
	left: 100%;
}

.col-xs-push-11 {
	left: 91.66666667%;
}

.col-xs-push-10 {
	left: 83.33333333%;
}

.col-xs-push-9 {
	left: 75%;
}

.col-xs-push-8 {
	left: 66.66666667%;
}

.col-xs-push-7 {
	left: 58.33333333%;
}

.col-xs-push-6 {
	left: 50%;
}

.col-xs-push-5 {
	left: 41.66666667%;
}

.col-xs-push-4 {
	left: 33.33333333%;
}

.col-xs-push-3 {
	left: 25%;
}

.col-xs-push-2 {
	left: 16.66666667%;
}

.col-xs-push-1 {
	left: 8.33333333%;
}

.col-xs-push-0 {
	left: auto;
}

.col-xs-offset-12 {
	margin-left: 100%;
}

.col-xs-offset-11 {
	margin-left: 91.66666667%;
}

.col-xs-offset-10 {
	margin-left: 83.33333333%;
}

.col-xs-offset-9 {
	margin-left: 75%;
}

.col-xs-offset-8 {
	margin-left: 66.66666667%;
}

.col-xs-offset-7 {
	margin-left: 58.33333333%;
}

.col-xs-offset-6 {
	margin-left: 50%;
}

.col-xs-offset-5 {
	margin-left: 41.66666667%;
}

.col-xs-offset-4 {
	margin-left: 33.33333333%;
}

.col-xs-offset-3 {
	margin-left: 25%;
}

.col-xs-offset-2 {
	margin-left: 16.66666667%;
}

.col-xs-offset-1 {
	margin-left: 8.33333333%;
}

.col-xs-offset-0 {
	margin-left: 0%;
}

@media(min-width:640px) {

	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12 {
		float: left;
	}

	.col-sm-12 {
		width: 100%;
	}

	.col-sm-11 {
		width: 91.66666667%;
	}

	.col-sm-10 {
		width: 83.33333333%;
	}

	.col-sm-9 {
		width: 75%;
	}

	.col-sm-8 {
		width: 66.66666667%;
	}

	.col-sm-7 {
		width: 58.33333333%;
	}

	.col-sm-6 {
		width: 50%;
	}

	.col-sm-5 {
		width: 41.66666667%;
	}

	.col-sm-4 {
		width: 33.33333333%;
	}

	.col-sm-3 {
		width: 25%;
	}

	.col-sm-2 {
		width: 16.66666667%;
	}

	.col-sm-1 {
		width: 8.33333333%;
	}

	.col-sm-pull-12 {
		right: 100%;
	}

	.col-sm-pull-11 {
		right: 91.66666667%;
	}

	.col-sm-pull-10 {
		right: 83.33333333%;
	}

	.col-sm-pull-9 {
		right: 75%;
	}

	.col-sm-pull-8 {
		right: 66.66666667%;
	}

	.col-sm-pull-7 {
		right: 58.33333333%;
	}

	.col-sm-pull-6 {
		right: 50%;
	}

	.col-sm-pull-5 {
		right: 41.66666667%;
	}

	.col-sm-pull-4 {
		right: 33.33333333%;
	}

	.col-sm-pull-3 {
		right: 25%;
	}

	.col-sm-pull-2 {
		right: 16.66666667%;
	}

	.col-sm-pull-1 {
		right: 8.33333333%;
	}

	.col-sm-pull-0 {
		right: auto;
	}

	.col-sm-push-12 {
		left: 100%;
	}

	.col-sm-push-11 {
		left: 91.66666667%;
	}

	.col-sm-push-10 {
		left: 83.33333333%;
	}

	.col-sm-push-9 {
		left: 75%;
	}

	.col-sm-push-8 {
		left: 66.66666667%;
	}

	.col-sm-push-7 {
		left: 58.33333333%;
	}

	.col-sm-push-6 {
		left: 50%;
	}

	.col-sm-push-5 {
		left: 41.66666667%;
	}

	.col-sm-push-4 {
		left: 33.33333333%;
	}

	.col-sm-push-3 {
		left: 25%;
	}

	.col-sm-push-2 {
		left: 16.66666667%;
	}

	.col-sm-push-1 {
		left: 8.33333333%;
	}

	.col-sm-push-0 {
		left: auto;
	}

	.col-sm-offset-12 {
		margin-left: 100%;
	}

	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-sm-offset-9 {
		margin-left: 75%;
	}

	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-sm-offset-6 {
		margin-left: 50%;
	}

	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-sm-offset-3 {
		margin-left: 25%;
	}

	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-sm-offset-0 {
		margin-left: 0%;
	}
}

@media(min-width:1024px) {

	.col-md-1,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-md-10,
	.col-md-11,
	.col-md-12 {
		float: left;
	}

	.col-md-12 {
		width: 100%;
	}

	.col-md-11 {
		width: 91.66666667%;
	}

	.col-md-10 {
		width: 83.33333333%;
	}

	.col-md-9 {
		width: 75%;
	}

	.col-md-8 {
		width: 66.66666667%;
	}

	.col-md-7 {
		width: 58.33333333%;
	}

	.col-md-6 {
		width: 50%;
	}

	.col-md-5 {
		width: 41.66666667%;
	}

	.col-md-4 {
		width: 33.33333333%;
	}

	.col-md-3 {
		width: 25%;
	}

	.col-md-2 {
		width: 16.66666667%;
	}

	.col-md-1 {
		width: 8.33333333%;
	}

	.col-md-pull-12 {
		right: 100%;
	}

	.col-md-pull-11 {
		right: 91.66666667%;
	}

	.col-md-pull-10 {
		right: 83.33333333%;
	}

	.col-md-pull-9 {
		right: 75%;
	}

	.col-md-pull-8 {
		right: 66.66666667%;
	}

	.col-md-pull-7 {
		right: 58.33333333%;
	}

	.col-md-pull-6 {
		right: 50%;
	}

	.col-md-pull-5 {
		right: 41.66666667%;
	}

	.col-md-pull-4 {
		right: 33.33333333%;
	}

	.col-md-pull-3 {
		right: 25%;
	}

	.col-md-pull-2 {
		right: 16.66666667%;
	}

	.col-md-pull-1 {
		right: 8.33333333%;
	}

	.col-md-pull-0 {
		right: auto;
	}

	.col-md-push-12 {
		left: 100%;
	}

	.col-md-push-11 {
		left: 91.66666667%;
	}

	.col-md-push-10 {
		left: 83.33333333%;
	}

	.col-md-push-9 {
		left: 75%;
	}

	.col-md-push-8 {
		left: 66.66666667%;
	}

	.col-md-push-7 {
		left: 58.33333333%;
	}

	.col-md-push-6 {
		left: 50%;
	}

	.col-md-push-5 {
		left: 41.66666667%;
	}

	.col-md-push-4 {
		left: 33.33333333%;
	}

	.col-md-push-3 {
		left: 25%;
	}

	.col-md-push-2 {
		left: 16.66666667%;
	}

	.col-md-push-1 {
		left: 8.33333333%;
	}

	.col-md-push-0 {
		left: auto;
	}

	.col-md-offset-12 {
		margin-left: 100%;
	}

	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-md-offset-9 {
		margin-left: 75%;
	}

	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-md-offset-6 {
		margin-left: 50%;
	}

	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-md-offset-3 {
		margin-left: 25%;
	}

	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-md-offset-0 {
		margin-left: 0%;
	}
}

@media(min-width:1400px) {

	.col-lg-1,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12 {
		float: left;
	}

	.col-lg-12 {
		width: 100%;
	}

	.col-lg-11 {
		width: 91.66666667%;
	}

	.col-lg-10 {
		width: 83.33333333%;
	}

	.col-lg-9 {
		width: 75%;
	}

	.col-lg-8 {
		width: 66.66666667%;
	}

	.col-lg-7 {
		width: 58.33333333%;
	}

	.col-lg-6 {
		width: 50%;
	}

	.col-lg-5 {
		width: 41.66666667%;
	}

	.col-lg-4 {
		width: 33.33333333%;
	}

	.col-lg-3 {
		width: 25%;
	}

	.col-lg-2 {
		width: 16.66666667%;
	}

	.col-lg-1 {
		width: 8.33333333%;
	}

	.col-lg-pull-12 {
		right: 100%;
	}

	.col-lg-pull-11 {
		right: 91.66666667%;
	}

	.col-lg-pull-10 {
		right: 83.33333333%;
	}

	.col-lg-pull-9 {
		right: 75%;
	}

	.col-lg-pull-8 {
		right: 66.66666667%;
	}

	.col-lg-pull-7 {
		right: 58.33333333%;
	}

	.col-lg-pull-6 {
		right: 50%;
	}

	.col-lg-pull-5 {
		right: 41.66666667%;
	}

	.col-lg-pull-4 {
		right: 33.33333333%;
	}

	.col-lg-pull-3 {
		right: 25%;
	}

	.col-lg-pull-2 {
		right: 16.66666667%;
	}

	.col-lg-pull-1 {
		right: 8.33333333%;
	}

	.col-lg-pull-0 {
		right: auto;
	}

	.col-lg-push-12 {
		left: 100%;
	}

	.col-lg-push-11 {
		left: 91.66666667%;
	}

	.col-lg-push-10 {
		left: 83.33333333%;
	}

	.col-lg-push-9 {
		left: 75%;
	}

	.col-lg-push-8 {
		left: 66.66666667%;
	}

	.col-lg-push-7 {
		left: 58.33333333%;
	}

	.col-lg-push-6 {
		left: 50%;
	}

	.col-lg-push-5 {
		left: 41.66666667%;
	}

	.col-lg-push-4 {
		left: 33.33333333%;
	}

	.col-lg-push-3 {
		left: 25%;
	}

	.col-lg-push-2 {
		left: 16.66666667%;
	}

	.col-lg-push-1 {
		left: 8.33333333%;
	}

	.col-lg-push-0 {
		left: auto;
	}

	.col-lg-offset-12 {
		margin-left: 100%;
	}

	.col-lg-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-lg-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-lg-offset-9 {
		margin-left: 75%;
	}

	.col-lg-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-lg-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-lg-offset-6 {
		margin-left: 50%;
	}

	.col-lg-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-lg-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-lg-offset-3 {
		margin-left: 25%;
	}

	.col-lg-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-lg-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-lg-offset-0 {
		margin-left: 0%;
	}
}

table {
	background-color: transparent;
}

caption {
	padding-top: 8px;
	padding-bottom: 8px;
	color: #777777;
	text-align: left;
}

th {
	text-align: left;
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #e5e5e5;
}

.table>thead>tr>th {
	vertical-align: bottom;
	border-bottom: 2px solid #e5e5e5;
}

.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>td {
	border-top: 0;
}

.table>tbody+tbody {
	border-top: 2px solid #e5e5e5;
}

.table .table {
	background-color: #ffffff;
}

.table-condensed>thead>tr>th,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>td {
	padding: 5px;
}

.table-bordered {
	border: 1px solid #e5e5e5;
}

.table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
	border: 1px solid #e5e5e5;
}

.table-bordered>thead>tr>th,
.table-bordered>thead>tr>td {
	border-bottom-width: 2px;
}

.table-striped>tbody>tr:nth-of-type(odd) {
	background-color: #f9f9f9;
}

.table-hover>tbody>tr:hover {
	background-color: #f5f5f5;
}

table col[class*="col-"] {
	position: static;
	float: none;
	display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
	position: static;
	float: none;
	display: table-cell;
}

.table>thead>tr>td.active,
.table>tbody>tr>td.active,
.table>tfoot>tr>td.active,
.table>thead>tr>th.active,
.table>tbody>tr>th.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>tbody>tr.active>td,
.table>tfoot>tr.active>td,
.table>thead>tr.active>th,
.table>tbody>tr.active>th,
.table>tfoot>tr.active>th {
	background-color: #f5f5f5;
}

.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover,
.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr.active:hover>th {
	background-color: #e8e8e8;
}

.table>thead>tr>td.success,
.table>tbody>tr>td.success,
.table>tfoot>tr>td.success,
.table>thead>tr>th.success,
.table>tbody>tr>th.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>tbody>tr.success>td,
.table>tfoot>tr.success>td,
.table>thead>tr.success>th,
.table>tbody>tr.success>th,
.table>tfoot>tr.success>th {
	background-color: #dff0d8;
}

.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover,
.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr.success:hover>th {
	background-color: #d0e9c6;
}

.table>thead>tr>td.info,
.table>tbody>tr>td.info,
.table>tfoot>tr>td.info,
.table>thead>tr>th.info,
.table>tbody>tr>th.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>tbody>tr.info>td,
.table>tfoot>tr.info>td,
.table>thead>tr.info>th,
.table>tbody>tr.info>th,
.table>tfoot>tr.info>th {
	background-color: #d9edf7;
}

.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover,
.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr.info:hover>th {
	background-color: #c4e3f3;
}

.table>thead>tr>td.warning,
.table>tbody>tr>td.warning,
.table>tfoot>tr>td.warning,
.table>thead>tr>th.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>tbody>tr.warning>td,
.table>tfoot>tr.warning>td,
.table>thead>tr.warning>th,
.table>tbody>tr.warning>th,
.table>tfoot>tr.warning>th {
	background-color: #fcf8e3;
}

.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover,
.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr.warning:hover>th {
	background-color: #faf2cc;
}

.table>thead>tr>td.danger,
.table>tbody>tr>td.danger,
.table>tfoot>tr>td.danger,
.table>thead>tr>th.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>tbody>tr.danger>td,
.table>tfoot>tr.danger>td,
.table>thead>tr.danger>th,
.table>tbody>tr.danger>th,
.table>tfoot>tr.danger>th {
	background-color: #f2dede;
}

.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover,
.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
	background-color: #ebcccc;
}

.table-responsive {
	overflow-x: auto;
	min-height: 0.01%;
}

@media screen and (max-width:639px) {
	.table-responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #e5e5e5;
	}

	.table-responsive>.table {
		margin-bottom: 0;
	}

	.table-responsive>.table>thead>tr>th,
	.table-responsive>.table>tbody>tr>th,
	.table-responsive>.table>tfoot>tr>th,
	.table-responsive>.table>thead>tr>td,
	.table-responsive>.table>tbody>tr>td,
	.table-responsive>.table>tfoot>tr>td {
		white-space: nowrap;
	}

	.table-responsive>.table-bordered {
		border: 0;
	}

	.table-responsive>.table-bordered>thead>tr>th:first-child,
	.table-responsive>.table-bordered>tbody>tr>th:first-child,
	.table-responsive>.table-bordered>tfoot>tr>th:first-child,
	.table-responsive>.table-bordered>thead>tr>td:first-child,
	.table-responsive>.table-bordered>tbody>tr>td:first-child,
	.table-responsive>.table-bordered>tfoot>tr>td:first-child {
		border-left: 0;
	}

	.table-responsive>.table-bordered>thead>tr>th:last-child,
	.table-responsive>.table-bordered>tbody>tr>th:last-child,
	.table-responsive>.table-bordered>tfoot>tr>th:last-child,
	.table-responsive>.table-bordered>thead>tr>td:last-child,
	.table-responsive>.table-bordered>tbody>tr>td:last-child,
	.table-responsive>.table-bordered>tfoot>tr>td:last-child {
		border-right: 0;
	}

	.table-responsive>.table-bordered>tbody>tr:last-child>th,
	.table-responsive>.table-bordered>tfoot>tr:last-child>th,
	.table-responsive>.table-bordered>tbody>tr:last-child>td,
	.table-responsive>.table-bordered>tfoot>tr:last-child>td {
		border-bottom: 0;
	}
}

fieldset {
	padding: 0;
	margin: 0;
	border: 0;
	min-width: 0;
}

legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 20px;
	font-size: 21px;
	line-height: inherit;
	color: #333333;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: bold;
}

input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
	margin: 4px 0 0;
	margin-top: 1px \9;
	line-height: normal;
}

input[type="file"] {
	display: block;
}

input[type="range"] {
	display: block;
	width: 100%;
}

select[multiple],
select[size] {
	height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

output {
	display: block;
	padding-top: 7px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #19212b;
}

.form-control {
	display: block;
	width: 100%;
	height: 32px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #19212b;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid #cccccc;
	border-radius: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-sm-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
	border-color: #5adfd9;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(90, 223, 217, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(90, 223, 217, 0.6);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(90, 223, 217, 0.6);
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(90, 223, 217, 0.6);
}

.form-control::-moz-placeholder {
	color: #999999;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #999999;
}

.form-control::-webkit-input-placeholder {
	color: #999999;
}

.form-control::-ms-expand {
	border: 0;
	background-color: transparent;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: #eeeeee;
	opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
	cursor: not-allowed;
}

textarea.form-control {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

	input[type="date"].form-control,
	input[type="time"].form-control,
	input[type="datetime-local"].form-control,
	input[type="month"].form-control {
		line-height: 32px;
	}

	input[type="date"].input-sm,
	input[type="time"].input-sm,
	input[type="datetime-local"].input-sm,
	input[type="month"].input-sm,
	.input-group-sm input[type="date"],
	.input-group-sm input[type="time"],
	.input-group-sm input[type="datetime-local"],
	.input-group-sm input[type="month"] {
		line-height: 40px;
	}

	input[type="date"].input-lg,
	input[type="time"].input-lg,
	input[type="datetime-local"].input-lg,
	input[type="month"].input-lg,
	.input-group-lg input[type="date"],
	.input-group-lg input[type="time"],
	.input-group-lg input[type="datetime-local"],
	.input-group-lg input[type="month"] {
		line-height: 42px;
	}
}

.form-group {
	margin-bottom: 15px;
}

.radio,
.checkbox {
	position: relative;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}

.radio label,
.checkbox label {
	min-height: 20px;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: normal;
	cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
	position: absolute;
	margin-left: -20px;
	margin-top: 4px \9;
}

.radio+.radio,
.checkbox+.checkbox {
	margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 0;
	vertical-align: middle;
	font-weight: normal;
	cursor: pointer;
}

.radio-inline+.radio-inline,
.checkbox-inline+.checkbox-inline {
	margin-top: 0;
	margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
	cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
	cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
	cursor: not-allowed;
}

.form-control-static {
	padding-top: 7px;
	padding-bottom: 7px;
	margin-bottom: 0;
	min-height: 34px;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
	padding-left: 0;
	padding-right: 0;
}

.input-sm {
	height: 40px;
	padding: 5px 10px;
	font-size: 13px;
	line-height: 1.5;
	border-radius: 0;
}

select.input-sm {
	height: 40px;
	line-height: 40px;
}

textarea.input-sm,
select[multiple].input-sm {
	height: auto;
}

.form-group-sm .form-control {
	height: 40px;
	padding: 5px 10px;
	font-size: 13px;
	line-height: 1.5;
	border-radius: 0;
}

.form-group-sm select.form-control {
	height: 40px;
	line-height: 40px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
	height: auto;
}

.form-group-sm .form-control-static {
	height: 40px;
	min-height: 33px;
	padding: 6px 10px;
	font-size: 13px;
	line-height: 1.5;
}

.input-lg {
	height: 42px;
	padding: 10px 15px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 0;
}

select.input-lg {
	height: 42px;
	line-height: 42px;
}

textarea.input-lg,
select[multiple].input-lg {
	height: auto;
}

.form-group-lg .form-control {
	height: 42px;
	padding: 10px 15px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 0;
}

.form-group-lg select.form-control {
	height: 42px;
	line-height: 42px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
	height: auto;
}

.form-group-lg .form-control-static {
	height: 42px;
	min-height: 38px;
	padding: 11px 15px;
	font-size: 18px;
	line-height: 1.3333333;
}

.has-feedback {
	position: relative;
}

.has-feedback .form-control {
	padding-right: 40px;
}

.form-control-feedback {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	pointer-events: none;
}

.input-lg+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.form-group-lg .form-control+.form-control-feedback {
	width: 42px;
	height: 42px;
	line-height: 42px;
}

.input-sm+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.form-group-sm .form-control+.form-control-feedback {
	width: 40px;
	height: 40px;
	line-height: 40px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
	color: #3e5983;
}

.has-success .form-control {
	border-color: #3e5983;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
	border-color: #2e4160;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #6d8bba;
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #6d8bba;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #6d8bba;
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #6d8bba;
}

.has-success .input-group-addon {
	color: #3e5983;
	border-color: #3e5983;
	background-color: #dff0d8;
}

.has-success .form-control-feedback {
	color: #3e5983;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
	color: #8a6d3b;
}

.has-warning .form-control {
	border-color: #8a6d3b;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
	border-color: #66512c;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
	color: #8a6d3b;
	border-color: #8a6d3b;
	background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
	color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
	color: #19212b;
}

.has-error .form-control {
	border-color: #19212b;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
	border-color: #06080b;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #3f536c;
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #3f536c;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #3f536c;
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #3f536c;
}

.has-error .input-group-addon {
	color: #19212b;
	border-color: #19212b;
	background-color: #f2dede;
}

.has-error .form-control-feedback {
	color: #19212b;
}

.has-feedback label~.form-control-feedback {
	top: 25px;
}

.has-feedback label.sr-only~.form-control-feedback {
	top: 0;
}

.help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #485f7c;
}

@media(min-width:640px) {
	.form-inline .form-group {
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle;
	}

	.form-inline .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle;
	}

	.form-inline .form-control-static {
		display: inline-block;
	}

	.form-inline .input-group {
		display: inline-table;
		vertical-align: middle;
	}

	.form-inline .input-group .input-group-addon,
	.form-inline .input-group .input-group-btn,
	.form-inline .input-group .form-control {
		width: auto;
	}

	.form-inline .input-group>.form-control {
		width: 100%;
	}

	.form-inline .control-label {
		margin-bottom: 0;
		vertical-align: middle;
	}

	.form-inline .radio,
	.form-inline .checkbox {
		display: inline-block;
		margin-top: 0;
		margin-bottom: 0;
		vertical-align: middle;
	}

	.form-inline .radio label,
	.form-inline .checkbox label {
		padding-left: 0;
	}

	.form-inline .radio input[type="radio"],
	.form-inline .checkbox input[type="checkbox"] {
		position: relative;
		margin-left: 0;
	}

	.form-inline .has-feedback .form-control-feedback {
		top: 0;
	}
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
	min-height: 27px;
}

.form-horizontal .form-group {
	margin-left: -10px;
	margin-right: -10px;
}

@media(min-width:640px) {
	.form-horizontal .control-label {
		text-align: right;
		margin-bottom: 0;
		padding-top: 7px;
	}
}

.form-horizontal .has-feedback .form-control-feedback {
	right: 10px;
}

@media(min-width:640px) {
	.form-horizontal .form-group-lg .control-label {
		padding-top: 11px;
		font-size: 18px;
	}
}

@media(min-width:640px) {
	.form-horizontal .form-group-sm .control-label {
		padding-top: 6px;
		font-size: 13px;
	}
}

.btn {
	display: inline-block;
	margin-bottom: 0;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	white-space: nowrap;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	border-radius: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
	color: #ffffff;
	text-decoration: none;
}

.btn:active,
.btn.active {
	outline: 0;
	background-image: none;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-o-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	opacity: 0.65;
	filter: alpha(opacity=65);
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-default {
	color: #ffffff;
	background-color: #ec7205;
	border-color: #ec7205;
}

.btn-default:focus,
.btn-default.focus {
	color: #ffffff;
	background-color: #ba5a04;
	border-color: #6f3602;
}

.btn-default:hover {
	color: #ffffff;
	background-color: #ba5a04;
	border-color: #b05504;
}

.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
	color: #ffffff;
	background-color: #ba5a04;
	border-color: #b05504;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open>.dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open>.dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open>.dropdown-toggle.btn-default.focus {
	color: #ffffff;
	background-color: #974903;
	border-color: #6f3602;
}

.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
	background-image: none;
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
	background-color: #ec7205;
	border-color: #ec7205;
}

.btn-default .badge {
	color: #ec7205;
	background-color: #ffffff;
}

.btn-primary {
	color: #ffffff;
	background-color: #47b6b1;
	border-color: #47b6b1;
}

.btn-primary:focus,
.btn-primary.focus {
	color: #ffffff;
	background-color: #39918d;
	border-color: #235a58;
}

.btn-primary:hover {
	color: #ffffff;
	background-color: #39918d;
	border-color: #368a86;
}

.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
	color: #ffffff;
	background-color: #39918d;
	border-color: #368a86;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open>.dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open>.dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open>.dropdown-toggle.btn-primary.focus {
	color: #ffffff;
	background-color: #2f7874;
	border-color: #235a58;
}

.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
	background-image: none;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
	background-color: #47b6b1;
	border-color: #47b6b1;
}

.btn-primary .badge {
	color: #47b6b1;
	background-color: #ffffff;
}

.btn-success {
	color: #ffffff;
	background-color: #5cb85c;
	border-color: transparent;
}

.btn-success:focus,
.btn-success.focus {
	color: #ffffff;
	background-color: #449d44;
	border-color: rgba(0, 0, 0, 0);
}

.btn-success:hover {
	color: #ffffff;
	background-color: #449d44;
	border-color: rgba(0, 0, 0, 0);
}

.btn-success:active,
.btn-success.active,
.open>.dropdown-toggle.btn-success {
	color: #ffffff;
	background-color: #449d44;
	border-color: rgba(0, 0, 0, 0);
}

.btn-success:active:hover,
.btn-success.active:hover,
.open>.dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open>.dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open>.dropdown-toggle.btn-success.focus {
	color: #ffffff;
	background-color: #398439;
	border-color: rgba(0, 0, 0, 0);
}

.btn-success:active,
.btn-success.active,
.open>.dropdown-toggle.btn-success {
	background-image: none;
}

.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
	background-color: #5cb85c;
	border-color: transparent;
}

.btn-success .badge {
	color: #5cb85c;
	background-color: #ffffff;
}

.btn-info {
	color: #ffffff;
	background-color: #000000;
	border-color: transparent;
}

.btn-info:focus,
.btn-info.focus {
	color: #ffffff;
	background-color: #000000;
	border-color: rgba(0, 0, 0, 0);
}

.btn-info:hover {
	color: #ffffff;
	background-color: #000000;
	border-color: rgba(0, 0, 0, 0);
}

.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
	color: #ffffff;
	background-color: #000000;
	border-color: rgba(0, 0, 0, 0);
}

.btn-info:active:hover,
.btn-info.active:hover,
.open>.dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open>.dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open>.dropdown-toggle.btn-info.focus {
	color: #ffffff;
	background-color: #000000;
	border-color: rgba(0, 0, 0, 0);
}

.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
	background-image: none;
}

.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
	background-color: #000000;
	border-color: transparent;
}

.btn-info .badge {
	color: #000000;
	background-color: #ffffff;
}

.btn-warning {
	color: #ffffff;
	background-color: #f0ad4e;
	border-color: transparent;
}

.btn-warning:focus,
.btn-warning.focus {
	color: #ffffff;
	background-color: #ec971f;
	border-color: rgba(0, 0, 0, 0);
}

.btn-warning:hover {
	color: #ffffff;
	background-color: #ec971f;
	border-color: rgba(0, 0, 0, 0);
}

.btn-warning:active,
.btn-warning.active,
.open>.dropdown-toggle.btn-warning {
	color: #ffffff;
	background-color: #ec971f;
	border-color: rgba(0, 0, 0, 0);
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open>.dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open>.dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open>.dropdown-toggle.btn-warning.focus {
	color: #ffffff;
	background-color: #d58512;
	border-color: rgba(0, 0, 0, 0);
}

.btn-warning:active,
.btn-warning.active,
.open>.dropdown-toggle.btn-warning {
	background-image: none;
}

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
	background-color: #f0ad4e;
	border-color: transparent;
}

.btn-warning .badge {
	color: #f0ad4e;
	background-color: #ffffff;
}

.btn-danger {
	color: #ffffff;
	background-color: #d9534f;
	border-color: transparent;
}

.btn-danger:focus,
.btn-danger.focus {
	color: #ffffff;
	background-color: #c9302c;
	border-color: rgba(0, 0, 0, 0);
}

.btn-danger:hover {
	color: #ffffff;
	background-color: #c9302c;
	border-color: rgba(0, 0, 0, 0);
}

.btn-danger:active,
.btn-danger.active,
.open>.dropdown-toggle.btn-danger {
	color: #ffffff;
	background-color: #c9302c;
	border-color: rgba(0, 0, 0, 0);
}

.btn-danger:active:hover,
.btn-danger.active:hover,
.open>.dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open>.dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open>.dropdown-toggle.btn-danger.focus {
	color: #ffffff;
	background-color: #ac2925;
	border-color: rgba(0, 0, 0, 0);
}

.btn-danger:active,
.btn-danger.active,
.open>.dropdown-toggle.btn-danger {
	background-image: none;
}

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
	background-color: #d9534f;
	border-color: transparent;
}

.btn-danger .badge {
	color: #d9534f;
	background-color: #ffffff;
}

.btn-link {
	color: #ec7205;
	font-weight: normal;
	border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
	background-color: transparent;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
	color: #154259;
	text-decoration: underline;
	background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
	color: #777777;
	text-decoration: none;
}

.btn-lg,
.btn-group-lg>.btn {
	padding: 10px 15px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 0;
}

.btn-sm,
.btn-group-sm>.btn {
	padding: 5px 10px;
	font-size: 13px;
	line-height: 1.5;
	border-radius: 0;
}

.btn-xs,
.btn-group-xs>.btn {
	padding: 1px 5px;
	font-size: 13px;
	line-height: 1.5;
	border-radius: 0;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-block+.btn-block {
	margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
	width: 100%;
}

.fade {
	opacity: 0;
	transition: opacity 0.15s linear;
	-moz-transition: opacity 0.15s linear;
	-webkit-transition: opacity 0.15s linear;
	-o-transition: opacity 0.15s linear;
	-sm-transition: opacity 0.15s linear;
}

.fade.in {
	opacity: 1;
}

.collapse {
	display: none;
}

.collapse.in {
	display: block;
}

tr.collapse.in {
	display: table-row;
}

tbody.collapse.in {
	display: table-row-group;
}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition-property: height, visibility;
	transition-property: height, visibility;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-top: 4px solid \9;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

.dropup,
.dropdown {
	position: relative;
}

.dropdown-toggle:focus {
	outline: 0;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	list-style: none;
	font-size: 14px;
	text-align: left;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 0;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	-o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	background-clip: padding-box;
}

.dropdown-menu.pull-right {
	right: 0;
	left: auto;
}

.dropdown-menu .divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5;
}

.dropdown-menu>li>a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 1.42857143;
	color: #333333;
	white-space: nowrap;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
	text-decoration: none;
	color: #262626;
	background-color: #f5f5f5;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
	color: #ffffff;
	text-decoration: none;
	outline: 0;
	background-color: #47b6b1;
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
	color: #777777;
}

.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
	text-decoration: none;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	cursor: not-allowed;
}

.open>.dropdown-menu {
	display: block;
}

.open>a {
	outline: 0;
}

.dropdown-menu-right {
	left: auto;
	right: 0;
}

.dropdown-menu-left {
	left: 0;
	right: auto;
}

.dropdown-header {
	display: block;
	padding: 3px 20px;
	font-size: 13px;
	line-height: 1.42857143;
	color: #777777;
	white-space: nowrap;
}

.dropdown-backdrop {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 990;
}

.pull-right>.dropdown-menu {
	right: 0;
	left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
	border-top: 0;
	border-bottom: 4px dashed;
	border-bottom: 4px solid \9;
	content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 2px;
}

@media(min-width:640px) {
	.navbar-right .dropdown-menu {
		left: auto;
		right: 0;
	}

	.navbar-right .dropdown-menu-left {
		left: 0;
		right: auto;
	}
}

.btn-group,
.btn-group-vertical {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.btn-group>.btn,
.btn-group-vertical>.btn {
	position: relative;
	float: left;
}

.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover,
.btn-group>.btn:focus,
.btn-group-vertical>.btn:focus,
.btn-group>.btn:active,
.btn-group-vertical>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn.active {
	z-index: 2;
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
	margin-left: -1px;
}

.btn-toolbar {
	margin-left: -5px;
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
	float: left;
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
	margin-left: 5px;
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0;
}

.btn-group>.btn:first-child {
	margin-left: 0;
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.btn-group>.btn-group {
	float: left;
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
	border-radius: 0;
}

.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
	outline: 0;
}

.btn-group>.btn+.dropdown-toggle {
	padding-left: 8px;
	padding-right: 8px;
}

.btn-group>.btn-lg+.dropdown-toggle {
	padding-left: 12px;
	padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-o-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.btn .caret {
	margin-left: 0;
}

.btn-lg .caret {
	border-width: 5px 5px 0;
	border-bottom-width: 0;
}

.dropup .btn-lg .caret {
	border-width: 0 5px 5px;
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
	display: block;
	float: none;
	width: 100%;
	max-width: 100%;
}

.btn-group-vertical>.btn-group>.btn {
	float: none;
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
	margin-top: -1px;
	margin-left: 0;
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
	border-radius: 0;
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
	border-radius: 0;
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.btn-group-justified {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-collapse: separate;
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
	float: none;
	display: table-cell;
	width: 1%;
}

.btn-group-justified>.btn-group .btn {
	width: 100%;
}

.btn-group-justified>.btn-group .dropdown-menu {
	left: auto;
}

[data-toggle="buttons"]>.btn input[type="radio"],
[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],
[data-toggle="buttons"]>.btn input[type="checkbox"],
[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}

.input-group {
	position: relative;
	display: table;
	border-collapse: separate;
}

.input-group[class*="col-"] {
	float: none;
	padding-left: 0;
	padding-right: 0;
}

.input-group .form-control {
	position: relative;
	z-index: 2;
	float: left;
	width: 100%;
	margin-bottom: 0;
}

.input-group .form-control:focus {
	z-index: 3;
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
	height: 42px;
	padding: 10px 15px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 0;
}

select.input-group-lg>.form-control,
select.input-group-lg>.input-group-addon,
select.input-group-lg>.input-group-btn>.btn {
	height: 42px;
	line-height: 42px;
}

textarea.input-group-lg>.form-control,
textarea.input-group-lg>.input-group-addon,
textarea.input-group-lg>.input-group-btn>.btn,
select[multiple].input-group-lg>.form-control,
select[multiple].input-group-lg>.input-group-addon,
select[multiple].input-group-lg>.input-group-btn>.btn {
	height: auto;
}

.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
	padding: 5px 10px;
	font-size: 13px;
	line-height: 1.5;
	height: 40px;
	padding: 9px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	border-radius: 0;
}

select.input-group-sm>.form-control,
select.input-group-sm>.input-group-addon,
select.input-group-sm>.input-group-btn>.btn {
	height: 40px;
	line-height: 40px;
}

textarea.input-group-sm>.form-control,
textarea.input-group-sm>.input-group-addon,
textarea.input-group-sm>.input-group-btn>.btn,
select[multiple].input-group-sm>.form-control,
select[multiple].input-group-sm>.input-group-addon,
select[multiple].input-group-sm>.input-group-btn>.btn {
	height: auto;
}

select.input-group-sm>.form-control,
select.input-group-sm>.input-group-addon,
select.input-group-sm>.input-group-btn>.btn {
	height: 40px;
	line-height: 40px;
}

textarea.input-group-sm>.form-control,
textarea.input-group-sm>.input-group-addon,
textarea.input-group-sm>.input-group-btn>.btn,
select[multiple].input-group-sm>.form-control,
select[multiple].input-group-sm>.input-group-addon,
select[multiple].input-group-sm>.input-group-btn>.btn {
	height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
	display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
	border-radius: 0;
}

.input-group-addon,
.input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
}

.input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	color: #19212b;
	text-align: center;
	background-color: #eeeeee;
	border: 1px solid #cccccc;
	border-radius: 0;
}

.input-group-addon.input-sm {
	padding: 5px 10px;
	font-size: 13px;
	border-radius: 0;
}

.input-group-addon.input-lg {
	padding: 10px 15px;
	font-size: 18px;
	border-radius: 0;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
	margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.input-group-addon:first-child {
	border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.input-group-addon:last-child {
	border-left: 0;
}

.input-group-btn {
	position: relative;
	font-size: 0;
	white-space: nowrap;
}

.input-group-btn>.btn {
	position: relative;
}

.input-group-btn>.btn+.btn {
	margin-left: -1px;
}

.input-group-btn>.btn:hover,
.input-group-btn>.btn:focus,
.input-group-btn>.btn:active {
	z-index: 2;
}

.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
	margin-right: -1px;
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
	z-index: 2;
	margin-left: -1px;
}

.nav {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

.nav>li {
	position: relative;
	display: block;
}

.nav>li>a {
	position: relative;
	display: block;
	padding: 10px 15px;
}

.nav>li>a:hover,
.nav>li>a:focus {
	text-decoration: none;
	background-color: #eeeeee;
}

.nav>li.disabled>a {
	color: #777777;
}

.nav>li.disabled>a:hover,
.nav>li.disabled>a:focus {
	color: #777777;
	text-decoration: none;
	background-color: transparent;
	cursor: not-allowed;
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
	background-color: #eeeeee;
	border-color: #ec7205;
}

.nav .nav-divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5;
}

.nav>li>a>img {
	max-width: none;
}

.nav-tabs {
	border-bottom: 1px solid #dddddd;
}

.nav-tabs>li {
	float: left;
	margin-bottom: -1px;
}

.nav-tabs>li>a {
	margin-right: 2px;
	line-height: 1.42857143;
	border: 1px solid transparent;
	border-radius: 0 0 0 0;
}

.nav-tabs>li>a:hover {
	border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-bottom-color: transparent;
	cursor: default;
}

.nav-tabs.nav-justified {
	width: 100%;
	border-bottom: 0;
}

.nav-tabs.nav-justified>li {
	float: none;
}

.nav-tabs.nav-justified>li>a {
	text-align: center;
	margin-bottom: 5px;
}

.nav-tabs.nav-justified>.dropdown .dropdown-menu {
	top: auto;
	left: auto;
}

@media(min-width:640px) {
	.nav-tabs.nav-justified>li {
		display: table-cell;
		width: 1%;
	}

	.nav-tabs.nav-justified>li>a {
		margin-bottom: 0;
	}
}

.nav-tabs.nav-justified>li>a {
	margin-right: 0;
	border-radius: 0;
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:hover,
.nav-tabs.nav-justified>.active>a:focus {
	border: 1px solid #dddddd;
}

@media(min-width:640px) {
	.nav-tabs.nav-justified>li>a {
		border-bottom: 1px solid #dddddd;
		border-radius: 0 0 0 0;
	}

	.nav-tabs.nav-justified>.active>a,
	.nav-tabs.nav-justified>.active>a:hover,
	.nav-tabs.nav-justified>.active>a:focus {
		border-bottom-color: #ffffff;
	}
}

.nav-pills>li {
	float: left;
}

.nav-pills>li>a {
	border-radius: 0;
}

.nav-pills>li+li {
	margin-left: 2px;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
	color: #ffffff;
	background-color: #47b6b1;
}

.nav-stacked>li {
	float: none;
}

.nav-stacked>li+li {
	margin-top: 2px;
	margin-left: 0;
}

.nav-justified {
	width: 100%;
}

.nav-justified>li {
	float: none;
}

.nav-justified>li>a {
	text-align: center;
	margin-bottom: 5px;
}

.nav-justified>.dropdown .dropdown-menu {
	top: auto;
	left: auto;
}

@media(min-width:640px) {
	.nav-justified>li {
		display: table-cell;
		width: 1%;
	}

	.nav-justified>li>a {
		margin-bottom: 0;
	}
}

.nav-tabs-justified {
	border-bottom: 0;
}

.nav-tabs-justified>li>a {
	margin-right: 0;
	border-radius: 0;
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:hover,
.nav-tabs-justified>.active>a:focus {
	border: 1px solid #dddddd;
}

@media(min-width:640px) {
	.nav-tabs-justified>li>a {
		border-bottom: 1px solid #dddddd;
		border-radius: 0 0 0 0;
	}

	.nav-tabs-justified>.active>a,
	.nav-tabs-justified>.active>a:hover,
	.nav-tabs-justified>.active>a:focus {
		border-bottom-color: #ffffff;
	}
}

.tab-content>.tab-pane {
	display: none;
}

.tab-content>.active {
	display: block;
}

.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.navbar {
	position: relative;
	min-height: 50px;
	margin-bottom: 20px;
	border: 1px solid transparent;
}

@media(min-width:640px) {
	.navbar {
		border-radius: 0;
	}
}

@media(min-width:640px) {
	.navbar-header {
		float: left;
	}
}

.navbar-collapse {
	overflow-x: visible;
	padding-right: 10px;
	padding-left: 10px;
	border-top: 1px solid transparent;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
	overflow-y: auto;
}

@media(min-width:640px) {
	.navbar-collapse {
		width: auto;
		border-top: 0;
		box-shadow: none;
	}

	.navbar-collapse.collapse {
		display: block !important;
		height: auto !important;
		padding-bottom: 0;
		overflow: visible !important;
	}

	.navbar-collapse.in {
		overflow-y: visible;
	}

	.navbar-fixed-top .navbar-collapse,
	.navbar-static-top .navbar-collapse,
	.navbar-fixed-bottom .navbar-collapse {
		padding-left: 0;
		padding-right: 0;
	}
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
	max-height: 340px;
}

@media(max-device-width:360px) and (orientation:landscape) {

	.navbar-fixed-top .navbar-collapse,
	.navbar-fixed-bottom .navbar-collapse {
		max-height: 200px;
	}
}

.container>.navbar-header,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container-fluid>.navbar-collapse {
	margin-right: -10px;
	margin-left: -10px;
}

@media(min-width:640px) {

	.container>.navbar-header,
	.container-fluid>.navbar-header,
	.container>.navbar-collapse,
	.container-fluid>.navbar-collapse {
		margin-right: 0;
		margin-left: 0;
	}
}

.navbar-static-top {
	z-index: 1000;
	border-width: 0 0 1px;
}

@media(min-width:640px) {
	.navbar-static-top {
		border-radius: 0;
	}
}

.navbar-fixed-top,
.navbar-fixed-bottom {
	position: fixed;
	right: 0;
	left: 0;
	z-index: 1030;
}

@media(min-width:640px) {

	.navbar-fixed-top,
	.navbar-fixed-bottom {
		border-radius: 0;
	}
}

.navbar-fixed-top {
	top: 0;
	border-width: 0 0 1px;
}

.navbar-fixed-bottom {
	bottom: 0;
	margin-bottom: 0;
	border-width: 1px 0 0;
}

.navbar-brand {
	float: left;
	padding: 15px 10px;
	font-size: 18px;
	line-height: 20px;
	height: 50px;
}

.navbar-brand:hover,
.navbar-brand:focus {
	text-decoration: none;
}

.navbar-brand>img {
	display: block;
}

@media(min-width:640px) {

	.navbar>.container .navbar-brand,
	.navbar>.container-fluid .navbar-brand {
		margin-left: -10px;
	}
}

.navbar-toggle {
	position: relative;
	float: right;
	margin-right: 10px;
	padding: 9px 10px;
	margin-top: 8px;
	margin-bottom: 8px;
	background-color: transparent;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 0;
}

.navbar-toggle:focus {
	outline: 0;
}

.navbar-toggle .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 1px;
}

.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 4px;
}

@media(min-width:640px) {
	.navbar-toggle {
		display: none;
	}
}

.navbar-nav {
	margin: 7.5px -10px;
}

.navbar-nav>li>a {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 20px;
}

@media(max-width:639px) {
	.navbar-nav .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		box-shadow: none;
	}

	.navbar-nav .open .dropdown-menu>li>a,
	.navbar-nav .open .dropdown-menu .dropdown-header {
		padding: 5px 15px 5px 25px;
	}

	.navbar-nav .open .dropdown-menu>li>a {
		line-height: 20px;
	}

	.navbar-nav .open .dropdown-menu>li>a:hover,
	.navbar-nav .open .dropdown-menu>li>a:focus {
		background-image: none;
	}
}

@media(min-width:640px) {
	.navbar-nav {
		float: left;
		margin: 0;
	}

	.navbar-nav>li {
		float: left;
	}

	.navbar-nav>li>a {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

.navbar-form {
	margin-left: -10px;
	margin-right: -10px;
	padding: 10px 10px;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
	-o-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
	margin-top: 9px;
	margin-bottom: 9px;
}

@media(min-width:640px) {
	.navbar-form .form-group {
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle;
	}

	.navbar-form .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle;
	}

	.navbar-form .form-control-static {
		display: inline-block;
	}

	.navbar-form .input-group {
		display: inline-table;
		vertical-align: middle;
	}

	.navbar-form .input-group .input-group-addon,
	.navbar-form .input-group .input-group-btn,
	.navbar-form .input-group .form-control {
		width: auto;
	}

	.navbar-form .input-group>.form-control {
		width: 100%;
	}

	.navbar-form .control-label {
		margin-bottom: 0;
		vertical-align: middle;
	}

	.navbar-form .radio,
	.navbar-form .checkbox {
		display: inline-block;
		margin-top: 0;
		margin-bottom: 0;
		vertical-align: middle;
	}

	.navbar-form .radio label,
	.navbar-form .checkbox label {
		padding-left: 0;
	}

	.navbar-form .radio input[type="radio"],
	.navbar-form .checkbox input[type="checkbox"] {
		position: relative;
		margin-left: 0;
	}

	.navbar-form .has-feedback .form-control-feedback {
		top: 0;
	}
}

@media(max-width:639px) {
	.navbar-form .form-group {
		margin-bottom: 5px;
	}

	.navbar-form .form-group:last-child {
		margin-bottom: 0;
	}
}

@media(min-width:640px) {
	.navbar-form {
		width: auto;
		border: 0;
		margin-left: 0;
		margin-right: 0;
		padding-top: 0;
		padding-bottom: 0;
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		-o-box-shadow: none;
	}
}

.navbar-nav>li>.dropdown-menu {
	margin-top: 0;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
	margin-bottom: 0;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.navbar-btn {
	margin-top: 9px;
	margin-bottom: 9px;
}

.navbar-btn.btn-sm {
	margin-top: 5px;
	margin-bottom: 5px;
}

.navbar-btn.btn-xs {
	margin-top: 14px;
	margin-bottom: 14px;
}

.navbar-text {
	margin-top: 15px;
	margin-bottom: 15px;
}

@media(min-width:640px) {
	.navbar-text {
		float: left;
		margin-left: 10px;
		margin-right: 10px;
	}
}

@media(min-width:640px) {
	.navbar-left {
		float: left !important;
	}

	.navbar-right {
		float: right !important;
		margin-right: -10px;
	}

	.navbar-right~.navbar-right {
		margin-right: 0;
	}
}

.navbar-default {
	background-color: #f8f8f8;
	border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
	color: #777777;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
	color: #5e5e5e;
	background-color: transparent;
}

.navbar-default .navbar-text {
	color: #777777;
}

.navbar-default .navbar-nav>li>a {
	color: #777777;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
	color: #333333;
	background-color: transparent;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
	color: #555555;
	background-color: #e7e7e7;
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:hover,
.navbar-default .navbar-nav>.disabled>a:focus {
	color: #cccccc;
	background-color: transparent;
}

.navbar-default .navbar-toggle {
	border-color: #dddddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: #dddddd;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #888888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	border-color: #e7e7e7;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
	background-color: #e7e7e7;
	color: #555555;
}

@media(max-width:639px) {
	.navbar-default .navbar-nav .open .dropdown-menu>li>a {
		color: #777777;
	}

	.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
		color: #333333;
		background-color: transparent;
	}

	.navbar-default .navbar-nav .open .dropdown-menu>.active>a,
	.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
		color: #555555;
		background-color: #e7e7e7;
	}

	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {
		color: #cccccc;
		background-color: transparent;
	}
}

.navbar-default .navbar-link {
	color: #777777;
}

.navbar-default .navbar-link:hover {
	color: #333333;
}

.navbar-default .btn-link {
	color: #777777;
}

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
	color: #333333;
}

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
	color: #cccccc;
}

.navbar-inverse {
	background-color: #222222;
	border-color: #080808;
}

.navbar-inverse .navbar-brand {
	color: #9d9d9d;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
	color: #ffffff;
	background-color: transparent;
}

.navbar-inverse .navbar-text {
	color: #9d9d9d;
}

.navbar-inverse .navbar-nav>li>a {
	color: #9d9d9d;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
	color: #ffffff;
	background-color: transparent;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
	color: #ffffff;
	background-color: #080808;
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:hover,
.navbar-inverse .navbar-nav>.disabled>a:focus {
	color: #444444;
	background-color: transparent;
}

.navbar-inverse .navbar-toggle {
	border-color: #333333;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
	background-color: #333333;
}

.navbar-inverse .navbar-toggle .icon-bar {
	background-color: #ffffff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
	border-color: #101010;
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
	background-color: #080808;
	color: #ffffff;
}

@media(max-width:639px) {
	.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
		border-color: #080808;
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
		background-color: #080808;
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
		color: #9d9d9d;
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {
		color: #ffffff;
		background-color: transparent;
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
		color: #ffffff;
		background-color: #080808;
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus {
		color: #444444;
		background-color: transparent;
	}
}

.navbar-inverse .navbar-link {
	color: #9d9d9d;
}

.navbar-inverse .navbar-link:hover {
	color: #ffffff;
}

.navbar-inverse .btn-link {
	color: #9d9d9d;
}

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
	color: #ffffff;
}

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
	color: #444444;
}

.breadcrumb {
	padding: 10px 0;
	margin-bottom: 20px;
	list-style: none;
	background-color: #d9d9d9;
	border-radius: 0;
}

.breadcrumb>li {
	display: inline-block;
}

.breadcrumb>li+li:before {
	content: "/\00a0";
	padding: 0 5px;
	color: #19212b;
}

.breadcrumb>.active {
	color: #19212b;
}

.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 0;
}

.pagination>li {
	display: inline;
}

.pagination>li>a,
.pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	line-height: 1.42857143;
	text-decoration: none;
	color: #ec7205;
	background-color: #ffffff;
	border: 1px solid transparent;
	margin-left: -1px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	margin-left: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
	z-index: 2;
	color: #153a59;
	background-color: transparent;
	border-color: #dddddd;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
	z-index: 3;
	color: #153a59;
	background-color: #47b6b1;
	border-color: #47b6b1;
	cursor: default;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
	color: #a6a6a6;
	background-color: #ffffff;
	border-color: #dddddd;
	cursor: not-allowed;
}

.pagination-lg>li>a,
.pagination-lg>li>span {
	padding: 10px 15px;
	font-size: 18px;
	line-height: 1.3333333;
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.pagination-sm>li>a,
.pagination-sm>li>span {
	padding: 5px 10px;
	font-size: 13px;
	line-height: 1.5;
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.pager {
	padding-left: 0;
	margin: 20px 0;
	list-style: none;
	text-align: center;
}

.pager li {
	display: inline;
}

.pager li>a,
.pager li>span {
	display: inline-block;
	padding: 5px 14px;
	background-color: #ffffff;
	border: 1px solid transparent;
	border-radius: 0;
}

.pager li>a:hover,
.pager li>a:focus {
	text-decoration: none;
	background-color: transparent;
}

.pager .next>a,
.pager .next>span {
	float: right;
}

.pager .previous>a,
.pager .previous>span {
	float: left;
}

.pager .disabled>a,
.pager .disabled>a:hover,
.pager .disabled>a:focus,
.pager .disabled>span {
	color: #a6a6a6;
	background-color: #ffffff;
	cursor: not-allowed;
}

.label {
	display: inline;
	padding: .2em .6em .3em;
	font-size: 75%;
	font-weight: bold;
	line-height: 1;
	color: #153a59;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: .25em;
}

a.label:hover,
a.label:focus {
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}

.label:empty {
	display: none;
}

.btn .label {
	position: relative;
	top: -1px;
}

.label-default {
	background-color: #777777;
}

.label-default[href]:hover,
.label-default[href]:focus {
	background-color: #5e5e5e;
}

.label-primary {
	background-color: #47b6b1;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
	background-color: #39918d;
}

.label-success {
	background-color: #5cb85c;
}

.label-success[href]:hover,
.label-success[href]:focus {
	background-color: #449d44;
}

.label-info {
	background-color: #000000;
}

.label-info[href]:hover,
.label-info[href]:focus {
	background-color: #000000;
}

.label-warning {
	background-color: #f0ad4e;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
	background-color: #ec971f;
}

.label-danger {
	background-color: #d9534f;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
	background-color: #c9302c;
}

.badge {
	display: inline-block;
	min-width: 10px;
	padding: 3px 7px;
	font-size: 13px;
	font-weight: bold;
	color: #ffffff;
	line-height: 1;
	vertical-align: middle;
	white-space: nowrap;
	text-align: center;
	background-color: #777777;
	border-radius: 10px;
}

.badge:empty {
	display: none;
}

.btn .badge {
	position: relative;
	top: -1px;
}

.btn-xs .badge,
.btn-group-xs>.btn .badge {
	top: 0;
	padding: 1px 5px;
}

a.badge:hover,
a.badge:focus {
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
	color: #ec7205;
	background-color: #ffffff;
}

.list-group-item>.badge {
	float: right;
}

.list-group-item>.badge+.badge {
	margin-right: 5px;
}

.nav-pills>li>a>.badge {
	margin-left: 3px;
}

.jumbotron {
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	color: inherit;
	background-color: #eeeeee;
}

.jumbotron h1,
.jumbotron .h1 {
	color: inherit;
}

.jumbotron p {
	margin-bottom: 15px;
	font-size: 21px;
	font-weight: 200;
}

.jumbotron>hr {
	border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
	border-radius: 0;
	padding-left: 10px;
	padding-right: 10px;
}

.jumbotron .container {
	max-width: 100%;
}

@media screen and (min-width:640px) {
	.jumbotron {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.container .jumbotron,
	.container-fluid .jumbotron {
		padding-left: 60px;
		padding-right: 60px;
	}

	.jumbotron h1,
	.jumbotron .h1 {
		font-size: 63px;
	}
}

.thumbnail {
	display: block;
	padding: 4px;
	margin-bottom: 20px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 0;
	transition: border 0.2s ease-in-out;
	-moz-transition: border 0.2s ease-in-out;
	-webkit-transition: border 0.2s ease-in-out;
	-o-transition: border 0.2s ease-in-out;
	-sm-transition: border 0.2s ease-in-out;
}

.thumbnail>img,
.thumbnail a>img {
	margin-left: auto;
	margin-right: auto;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
	border-color: #ec7205;
}

.thumbnail .caption {
	padding: 9px;
	color: #19212b;
}

.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 0;
}

.alert h4 {
	margin-top: 0;
	color: inherit;
}

.alert .alert-link {
	font-weight: bold;
}

.alert>p,
.alert>ul {
	margin-bottom: 0;
}

.alert>p+p {
	margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
	padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit;
}

.alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3e5983;
}

.alert-success hr {
	border-top-color: #c9e2b3;
}

.alert-success .alert-link {
	color: #2e4160;
}

.alert-info {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f;
}

.alert-info hr {
	border-top-color: #a6e1ec;
}

.alert-info .alert-link {
	color: #245269;
}

.alert-warning {
	background-color: #fcf8e3;
	border-color: #faebcc;
	color: #8a6d3b;
}

.alert-warning hr {
	border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
	color: #66512c;
}

.alert-danger {
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #19212b;
}

.alert-danger hr {
	border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
	color: #06080b;
}

@keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}

	to {
		background-position: 0 0;
	}
}

.progress {
	overflow: hidden;
	height: 20px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border-radius: 0;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	-o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
	float: left;
	width: 0%;
	height: 100%;
	font-size: 13px;
	line-height: 20px;
	color: #ffffff;
	text-align: center;
	background-color: #47b6b1;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-o-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	transition: width 0.6s ease;
	-moz-transition: width 0.6s ease;
	-webkit-transition: width 0.6s ease;
	-o-transition: width 0.6s ease;
	-sm-transition: width 0.6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
	animation: progress-bar-stripes 2s linear infinite;
	-moz-animation: progress-bar-stripes 2s linear infinite;
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	-o-animation: progress-bar-stripes 2s linear infinite;
	-ms-animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
	background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
	background-color: #000000;
}

.progress-striped .progress-bar-info {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
	background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
	background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media {
	margin-top: 15px;
}

.media:first-child {
	margin-top: 0;
}

.media,
.media-body {
	zoom: 1;
	overflow: hidden;
}

.media-body {
	width: 10000px;
}

.media-object {
	display: block;
}

.media-object.img-thumbnail {
	max-width: none;
}

.media-right,
.media>.pull-right {
	padding-left: 10px;
}

.media-left,
.media>.pull-left {
	padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
	display: table-cell;
	vertical-align: top;
}

.media-middle {
	vertical-align: middle;
}

.media-bottom {
	vertical-align: bottom;
}

.media-heading {
	margin-top: 0;
	margin-bottom: 5px;
}

.media-list {
	padding-left: 0;
	list-style: none;
}

.list-group {
	margin-bottom: 20px;
	padding-left: 0;
}

.list-group-item {
	position: relative;
	display: block;
	padding: 10px 15px;
	margin-bottom: -1px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
}

.list-group-item:first-child {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.list-group-item:last-child {
	margin-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

a.list-group-item,
button.list-group-item {
	color: #555555;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
	color: #333333;
}

a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
	text-decoration: none;
	color: #555555;
	background-color: #f5f5f5;
}

button.list-group-item {
	width: 100%;
	text-align: left;
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
	background-color: #eeeeee;
	color: #777777;
	cursor: not-allowed;
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
	color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
	color: #777777;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
	z-index: 2;
	color: #ffffff;
	background-color: #47b6b1;
	border-color: #47b6b1;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading>small,
.list-group-item.active:hover .list-group-item-heading>small,
.list-group-item.active:focus .list-group-item-heading>small,
.list-group-item.active .list-group-item-heading>.small,
.list-group-item.active:hover .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading>.small {
	color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
	color: #d9f0ef;
}

.list-group-item-success {
	color: #3e5983;
	background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
	color: #3e5983;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
	color: inherit;
}

a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
	color: #3e5983;
	background-color: #d0e9c6;
}

a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
	color: #fff;
	background-color: #3e5983;
	border-color: #3e5983;
}

.list-group-item-info {
	color: #31708f;
	background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
	color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
	color: inherit;
}

a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
	color: #31708f;
	background-color: #c4e3f3;
}

a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
	color: #fff;
	background-color: #31708f;
	border-color: #31708f;
}

.list-group-item-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
	color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
	color: inherit;
}

a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
	color: #8a6d3b;
	background-color: #faf2cc;
}

a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
	color: #fff;
	background-color: #8a6d3b;
	border-color: #8a6d3b;
}

.list-group-item-danger {
	color: #19212b;
	background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
	color: #19212b;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
	color: inherit;
}

a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
	color: #19212b;
	background-color: #ebcccc;
}

a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
	color: #fff;
	background-color: #19212b;
	border-color: #19212b;
}

.list-group-item-heading {
	margin-top: 0;
	margin-bottom: 5px;
}

.list-group-item-text {
	margin-bottom: 0;
	line-height: 1.3;
}

.panel {
	margin-bottom: 20px;
	background-color: #ffffff;
	border: 1px solid transparent;
	border-radius: 0;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	-o-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
	padding: 15px;
}

.panel-heading {
	padding: 10px 15px;
	border-bottom: 1px solid transparent;
	border-top-right-radius: -1;
	border-top-left-radius: -1;
}

.panel-heading>.dropdown .dropdown-toggle {
	color: inherit;
}

.panel-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 16px;
	color: inherit;
}

.panel-title>a,
.panel-title>small,
.panel-title>.small,
.panel-title>small>a,
.panel-title>.small>a {
	color: inherit;
}

.panel-footer {
	padding: 10px 15px;
	background-color: #f5f5f5;
	border-top: 1px solid #dddddd;
	border-bottom-right-radius: -1;
	border-bottom-left-radius: -1;
}

.panel>.list-group,
.panel>.panel-collapse>.list-group {
	margin-bottom: 0;
}

.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
	border-width: 1px 0;
	border-radius: 0;
}

.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
	border-top: 0;
	border-top-right-radius: -1;
	border-top-left-radius: -1;
}

.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
	border-bottom: 0;
	border-bottom-right-radius: -1;
	border-bottom-left-radius: -1;
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.panel-heading+.list-group .list-group-item:first-child {
	border-top-width: 0;
}

.list-group+.panel-footer {
	border-top-width: 0;
}

.panel>.table,
.panel>.table-responsive>.table,
.panel>.panel-collapse>.table {
	margin-bottom: 0;
}

.panel>.table caption,
.panel>.table-responsive>.table caption,
.panel>.panel-collapse>.table caption {
	padding-left: 15px;
	padding-right: 15px;
}

.panel>.table:first-child,
.panel>.table-responsive:first-child>.table:first-child {
	border-top-right-radius: -1;
	border-top-left-radius: -1;
}

.panel>.table:first-child>thead:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child {
	border-top-left-radius: -1;
	border-top-right-radius: -1;
}

.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child {
	border-top-left-radius: -1;
}

.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child {
	border-top-right-radius: -1;
}

.panel>.table:last-child,
.panel>.table-responsive:last-child>.table:last-child {
	border-bottom-right-radius: -1;
	border-bottom-left-radius: -1;
}

.panel>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child {
	border-bottom-left-radius: -1;
	border-bottom-right-radius: -1;
}

.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
	border-bottom-left-radius: -1;
}

.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
	border-bottom-right-radius: -1;
}

.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
	border-top: 1px solid #e5e5e5;
}

.panel>.table>tbody:first-child>tr:first-child th,
.panel>.table>tbody:first-child>tr:first-child td {
	border-top: 0;
}

.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
	border: 0;
}

.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child {
	border-left: 0;
}

.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child {
	border-right: 0;
}

.panel>.table-bordered>thead>tr:first-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.panel>.table-bordered>tbody>tr:first-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.panel>.table-bordered>thead>tr:first-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,
.panel>.table-bordered>tbody>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th {
	border-bottom: 0;
}

.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
	border-bottom: 0;
}

.panel>.table-responsive {
	border: 0;
	margin-bottom: 0;
}

.panel-group {
	margin-bottom: 20px;
}

.panel-group .panel {
	margin-bottom: 0;
	border-radius: 0;
}

.panel-group .panel+.panel {
	margin-top: 5px;
}

.panel-group .panel-heading {
	border-bottom: 0;
}

.panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-group .panel-heading+.panel-collapse>.list-group {
	border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
	border-top: 0;
}

.panel-group .panel-footer+.panel-collapse .panel-body {
	border-bottom: 1px solid #dddddd;
}

.panel-default {
	border-color: #dddddd;
}

.panel-default>.panel-heading {
	color: #333333;
	background-color: #f2f4f7;
	border-color: #dddddd;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #dddddd;
}

.panel-default>.panel-heading .badge {
	color: #f2f4f7;
	background-color: #333333;
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #dddddd;
}

.panel-primary {
	border-color: #47b6b1;
}

.panel-primary>.panel-heading {
	color: #ffffff;
	background-color: #47b6b1;
	border-color: #47b6b1;
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #47b6b1;
}

.panel-primary>.panel-heading .badge {
	color: #47b6b1;
	background-color: #ffffff;
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #47b6b1;
}

.panel-success {
	border-color: #d6e9c6;
}

.panel-success>.panel-heading {
	color: #3e5983;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #d6e9c6;
}

.panel-success>.panel-heading .badge {
	color: #dff0d8;
	background-color: #3e5983;
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #d6e9c6;
}

.panel-info {
	border-color: #bce8f1;
}

.panel-info>.panel-heading {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #bce8f1;
}

.panel-info>.panel-heading .badge {
	color: #d9edf7;
	background-color: #31708f;
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #bce8f1;
}

.panel-warning {
	border-color: #faebcc;
}

.panel-warning>.panel-heading {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #faebcc;
}

.panel-warning>.panel-heading .badge {
	color: #fcf8e3;
	background-color: #8a6d3b;
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #faebcc;
}

.panel-danger {
	border-color: #ebccd1;
}

.panel-danger>.panel-heading {
	color: #19212b;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #ebccd1;
}

.panel-danger>.panel-heading .badge {
	color: #f2dede;
	background-color: #19212b;
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #ebccd1;
}

.embed-responsive {
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	border: 0;
}

.embed-responsive-16by9 {
	padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
	padding-bottom: 75%;
}

.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border: 1px solid #e3e3e3;
	border-radius: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
	border-color: #ddd;
	border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
	padding: 24px;
	border-radius: 0;
}

.well-sm {
	padding: 9px;
	border-radius: 0;
}

.close {
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	color: #000000;
	text-shadow: 0 1px 0 #ffffff;
	opacity: 0.2;
	filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
	opacity: 0.5;
	filter: alpha(opacity=50);
}

button.close {
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
}

.modal-open {
	overflow: hidden;
}

.modal {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}

.modal.fade .modal-dialog {
	transform: translate(0, -25%);
	-webkit-transform: translate(0, -25%);
	-moz-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	-o-transform: translate(0, -25%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-moz-transition: -moz-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px;
}

.modal-content {
	position: relative;
	background-color: #ffffff;
	border: 1px solid #999999;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0;
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	-o-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	background-clip: padding-box;
	outline: 0;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000000;
}

.modal-backdrop.fade {
	opacity: 0;
	filter: alpha(opacity=0);
}

.modal-backdrop.in {
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.modal-header {
	padding: 15px;
	border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
	margin-top: -2px;
}

.modal-title {
	margin: 0;
	line-height: 1.42857143;
}

.modal-body {
	position: relative;
	padding: 15px;
}

.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5;
}

.modal-footer .btn+.btn {
	margin-left: 5px;
	margin-bottom: 0;
}

.modal-footer .btn-group .btn+.btn {
	margin-left: -1px;
}

.modal-footer .btn-block+.btn-block {
	margin-left: 0;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

@media(min-width:640px) {
	.modal-dialog {
		width: 600px;
		margin: 30px auto;
	}

	.modal-content {
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		-o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}

	.modal-sm {
		width: 300px;
	}
}

@media(min-width:1024px) {
	.modal-lg {
		width: 900px;
	}
}

.tooltip {
	position: absolute;
	z-index: 1070;
	display: block;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	letter-spacing: normal;
	line-break: auto;
	line-height: 1.42857143;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	white-space: normal;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;
	font-size: 13px;
	opacity: 0;
	filter: alpha(opacity=0);
}

.tooltip.in {
	opacity: 0.9;
	filter: alpha(opacity=90);
}

.tooltip.top {
	margin-top: -3px;
	padding: 5px 0;
}

.tooltip.right {
	margin-left: 3px;
	padding: 0 5px;
}

.tooltip.bottom {
	margin-top: 3px;
	padding: 5px 0;
}

.tooltip.left {
	margin-left: -3px;
	padding: 0 5px;
}

.tooltip-inner {
	max-width: 200px;
	padding: 3px 8px;
	color: #ffffff;
	text-align: center;
	background-color: #000000;
	border-radius: 0;
}

.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}

.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000000;
}

.tooltip.top-left .tooltip-arrow {
	bottom: 0;
	right: 5px;
	margin-bottom: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000000;
}

.tooltip.top-right .tooltip-arrow {
	bottom: 0;
	left: 5px;
	margin-bottom: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000000;
}

.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000000;
}

.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000000;
}

.tooltip.bottom-left .tooltip-arrow {
	top: 0;
	right: 5px;
	margin-top: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000000;
}

.tooltip.bottom-right .tooltip-arrow {
	top: 0;
	left: 5px;
	margin-top: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000000;
}

.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1060;
	display: none;
	max-width: 276px;
	padding: 1px;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	letter-spacing: normal;
	line-break: auto;
	line-height: 1.42857143;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	white-space: normal;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;
	font-size: 14px;
	background-color: #ffffff;
	background-clip: padding-box;
	border: 1px solid #cccccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
	margin-top: -10px;
}

.popover.right {
	margin-left: 10px;
}

.popover.bottom {
	margin-top: 10px;
}

.popover.left {
	margin-left: -10px;
}

.popover-title {
	margin: 0;
	padding: 8px 14px;
	font-size: 14px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	border-radius: -1 -1 0 0;
}

.popover-content {
	padding: 9px 14px;
}

.popover>.arrow,
.popover>.arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}

.popover>.arrow {
	border-width: 11px;
}

.popover>.arrow:after {
	border-width: 10px;
	content: "";
}

.popover.top>.arrow {
	left: 50%;
	margin-left: -11px;
	border-bottom-width: 0;
	border-top-color: #999999;
	border-top-color: rgba(0, 0, 0, 0.25);
	bottom: -11px;
}

.popover.top>.arrow:after {
	content: " ";
	bottom: 1px;
	margin-left: -10px;
	border-bottom-width: 0;
	border-top-color: #ffffff;
}

.popover.right>.arrow {
	top: 50%;
	left: -11px;
	margin-top: -11px;
	border-left-width: 0;
	border-right-color: #999999;
	border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.right>.arrow:after {
	content: " ";
	left: 1px;
	bottom: -10px;
	border-left-width: 0;
	border-right-color: #ffffff;
}

.popover.bottom>.arrow {
	left: 50%;
	margin-left: -11px;
	border-top-width: 0;
	border-bottom-color: #999999;
	border-bottom-color: rgba(0, 0, 0, 0.25);
	top: -11px;
}

.popover.bottom>.arrow:after {
	content: " ";
	top: 1px;
	margin-left: -10px;
	border-top-width: 0;
	border-bottom-color: #ffffff;
}

.popover.left>.arrow {
	top: 50%;
	right: -11px;
	margin-top: -11px;
	border-right-width: 0;
	border-left-color: #999999;
	border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left>.arrow:after {
	content: " ";
	right: 1px;
	border-right-width: 0;
	border-left-color: #ffffff;
	bottom: -10px;
}

.carousel {
	position: relative;
}

.carousel-inner {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.carousel-inner>.item {
	display: none;
	position: relative;
	transition: 0.5s ease-in-out left;
	-moz-transition: 0.5s ease-in-out left;
	-webkit-transition: 0.5s ease-in-out left;
	-o-transition: 0.5s ease-in-out left;
	-sm-transition: 0.5s ease-in-out left;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
	line-height: 1;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
	.carousel-inner>.item {
		-webkit-transition: -webkit-transform 0.5s ease-in-out;
		-moz-transition: -moz-transform 0.5s ease-in-out;
		-o-transition: -o-transform 0.5s ease-in-out;
		transition: transform 0.5s ease-in-out;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-perspective: 1000px;
		-moz-perspective: 1000px;
		perspective: 1000px;
	}

	.carousel-inner>.item.next,
	.carousel-inner>.item.active.right {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		left: 0;
	}

	.carousel-inner>.item.prev,
	.carousel-inner>.item.active.left {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		left: 0;
	}

	.carousel-inner>.item.next.left,
	.carousel-inner>.item.prev.right,
	.carousel-inner>.item.active {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		left: 0;
	}
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
	display: block;
}

.carousel-inner>.active {
	left: 0;
}

.carousel-inner>.next,
.carousel-inner>.prev {
	position: absolute;
	top: 0;
	width: 100%;
}

.carousel-inner>.next {
	left: 100%;
}

.carousel-inner>.prev {
	left: -100%;
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
	left: 0;
}

.carousel-inner>.active.left {
	left: -100%;
}

.carousel-inner>.active.right {
	left: 100%;
}

.carousel-control {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 15%;
	opacity: 0.5;
	filter: alpha(opacity=50);
	font-size: 20px;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	background-color: rgba(0, 0, 0, 0);
}

.carousel-control.left {
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
	left: auto;
	right: 0;
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover,
.carousel-control:focus {
	outline: 0;
	color: #ffffff;
	text-decoration: none;
	opacity: 0.9;
	filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	z-index: 5;
	display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
	left: 50%;
	margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
	right: 50%;
	margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
	width: 20px;
	height: 20px;
	line-height: 1;
	font-family: serif;
}

.carousel-control .icon-prev:before {
	content: '\2039';
}

.carousel-control .icon-next:before {
	content: '\203a';
}

.carousel-indicators {
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 15;
	width: 60%;
	margin-left: -30%;
	padding-left: 0;
	list-style: none;
	text-align: center;
}

.carousel-indicators li {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 1px;
	text-indent: -999px;
	border: 1px solid #ffffff;
	border-radius: 10px;
	cursor: pointer;
	background-color: #000 \9;
	background-color: rgba(0, 0, 0, 0);
}

.carousel-indicators .active {
	margin: 0;
	width: 12px;
	height: 12px;
	background-color: #ffffff;
}

.carousel-caption {
	position: absolute;
	left: 15%;
	right: 15%;
	bottom: 20px;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
	text-shadow: none;
}

@media screen and (min-width:640px) {

	.carousel-control .glyphicon-chevron-left,
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-prev,
	.carousel-control .icon-next {
		width: 30px;
		height: 30px;
		margin-top: -10px;
		font-size: 30px;
	}

	.carousel-control .glyphicon-chevron-left,
	.carousel-control .icon-prev {
		margin-left: -10px;
	}

	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-next {
		margin-right: -10px;
	}

	.carousel-caption {
		left: 20%;
		right: 20%;
		padding-bottom: 30px;
	}

	.carousel-indicators {
		bottom: 20px;
	}
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical>.btn-group:before,
.btn-group-vertical>.btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after,
.tabs .tabs-list:before,
.tabs .tabs-list:after,
.cart__content:before,
.cart__content:after {
	content: " ";
	display: table;
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical>.btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after,
.tabs .tabs-list:after,
.cart__content:after {
	clear: both;
}

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.pull-right {
	float: right !important;
}

.pull-left {
	float: left !important;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.invisible {
	visibility: hidden;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.hidden {
	display: none !important;
}

.affix {
	position: fixed;
}

@-ms-viewport {
	width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}

@media(max-width:639px) {
	.visible-xs {
		display: block !important;
	}

	table.visible-xs {
		display: table !important;
	}

	tr.visible-xs {
		display: table-row !important;
	}

	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}
}

@media(max-width:639px) {
	.visible-xs-block {
		display: block !important;
	}
}

@media(max-width:639px) {
	.visible-xs-inline {
		display: inline !important;
	}
}

@media(max-width:639px) {
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.visible-sm {
		display: block !important;
	}

	table.visible-sm {
		display: table !important;
	}

	tr.visible-sm {
		display: table-row !important;
	}

	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.visible-sm-block {
		display: block !important;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.visible-sm-inline {
		display: inline !important;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}

@media(min-width:1024px) and (max-width:1399px) {
	.visible-md {
		display: block !important;
	}

	table.visible-md {
		display: table !important;
	}

	tr.visible-md {
		display: table-row !important;
	}

	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}
}

@media(min-width:1024px) and (max-width:1399px) {
	.visible-md-block {
		display: block !important;
	}
}

@media(min-width:1024px) and (max-width:1399px) {
	.visible-md-inline {
		display: inline !important;
	}
}

@media(min-width:1024px) and (max-width:1399px) {
	.visible-md-inline-block {
		display: inline-block !important;
	}
}

@media(min-width:1400px) {
	.visible-lg {
		display: block !important;
	}

	table.visible-lg {
		display: table !important;
	}

	tr.visible-lg {
		display: table-row !important;
	}

	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}
}

@media(min-width:1400px) {
	.visible-lg-block {
		display: block !important;
	}
}

@media(min-width:1400px) {
	.visible-lg-inline {
		display: inline !important;
	}
}

@media(min-width:1400px) {
	.visible-lg-inline-block {
		display: inline-block !important;
	}
}

@media(max-width:639px) {
	.hidden-xs {
		display: none !important;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.hidden-sm {
		display: none !important;
	}
}

@media(min-width:1024px) and (max-width:1399px) {
	.hidden-md {
		display: none !important;
	}
}

@media(min-width:1400px) {
	.hidden-lg {
		display: none !important;
	}
}

.visible-print {
	display: none !important;
}

@media print {
	.visible-print {
		display: block !important;
	}

	table.visible-print {
		display: table !important;
	}

	tr.visible-print {
		display: table-row !important;
	}

	th.visible-print,
	td.visible-print {
		display: table-cell !important;
	}
}

.visible-print-block {
	display: none !important;
}

@media print {
	.visible-print-block {
		display: block !important;
	}
}

.visible-print-inline {
	display: none !important;
}

@media print {
	.visible-print-inline {
		display: inline !important;
	}
}

.visible-print-inline-block {
	display: none !important;
}

@media print {
	.visible-print-inline-block {
		display: inline-block !important;
	}
}

@media print {
	.hidden-print {
		display: none !important;
	}
}

.ui-helper-hidden {
	display: none;
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}

.ui-helper-clearfix:after {
	clear: both;
}

.ui-helper-clearfix {
	min-height: 0;
}

.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter: alpha(opacity=0);
}

.ui-front {
	z-index: 100;
}

.ui-state-disabled {
	cursor: default !important;
}

.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}

.ui-resizable {
	position: relative;
}

.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}

.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}

.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}

.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}

.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}

.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}

.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}

.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}

.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}

.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}

.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}

.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}

.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	min-height: 0;
	font-size: 100%;
}

.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}

.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}

.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

.ui-button-icon-only {
	width: 2.2em;
}

button.ui-button-icon-only {
	width: 2.4em;
}

.ui-button-icons-only {
	width: 3.4em;
}

button.ui-button-icons-only {
	width: 3.7em;
}

.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}

.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}

.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}

input.ui-button {
	padding: .4em 1em;
}

.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

.ui-buttonset {
	margin-right: 7px;
}

.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -0.3em;
}

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}

.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}

.ui-datepicker .ui-datepicker-next {
	right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}

.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}

.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}

.ui-datepicker td {
	border: 0;
	padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

.ui-datepicker.ui-datepicker-multi {
	width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}

.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

.ui-datepicker-rtl {
	direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}

.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}

.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}

.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}

.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}

.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}

.ui-menu .ui-menu {
	position: absolute;
}

.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0;
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

.ui-menu-icons {
	position: relative;
}

.ui-menu-icons .ui-menu-item {
	padding-left: 2em;
}

.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}

.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25);
	opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}

.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}

.ui-selectmenu-open {
	display: block;
}

.ui-selectmenu-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}

.ui-selectmenu-button span.ui-icon {
	right: 0.5em;
	left: auto;
	margin-top: -8px;
	position: absolute;
	top: 50%;
}

.ui-selectmenu-button span.ui-selectmenu-text {
	text-align: left;
	padding: 0.4em 2.1em 0.4em 1em;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ui-slider {
	position: relative;
	text-align: left;
}

.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}

.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
	top: -0.3em;
	margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
	left: -0.3em;
	margin-left: 0;
	margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}

.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}

.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}

.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}

.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}

.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}

.ui-spinner-up {
	top: 0;
}

.ui-spinner-down {
	bottom: 0;
}

.ui-spinner .ui-icon-triangle-1-s {
	background-position: -65px -16px;
}

.ui-tabs {
	position: relative;
	padding: .2em;
}

.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}

.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}

body .ui-tooltip {
	border-width: 2px;
}

.ui-datepicker {
	border: 1px solid #e5e5e5;
	background: #ffffff;
	color: #19212b;
}

.ui-datepicker .ui-datepicker-header {
	color: #19212b;
	background-color: transparent;
	border: none;
	font-weight: bold;
}

.ui-icon {
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	color: #ec7205;
	cursor: pointer;
	font-family: 'Glyphicons Halflings';
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-weight: normal;
	height: 15px;
	line-height: 1;
	margin-top: 5px;
	width: 30px;
}

.ui-datepicker .ui-datepicker-prev {
	left: 5px;
	float: left;
	text-align: left;
}

.ui-datepicker .ui-datepicker-prev:before {
	content: "\e079";
}

.ui-datepicker .ui-datepicker-next {
	right: 5px;
	float: right;
	text-align: right;
}

.ui-datepicker .ui-datepicker-next:before {
	content: "\e080";
}

.ui-datepicker .ui-icon {
	display: none;
}

.ui-widget-header .ui-datepicker-prev-hover.ui-state-hover,
.ui-widget-header .ui-datepicker-next-hover.ui-state-hover {
	border: 0 none;
	background: transparent;
	color: #154259;
	top: 2px;
}

.ui-datepicker th {
	font-weight: 400;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	background-color: #f2f2f2;
	text-align: center;
	color: #19212b;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #454545;
	text-decoration: none;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
	color: #2b2b2b;
	text-decoration: none;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff;
	text-decoration: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	background: #ec7205;
	color: #ffffff;
	border-color: #ec7205;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	background: #47b6b1;
	color: #ffffff;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter: alpha(opacity=70);
	font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter: alpha(opacity=35);
	background-image: none;
}

.ui-state-disabled .ui-icon {
	filter: alpha(opacity=35);
}

body {
	overflow-x: hidden;
	position: relative;
}

body.offcanvas {
	overflow-y: hidden;
}

.no-margin {
	margin: 0 !important;
}

@media(min-width:1366px) {
	.container-lg {
		float: none;
		margin: 0 auto !important;
		overflow: hidden;
	}
}

button {
	font-weight: bold;
}

.btn {
	border-radius: 0 !important;
}

ul,
ol {}

@media(max-width:1023px) {
	.form-control {
		height: 42px;
		padding: 10px 15px;
		font-size: 18px;
		line-height: 1.3333333;
		border-radius: 0;
		font-size: 14px;
	}

	select.form-control {
		height: 42px;
		line-height: 42px;
	}

	textarea.form-control,
	select[multiple].form-control {
		height: auto;
	}
}

option {
	font-size: 0.875em;
	line-height: 18px;
	padding: 6px 13px;
	width: 100%;
}

a,
button {
	color: #ec7205;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

output {
	display: block;
	padding-top: 7px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #19212b;
}

.open>.dropdown-menu {
	padding: 15px 0 0 0;
}

.dropdown-menu li {
	margin-top: 3px;
}

.dropdown-menu li:first-child {
	margin-top: 0px;
}

.dropdown-menu>li>a {
	display: block;
	padding: 3px 25px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857;
	color: #19212b;
	white-space: nowrap;
}

.display-none {
	display: none;
}

.page-title {
	margin-bottom: 30px;
}

@media(min-width:640px) {

	.item-label,
	.item-value {
		display: block;
	}
}

@media(max-width:639px) {

	.item-label,
	.item-value {
		display: inline-block;
		line-height: 20px;
		vertical-align: top;
		width: 49%;
	}

	.item-value {
		padding-left: 10px;
	}

	.item-action {
		margin-top: 20px;
	}
}

.item-label {
	text-transform: uppercase;
	font-weight: 300;
}

.item-value {
	font-size: 18px;
	padding-bottom: 10px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.alert {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.alert {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.container__full {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.container__full {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.well {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background-color: #f2f4f7;
	border: none;
	border-bottom: 1px solid #d3d3d3;
	padding: 10px 15px;
	margin: 0;
}

.well:before,
.well:after {
	content: " ";
	display: table;
}

.well:after {
	clear: both;
}

.well:before,
.well:after {
	content: " ";
	display: table;
}

.well:after {
	clear: both;
}

.well.well-single-headline {
	padding-left: 0;
	padding-right: 0;
}

.well.well-xs {
	padding: 0px 15px 5px;
}

.well.well-xs .well-headline {
	padding-top: 15px;
	margin: 0;
}

.well.well-xs .well-content {
	padding-top: 20px;
}

.well.well-sm {
	padding: 10px 20px;
}

.well.well-md {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.well.well-md {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.well.well-lg {
	padding-top: 45px;
	padding-bottom: 35px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.well.well-lg {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.well.well-primary {
	background-color: #47b6b1;
	color: #ffffff;
}

.well.well-secondary {
	background-color: #fef0e2;
	color: #19212b;
}

.well.well-tertiary {
	background-color: #128a9e;
	color: #ffffff;
}

.well.well-tertiary .item-label {
	color: #ffffff;
}

.well.well-tertiary .item-value {
	color: #fff;
}

.well.well-tertiary .item-value a {
	color: #fff;
	text-decoration: underline;
}

.well.well-quaternary {
	background-color: #f2f2f2;
	color: #19212b;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

.well.well-quinary {
	background-color: #ffffff;
	color: #19212b;
	border-color: #e5e5e5;
	padding-left: 0;
	padding-right: 0;
}

.well.well-quinary .well-headline {
	background-color: #128a9e;
	color: #ffffff;
}

.well.well-quinary .well-content {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.well.well-quinary .well-content {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.well-headline {
	margin-left: -15px;
	margin-right: -15px;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #d3d3d3;
	padding: 5px 30px 15px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.well-headline {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.well-headline-sub {
	font-weight: 400;
	padding-left: 10px;
}

@media(max-width:639px) {
	.well-headline {
		padding-left: 35px;
		padding-right: 35px;
	}
}

.well-single-headline {
	padding-bottom: 0;
	border-bottom: 0;
}

.well-content {
	padding-top: 40px;
	padding-bottom: 20px;
}

.well-content:before,
.well-content:after {
	content: " ";
	display: table;
}

.well-content:after {
	clear: both;
}

.well-content:before,
.well-content:after {
	content: " ";
	display: table;
}

.well-content:after {
	clear: both;
}

.well>.col-no-padding {
	padding-left: 0;
	padding-right: 0;
}

.well .well-headline {
	margin: 0;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.well .well-headline {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {

	.well,
	.well.well-lg {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:1023px) {
	body.offcanvas {
		max-height: 100vh;
	}

	main {
		transition: transform 0.3s ease-out;
		-moz-transition: transform 0.3s ease-out;
		-webkit-transition: transform 0.3s ease-out;
		-o-transition: transform 0.3s ease-out;
		-sm-transition: transform 0.3s ease-out;
	}

	.container {
		width: 100%;
	}

	textarea.form-control,
	select[multiple].form-control {
		height: auto;
	}
}

footer {
	padding-top: 50px;
	margin-top: 30px;
	background: #0f7384;
	color: #ffffff;
	font-weight: 300;
}

.footer__top {
	padding-bottom: 50px;
}

@media(max-width:1024px) {
	.footer__top {
		padding-bottom: 38px;
	}
}

@media(max-width:768px) {
	.footer__top .footer__nav--container {
		margin-bottom: 10px;
		text-align: center;
	}
}

.footer__top .footer__nav--container .footer__nav--links {
	padding-left: 0px;
	width: 100%;
	margin: 0px;
	list-style: none;
}

.footer__top .footer__nav--container .footer__nav--links .footer__link {
	margin-top: 10px;
}

.footer__top .footer__nav--container .footer__nav--links a {
	color: #ffffff;
	font-size: 14px;
}

.footer__left {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.footer__left {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.footer__right {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.footer__right {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:1024px) {
	.footer__right {
		border-top: 1px solid #d3d3d3;
		padding-top: 30px;
		margin-top: 25px;
	}
}

.footer__right .footer__dropdown select.form-control {
	padding: 2px 13px;
}

.footer__right .footer__dropdown .form-group {
	margin-bottom: 0;
}

.footer__right .footer__dropdown .form-control {
	cursor: pointer;
	background-color: #0f7384;
	color: #ffffff;
	padding: 7px 10px;
	height: 26px;
	line-height: 20px;
	font-size: 14px;
}

.footer__right .footer__dropdown .form-control option {
	background-color: #0f7384;
}

.footer__right .footer__dropdown .form-control:focus::-ms-value {
	background-color: #0f7384;
}

.footer__copyright {
	background: #005361;
	padding: 25px 0;
	color: #ffffff;
	text-align: center;
}

ul.nav__links::after {
	content: "";
	display: block;
	clear: both;
}

ul.nav__links li {
	float: left;
	list-style-type: none;
}

ul.nav__links::after {
	clear: both;
}

@media(max-width:1023px) {
	ul.nav__links:before {
		content: " ";
		display: table;
	}
}

.branding-mobile {
	padding: 10px 0 9px 0;
	border-bottom: solid 1px #d3d3d3;
	z-index: 9999;
	background-color: #f8f8f8;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.branding-mobile {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.navigation.navigation--top {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.navigation.navigation--top {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.navigation--top .nav__left {
	padding: 9px 0 7px;
}

.navigation--top .nav__left .simple-banner-component img,
.navigation--top .nav__left .banner__component img {
	width: auto;
}

.miniCartSlot>div[data-ng-transclude] {
	display: inline-block;
}

.navigation--top .nav__right .nav__links--account {
	margin: 0;
	padding-left: 0;
	float: right;
}

.navigation--top .nav__right .nav__links--account div[data-smartedit-component-id="HeaderLinksSlot"] {
	display: inline-block;
	float: left;
}

.navigation--top .nav__right .nav__links--account div[data-smartedit-component-id="HeaderLinksSlot"] li:last-child a {
	padding-right: 12px;
}

.navigation--top .nav__right .nav__links--account li {
	display: inline-block;
	font-size: 12px;
	color: #154259;
	font-weight: 400;
	text-transform: uppercase;
}

.navigation--top .nav__right .nav__links--account li:last-child a {
	padding-right: 0;
}

.navigation--top .nav__right .nav__links--account li.logged_in {
	padding: 10px;
}

.navigation--top .nav__right .nav__links--account li button {
	background: transparent none repeat scroll 0% 0%;
	border: medium none;
	color: #0068b3;
	font-size: 1em;
	text-transform: uppercase;
}

.navigation--top .nav__right .nav__links--account li button:hover {
	background: none;
	text-decoration: none;
	color: #47b6b1;
}

.navigation--top .nav__right .nav__links--account li a {
	color: inherit;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 400;
	padding: 12px;
	display: block;
	font-size: 1em;
	line-height: 1.329em;
}

.navigation--top .nav__right .nav__links--account li a:hover {
	text-decoration: none;
	color: #47b6b1;
}

.navigation--top .nav__right .nav__links--account .myAccountLinksHeader.collapsed,
.navigation--top .nav__right .nav__links--account .myCompanyLinksHeader.collapsed {
	background-color: transparent;
	color: inherit;
}

.navigation--top .nav__right .nav__links--account .myAccountLinksHeader.collapsed::after,
.navigation--top .nav__right .nav__links--account .myCompanyLinksHeader.collapsed::after {
	clear: both;
}

.navigation--top .nav__right .nav__links--account .myAccountLinksHeader.collapsed:hover,
.navigation--top .nav__right .nav__links--account .myCompanyLinksHeader.collapsed:hover,
.navigation--top .nav__right .nav__links--account .myAccountLinksHeader.collapsed:focus,
.navigation--top .nav__right .nav__links--account .myCompanyLinksHeader.collapsed:focus {
	color: #47b6b1;
	text-decoration: none;
}

.navigation--top .nav__right .nav__links--account .myAccountLinksHeader,
.navigation--top .nav__right .nav__links--account .myCompanyLinksHeader {
	background-color: #0d6878;
	color: #ffffff;
	text-decoration: none;
	height: 40px;
}

#accNavComponentDesktopOne,
#accNavComponentDesktopTwo {
	padding: 0;
	background-color: #0d6878;
}

#accNavComponentDesktopOne ul.nav__links,
#accNavComponentDesktopTwo ul.nav__links {
	width: 100%;
	padding: 0px;
	margin-bottom: 0px;
}

#accNavComponentDesktopOne ul.nav__links li,
#accNavComponentDesktopTwo ul.nav__links li {
	text-transform: capitalize;
	list-style: none;
	font-size: 12px;
	color: #154259;
	font-weight: 400;
	padding: 0;
	border-right: 1px solid #317f8c;
	border-bottom: 1px solid #317f8c;
}

#accNavComponentDesktopOne ul.nav__links li:hover,
#accNavComponentDesktopTwo ul.nav__links li:hover {
	background-color: #0f7384;
}

#accNavComponentDesktopOne ul.nav__links li a,
#accNavComponentDesktopTwo ul.nav__links li a {
	color: #ffffff;
	display: block;
	padding: 25px 0 25px 30px;
	font-size: 15px;
	font-weight: 400;
}

#accNavComponentDesktopOne ul.nav__links li a:hover,
#accNavComponentDesktopTwo ul.nav__links li a:hover {
	text-decoration: none;
}

@media(min-width:1024px) {
	.navigation--middle {
		border-top: 1px solid #d3d3d3;
	}
}

@media(max-width:639px) {
	.navigation--middle .row:first-child {
		border: none;
	}
}

.navigation--middle .btn {
	background-color: transparent;
	width: 100%;
	padding: 0;
	height: 100%;
	color: #47b6b1;
	border: none;
}

@media(min-width:1024px) {
	.navigation--middle .nav__left {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.navigation--middle .nav__left .site-search {
	background-color: #f8f8f8;
	z-index: 2;
}

@media(min-width:768px) and (max-width:1023px) {
	.navigation--middle .nav__left .site-search {
		margin-left: -10px;
	}
}

@media(max-width:1024px) {
	.navigation--middle .nav__left .site-search {
		padding-left: 0;
	}
}

@media(max-width:639px) {
	.navigation--middle .nav__left .site-search {
		display: none !important;
		left: 0;
		position: absolute;
		width: 100%;
		padding: 0 10px;
		border-top: 1px solid #d3d3d3;
	}

	.navigation--middle .nav__left .site-search.active {
		display: block !important;
	}
}

.navigation--middle .nav__left .site-search .ui-front {
	padding: 10px 0px;
}

.navigation--middle .nav__left .site-search .glyphicon-search {
	color: #b9bdc2;
	font-size: 17px;
}

.navigation--middle .nav__left .site-search .input-group {
	background-color: #ffffff;
	min-height: 38px;
	border: 1px solid #cccccc;
}

@media(min-width:1024px) {
	.navigation--middle .nav__left .site-search .input-group {
		width: 445px;
	}
}

.navigation--middle .nav__left .site-search .input-group .form-control {
	border: 0;
	box-shadow: none;
	height: 38px;
}

.navigation--middle .nav__left .site-search .input-group .btn {
	width: 40px;
	padding: 0;
}

.navigation--middle .nav__left .site-search .input-group .btn:hover {
	background-color: transparent;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete {
	display: none;
	position: absolute;
	background: #ffffff;
	left: 0;
	right: 0;
	-webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
	z-index: 100;
	width: auto !important;
	padding-left: 0;
	padding-top: 0;
	list-style: none;
	margin: 0;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete li {
	border-top: 1px solid #e5e5e5;
	display: block;
	width: 100%;
	padding: 10px;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete li a {
	display: table;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete li .thumb {
	display: table-cell;
	vertical-align: middle;
	padding: 0 10px 0 0;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete li .name {
	display: table-cell;
	padding: 10px;
	vertical-align: middle;
	width: 100%;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete li .thumb+.name {
	padding: 0 10px;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete li .price {
	display: table-cell;
	vertical-align: middle;
	padding: 0 10px;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete li.ui-state-focus {
	border-left: none;
	border-right: none;
	border-bottom: none;
	margin: 0;
	background: #f2f2f2;
	color: #19212b;
}

.navigation--middle .nav__left .site-search ul.ui-autocomplete.active {
	display: block;
}

.navigation--middle .nav__right {
	padding-right: 25px;
}

@media(max-width:1024px) {
	.navigation--middle .nav__right {
		padding-right: 20px;
	}
}

.navigation--middle .nav__right ul.nav__links--shop_info {
	margin-bottom: 0;
}

@media(max-width:1024px) {
	.navigation--middle .nav__right ul.nav__links--shop_info {
		padding-left: 10px;
	}
}

@media(min-width:768px) {
	.navigation--middle .nav__right ul.nav__links--shop_info {
		float: right;
	}
}

@media(max-width:639px) {
	.navigation--middle .nav__right ul.nav__links--shop_info {
		border-left: 1px solid #d3d3d3;
		display: table-cell;
		text-align: center;
		vertical-align: top;
		padding: 0;
	}

	.navigation--middle .nav__right ul.nav__links--shop_info li {
		float: none;
	}
}

@media(min-width:768px) {
	.navigation--middle .nav__right ul.nav__links--shop_info .componentContainer .yCmsComponent {
		display: inline;
	}
}

.navigation--middle .nav__right ul.nav__links--shop_info .nav-location {
	min-width: 60px;
	border-left: 1px solid #d3d3d3;
	border-right: 1px solid #d3d3d3;
}

.navigation--middle .nav__right ul.nav__links--shop_info .nav-location span {
	font-size: 30px;
	top: 27%;
	color: #128a9e;
}

@media(min-width:768px) {
	.navigation--middle .nav__right ul.nav__links--shop_info .nav-location {
		float: right;
		padding: 0px 10px;
	}
}

@media(min-width:1024px) {
	.navigation--middle .nav__right ul.nav__links--shop_info .nav-location {
		padding: 0px 30px;
	}
}

@media(max-width:639px) {
	.navigation--middle .componentContainer {
		text-align: center;
		vertical-align: top;
		border-left: 1px solid #d3d3d3;
	}
}

.navigation--middle .nav-order-tools,
.navigation--middle .nav-location,
.navigation--middle .nav-cart {
	height: 60px;
}

.navigation--middle .nav-order-tools:hover,
.navigation--middle .nav-location:hover,
.navigation--middle .nav-cart:hover,
.navigation--middle .btn:hover,
.navigation--middle .nav-order-tools:active,
.navigation--middle .nav-location:active,
.navigation--middle .nav-cart:active,
.navigation--middle .btn:active,
.navigation--middle .nav-order-tools:focus,
.navigation--middle .nav-location:focus,
.navigation--middle .nav-cart:focus,
.navigation--middle .btn:focus {
	background-color: #f2f2f2;
	box-shadow: none;
}

.navigation--middle .nav-cart {
	float: right;
	padding: 0 10px;
}

@media(min-width:768px) {
	.navigation--middle .nav-cart {
		padding-left: 30px;
	}
}

@media(max-width:639px) {
	.navigation--middle .nav-cart {
		position: relative;
		float: none;
		padding: 0;
	}
}

@media(min-width:768px) {
	.navigation--middle .nav-cart .mini-cart-price {
		overflow: hidden;
		margin-left: 5px;
		margin-right: 5px;
		float: right;
		font-size: 16px;
		font-weight: 600;
		position: relative;
		top: 4px;
	}
}

.navigation--middle .nav-cart .mini-cart-link {
	color: #128a9e;
}

@media(min-width:768px) {
	.navigation--middle .nav-cart .mini-cart-link {
		line-height: 55px;
		white-space: nowrap;
	}
}

@media(max-width:639px) {
	.navigation--middle .nav-cart .mini-cart-link {
		display: block;
	}

	.navigation--middle .nav-cart .mini-cart-link .mini-cart-icon {
		color: #128a9e;
		left: -7px;
		top: 10px;
	}

	.navigation--middle .nav-cart .mini-cart-link .mini-cart-icon .glyphicon-shopping-cart {
		width: 30px;
		font-size: 22px;
		position: relative;
		right: -6px;
		top: 3px;
	}

	.navigation--middle .nav-cart .mini-cart-link .mini-cart-count {
		font-size: 12px;
		position: absolute;
		right: 44%;
		top: -13px;
		margin: 0;
	}

	.navigation--middle .nav-cart .mini-cart-link .nav-items-total {
		display: inline-block;
		background-color: #ec7205;
		border-radius: 50%;
		height: 25px;
		width: 25px;
		color: #ffffff;
		line-height: 25px;
	}
}

.navigation--middle .nav-cart .mini-cart-count {
	float: right;
	font-size: 12px;
	text-transform: uppercase;
}

@media(min-width:768px) {
	.navigation--middle .nav-cart .mini-cart-count:before {
		content: "(";
		position: relative;
		top: 4px;
	}

	.navigation--middle .nav-cart .mini-cart-count:after {
		content: ")";
		position: relative;
		top: 4px;
	}
}

.navigation--middle .nav-cart .mini-cart-count .nav-items-total {
	position: relative;
	right: 0px;
	top: 5px;
}

@media(min-width:768px) {
	.navigation--middle .nav-cart .mini-cart-icon {
		float: right;
		position: relative;
		top: 5px;
	}
}

.navigation--middle .nav-cart .mini-cart-icon .glyphicon-shopping-cart {
	font-size: 22px;
}

@media(min-width:768px) and (max-width:1023px) {
	.navigation--middle .nav-cart .mini-cart-icon .glyphicon-shopping-cart {
		margin-left: 5px;
	}
}

@media(max-width:639px) {

	.navigation--middle .mobile__nav__row.mobile__nav__row--table,
	.navigation--middle .mobile__nav__row .mobile__nav__row--table {
		display: table !important;
		width: 100%;
	}

	.navigation--middle .mobile__nav__row .mobile__nav__row--table-group {
		display: table-row-group !important;
	}

	.navigation--middle .mobile__nav__row .mobile__nav__row--table-row {
		display: table-row !important;
	}

	.navigation--middle .mobile__nav__row .mobile__nav__row--table-row:before {
		display: table;
		content: " ";
	}

	.navigation--middle .mobile__nav__row .mobile__nav__row--table-cell {
		display: table-cell !important;
		vertical-align: top;
	}

	.navigation--middle .mobile__nav__row .nav__links--shop_info .componentContainer {
		margin-bottom: 0;
		overflow: hidden;
	}

	.navigation--middle .mobile__nav__row span.glyphicon-align-justify {
		position: relative;
		cursor: pointer;
		margin: 0 auto;
		color: #128a9e;
		font-size: 29px;
		top: 2px;
	}

	.navigation--middle .mobile__nav__row .componentContainer .nav-order-tools,
	.navigation--middle .mobile__nav__row .componentContainer .nav-cart {
		font-size: 30px;
		line-height: 60px;
		padding: 0;
		width: 100%;
	}

	.navigation--middle .mobile__nav__row .componentContainer .mobile__nav__row--table-cell {
		border-right: 1px solid #d3d3d3;
	}

	.navigation--middle .mobile__nav__row .componentContainer .mobile__nav__row--table-cell:last-child {
		border-right: none;
	}
}

@media(max-width:639px) {
	.navigation--middle .mobile__nav__row .mobile__nav__row--seperator {
		border-left: 1px solid #d3d3d3;
	}
}

@media(max-width:639px) {
	.navigation--middle .mobile__nav__row--btn {
		padding: 0;
		vertical-align: top;
		height: 60px;
		font-size: 30px;
		line-height: 60px;
	}

	.navigation--middle .mobile__nav__row--btn .nav-order-tools,
	.navigation--middle .mobile__nav__row--btn .mini-cart-link,
	.navigation--middle .mobile__nav__row--btn .mobile__nav__row--btn-search {
		font-size: 30px;
		line-height: 60px;
		padding: 0;
		width: 100%;
	}

	.navigation--middle .mobile__nav__row--btn .nav-order-tools:hover,
	.navigation--middle .mobile__nav__row--btn .mini-cart-link:hover,
	.navigation--middle .mobile__nav__row--btn .mobile__nav__row--btn-search:hover,
	.navigation--middle .mobile__nav__row--btn .nav-order-tools:focus,
	.navigation--middle .mobile__nav__row--btn .mini-cart-link:focus,
	.navigation--middle .mobile__nav__row--btn .mobile__nav__row--btn-search:focus,
	.navigation--middle .mobile__nav__row--btn .nav-order-tools:active,
	.navigation--middle .mobile__nav__row--btn .mini-cart-link:active,
	.navigation--middle .mobile__nav__row--btn .mobile__nav__row--btn-search:active {
		background-color: #f2f2f2;
		color: #47b6b1;
		text-decoration: none;
	}

	.navigation--middle .mobile__nav__row--btn span.glyphicon {
		color: #128a9e;
	}
}

.navigation--middle .mobile-menu {
	height: 60px;
}

.navigation--middle .mobile-menu button {
	font-size: 18px;
	line-height: 1.33;
	border-radius: 0;
	height: 100%;
	width: 100%;
	padding: 0px;
}

.navigation--middle .mobile-menu span {
	position: relative;
	cursor: pointer;
	margin: 0 auto;
	color: #128a9e;
	font-size: 29px;
	top: 2px;
}

.navigation--bottom {
	background-color: #128a9e;
	border-bottom: 1px solid #128a9e;
}

@media(max-width:1023px) {
	.navigation--bottom {
		border-bottom: none;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .sm-back::before {
		content: "\e079";
		float: none;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .navigation__overflow {
		left: -380px;
		top: 0;
		height: 83vh;
		overflow-y: auto;
		border-top: 1px solid #d3d3d3;
	}
}

@media(max-width:1023px) {
	.navigation--bottom.js-enquire-offcanvas-navigation .close-nav {
		display: inline-block;
		cursor: pointer;
		height: 60px;
		width: 20%;
		vertical-align: top;
		border-left: 1px solid #d3d3d3;
		border-right: 1px solid #d3d3d3;
	}
}

@media(max-width:1023px) {
	.navigation--bottom.js-enquire-offcanvas-navigation .close-nav button {
		background-color: #ffffff;
		height: 100%;
		width: 100%;
		display: inline-block;
		color: transparent;
		overflow: hidden;
		border: none;
	}
}

.navigation--bottom.js-enquire-offcanvas-navigation .close-nav button span {
	color: #128a9e;
	font-size: 25px;
}

.navigation--bottom:before,
.navigation--bottom:after {
	content: " ";
	display: table;
}

.navigation--bottom:after {
	clear: both;
}

@media(min-width:1400px) {
	.navigation--bottom a {
		padding: 20px 32px;
	}
}

.navigation--bottom .column-20-percent {
	float: left;
	width: 20%;
}

@media(max-width:1023px) {
	.navigation--bottom {
		width: 380px;
		position: absolute;
		left: -380px;
		z-index: 999;
		background-color: #ffffff;
	}

	.navigation--bottom li {
		float: none;
	}
}

@media(max-width:639px) {
	.navigation--bottom {
		width: 100%;
		height: 83vh;
		left: -100%;
		margin-left: 0;
	}
}

.navigation--bottom .nav__links--products {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 0;
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--products.active {
		position: relative;
		left: -100%;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--products {
		top: 0;
		bottom: 0;
		right: 0;
		background-color: #ffffff;
		padding: 0;
		position: relative;
		left: 0;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--products li {
		float: none;
		background-color: #ffffff;
		border-bottom: 1px solid #e5e5e5;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--products li.liUserSign {
		border-bottom: 1px solid #317f8c;
	}

	.navigation--bottom .nav__links--products li.liUserSign:hover {
		background-color: #0f7384;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--products li.liUserSign a.userSign {
		width: 80%;
		display: inline-block;
		text-transform: uppercase;
		padding-right: 20px;
	}
}

.navigation--bottom .nav__links--products li:last-child {
	margin-right: 0;
}

.navigation--bottom .nav__links--products li a {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	padding: 20px 15px;
	display: block;
	color: #ffffff;
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--products li a {
		margin-top: 0;
		color: #19212b;
		text-transform: capitalize;
		padding: 20px 30% 20px 50px;
		display: block;
	}
}

.navigation--bottom .nav__links--products .nav__links--secondary {
	display: none;
	background: #f8f8f8;
	position: absolute;
	z-index: 1000;
	left: 0;
	border: 1px solid #d3d3d3;
	border-top: 0;
	padding: 0 10px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.navigation--bottom .nav__links--products .nav__links--secondary .sm-back {
	display: none;
}

.navigation--bottom .nav__links--products .nav__links--secondary .row {
	position: relative;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section {
	position: static;
	padding: 10px;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section.double {
	position: relative;
	min-height: 1px;
	padding: 10px 0 10px 0;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section .sub-navigation-section-column {
	float: left;
	padding: 0 10px;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section .sub-navigation-list {
	padding-left: 0;
	list-style: none;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section .sub-navigation-list li {
	border-bottom: 1px solid #d3d3d3;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section .sub-navigation-list li:last-child {
	border-bottom: none;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section .sub-navigation-list li a {
	display: block;
	color: #19212b;
	line-height: 30px;
	padding-left: 5px;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section .sub-navigation-list li a:hover,
.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-section .sub-navigation-list li a:focus {
	background-color: #d3d3d3;
	text-decoration: none;
}

.navigation--bottom .nav__links--products .nav__links--secondary .sub-navigation-list.has-title {
	margin-top: 40px;
}

.navigation--bottom .nav__links--products .nav__links--secondary .title+.sub-navigation-list.has-title {
	margin-top: 0;
}

.navigation--bottom .show-sub .nav__link a {
	position: relative;
}

.navigation--bottom .show-sub .nav__link a:after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-right: 10px solid rgba(0, 0, 0, 0);
	border-left: 10px solid rgba(0, 0, 0, 0);
	border-bottom: 10px solid #f8f8f8;
	display: block;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -10px;
	z-index: 1001;
}

.navigation--bottom .show-sub .sub__navigation {
	display: block !important;
	top: 60px;
}

.navigation--bottom .nav__link {
	display: inline-block;
	width: 100%;
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary-has__sub {
		position: static;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary-has__sub .nav__link {
		width: 67%;
	}
}

.navigation--bottom .nav__links--primary-has__sub .nav__link--drill__down {
	display: inline-block;
	width: 33%;
	color: #19212b;
	min-height: 30px;
	padding: 20px 0;
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary.active .sub__navigation {
		display: block;
	}
}

@media(min-width:1024px) {
	.navigation--bottom .nav__links--primary .sub__navigation {
		display: none;
		background: #f8f8f8;
		position: absolute;
		z-index: 1000;
		left: 0;
		border: 1px solid #d3d3d3;
		border-top: 0;
		padding: 0 10px;
		-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary .sub__navigation {
		display: none;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
		width: 100%;
		padding: 0;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary .sm-back {
		color: #19212b;
		padding: 5px 50px;
		border-bottom: 1px solid #f2f2f2;
		font-size: 18px;
		line-height: 50px;
	}

	.navigation--bottom .nav__links--primary .sm-back::after {
		content: ' ';
	}

	.navigation--bottom .nav__links--primary .sm-back::before {
		position: relative;
		top: 1px;
		display: inline-block;
		font-family: 'Glyphicons Halflings';
		font-style: normal;
		font-weight: 400;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		font-size: .8em;
		margin-right: 1em;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary .row {
		margin: 0;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary .sub-navigation-section {
		padding: 0;
		background: #ffffff;
	}
}

@media(min-width:1024px) {
	.navigation--bottom .nav__links--primary .sub-navigation-section {
		position: static;
		padding: 10px;
	}
}

.navigation--bottom .nav__links--primary .sub-navigation-section .title {
	font-size: 18px;
	line-height: 40px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.7);
}

@media(max-width:1399px) {
	.navigation--bottom .nav__links--primary .sub-navigation-section .title {
		color: rgba(0, 0, 0, 0.7);
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary .sub-navigation-section .title {
		padding: 10px 20px 10px 50px;
		text-transform: uppercase;
		border-bottom: 1px solid #f2f2f2;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--primary .sub-navigation-section .sub-navigation-list {
		margin-bottom: 0;
		padding-left: 0;
		list-style: none;
	}
}

@media(min-width:1024px) {
	.navigation--bottom .nav__links--primary .sub-navigation-section .sub-navigation-list {
		padding-left: 0px;
		list-style: none;
		margin-top: 0;
	}

	.navigation--bottom .nav__links--primary .sub-navigation-section .sub-navigation-list a {
		display: block;
		color: #19212b;
		line-height: 30px;
		padding: 0 0 0 5px;
	}

	.navigation--bottom .nav__links--primary .sub-navigation-section .sub-navigation-list a:hover {
		background-color: #f2f2f2;
		text-decoration: none;
	}
}

.navigation--bottom .nav__links--primary .sub-navigation-section .sub-navigation-list li {
	position: relative;
	display: block;
	border-bottom: 1px solid #f2f2f2;
	float: none;
}

@media(min-width:1024px) {
	.navigation--bottom .nav__links--primary .sub-navigation-section .sub-navigation-list li:last-child {
		border: none;
	}
}

.navigation--bottom .nav__links--mobile.offcanvasGroup1 .offcanvasGroup2 li,
.navigation--bottom .nav__links--mobile.offcanvasGroup1 .offcanvasGroup3 li {
	border-bottom: 1px solid #317f8c;
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--mobile {
		overflow: hidden;
	}

	.navigation--bottom .nav__links--mobile li {
		overflow: hidden;
		background-color: #0f7384;
		border: none;
	}

	.navigation--bottom .nav__links--mobile li a {
		color: #ffffff;
	}

	.navigation--bottom .nav__links--mobile .subNavList {
		padding-left: 0;
	}

	.navigation--bottom .nav__links--mobile .subNavList li {
		padding: 5px 0;
		background: #0d6878;
	}
}

@media(max-width:1023px) {

	.navigation--bottom .nav__links--mobile div.sub-nav .myAccountLinksHeader,
	.navigation--bottom .nav__links--mobile div.sub-nav .myCompanyLinksHeader {
		display: block;
		cursor: pointer;
		max-height: 60px;
		text-transform: uppercase;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--mobile div.sub-nav a {
		border-bottom: 1px solid #317f8c;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .nav__links--mobile div.sub-nav a span {
		float: right;
		line-height: 50px;
		left: 0;
		position: relative;
		height: 30px;
		top: -14px;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .userGroup {
		position: relative;
		line-height: 50px;
		background-color: #ffffff;
		padding: 5px 12px 5px 20px;
		cursor: pointer;
		color: #128a9e;
		display: inline-block;
		width: 80%;
		float: left;
		height: 60px;
		text-transform: uppercase;
		text-align: left;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .userGroup a {
		border: none;
		color: #128a9e;
	}

	.navigation--bottom .userGroup a:hover {
		background-color: transparent !important;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .userGroup .myAcctUserIcon {
		font-size: 20px;
		position: relative;
		top: 4px;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .userGroup .userName {
		display: inline-block;
		padding-left: 10px;
	}
}

@media(max-width:1023px) {
	.navigation--bottom .userGroup #signedInUserOptionsToggle {
		position: absolute;
		right: 0;
		top: 0;
		height: 100%;
		width: 100%;
		padding: 0;
	}
}

@media(max-width:1023px) {

	.navigation--bottom .glyphicon-chevron-up,
	.navigation--bottom .glyphicon-chevron-down {
		position: absolute;
		left: 260px;
		line-height: 60px;
		top: 0;
	}
}

@media(max-width:639px) {

	.navigation--bottom .glyphicon-chevron-up,
	.navigation--bottom .glyphicon-chevron-down {
		left: 68vw;
	}
}

@media(min-width:640px) {
	main {
		transition: transform 0.3s ease-out;
		-moz-transition: transform 0.3s ease-out;
		-webkit-transition: transform 0.3s ease-out;
		-o-transition: transform 0.3s ease-out;
		-sm-transition: transform 0.3s ease-out;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	main.offcanvas {
		position: relative;
		-webkit-transform: translate(380px, 0);
		-ms-transform: translate(380px, 0);
		-o-transform: translate(380px, 0);
		transform: translate(380px, 0);
	}
}

@media(max-width:639px) {
	main.offcanvas {
		position: relative;
		-webkit-transform: translate(100%, 0);
		-ms-transform: translate(100%, 0);
		-o-transform: translate(100%, 0);
		transform: translate(100%, 0);
	}
}

@media(max-width:639px) {
	.offcanvas .sticky-nav-top {
		left: 0;
		position: absolute;
		height: 60px;
		width: 100vw;
	}
}

@media(max-width:1023px) {
	.sticky-nav-top {
		position: absolute;
		left: 0px;
		top: -60px;
		width: 380px;
		padding: 0px;
		margin-bottom: 0;
		z-index: 9999;
		text-align: right;
	}
}

@media(max-width:639px) {
	.sticky-nav-top {
		position: absolute;
		top: -60px;
		height: 60px;
		left: -60px;
		z-index: 999;
		width: 100vw;
	}
}

.sticky-nav-top .liUserSign {
	background-color: #ffffff;
}

@media(max-width:1023px) {
	.sticky-nav-top .userSign {
		text-align: left;
		width: 80%;
		display: inline-block;
		color: #128a9e;
		padding: 20px 30% 20px 50px;
	}
}

@media(max-width:1023px) {
	html.offcanvas {
		overflow-x: hidden;
	}
}

.nav-order-tools {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

@media(min-width:640px) {
	.nav-order-tools {
		border-left: 0px;
		border-right: 1px solid #d3d3d3;
		padding: 0px 15px;
	}
}

@media(min-width:1024px) {
	.nav-order-tools {
		padding: 0px 30px;
	}
}

@media(max-width:639px) {
	.nav-order-tools {
		position: static;
	}
}

.nav-order-tools:before {
	position: relative;
	top: 23%;
	display: inline;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e032";
	color: #128a9e;
	font-size: 30px;
}

@media(max-width:639px) {
	.nav-order-tools:before {
		top: 3px;
	}
}

.quote__list {
	position: relative;
	display: inline-block;
	cursor: pointer;
	width: 45px;
	text-align: right;
}

.quote__list a {
	font-size: 25px;
	background-color: transparent;
	padding: 0;
	border: 0;
	color: #47b6b1;
}

.quote__list a .glyphicon {
	top: 4px;
}

@media(min-width:640px) {
	.quote__list {
		border-left: 0px;
		padding: 0px 15px;
	}
}

@media(min-width:1024px) {
	.quote__list {
		padding: 0px 30px;
	}
}

@media(max-width:639px) {
	.quote__list {
		position: static;
	}
}

.js-nav-order-tools--active .nav-order-tools__child-wrap {
	display: block;
}

.js-nav-quote-list--active .quote__list--nav {
	display: block;
}

.quote__list--nav {
	text-align: left;
	position: absolute;
	border: 1px solid #d3d3d3;
	background-color: #ffffff;
	right: 40px;
	top: 26px;
	width: 260px;
	z-index: 10;
}

.quote__list--nav a {
	font-size: 14px;
	line-height: 1.42857143;
}

@media(max-width:639px) {
	.quote__list--nav {
		width: 100vw;
		top: 103px;
	}
}

.quote__list--nav a {
	display: block;
	text-transform: uppercase;
	font-weight: 600;
	color: #19212b;
	padding: 20px 30px;
}

.quote__list--nav a:hover {
	background-color: #f2f2f2;
}

.nav-order-tools__child-wrap {
	font-size: 14px;
	line-height: 1.42857143;
	text-align: left;
	position: absolute;
	border: 1px solid #d3d3d3;
	background-color: #ffffff;
	right: -1px;
	top: 60px;
	width: 260px;
	z-index: 10;
}

@media(max-width:639px) {
	.nav-order-tools__child-wrap {
		width: 100vw;
		top: 103px;
	}
}

.nav-order-tools__child-wrap div {
	border-bottom: 1px solid #f2f2f2;
}

.nav-order-tools__child-wrap div:last-child {
	border-bottom: none;
}

.nav-order-tools__child-wrap a {
	display: block;
	text-transform: uppercase;
	font-weight: 600;
	color: #19212b;
	padding: 20px 30px;
}

.nav-order-tools__child-wrap a:hover {
	background-color: #f2f2f2;
}

header {
	background: #f8f8f8;
	margin-bottom: 20px;
}

.page-cartPage header,
.page-homepage header,
.page-productGrid header,
.page-searchGrid header,
.page-search header,
.page-cartPage header,
.pageType-CategoryPage header {
	margin-bottom: 0;
}

.page-headline {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
}

.page-headline.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

.page-sub-headline {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.571;
}

.text-variant-bold {
	font-weight: 600;
}

.full-width-padding {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.full-width-padding {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.half-width-padding {
	padding-left: 20px;
	padding-right: 20px;
}

@media(max-width:1024px) {
	.half-width-padding {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.btn-formblock {
	display: block;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	margin-top: 25px;
}

.btn {
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 15px;
	font-size: 16px;
	line-height: 1.375;
	border-radius: 3px;
}

.btn.glyphicon {
	padding: 3px 0 4px 0;
}

.btn.glyphicon:before {
	font-size: 25px;
}

.btn,
.btn:active,
.btn.active {
	box-shadow: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
	outline: 0;
}

.btn-small {
	padding: 6px 15px;
	font-size: 16px;
	line-height: 1.375;
	border-radius: 3px;
}

.btn-icon {
	padding-left: 83px;
	position: relative;
}

.btn-icon:before {
	position: absolute;
	font-size: 25px;
	top: 9px;
	left: 20px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
}

.btn-icon:after {
	content: "";
	position: absolute;
	left: 65px;
	top: -3px;
	border-right: 3px solid currentColor;
	height: 48px;
}

:hover.btn-icon:after {
	border-right-width: 3px;
}

.btn-edit-confirm {
	width: 48%;
}

.btn-block+.btn-block {
	margin-top: 10px;
}

.btn-default {
	border: 3px solid;
	color: #ffffff;
	background-color: #ec7205;
	border-color: #ec7205;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
	color: #ffffff;
	background-color: #ff973b;
	border-color: #ff973b;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
	background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
	color: #ffffff;
	background-color: #f9d4b4;
	border-color: #f9d4b4;
}

.btn-default .badge {
	color: #ec7205;
	background-color: #ffffff;
}

.btn-primary {
	border: 3px solid;
	color: #ffffff;
	background-color: #47b6b1;
	border-color: #47b6b1;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
	color: #ffffff;
	background-color: #5adfd9;
	border-color: #5adfd9;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
	background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
	color: #ffffff;
	background-color: #c7e9e7;
	border-color: #c7e9e7;
}

.btn-primary .badge {
	color: #47b6b1;
	background-color: #ffffff;
}

.pagination-wrap {
	float: right;
	text-align: right;
}

.pagination {
	border: 1px solid transparent;
	font-weight: 400;
	margin: 0;
}

.pagination>li {
	vertical-align: top;
	display: inline-block;
}

.pagination>li>a,
.pagination>li>span {
	position: static;
	border: none;
	margin: 0;
	float: none;
	display: inline-block;
}

.pagination>li.pagination-prev>a,
.pagination>li.pagination-next>a,
.pagination>li.pagination-prev>span,
.pagination>li.pagination-next>span {
	font-size: 11px;
}

.pagination>li.pagination-prev>a:hover,
.pagination>li.pagination-next>a:hover,
.pagination>li.pagination-prev>span:hover,
.pagination>li.pagination-next>span:hover,
.pagination>li.pagination-prev>a:focus,
.pagination>li.pagination-next>a:focus,
.pagination>li.pagination-prev>span:focus,
.pagination>li.pagination-next>span:focus {
	background-color: transparent;
	color: #153a59;
}

.pagination>li.pagination-prev.disabled>a:hover,
.pagination>li.pagination-next.disabled>a:hover,
.pagination>li.pagination-prev.disabled>span:hover,
.pagination>li.pagination-next.disabled>span:hover,
.pagination>li.pagination-prev.disabled>a:focus,
.pagination>li.pagination-next.disabled>a:focus,
.pagination>li.pagination-prev.disabled>span:focus,
.pagination>li.pagination-next.disabled>span:focus {
	color: #a6a6a6;
	background-color: transparent;
	border-color: transparent;
}

.pagination>li.pagination-prev {
	text-align: left;
}

.pagination>li.pagination-prev>a,
.pagination>li.pagination-prev>span {
	border-right: 1px solid transparent;
}

.pagination>li.pagination-next {
	text-align: right;
}

.pagination>li.pagination-next>a,
.pagination>li.pagination-next>span {
	border-left: 1px solid transparent;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
	background-color: transparent;
	border: none;
	font-weight: 700;
}

.pagination>li>a,
.pagination>li>span {
	line-height: 30px;
	width: 30px;
	padding: 0;
	font-size: 24px;
	text-align: center;
}

.pagination>li.pagination-prev>a,
.pagination>li.pagination-prev>span {
	margin-right: 10px;
	width: 35px;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.pagination>li.pagination-next>a,
.pagination>li.pagination-next>span {
	margin-left: 10px;
	width: 35px;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

@media(max-width:1023px) {

	.pagination>li>a,
	.pagination>li>span {
		line-height: 46px;
		width: 30px;
		padding: 0;
		font-size: 24px;
		text-align: center;
	}

	.pagination>li.pagination-prev>a,
	.pagination>li.pagination-prev>span {
		margin-right: 10px;
		width: 40px;
		border-bottom-left-radius: 0;
		border-top-left-radius: 0;
	}

	.pagination>li.pagination-next>a,
	.pagination>li.pagination-next>span {
		margin-left: 10px;
		width: 40px;
		border-bottom-right-radius: 0;
		border-top-right-radius: 0;
	}
}

@media(max-width:639px) {
	.pagination {
		display: table;
		width: 100%;
	}

	.pagination>li {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
	}

	.pagination>li>a,
	.pagination>li>span {
		float: none;
	}

	.pagination>li>a,
	.pagination>li>span {
		line-height: 40px;
		width: 45px;
		padding: 0;
		font-size: 24px;
		text-align: center;
	}

	.pagination>li.pagination-prev>a,
	.pagination>li.pagination-prev>span {
		margin-right: 15px;
		width: 65px;
		border-bottom-left-radius: 0;
		border-top-left-radius: 0;
	}

	.pagination>li.pagination-next>a,
	.pagination>li.pagination-next>span {
		margin-left: 15px;
		width: 65px;
		border-bottom-right-radius: 0;
		border-top-right-radius: 0;
	}

	.pagination-with-pager .pagination-wrap {
		float: none;
	}
}

.breadcrumb-section {
	background: #d9d9d9;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.breadcrumb-section {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.breadcrumb-section .breadcrumb {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
}

.image-gallery__image {
	cursor: pointer;
}

.image-gallery__zoom-icon {
	font-size: 20px;
	opacity: 0.5;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 10;
}

@media(min-width:768px) {
	.page-productDetails .carousel {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.product-details,
.product-details-price {
	margin-bottom: 10px;
}

@media(max-width:639px) {

	.product-details,
	.product-details-price {
		padding: 0;
	}
}

.product-details .name,
.product-details-price .name {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
	padding: 0;
}

.product-details .name.border,
.product-details-price .name.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

.product-details .name .sku,
.product-details-price .name .sku {
	font-size: 18px;
	line-height: 18px;
	color: #929292;
	position: relative;
	padding-left: 20px;
	font-weight: 400;
}

.product-details .name .sku:before,
.product-details-price .name .sku:before {
	border-left: 1px solid #e5e5e5;
	content: "";
	height: 14px;
	position: absolute;
	top: 7px;
	left: 10px;
}

.product-details .name .code,
.product-details-price .name .code {
	font-size: 18px;
	line-height: 18px;
	padding-left: 5px;
}

.product-details .promotion,
.product-details-price .promotion {
	color: #00a651;
}

.product-details .description,
.product-details-price .description {
	padding: 10px 0 25px;
}

.product-details .price,
.product-details-price .price {
	font-size: 25px;
	font-weight: bold;
}

.product-details .stock-status,
.product-details-price .stock-status {
	font-weight: 300;
}

@media(max-width:1399px) {

	.product-details .description,
	.product-details-price .description {
		border-bottom: 1px solid #cccccc;
	}
}

.product-details.page-title {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.product-details.page-title {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.product-main-info {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.product-main-info {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.product-main-info .product-details {
	padding: 0;
}

.variant-section {
	margin-bottom: 30px;
}

.variant-section .variant-selector .variant-name {
	font-size: 13px;
	font-weight: 600;
	color: #153a59;
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 5px;
}

.variant-section .variant-selector .variant-name .variant-selected {
	font-weight: normal;
	text-transform: none;
}

.variant-section .variant-selector .variant-list {
	padding-left: 0;
	list-style: none;
	margin-left: -20px;
}

.variant-section .variant-selector .variant-list:before,
.variant-section .variant-selector .variant-list:after {
	content: " ";
	display: table;
}

.variant-section .variant-selector .variant-list:after {
	clear: both;
}

.variant-section .variant-selector .variant-list:before,
.variant-section .variant-selector .variant-list:after {
	content: " ";
	display: table;
}

.variant-section .variant-selector .variant-list:after {
	clear: both;
}

.variant-section .variant-selector .variant-list li {
	float: left;
	margin: 0 0 0 20px;
}

.variant-section .variant-selector .variant-list li a,
.variant-section .variant-selector .variant-list li span {
	display: block;
	height: 32px;
	width: 32px;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid #cccccc;
	background: #fff;
	color: #19212b;
	text-decoration: none;
}

@media(max-width:1023px) {

	.variant-section .variant-selector .variant-list li a,
	.variant-section .variant-selector .variant-list li span {
		height: 42px;
		width: 42px;
		line-height: 42px;
	}
}

.variant-section .variant-selector .variant-list li a img,
.variant-section .variant-selector .variant-list li span img {
	width: 100%;
	height: auto;
	vertical-align: top;
	border: 1px solid transparent;
}

.variant-section .variant-selector .variant-list li:hover a,
.variant-section .variant-selector .variant-list li.active a {
	background: #47b6b1;
	box-shadow: inset 0 0 0 1px #fff;
	-moz-box-shadow: inset 0 0 0 1px #fff;
	-webkit-box-shadow: inset 0 0 0 1px #fff;
	-o-box-shadow: inset 0 0 0 1px #fff;
	border: 1px solid #47b6b1;
	color: #fff;
}

.variant-section .variant-selector .variant-list li:hover a img,
.variant-section .variant-selector .variant-list li.active a img {
	border: 1px solid #fff;
}

.variant-section .variant-selector .variant-list li.disabled span {
	color: #999;
	cursor: not-allowed;
}

.variant-section .variant-selector .variant-select {
	margin: 10px 0 0;
}

.rating:before,
.rating:after {
	content: " ";
	display: table;
}

.rating:after {
	clear: both;
}

.rating:before,
.rating:after {
	content: " ";
	display: table;
}

.rating:after {
	clear: both;
}

.rating .rating-stars {
	margin: 0 5px 0 0;
	padding: 3px 0 1px;
	position: relative;
}

@media(max-width:1023px) {
	.rating .rating-stars {
		font-size: 18px;
		float: none;
	}

	.rating .rating-stars:before,
	.rating .rating-stars:after {
		content: " ";
		display: table;
	}

	.rating .rating-stars:after {
		clear: both;
	}

	.rating .rating-stars:before,
	.rating .rating-stars:after {
		content: " ";
		display: table;
	}

	.rating .rating-stars:after {
		clear: both;
	}
}

.rating .rating-stars .greenStars {
	position: absolute;
	overflow: hidden;
	top: 3px;
	left: 0;
	white-space: nowrap;
	width: 0;
}

.rating .rating-stars span {
	color: #dee3e8;
	margin: 0 0.1em;
	overflow: hidden;
}

.rating .rating-stars span.fh {
	width: 0.47em;
	margin-right: 0;
	float: left !important;
}

.rating .rating-stars span.lh {
	width: 0.5em;
	text-indent: -0.44em;
	margin-left: 0;
	float: left !important;
}

.rating .rating-stars span.active {
	color: #47b6b1;
}

.rating.rating-set .rating-stars {
	cursor: pointer;
	display: inline-block;
}

.rating a {
	font-size: 13px;
	position: relative;
	margin-left: 10px;
	padding-left: 10px;
}

.rating a:before {
	border-left: 1px solid #cccccc;
	content: "";
	height: 19px;
	position: absolute;
	top: 0;
	left: 0;
}

.tabs-responsive .tab-container {
	float: none;
	padding: 0;
}

@media(max-width:1023px) {
	.tabs-responsive .tabhead {
		border-bottom: 1px solid #f2f4f7;
	}
}

.tab-review .review-pagination-bar {
	margin: 10px 0;
}

.tab-review .review-pagination-bar:before,
.tab-review .review-pagination-bar:after {
	content: " ";
	display: table;
}

.tab-review .review-pagination-bar:after {
	clear: both;
}

.tab-review .review-pagination-bar:before,
.tab-review .review-pagination-bar:after {
	content: " ";
	display: table;
}

.tab-review .review-pagination-bar:after {
	clear: both;
}

.tab-review .review-pagination-bar .right {
	float: right;
}

.tab-review .review-pagination-bar .right .pager {
	float: left;
	margin: 0 10px;
}

.tab-review .review-list {
	padding-left: 0;
	list-style: none;
}

.tab-review .review-list .review-entry {
	margin: 10px 0;
}

.tab-review .review-list .review-entry .title {
	font-weight: bold;
}

.tab-review .review-list .review-entry .autor {
	color: #777777;
}

.tab-review .write-review {
	display: none;
}

#AddToCart-PickUpInStoreAction {
	position: relative;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 20px;
}

@media(min-width:640px) {
	#AddToCart-PickUpInStoreAction {
		float: left;
		width: 50%;
	}
}

@media(min-width:1024px) {
	#AddToCart-PickUpInStoreAction {
		float: left;
		width: 100%;
	}
}

.AddToCart-PickUpInStoreAction {
	margin-top: 10px;
}

.AddToCart-ShareOnSocialNetworkAction {
	margin-top: 20px;
}

#AddToCart-AddToCartAction {
	position: relative;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 20px;
}

@media(min-width:640px) {
	#AddToCart-AddToCartAction {
		float: left;
		width: 50%;
	}
}

@media(min-width:1024px) {
	#AddToCart-AddToCartAction {
		float: left;
		width: 100%;
	}
}

#AddToCart-ShareOnSocialNetworkAction {
	position: relative;
	float: left;
	width: 100%;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 30px;
}

.image-gallery img {
	width: 100%;
	height: auto;
	-webkit-touch-callout: none;
}

.image-gallery .zoomImg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	max-height: none;
	max-width: none;
	z-index: 9999;
	border: 0;
	opacity: 0;
}

.image-gallery .zoomImg img {
	width: 100%;
	height: 100%;
}

.image-gallery .zoomImgMask {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
}

.addtocart-component {
	margin-top: 10px;
}

.addtocart-component .stock-wrapper {
	font-size: 13px;
	margin: 25px 0;
}

.addtocart-component .stock-wrapper * {
	float: left;
	margin: 0;
}

.addtocart-component .stock-wrapper .futureStockLink {
	margin-left: 10px;
}

.addtocart-component .actions .btn {
	margin-bottom: 10px;
}

.addtocart-component .row .AddToCart-ShareOnSocialNetworkAction {
	margin: 0 auto;
	padding-top: 50px;
	width: 100px;
}

.addtocart-component div.a2a_kit a.a2a_dd.share {
	background: url("../_ui/responsive/common/images/productShareIcon.png") no-repeat left center;
	padding-left: 25px;
}

.addtocart-component div.a2a_kit a.a2a_dd.share .a2a_img {
	display: none;
}

.addtocart-component .qty-selector .input-group-btn,
#add_to_cart_storepickup_form .qty-selector .input-group-btn,
.addtocart-component .qty-selector .btn,
#add_to_cart_storepickup_form .qty-selector .btn {
	width: 48px;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}

.addtocart-component .qty-selector .form-control,
#add_to_cart_storepickup_form .qty-selector .form-control {
	width: 50px;
	height: 48px;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
}

@media(max-width:1023px) {
	.addtocart-component {
		margin-top: 20px;
	}

	.addtocart-component .qty-selector .input-group-btn,
	.addtocart-component .qty-selector .btn,
	.addtocart-component .qty-selector .form-control {
		width: 62.4px;
	}
}

@media(max-width:639px) {
	.addtocart-component .qty-selector {
		margin-left: auto;
		margin-right: auto;
	}

	.addtocart-component .stock-wrapper {
		display: table;
		margin-left: auto;
		margin-right: auto;
	}
}

.add-to-cart .add-to-cart-item {
	margin-bottom: 10px;
}

.add-to-cart .add-to-cart-item:before,
.add-to-cart .add-to-cart-item:after {
	content: " ";
	display: table;
}

.add-to-cart .add-to-cart-item:after {
	clear: both;
}

.add-to-cart .add-to-cart-item:before,
.add-to-cart .add-to-cart-item:after {
	content: " ";
	display: table;
}

.add-to-cart .add-to-cart-item:after {
	clear: both;
}

.add-to-cart .add-to-cart-item .thumb {
	float: left;
	margin-right: 10px;
}

.add-to-cart .add-to-cart-item .details {
	font-size: 18px;
	margin-left: 75px;
}

.add-to-cart .add-to-cart-item .details .name {
	font-weight: bold;
	color: inherit;
}

.add-to-cart .add-to-cart-item .price {
	font-size: 22px;
	text-align: right;
	font-weight: bold;
}

.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel:before,
.owl-carousel:after {
	content: " ";
	display: table;
}

.owl-carousel:after {
	clear: both;
}

.owl-carousel:before,
.owl-carousel:after {
	content: " ";
	display: table;
}

.owl-carousel:after {
	clear: both;
}

.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-wrapper-outer .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-wrapper-outer .owl-wrapper:after:before,
.owl-carousel .owl-wrapper-outer .owl-wrapper:after:after {
	content: " ";
	display: table;
}

.owl-carousel .owl-wrapper-outer .owl-wrapper:after:after {
	clear: both;
}

.owl-carousel .owl-wrapper-outer .owl-wrapper:after:before,
.owl-carousel .owl-wrapper-outer .owl-wrapper:after:after {
	content: " ";
	display: table;
}

.owl-carousel .owl-wrapper-outer .owl-wrapper:after:after {
	clear: both;
}

.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item {
	float: left;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item.loading>* {
	min-height: 1px;
}

.owl-carousel .owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.owl-carousel .owl-controls .owl-buttons .owl-prev,
.owl-carousel .owl-controls .owl-buttons .owl-next {
	cursor: pointer;
	position: absolute !important;
	top: 50% !important;
	display: table;
	width: 25px;
	height: 125px;
	text-align: center;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: rgba(255, 255, 255, 0.7);
	font-size: 120px;
	overflow: hidden;
	transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-webkit-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	-sm-transition: 0.3s ease-out;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev span.glyphicon,
.owl-carousel .owl-controls .owl-buttons .owl-next span.glyphicon {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: auto;
	height: auto;
	font-size: 25px;
	line-height: 125px;
	color: #ec7205;
	transition: 0.3s ease-in;
	-moz-transition: 0.3s ease-in;
	-webkit-transition: 0.3s ease-in;
	-o-transition: 0.3s ease-in;
	-sm-transition: 0.3s ease-in;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev:hover,
.owl-carousel .owl-controls .owl-buttons .owl-next:hover {
	color: #ffffff;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev:hover span.glyphicon,
.owl-carousel .owl-controls .owl-buttons .owl-next:hover span.glyphicon {
	color: #154259;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev {
	left: 3px;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev:before {
	content: "\e075";
}

.owl-carousel .owl-controls .owl-buttons .owl-next {
	right: 5px;
}

.owl-carousel .owl-controls .owl-buttons .owl-next:before {
	content: "\e071";
}

.carousel,
.carousel__component--carousel {
	width: auto;
	margin: 10px -10px;
	text-align: center;
}

.carousel .carousel__item,
.carousel__component--carousel .carousel__item {
	display: block;
	margin: 0 10px;
	padding: 10px 0;
}

.carousel .carousel__item .thumb,
.carousel__component--carousel .carousel__item .thumb,
.carousel .carousel__item .carousel__item--thumb,
.carousel__component--carousel .carousel__item .carousel__item--thumb {
	margin-bottom: 20px;
	height: 140px;
}

.carousel .carousel__item .thumb img,
.carousel__component--carousel .carousel__item .thumb img,
.carousel .carousel__item .carousel__item--thumb img,
.carousel__component--carousel .carousel__item .carousel__item--thumb img {
	max-width: 140px;
	max-height: 140px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.carousel .carousel__item a,
.carousel__component--carousel .carousel__item a {
	color: #19212b;
}

.carousel .carousel__item a:hover,
.carousel__component--carousel .carousel__item a:hover,
.carousel .carousel__item a:focus,
.carousel__component--carousel .carousel__item a:focus {
	text-decoration: none;
	color: #47b6b1;
}

.carousel .carousel__item .item__name,
.carousel__component--carousel .carousel__item .item__name,
.carousel .carousel__item .carousel__item--name,
.carousel__component--carousel .carousel__item .carousel__item--name {
	margin-top: 13.33333333px;
	margin-bottom: 11px;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2em;
	overflow: hidden;
	position: relative;
	height: 2.4em;
	font-weight: 600;
	font-size: 16px;
	color: #154259;
}

.carousel .carousel__item .item__name:before,
.carousel__component--carousel .carousel__item .item__name:before,
.carousel .carousel__item .carousel__item--name:before,
.carousel__component--carousel .carousel__item .carousel__item--name:before {
	background: #FFF none repeat scroll 0 0;
	bottom: 0;
	position: absolute;
	right: 0;
	content: "…";
}

.carousel .carousel__item .item__name:after,
.carousel__component--carousel .carousel__item .item__name:after,
.carousel .carousel__item .carousel__item--name:after,
.carousel__component--carousel .carousel__item .carousel__item--name:after {
	content: "";
	background: #FFF none repeat scroll 0% 0%;
	position: absolute;
	height: 50px;
	width: 100%;
	z-index: 1;
}

.carousel .carousel__item .item__price,
.carousel__component--carousel .carousel__item .item__price,
.carousel .carousel__item .carousel__item--price,
.carousel__component--carousel .carousel__item .carousel__item--price {
	margin: 10px;
	color: #19212b;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.carousel-component,
.carousel__component {
	padding: 0 20px;
	margin: 35px 0 15px;
}

.carousel-component:before,
.carousel__component:before,
.carousel-component:after,
.carousel__component:after {
	content: " ";
	display: table;
}

.carousel-component:after,
.carousel__component:after {
	clear: both;
}

.carousel-component:before,
.carousel__component:before,
.carousel-component:after,
.carousel__component:after {
	content: " ";
	display: table;
}

.carousel-component:after,
.carousel__component:after {
	clear: both;
}

.carousel-component .carousel__component--headline,
.carousel__component .carousel__component--headline {
	color: #154259;
	font-size: 28px;
	margin: 10px 0 20px;
	text-align: center;
	font-weight: bold;
	text-transform: normal;
}

.carousel-component:first-child,
.carousel__component:first-child {
	margin: 50px 0 22px;
}

.carousel-component+.carousel-component,
.carousel__component+.carousel-component,
.carousel-component .carousel__component,
.carousel__component .carousel__component {
	margin-top: 0;
	border-top: 4px solid #f2f2f2;
	padding-top: 30px;
}

.rotating-image-componet:before,
.rotating-image-componet:after {
	content: " ";
	display: table;
}

.rotating-image-componet:after {
	clear: both;
}

.rotating-image-componet:before,
.rotating-image-componet:after {
	content: " ";
	display: table;
}

.rotating-image-componet:after {
	clear: both;
}

.rotating-image-componet .carousel.rotating-image {
	margin: 0;
}

.rotating-image-componet .owl-item .item {
	padding: 0;
	margin: 0;
}

.rotating-image-componet .owl-item img {
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
}

.rotating-image-componet .owl-controls .owl-pagination {
	display: block !important;
}

.image-gallery .image-gallery__image .owl-item .item {
	padding: 0;
}

.image-gallery .image-gallery__image .owl-item img {
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
}

@media(min-width:1024px) and (max-width:1399px) {
	.image-gallery .image-gallery__image .owl-controls {
		display: none !important;
	}
}

@media(min-width:1400px) {
	.image-gallery .image-gallery__image .owl-controls {
		display: none !important;
	}
}

.image-gallery .gallery-carousel .owl-item img {
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
}

.simpleimagecomponent a {
	display: block;
}

.simpleimagecomponent a img {
	width: 100%;
	height: auto;
}

.banner-component {
	width: 100%;
}

.banner-component a {
	display: block;
	color: #19212b;
	text-decoration: none;
}

.banner-component a:before,
.banner-component a:after {
	content: " ";
	display: table;
}

.banner-component a:after {
	clear: both;
}

.banner-component a:before,
.banner-component a:after {
	content: " ";
	display: table;
}

.banner-component a:after {
	clear: both;
}

.banner-component .title {
	font-weight: bold;
}

.banner-component .thumb {
	padding: 10px 0;
}

.banner-component .thumb img {
	width: 100%;
	height: auto;
}

@media(max-width:639px) {

	.simple-banner-component,
	.banner__component {
		margin-left: -10px;
		margin-right: -10px;
	}
}

.simple-banner-component a,
.banner__component a {
	display: block;
}

.simple-banner-component img,
.banner__component img {
	width: 100%;
	height: auto;
}

.image-map-component img {
	width: 100%;
	height: auto;
}

.cms-image-component img {
	width: 100%;
	height: auto;
}

.tabs {
	margin: 60px 0 0;
}

@media(max-width:1023px) {
	.tabs {
		border-top: 1px solid #cccccc;
	}
}

.tabs .tabs-list {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
	border-bottom: 1px solid #dddddd;
	display: table;
	margin: 0 auto;
	border: 0;
}

.tabs .tabs-list>li {
	position: relative;
	display: block;
}

.tabs .tabs-list>li>a {
	position: relative;
	display: block;
	padding: 10px 15px;
}

.tabs .tabs-list>li>a:hover,
.tabs .tabs-list>li>a:focus {
	text-decoration: none;
	background-color: #eeeeee;
}

.tabs .tabs-list>li.disabled>a {
	color: #777777;
}

.tabs .tabs-list>li.disabled>a:hover,
.tabs .tabs-list>li.disabled>a:focus {
	color: #777777;
	text-decoration: none;
	background-color: transparent;
	cursor: not-allowed;
}

.tabs .tabs-list .open>a,
.tabs .tabs-list .open>a:hover,
.tabs .tabs-list .open>a:focus {
	background-color: #eeeeee;
	border-color: #ec7205;
}

.tabs .tabs-list .nav-divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5;
}

.tabs .tabs-list>li>a>img {
	max-width: none;
}

.tabs .tabs-list>li {
	float: left;
	margin-bottom: -1px;
}

.tabs .tabs-list>li>a {
	margin-right: 2px;
	line-height: 1.42857143;
	border: 1px solid transparent;
	border-radius: 0 0 0 0;
}

.tabs .tabs-list>li>a:hover {
	border-color: #eeeeee #eeeeee #dddddd;
}

.tabs .tabs-list>li.active>a,
.tabs .tabs-list>li.active>a:hover,
.tabs .tabs-list>li.active>a:focus {
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-bottom-color: transparent;
	cursor: default;
}

.tabs .tabs-list.nav-justified {
	width: 100%;
	border-bottom: 0;
}

.tabs .tabs-list.nav-justified>li {
	float: none;
}

.tabs .tabs-list.nav-justified>li>a {
	text-align: center;
	margin-bottom: 5px;
}

.tabs .tabs-list.nav-justified>.dropdown .dropdown-menu {
	top: auto;
	left: auto;
}

@media(min-width:640px) {
	.tabs .tabs-list.nav-justified>li {
		display: table-cell;
		width: 1%;
	}

	.tabs .tabs-list.nav-justified>li>a {
		margin-bottom: 0;
	}
}

.tabs .tabs-list.nav-justified>li>a {
	margin-right: 0;
	border-radius: 0;
}

.tabs .tabs-list.nav-justified>.active>a,
.tabs .tabs-list.nav-justified>.active>a:hover,
.tabs .tabs-list.nav-justified>.active>a:focus {
	border: 1px solid #dddddd;
}

@media(min-width:640px) {
	.tabs .tabs-list.nav-justified>li>a {
		border-bottom: 1px solid #dddddd;
		border-radius: 0 0 0 0;
	}

	.tabs .tabs-list.nav-justified>.active>a,
	.tabs .tabs-list.nav-justified>.active>a:hover,
	.tabs .tabs-list.nav-justified>.active>a:focus {
		border-bottom-color: #ffffff;
	}
}

.tabs .tabs-list .current-info {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.tabs .tabs-list li {
	padding: 0 20px;
}

.tabs .tabs-list li a {
	text-transform: uppercase;
	color: #ec7205;
	padding: 0 0 5px 0;
	border: 0;
	border-bottom: 4px solid transparent;
}

.tabs .tabs-list li a:focus,
.tabs .tabs-list li a:hover {
	cursor: pointer;
	background-color: transparent;
}

.tabs .tabs-list li+li:before {
	content: "";
	position: absolute;
	height: 15px;
	left: 0;
	top: 2px;
	border-left: 1px solid #cccccc;
}

.tabs .tabs-list li.active a,
.tabs .tabs-list li.active a:hover,
.tabs .tabs-list li.active a:focus {
	color: #19212b;
	font-weight: bold;
	border: 0;
	border-bottom: 4px solid #47b6b1;
}

.tabs .tabhead {
	height: 75px;
	display: table;
}

@media(max-width:639px) {
	.tabs .tabhead {
		display: none !important;
	}
}

@media(max-width:767px) {
	.tabs .tabhead {
		display: none !important;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.tabs .tabhead {
		display: none !important;
	}
}

.tabs .tabhead+.tabbody {
	display: none !important;
}

.tabs .tabhead.active {
	font-weight: bold;
}

.tabs .tabhead.active+.tabbody {
	display: block !important;
}

.tabs .tabhead a {
	padding: 0 10px;
	color: inherit;
	line-height: 1;
	text-decoration: none;
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}

@media(max-width:1024px) {
	.tabs .tabhead a {
		padding-left: 20px;
	}
}

.tabs .tabhead .glyphicon {
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
}

.tabs .tabhead .glyphicon:before {
	content: "\e080";
}

@media(max-width:1024px) {
	.tabs .tabhead .glyphicon {
		padding-right: 20px;
	}
}

.tabs .tabhead.active .glyphicon:before {
	content: "\e114";
}

.tabs .tabbody {
	border-bottom: 1px solid #cccccc;
	padding: 20px 0px;
	padding-left: 30px;
	padding-right: 30px;
	background-color: #f2f2f2;
}

@media(max-width:1024px) {
	.tabs .tabbody {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(min-width:1024px) {
	.tabs .tabbody {
		border-top: 1px solid #cccccc;
	}
}

@media(max-width:639px) {
	.tabs.tabs-responsive .tabs-list {
		display: none !important;
	}
}

@media(max-width:767px) {
	.tabs.tabs-responsive .tabs-list {
		display: none !important;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.tabs.tabs-responsive .tabs-list {
		display: none !important;
	}
}

.tabs.tabs-responsive .tabhead {
	text-transform: uppercase;
	display: none !important;
	border-bottom-color: #cccccc;
}

.tabs.tabs-responsive .tabhead.active {
	border-bottom: 4px solid #47b6b1;
}

@media(max-width:1023px) {
	.tabs.tabs-responsive .tabhead {
		display: table !important;
	}
}

.tabs.tabs-accordion .tabs-list {
	display: none !important;
}

.tabs.tabs-accordion .tabhead {
	display: table !important;
	margin-bottom: 20px;
}

.languagecurrencycomponent {
	float: right !important;
}

.languagecurrencycomponent form {
	display: inline-block;
}

.languagecurrencycomponent form+form {
	margin-left: 10px;
}

.ui-helper-hidden-accessible {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.thumb {
	position: relative;
}

.thumb .badges {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	overflow: hidden;
}

.thumb .badges .badge {
	float: left;
	clear: left;
	margin-bottom: 10px;
}

.com-space>* {
	padding: 10px 0;
}

.flex-column {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: start;
	-moz-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.flex-column>* {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.product-classifications .headline {
	font-weight: bold;
	padding: 10px;
}

.product-classifications table.table td.attrib {
	width: 50%;
}

.no-space {
	padding: 0 !important;
}

.no-space .yCmsComponent {
	padding: 0 !important;
}

.simple-responsive-banner-component a,
.banner__component--responsive a {
	display: block;
}

.simple-responsive-banner-component img,
.banner__component--responsive img {
	width: 100%;
	height: auto;
}

.error-page {
	text-align: center;
}

.back-link {
	padding: 20px 0px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.back-link {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.back-link.border {
	border-bottom: 1px solid #cccccc;
}

.back-link button {
	padding: 0;
}

.back-link .glyphicon {
	border-right: 1px solid #cccccc;
	border-radius: 0;
	padding-right: 10px;
	line-height: 16px;
	top: -2px;
}

.back-link .label {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
	padding-left: 10px;
	white-space: normal;
}

.back-link .label.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

.back-link.product-details .label {
	font-weight: 600;
}

.accordion {
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}

.accordion .panel-group {
	margin: 0;
}

.accordion .panel {
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.accordion .panel .panel-heading {
	background-color: #f2f2f2;
	border-bottom: 1px solid #ffffff;
	position: relative;
	padding: 0;
}

.accordion .panel .panel-heading .accordion-toggle {
	display: block;
	color: #19212b;
	padding: 20px 30px;
}

.accordion .panel .panel-heading .accordion-toggle:before {
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.accordion .panel .panel-heading .accordion-toggle:before {
	content: "\e113";
}

.accordion .panel .panel-heading .accordion-toggle.collapsed:before {
	content: "\e114";
}

.accordion .panel .panel-heading .accordion-lnk {
	position: absolute;
	left: 55px;
	top: 20px;
}

.accordion .panel .panel-heading .accordion-lnk.no-subs {
	display: block;
	position: static;
	padding: 20px;
}

.accordion .panel .panel-collapse .panel-heading {
	background-color: #e6e6e6;
}

.accordion .panel .panel-collapse .panel-heading .accordion-lnk {
	left: 75px;
}

.accordion .panel .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 75px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-heading {
	background-color: #d9d9d9;
}

.accordion .panel .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 95px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 95px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-heading {
	background-color: #cccccc;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 115px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 115px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading {
	background-color: #bfbfbf;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 135px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 135px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading {
	background-color: #b3b3b3;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 155px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 155px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading {
	background-color: #a6a6a6;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 175px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 175px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading {
	background-color: #999999;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 195px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 195px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading {
	background-color: #8c8c8c;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 215px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 215px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading {
	background-color: #808080;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 235px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 235px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading {
	background-color: #737373;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk {
	left: 255px;
}

.accordion .panel .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-collapse .panel-heading .accordion-lnk.no-subs {
	padding-left: 255px;
}

.accordion .panel .panel-heading+.panel-collapse>.panel-body {
	border: none;
	padding: 0;
}

.pageType-CategoryPage .map img {
	min-width: 100%;
}

.searchEmptyPageMiddle-component {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.searchEmptyPageMiddle-component {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(min-width:1024px) {
	.product__list--wrapper {
		padding: 0;
		margin: 0 0 0 -20px;
	}
}

@media(min-width:768px) {
	.product__list--wrapper .pagination-wrap {
		padding-right: 0;
	}
}

.searchSpellingSuggestionPrompt {
	padding-left: 20px;
	padding-right: 20px;
}

@media(max-width:768px) {
	.pagination-bar .sort-refine-bar button {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.results h1 {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
	margin-top: 20px;
	padding-left: 20px;
	padding-bottom: 0;
}

.results h1.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

.product__listing {
	padding-left: 0;
	list-style: none;
}

.product__listing .product__listing--promo {
	color: #3e5983;
	margin-bottom: 10px;
}

a.product__listing .product__listing--promo:hover,
a.product__listing .product__listing--promo:focus {
	color: #2e4160;
}

@media(min-width:1024px) {
	.product__listing .product__listing--promo {
		padding-right: 20px;
		margin: 0 -10px;
	}
}

.product__listing .product__list--price-panel {
	text-align: right;
}

.product__listing .product__list--name {
	display: block;
	text-transform: uppercase;
	font-weight: bold;
	margin: 0 0 10px 106px;
	color: inherit;
}

.product__listing .product__listing--description {
	margin: 0 210px 0 106px;
}

@media(max-width:639px) {
	.product__listing .product__listing--description {
		display: none !important;
	}
}

@media(max-width:767px) {
	.product__listing .product__listing--description {
		display: none !important;
	}
}

.product__listing .addtocart {
	clear: both;
	text-align: center;
	padding: 10px 0 0 0;
}

.product__listing .addtocart button {
	margin-bottom: 5px;
}

@media(min-width:1024px) {

	.product__listing .addtocart .pickup-in-store-available .ProductGridComponent-ListPickUpInStoreAction,
	.product__listing .addtocart .pickup-in-store-available .ProductGridComponent-ListAddToCartAction,
	.product__listing .addtocart .pickup-in-store-available .SearchResultsList-ListPickUpInStoreAction,
	.product__listing .addtocart .pickup-in-store-available .SearchResultsList-ListAddToCartAction,
	.product__listing .addtocart .pickup-in-store-available .SearchResultsGrid-ListPickUpInStoreAction,
	.product__listing .addtocart .pickup-in-store-available .SearchResultsGrid-ListAddToCartAction {
		width: 49%;
		display: inline-block;
		float: left;
	}
}

@media(min-width:1024px) and (max-width:1399px) {
	.product__listing .addtocart .pickup-in-store-available {
		margin: 0 -4px;
	}

	.product__listing .addtocart .pickup-in-store-available .ProductGridComponent-ListPickUpInStoreAction,
	.product__listing .addtocart .pickup-in-store-available .ProductGridComponent-ListAddToCartAction,
	.product__listing .addtocart .pickup-in-store-available .SearchResultsList-ListPickUpInStoreAction,
	.product__listing .addtocart .pickup-in-store-available .SearchResultsList-ListAddToCartAction,
	.product__listing .addtocart .pickup-in-store-available .SearchResultsGrid-ListPickUpInStoreAction,
	.product__listing .addtocart .pickup-in-store-available .SearchResultsGrid-ListAddToCartAction {
		padding: 0 3.33333333px;
	}
}

.product__listing.product__list .product__list--item {
	padding: 20px 30px;
	border-top: 1px solid #f2f2f2;
}

.product__listing.product__list .product__list--item:nth-of-type(2n) {
	background-color: #f2f2f2;
}

@media(max-width:1024px) {
	.product__listing.product__list .product__list--item {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.product__listing.product__list .product__list--thumb {
	float: left;
	margin-right: 10px;
	display: block;
}

.product__listing.product__list .product__list--price-panel {
	float: right;
	width: 200px;
}

.product__listing.product__list .ProductListComponent-ListPickUpInStoreAction,
.product__listing.product__list .ProductListComponent-ListAddToCartAction,
.product__listing.product__list .SearchResultsList-ListPickUpInStoreAction,
.product__listing.product__list .SearchResultsList-ListAddToCartAction {
	float: left;
	width: 50%;
	position: relative;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
}

@media(min-width:640px) {

	.product__listing.product__list .ProductListComponent-ListPickUpInStoreAction,
	.product__listing.product__list .ProductListComponent-ListAddToCartAction,
	.product__listing.product__list .SearchResultsList-ListPickUpInStoreAction,
	.product__listing.product__list .SearchResultsList-ListAddToCartAction {
		float: left;
		width: 33.33333333%;
	}
}

@media(min-width:640px) {

	.product__listing.product__list .ProductListComponent-ListPickUpInStoreAction,
	.product__listing.product__list .ProductListComponent-ListAddToCartAction,
	.product__listing.product__list .SearchResultsList-ListPickUpInStoreAction,
	.product__listing.product__list .SearchResultsList-ListAddToCartAction {
		left: 33.33333333%;
	}
}

.product__listing.product__list .ProductListComponent-ListOrderFormAction,
.product__listing.product__list .SearchResultsList-ListOrderFormAction {
	float: left;
	width: 50%;
	left: 50%;
	position: relative;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
}

@media(min-width:640px) {

	.product__listing.product__list .ProductListComponent-ListOrderFormAction,
	.product__listing.product__list .SearchResultsList-ListOrderFormAction {
		float: left;
		width: 33.33333333%;
	}
}

@media(min-width:640px) {

	.product__listing.product__list .ProductListComponent-ListOrderFormAction,
	.product__listing.product__list .SearchResultsList-ListOrderFormAction {
		left: 0%;
	}
}

@media(max-width:639px) {
	.product__listing.product__list .product__list--price-panel {
		text-align: left;
		float: none;
		margin-left: 106px;
		width: auto;
	}
}

.product__listing.product__grid {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.product__listing.product__grid .product-item {
	float: left;
	width: 50%;
	position: relative;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
	padding: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media(min-width:640px) {
	.product__listing.product__grid .product-item {
		float: left;
		width: 25%;
	}
}

@media(min-width:1024px) {
	.product__listing.product__grid .product-item {
		float: left;
		width: 25%;
	}
}

@media(min-width:1400px) {
	.product__listing.product__grid .product-item {
		float: left;
		width: 25%;
	}
}

.product__listing.product__grid .product-item:first-child {
	margin-left: -1px;
}

.product__listing.product__grid .thumb {
	display: block;
	margin-bottom: 10px;
	text-align: center;
	height: 180px;
	overflow: hidden;
}

.product__listing.product__grid .thumb img {
	width: 100%;
	height: auto;
	max-width: 140px;
}

.product__listing.product__grid .details {
	text-align: center;
	margin: 0 auto;
	-webkit-flex: 1 0 auto;
	-moz-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

.product__listing.product__grid .details .name {
	margin: 0;
	font-weight: 600;
	font-size: 16px;
	padding-bottom: 10px;
	height: 70px;
	overflow: hidden;
	color: #154259;
}

.product__listing.product__grid .details .price {
	font-size: 18px;
}

.product__listing.product__grid .details .promo {
	color: #00a651;
	font-size: 14px;
	font-weight: bold;
}

@media(min-width:640px) {
	.product__listing.product__grid .product-item:nth-child(4n+1) {
		clear: both;
	}
}

@media(max-width:639px) {
	.product__listing.product__grid .product-item:nth-child(2n+1) {
		clear: both;
	}
}

.search-empty {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.search-empty .headline {
	margin-bottom: 20px;
}

.search-empty .search-suggestions {
	margin-bottom: 20px;
}

.product-category-page .product-categories .refine-bar {
	padding-bottom: 10px;
	padding-top: 10px;
}

.product-category-page .product-categories .pcp-prod,
.product-category-page .product-categories .pcp-banner {
	padding-left: 0;
	padding-right: 0;
}

.product-category-page .product-categories .pcp-banner .simple-responsive-banner-component,
.product-category-page .product-categories .pcp-banner .banner__component--responsive {
	margin-right: -20px;
}

.product-category-page .product-categories .pcp-banner {
	padding-top: 10px;
}

@media(min-width:1024px) {
	.search-list-page-right-result-list-slot {
		margin-left: -20px;
		margin-top: -20px;
	}

	.search-list-page-right-result-list-component {
		padding-left: 20px;
	}

	.product-list-right-slot {
		margin-left: -20px;
	}

	.product-list-right-component {
		margin-left: 0;
		padding-top: 20px;
	}

	.product-list-right-component .pagination-bar {
		margin-top: 0;
	}
}

.product__facet {
	margin: 0;
	border-right: 1px solid #cccccc;
	padding: 0;
}

.product__facet .facet {
	padding: 45px 30px 30px 30px;
	border-bottom: 1px solid #cccccc;
}

.product__facet .facet:before,
.product__facet .facet:after {
	content: " ";
	display: table;
}

.product__facet .facet:after {
	clear: both;
}

.product__facet .facet:before,
.product__facet .facet:after {
	content: " ";
	display: table;
}

.product__facet .facet:after {
	clear: both;
}

.product__facet .facet:last-child {
	margin: 0;
}

.product__facet .facet .facet__name {
	font-size: 18px;
	font-weight: bold;
	color: #154259;
	margin-left: -5px;
}

.product__facet .facet .facet__list {
	padding-left: 0;
	list-style: none;
	margin: 10px 0;
}

.product__facet .facet .facet__list li {
	padding: 10px 0;
}

.product__facet .facet .facet__list label {
	cursor: pointer;
	font-weight: normal;
	display: block;
	margin: 0;
}

.product__facet .facet .facet__list .facet__list__mark {
	display: inline-block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin-right: 10px;
	border: 1px solid #cccccc;
	text-align: center;
	vertical-align: middle;
	background: #ffffff;
	margin-top: -3px;
}

.product__facet .facet .facet__list .facet__list__checkbox:checked+.facet__list__label .facet__list__mark {
	background: #ec7205;
	border: 1px solid #ec7205;
	box-shadow: inset 0 0 0 1px @check-box-bg;
	-moz-box-shadow: inset 0 0 0 1px @check-box-bg;
	-webkit-box-shadow: inset 0 0 0 1px @check-box-bg;
	-o-box-shadow: inset 0 0 0 1px @check-box-bg;
}

.product__facet .facet .facet__list .facet__list__checkbox:checked+.facet__list__label .facet__list__text {
	color: #ec7205;
}

.product__facet .facet .facet__list .facet__list__checkbox:focus+.facet__list__label .facet__list__mark {
	border: 1px solid #47b6b1;
	box-shadow: inset 0 0 0 1px @check-box-bg;
	-moz-box-shadow: inset 0 0 0 1px @check-box-bg;
	-webkit-box-shadow: inset 0 0 0 1px @check-box-bg;
	-o-box-shadow: inset 0 0 0 1px @check-box-bg;
}

.product__facet .facet .facet__list .facet__list__text {
	line-height: 20px;
}

.product__facet .facet .facet__list .facet__list--hidden {
	display: none;
}

.product__facet .facet .facet__values__more {
	display: block;
}

.product__facet .facet .facet__values__less {
	display: none;
}

.product__facet .facet .facet__form {
	padding-top: 10px;
}

.product__facet .facet .facet__form .input-group {
	background-color: #ffffff;
	min-height: 32px;
	border: 1px solid #cccccc;
}

.product__facet .facet .facet__form .input-group .form-control {
	border: 0 none;
	height: 32px;
	box-shadow: none;
}

.product__facet .facet .facet__form .input-group .btn {
	width: 40px;
	height: 32px;
	line-height: 32px;
	padding: 0;
}

.product__facet .facet .facet__form .input-group .btn .glyphicon-search {
	color: #b9bdc2;
	font-size: 17px;
	top: 0;
}

.product__facet .facet .facet__form .line-text {
	margin: 20px 0;
}

.product__facet .facet .facet__form__hidden {
	display: none;
}

.product__facet .facet .facet__results__hidden {
	display: none;
}

@media(max-width:1023px) {
	.product__facet {
		padding: 10px;
		margin: 0;
		border: 0 none;
	}

	#colorbox .product__facet {
		display: block !important;
	}

	.product__facet .facet {
		float: none;
		width: 100%;
		border: 0;
		margin: 0;
		padding: 0 0 10px 0;
	}

	.product__facet .facet .facet__name {
		background: #f2f2f2;
		cursor: pointer;
		padding: 10px;
		padding-left: 65px;
		text-transform: uppercase;
		position: relative;
	}

	.product__facet .facet .facet__name .facet__arrow {
		font-size: 12px;
		position: absolute;
		top: 17px;
		left: 30px;
	}

	.product__facet .facet .facet__name .facet__arrow:before {
		content: "\e080";
	}

	.product__facet .facet .facet__values {
		display: none;
	}

	.product__facet .facet.active .facet__arrow:before {
		content: "\e114";
	}

	.product__facet .facet.active .facet__values {
		display: block;
	}
}

.sort-refine-bar .form-group select {
	width: auto;
}

.pagination-bar {
	margin: 30px 0;
}

.pagination-bar .pagination-toolbar {
	padding-bottom: 30px;
	padding-left: 20px;
	padding-right: 30px;
	border-bottom: 1px solid #cccccc;
}

@media(max-width:1024px) {
	.pagination-bar .pagination-toolbar {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.pagination-bar .form-group {
	margin: 0;
}

.pagination-bar .pagination-bar-results {
	margin-top: 25px;
	padding: 0 20px;
	color: #929292;
}

.pagination-bar.bottom .pagination-toolbar {
	padding-top: 30px;
	border-top: 1px solid #cccccc;
	border-bottom-width: 1px;
}

@media(max-width:1023px) {
	.pagination-bar button {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
}

@media(max-width:639px) {
	.sort-refine-bar .form-group select {
		width: 100%;
	}

	.pagination-bar .pagination,
	.pagination-bar button {
		margin-top: 30px;
		width: 100%;
	}

	.pagination-bar .pagination {
		padding-top: 15px;
		padding-bottom: 15px;
		border-top: 1px solid #cccccc;
		border-bottom: 1px solid #cccccc;
	}
}

@media(min-width:640px) {
	.pagination-bar .pagination-toolbar {
		border-bottom-width: 1px;
	}

	.pagination-bar .pagination,
	.pagination-bar button {
		margin-top: 25px;
	}
}

@media(max-width:1023px) and (min-width:640px) {
	.sort-refine-bar .form-group select {
		height: 48px;
	}

	.pagination-bar .pagination,
	.pagination-bar button {
		margin-top: 24px;
	}
}

.item__list {
	margin-top: 30px;
	margin-bottom: 20px;
	padding-left: 0;
	list-style: none;
}

.item__list .item__list--item {
	border-bottom: 1px solid #e5e5e5;
	padding: 15px 0;
}

.item__list .item__list--item:nth-child(4n+4)+li .add-to-cart-order-form-wrap,
.item__list .item__list--item:nth-child(4n+4)+li .add-to-cart-order-form-wrap:after {
	background-color: #f2f2f2;
}

.item__list .item__list--item:nth-child(4n+4)+li .add-to-cart-order-form-wrap .order-form-scroll.down {
	bottom: 0;
	z-index: 9999;
}

.item__list .item__list--item:last-child {
	padding-right: 30px;
}

.item__list .item__list--item .btn-group.open .dropdown-menu {
	padding: 0;
}

.item__list .item__list--item .btn-group.open .dropdown-menu li {
	margin: 0;
}

.item__list .item__list--item .btn-group.open .dropdown-menu li:first-child {
	border-bottom: 1px solid #e5e5e5;
}

.item__list .item__list--item .btn-group.open a {
	padding: 18px 35px 18px 25px;
}

.item__list .item__list--header {
	padding-left: 0;
	list-style: none;
	display: table;
	table-layout: fixed;
	width: 100%;
}

.item__list .item__list--header li {
	display: table-cell;
	background-color: #128a9e;
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	padding: 7px 10px;
}

.item__list .item__list--header li:last-child {
	padding-right: 30px;
}

.item__list .item__toggle {
	font-size: 15px;
	width: 25px;
}

.item__list .item__toggle>* {
	cursor: pointer;
}

.item__list .item__toggle .open .glyphicon:before {
	content: "\e113";
}

.item__list .item__image {
	width: 136px;
	padding: 0 20px;
}

.item__list .item__image img {
	max-width: 96px;
}

.item__list .item__name {
	font-size: 16px;
	font-weight: 700;
}

.item__list .item__quantity {
	text-align: center;
}

.item__list .item__quantity .form-control {
	display: inline-block;
	width: 60px;
	height: 40px;
	text-align: center;
}

.item__list .item__delivery .item__delivery--label {
	text-transform: uppercase;
	color: #929292;
	font-weight: 700;
}

.item__list .item__total--column {
	text-align: right;
}

.item__list .item__total {
	font-size: 15px;
	font-weight: 700;
	text-align: right;
	padding-left: 0;
}

.item__list .item__remove,
.item__list .item__menu {
	width: 45px;
	text-align: right;
}

.item__list .item__remove .btn,
.item__list .item__menu .btn {
	font-size: 25px;
	background-color: transparent;
	padding: 0;
	border: 0;
	color: #47b6b1;
}

.item__list .item__remove .btn .glyphicon,
.item__list .item__menu .btn .glyphicon {
	top: 4px;
}

.item__list #cartOrderGridForm .product-grid-container table {
	background-color: #f2f2f2;
}

.item__list #cartOrderGridForm .product-grid-container table th {
	background-color: #e4e4e4;
	color: #19212b;
}

.item__list .promo {
	font-size: 14px;
	font-weight: 700;
	color: #00a651;
}

.item__list .promo ul {
	padding-left: 0;
	list-style: none;
}

.item__list .out-of-stock {
	color: #ed1c24;
}

.item__list .read-only-grid .grid-row>td {
	border-bottom: 1px solid #f2f2f2;
}

.item__list .read-only-grid .grid-prod-img {
	width: 100px;
	padding: 25px 40px 20px 45px;
	vertical-align: top;
}

.item__list .read-only-grid .grid-prod-img+td {
	padding-bottom: 5px;
}

.item__list .read-only-grid .grid-variant,
.item__list .read-only-grid .grid-size {
	font-weight: 700;
}

.item__list .read-only-grid .grid-variant+.grid-variant:before,
.item__list .read-only-grid .grid-size+.grid-variant:before {
	content: "|";
	font-size: 15px;
	margin: 0 10px;
	width: 1px;
	color: #cccccc;
}

.item__list .read-only-grid .grid-prod-info {
	display: inline-block;
	padding-top: 0;
	padding-right: 40px;
}

.item__list .read-only-grid .grid-qty .grid-qty-label {
	font-size: 12px;
	text-transform: uppercase;
}

.item__list .read-only-grid .grid-price:before {
	content: "|";
	font-size: 15px;
	margin: 0 10px;
	width: 1px;
	color: #cccccc;
}

@media(min-width:1024px) {
	.item__list>li .add-to-cart-order-form-wrap {
		border-bottom: 1px solid #e5e5e5;
	}

	.item__list .item__list--item {
		display: table;
		table-layout: fixed;
		width: 100%;
	}

	.item__list .item__list--item .item__sku__input,
	.item__list .item__list--item .item__toggle,
	.item__list .item__list--item .item__image,
	.item__list .item__list--item .item__info,
	.item__list .item__list--item .item__price,
	.item__list .item__list--item .item__quantity,
	.item__list .item__list--item .item__delivery,
	.item__list .item__list--item .item__total,
	.item__list .item__list--item .item__remove,
	.item__list .item__list--item .item__menu,
	.item__list .item__list--item .item__quantity__total {
		display: table-cell;
		padding: 0 10px;
		vertical-align: middle;
	}

	.item__list .item__info {
		width: 35%;
		padding: 0 10px;
	}

	.item__list .item__delivery {
		padding-left: 3%;
	}
}

@media(min-width:640px) {
	.item__list #cartOrderGridForm {
		max-height: 460px;
		overflow: scroll;
	}

	.item__list #cartOrderGridForm table tr:first-child>th:first-child,
	.item__list #cartOrderGridForm table tr>td:first-child {
		border-right: 0;
		padding-left: 40px;
	}
}

@media(max-width:1023px) {
	.item__list {
		border-top: 1px solid #e5e5e5;
		margin-top: 20px;
	}

	.item__list .item__toggle .glyphicon {
		width: 50px;
		height: 50px;
	}

	.item__list .item__image {
		float: left;
		margin: 0;
	}

	.item__list .item__price .visible-xs {
		display: inline !important;
	}

	.item__list .item__remove,
	.item__list .item__menu {
		position: absolute;
		right: 10px;
		top: 8px;
		padding: 0;
		margin: 0;
	}

	.item__list .item__remove .btn,
	.item__list .item__menu .btn {
		text-align: center;
		width: 50px;
		height: 50px;
	}

	.item__list .item__total {
		float: right;
	}

	.item__list .item__quantity__total {
		clear: both;
		float: none;
		width: auto;
		padding-right: 20px;
	}

	.item__list .item__quantity__total>.details {
		cursor: pointer;
	}

	.item__list .item__quantity__total .qty {
		line-height: 42px;
		padding-top: 10px;
	}

	.item__list .item__quantity__total .qty:before,
	.item__list .item__quantity__total .qty:after {
		content: " ";
		display: table;
	}

	.item__list .item__quantity__total .qty:after {
		clear: both;
	}

	.item__list .item__quantity__total .qty:before,
	.item__list .item__quantity__total .qty:after {
		content: " ";
		display: table;
	}

	.item__list .item__quantity__total .qty:after {
		clear: both;
	}

	.item__list .item__quantity__total .qty label {
		float: left;
		margin: 0 10px 0 0;
	}

	.item__list .item__quantity__total .qty input {
		float: left;
		width: 70px;
		text-align: center;
		padding-left: 12px;
		padding-right: 12px;
		margin-right: 10px;
	}

	.item__list .item__quantity__total .qty .qtyValue {
		float: left;
	}

	.item__list .item__quantity__total .qty .glyphicon {
		float: right;
		line-height: 40px;
		padding-left: 5px;
	}

	.item__list .item__quantity__total .open .qty .glyphicon:before {
		content: "\e114";
	}

	.item__list #cartOrderGridForm .product-grid-container {
		font-size: 14px;
		margin: 0;
	}

	.item__list #cartOrderGridForm .product-grid-container .variant-detail {
		padding-left: 20px;
		padding-top: 10px;
	}

	.item__list #cartOrderGridForm .product-grid-container .variant-detail img {
		padding-right: 10px;
	}

	.item__list #cartOrderGridForm .product-grid-container .variant-select {
		padding-top: 22px;
		padding-right: 20px;
		vertical-align: top;
	}

	.item__list #cartOrderGridForm .product-grid-container>table {
		border-bottom: 1px solid #f2f2f2;
	}

	.item__list #cartOrderGridForm .product-grid-container>table tr td {
		border-bottom: none;
	}

	.item__list #cartOrderGridForm .product-grid-container .variant-summary {
		background-color: transparent;
	}

	.item__list #cartOrderGridForm .product-grid-container .variant-summary>td {
		padding: 0 20px 20px;
	}

	.item__list #cartOrderGridForm .product-grid-container .variant-summary .variant-summary-items {
		border: none;
		margin-top: 0;
		margin-bottom: 5px;
	}

	.item__list #cartOrderGridForm .product-grid-container .variant-summary table tr td {
		padding: 0 10px 0 0;
	}

	.item__list #cartOrderGridForm .product-grid-container .variant-summary table tr td:last-child {
		padding: 0;
	}

	.item__list .read-only-grid .grid-prod-img {
		padding-left: 20px;
		padding-right: 30px;
	}

	.item__list .read-only-grid .grid-variant {
		display: block;
	}

	.item__list .read-only-grid .grid-variant+.grid-variant:before {
		content: none;
	}

	.item__list--item {
		position: relative;
	}

	.item__list--item>div {
		margin-left: 136px;
		padding: 0 80px 0 0;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.account-orderdetail .item__list {
	clear: both;
	margin-top: 0;
}

.cart-header {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 10px;
}

@media(max-width:1024px) {
	.cart-header {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.cart-header.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

.cart-header .cart-headline {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
	padding: 0px;
}

.cart-header .cart-headline.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

.cart-header .cart__id--label {
	font-size: 18px;
	font-weight: 600;
	padding: 0 5px 0 10px;
}

.cart-header .cart__id--label:before {
	content: "|";
	position: relative;
	left: -2px;
	color: #929292;
	font-weight: 400;
	vertical-align: top;
}

.cart-header .cart__id--label .cart__id {
	padding-left: 5px;
}

.cart-top-bar {
	background: #f2f2f2;
	padding: 10px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.cart-top-bar {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.cart-top-bar a.help {
	font-size: 13px;
	position: relative;
	padding-right: 25px;
}

.cart-top-bar a.help .glyphicon {
	color: #ec7205;
	font-size: 1.5em;
	position: absolute;
	right: 0;
	top: -1px;
}

.cart-top-bar .help-popup-content-holder {
	display: none;
}

.cart-restoration-bar {
	background: #F2F4F7;
	margin-bottom: 20px;
	padding: 10px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.cart-restoration-bar {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.help-popup-content strong {
	display: block;
	margin-bottom: 15px;
}

.cart__content {
	margin-left: -10px;
	margin-right: -10px;
}

.cart__top--totals {
	text-align: right;
	font-size: 15px;
	margin-top: 15px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.cart__top--totals {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.cart__top--totals .cart__top--amount {
	margin-left: 5px;
}

.cart__top--totals .cart__top--amount:before {
	content: "|";
	position: relative;
	left: -2px;
	color: #929292;
	font-weight: 400;
	top: -1px;
}

.cart__actions.border {
	border-bottom: 1px solid #e5e5e5;
}

.cart__actions,
.cart__actions--top {
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 32px;
}

@media(max-width:1024px) {

	.cart__actions,
	.cart__actions--top {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:768px) {

	.cart__actions,
	.cart__actions--top {
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
	}
}

.item__list__cart {
	margin-top: 15px;
	margin-bottom: 10px;
}

@media(min-width:1024px) {

	.item__list__cart .item__remove,
	.item__list__cart .item__menu {
		width: 60px;
	}
}

.item__list__cart .item__list--item {
	border-top: 1px solid #e5e5e5;
}

@media(min-width:1024px) {

	.item__list__cart .item__list--item .item__remove,
	.item__list__cart .item__list--item .item__menu {
		padding-right: 26px;
	}
}

.item__list__cart .item__list--item .item__menu {
	overflow: visible;
}

.item__list__cart .item__list--item .item__menu .dropdown-menu {
	padding: 5px 0;
}

.item__list__cart .item__list--comment {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.item__list__cart .item__list--comment .item__comment {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.item__list__cart .item__list--comment .item__comment {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.item__list__cart .item__list--comment .item__comment textarea {
	min-height: inherit;
	resize: none;
	margin-bottom: 20px;
}

.item__list__cart .item__list--comment .item__comment--role {
	margin-top: 38px;
}

.item__list__cart .item__list--comment .item__comment--author {
	font-weight: bold;
}

.item__list__cart .item__quantity {
	text-align: left;
}

.item__list__cart .notification.has-error {
	padding: 0 30px;
	text-align: center;
	margin-top: 10px;
}

.item__list__cart .item__configurations {
	margin: 10px 0;
}

@media(max-width:480px) {
	.item__list__cart .item__configuration--entry {
		margin-bottom: 5px;
	}
}

.item__list__cart .item__configurations--edit .btn {
	padding-left: 0;
}

.item__list__cart .item__configurations--edit .btn:hover {
	color: #154259;
}

.cart__head--link:after {
	content: "|";
	position: relative;
	left: 5px;
	color: #929292;
	font-weight: 400;
	vertical-align: top;
}

.cart__head--link:first-child:after {
	content: "";
	position: relative;
	left: 0px;
	color: #929292;
	font-weight: 400;
	vertical-align: top;
}

.save__cart--link,
.new__cart--link,
.cart__quotes--link {
	text-align: right;
	margin-top: 12px;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-block;
	white-space: nowrap;
	float: right;
	padding: 0 5px;
}

@media(max-width:1023px) {

	.save__cart--link,
	.new__cart--link,
	.cart__quotes--link {
		text-align: left;
	}
}

@media(max-width:639px) {

	.save__cart--link,
	.new__cart--link,
	.cart__quotes--link {
		text-align: center;
		margin-top: 0;
	}
}

.export__cart--link {
	text-align: left;
	width: 100%;
	margin-top: 15px;
	padding-right: 20px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	display: inline-block;
	white-space: nowrap;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.export__cart--link {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {
	.export__cart--link {
		padding-top: 5px;
	}
}

.cart-totals {
	font-size: 18px;
	line-height: 2em;
	margin-top: 25px;
	padding-left: 20px;
	padding-right: 20px;
}

@media(max-width:1024px) {
	.cart-totals {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.cart-totals .cart-totals-left {
	padding-left: 50px;
}

.cart-totals .cart-totals-right {
	font-weight: bold;
	padding-left: 0;
	padding-right: 60px;
}

.cart-totals .cart-price {
	font-weight: bold;
}

.cart-totals .discount {
	color: #00a651;
}

.cart-totals .grand-total {
	font-size: 22px;
	text-transform: uppercase;
	line-height: 1.3em;
	font-weight: bold;
	padding-top: 15px;
	padding-bottom: 15px;
}

.cart-totals .cart-totals-taxes {
	clear: both;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5em;
	padding-right: 60px;
	padding-left: 55px;
}

@media(max-width:1023px) and (min-width:640px) {

	.cart-totals .cart-totals-left,
	.cart-totals .cart-totals-right,
	.cart-totals .cart-totals-taxes {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media(max-width:639px) {

	.cart-totals .cart-totals-left,
	.cart-totals .cart-totals-right,
	.cart-totals .cart-totals-taxes {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {
	.cart__actions {
		margin: 0;
	}

	.cart__actions .pull-right {
		float: none !important;
	}

	.cart__actions .row {
		margin: 0;
	}
}

.express-checkout {
	background-color: #f2f2f2;
	padding: 20px 40px;
	margin: 20px 0;
}

@media(min-width:768px) {
	.express-checkout {
		margin-right: 20px;
	}
}

@media(min-width:1024px) {
	.express-checkout {
		margin-right: 30px;
	}
}

.express-checkout .headline {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.express-checkout ul {
	margin-top: 5px;
}

.express-checkout ul li {
	list-style-type: disc;
}

@media(max-width:1023px) and (min-width:640px) {
	.express-checkout {
		padding: 20px;
		margin-right: 20px;
	}
}

@media(max-width:639px) {
	.express-checkout {
		margin: 0 0 20px 0;
		padding: 20px;
	}
}

.cartpotproline,
.cartproline {
	font-size: 18px;
	padding-bottom: 25px;
	border-bottom: 1px solid #e5e5e5;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {

	.cartpotproline,
	.cartproline {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.cartpotproline .info,
.cartproline .info {
	font-size: 14px;
}

.promotion {
	font-size: 14px;
	font-weight: bold;
	color: #00a651;
}

.error-details-section .action {
	text-align: center;
	margin: 10px 0;
}

.doFlowSelectedChange,
#selectPciOption {
	margin-top: 20px;
}

@media(max-width:639px) {

	.cartpotproline,
	.cartproline {
		padding: 10px 20px 25px;
	}

	.btn--continue-shopping,
	.btn--continue-checkout,
	.btn-create-quote {
		margin-bottom: 15px;
	}

	.doFlowSelectedChange {
		margin-top: 20px;
	}
}

#cboxContent .cart_popup_error_msg {
	margin-bottom: 20px;
}

.content__empty .content {
	margin: 0 auto;
	width: 50%;
}

.mini-cart .mini-cart-body:before,
.mini-cart .mini-cart-body:after {
	content: " ";
	display: table;
}

.mini-cart .mini-cart-body:after {
	clear: both;
}

.mini-cart .mini-cart-body:before,
.mini-cart .mini-cart-body:after {
	content: " ";
	display: table;
}

.mini-cart .mini-cart-body:after {
	clear: both;
}

.mini-cart .mini-cart-body .legend {
	margin-bottom: 10px;
}

.mini-cart .mini-cart-body .legend a {
	float: right;
}

.mini-cart .mini-cart-body .mini-cart-list {
	padding-left: 0;
	list-style: none;
}

.mini-cart .mini-cart-body .mini-cart-list li+li {
	margin-top: 10px;
}

.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item:before,
.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item:after {
	content: " ";
	display: table;
}

.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item:after {
	clear: both;
}

.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item:before,
.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item:after {
	content: " ";
	display: table;
}

.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item:after {
	clear: both;
}

.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item .thumb {
	float: left;
	margin-right: 10px;
}

.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item .details {
	margin-left: 75px;
}

.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item .details .name {
	font-weight: bold;
	color: inherit;
}

.mini-cart .mini-cart-body .mini-cart-list .mini-cart-item .price {
	text-align: right;
	font-weight: bold;
}

.mini-cart .mini-cart-body .mini-cart-totals {
	border: 1px solid #e5e5e5;
	border-width: 1px 0;
	margin: 10px 0 30px;
	padding: 10px;
}

.mini-cart .mini-cart-body .mini-cart-totals .key {
	float: left;
}

.mini-cart .mini-cart-body .mini-cart-totals .value {
	text-align: right;
}

.mini-cart .mini-cart-body .mini-cart-checkout-button {
	margin: 10px 0;
}

.mini-cart .mini-cart-body img {
	width: 100%;
}

#quoteForm .form__actions {
	margin-bottom: 30px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	#quoteForm .form__actions {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {

	#quoteForm .form__actions--cancel,
	#quoteForm .form__actions--done {
		margin-bottom: 15px;
	}
}

.cart__quote__edit .quote__head {
	color: #ffffff;
	background-color: #128a9e;
	padding: 20px 0;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.cart__quote__edit .quote__head {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.cart__quote__edit .quote__head .quote__head--label {
	color: #ffffff;
	font-size: 15px;
	margin-bottom: 0;
}

.cart__quote__edit .quote__head .label__value {
	display: inline-block;
}

.cart__quote__edit .quote__head .glyphicon {
	font-size: 30px;
	position: absolute;
	height: 30px;
	line-height: 20px;
}

@media(max-width:639px) {
	.cart__quote__edit .quote__head .glyphicon {
		top: 8px;
	}
}

.cart__quote__edit .quote__head .quote__head--title {
	font-size: 15px;
	text-transform: uppercase;
	margin-left: 33px;
	display: inline-block;
}

#quoteFormDiv {
	background: #f8f8f8;
	padding-top: 25px;
}

#quoteFormDiv label {
	color: #19212b;
	font-size: 14px;
	font-weight: bold;
}

.quote__comments--wrapper {
	padding-top: 20px;
	padding-bottom: 50px;
}

.quote__form--section {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.quote__form--section {
		padding-left: 20px;
		padding-right: 20px;
	}
}

textarea.quote__comments--textarea {
	min-height: 100px;
	max-width: 100%;
	width: 100%;
}

.quote__comments__header {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding: 20px 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 30px;
}

@media(max-width:1024px) {
	.quote__comments__header {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.quote__comments__header .quote__comments--toggle {
	background: none;
	border: none;
}

.quote__comments__header .quote__comments--toggle.collapsed:after {
	font-family: 'Glyphicons Halflings';
	content: "\e114";
}

.quote__comments__header .quote__comments--toggle:after {
	font-family: 'Glyphicons Halflings';
	content: "\e113";
	position: relative;
	top: 2px;
}

.quote__comments {
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 20px;
}

@media(max-width:1024px) {
	.quote__comments {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.quote__comments .quote__comments--header {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 20px;
}

#quoteFormDiv .quote__comments {
	margin-top: 0;
}

.quote__comments .quote__comments--time {
	font-weight: bold;
}

@media(max-width:768px) {
	.quote__comments .quote__comments--time {
		margin-bottom: 5px;
	}
}

.quote__comments .quote__comments--role {
	font-weight: bold;
}

.quote__comments .quote__comments--comment {
	word-break: break-all;
}

@media(min-width:1024px) {
	.form-element-icon.datepicker.quote__expiration .glyphicon {
		top: 10px;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.form-element-icon.datepicker.quote__expiration .glyphicon {
		top: 28px;
	}
}

@media(min-width:1024px) {
	.quote__expiration .form-group {
		display: table;
		width: 100%;
		margin-bottom: 0;
		margin-top: 10px;
	}
}

@media(min-width:1024px) {
	.quote__expiration--label {
		display: table-cell;
		text-align: right;
		padding-right: 10px;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.quote__expiration--label {
		margin-bottom: 0px;
	}
}

@media(min-width:1024px) {
	.quote__expiration--input {
		display: table-cell;
	}
}

@media(min-width:640px) and (max-width:1023px) {
	.quote__expiration--input {
		padding: 5px 10px;
		height: 28px;
	}
}

@media(min-width:1024px) {
	#colorbox #cboxTitle .headline-text {
		display: block !important;
	}
}

.pickup-component .find-store-display:before,
.pickup-component .find-store-display:after {
	content: " ";
	display: table;
}

.pickup-component .find-store-display:after {
	clear: both;
}

.pickup-component .find-store-display:before,
.pickup-component .find-store-display:after {
	content: " ";
	display: table;
}

.pickup-component .find-store-display:after {
	clear: both;
}

.pickup-component .find-store-display .store-navigation {
	float: left;
	width: 50%;
	border-right: 1px solid #47b6b1;
}

.pickup-component .find-store-display .store-navigation .pickup-product {
	display: none;
	height: 56px;
	display: table;
	width: 100%;
	font-size: 13px;
	font-weight: bold;
	overflow: hidden;
	border-bottom: 1px solid #ddd;
}

.pickup-component .find-store-display .store-navigation .pickup-product .thumb,
.pickup-component .find-store-display .store-navigation .pickup-product .name,
.pickup-component .find-store-display .store-navigation .pickup-product .price {
	height: 56px;
	display: table-cell;
	vertical-align: middle;
	overflow: hidden;
}

.pickup-component .find-store-display .store-navigation .pickup-product .thumb {
	width: 56px;
	padding: 10px;
}

.pickup-component .find-store-display .store-navigation .pickup-product .thumb img {
	height: 100%;
	width: 100%;
}

.pickup-component .find-store-display .store-navigation .pickup-product .price {
	padding: 0 10px;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product {
	height: 56px;
	display: table;
	border-bottom: 1px solid #ddd;
	width: 100%;
	font-size: 13px;
	overflow: hidden;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product .pickup-search-bar {
	height: 56px;
	display: table-cell;
	padding-right: 10px;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product .pickup-search-bar .input-group {
	border: 1px solid #cccccc;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product .pickup-search-bar .input-group-btn {
	vertical-align: top;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product .pickup-search-bar .input-group .form-control {
	border: 0 none;
	height: 42px;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product .pickup-search-bar .input-group .btn {
	box-shadow: none !important;
	height: 42px;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product .pickup-search-bar .input-group .btn .glyphicon {
	top: 0;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product .near-me {
	height: 56px;
	display: table-cell;
	padding: 0 10px;
	vertical-align: middle;
	display: none;
}

.pickup-component .find-store-display .store-navigation .pickup-search-product .near-me .near-store span {
	margin-right: 10px;
}

.pickup-component .find-store-display .store-navigation .store-navigation-pager {
	height: 42px;
	line-height: 42px;
	padding: 0 10px;
	background: #fff;
}

.pickup-component .find-store-display .store-navigation .store-navigation-pager:before,
.pickup-component .find-store-display .store-navigation .store-navigation-pager:after {
	content: " ";
	display: table;
}

.pickup-component .find-store-display .store-navigation .store-navigation-pager:after {
	clear: both;
}

.pickup-component .find-store-display .store-navigation .store-navigation-pager:before,
.pickup-component .find-store-display .store-navigation .store-navigation-pager:after {
	content: " ";
	display: table;
}

.pickup-component .find-store-display .store-navigation .store-navigation-pager:after {
	clear: both;
}

.pickup-component .find-store-display .store-navigation .store-navigation-pager .prev {
	float: left;
}

.pickup-component .find-store-display .store-navigation .store-navigation-pager .next {
	float: right;
}

.pickup-component .find-store-display .store-navigation .store-navigation-pager .position {
	text-align: center;
	margin: 0 80px;
}

.pickup-component .find-store-display .display-details {
	float: left;
	width: 50%;
	position: relative;
	background: #fff;
	overflow: hidden;
}

.pickup-component .find-store-display .display-details .store-image {
	float: right;
	width: 150px;
}

.pickup-component .find-store-display .display-details .store-image img {
	width: 100%;
	height: auto;
}

.pickup-component .find-store-display .display-details .distance {
	text-align: right;
	margin-top: 10px;
}

.pickup-component .find-store-display .display-details .store-info .name {
	font-weight: bold;
}

.pickup-component .find-store-display .display-details .store-info .address {
	color: #777777;
}

.pickup-component .find-store-display .display-details .store-links {
	margin: 10px 0;
}

.pickup-component .find-store-display .display-details .store-links a {
	display: block;
}

.pickup-component .find-store-display .display-details .store-openings .title {
	font-weight: bold;
}

.pickup-component .find-store-display .display-details .store-openings dl dt {
	width: 60px;
	text-align: left;
	float: left;
}

.pickup-component .find-store-display .display-details .store-openings dl dd {
	margin-left: 80px;
}

.pickup-component .find-store-display .display-details .pickup-product {
	height: 125px;
	width: 100%;
	font-weight: bold;
	border-top: 1px solid #ddd;
}

.pickup-component .find-store-display .display-details .pickup-product .variants {
	height: 30px;
	margin-top: -30px;
	padding: 5px 10px;
	font-weight: normal;
}

.pickup-component .find-store-display .display-details .pickup-product .variants span:after {
	content: ",";
}

.pickup-component .find-store-display .display-details .pickup-product .variants span:last-child:after {
	content: "";
}

.pickup-component .find-store-display .display-details .pickup-product .thumb {
	float: left;
	width: 112px;
	height: 112px;
	padding: 10px;
}

.pickup-component .find-store-display .display-details .pickup-product .thumb img {
	height: 100%;
	width: auto;
}

.pickup-component .find-store-display .display-details .pickup-product .pickup-product-info {
	display: table;
	height: 56px;
}

.pickup-component .find-store-display .display-details .pickup-product .pickup-product-info .name,
.pickup-component .find-store-display .display-details .pickup-product .pickup-product-info .price {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	overflow: hidden;
}

.pickup-component .find-store-display .display-details .pickup-product .pickup-product-info .name {
	font-weight: normal;
	width: 100%;
}

.pickup-component .find-store-display .display-details .pickup-product .pickup-product-info .price {
	padding: 0 10px;
	text-align: right;
}

.pickup-component .find-store-display .display-details .pickup-product .pickup-product-info .price .stock {
	white-space: nowrap;
}

.pickup-component .find-store-display .display-details .pickup-product .action {
	height: 70px;
	padding: 10px;
	text-align: right;
}

.pickup-component .find-store-display .display-details .pickup-product .action .qty-selector {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

.pickup-component .find-store-display .display-details .pickup-product .action .qty-selector .input-group {
	width: 142px;
}

.pickup-component .find-store-display .display-details .pickup-product .action .qty-selector .input-group input {
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	height: 48px;
}

.pickup-component .pickup-store-list {
	padding-left: 0;
	list-style: none;
	height: 280px;
	overflow: hidden;
	margin: 0;
	position: relative;
}

.pickup-component .pickup-store-list li.loading {
	height: 56px;
	background: #f2f4f7;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #47b6b1;
	text-align: center;
	line-height: 56px;
}

.pickup-component .pickup-store-list li.loading .glyphicon {
	color: #47b6b1;
	-webkit-animation: spin 1s linear infinite;
	-moz-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.pickup-component .pickup-store-list .pickup-store-list-entry {
	height: 56px;
}

.pickup-component .pickup-store-list .pickup-store-list-entry input {
	display: none;
}

.pickup-component .pickup-store-list .pickup-store-list-entry label {
	margin: 0;
	height: 100%;
	font-size: 13px;
	padding: 0 0 0 10px;
	display: table;
	width: 100%;
	cursor: pointer;
	position: relative;
	background: #f2f4f7;
	border-bottom: 1px solid #ddd;
}

.pickup-component .pickup-store-list .pickup-store-list-entry label:hover {
	background: #f2f2f2;
}

.pickup-component .pickup-store-list .pickup-store-list-entry .pickup-store-info {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.pickup-component .pickup-store-list .pickup-store-list-entry .pickup-store-list-entry-name {
	display: block;
}

.pickup-component .pickup-store-list .pickup-store-list-entry .pickup-store-list-entry-city {
	display: block;
	font-weight: normal;
}

.pickup-component .pickup-store-list .pickup-store-list-entry .store-availability {
	display: table;
	height: 100%;
	width: 80px;
	border-left: 1px solid #ddd;
}

.pickup-component .pickup-store-list .pickup-store-list-entry .store-availability span {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 5px;
	text-align: center;
	white-space: nowrap;
}

.pickup-component .pickup-store-list .pickup-store-list-entry .store-availability span div {
	font-size: 10px;
}

.inline-layer {
	height: 0;
	overflow: hidden;
	transition: 0.9s ease-out;
	-moz-transition: 0.9s ease-out;
	-webkit-transition: 0.9s ease-out;
	-o-transition: 0.9s ease-out;
	-sm-transition: 0.9s ease-out;
}

.inline-layer.open {
	height: auto !important;
}

@media(min-width:1024px) {
	.pickup-component .find-store-display .pickup-store-list {
		margin: 0 -1px 0 0;
	}

	.pickup-component .find-store-display .pickup-store-list .pickup-store-list-entry label {
		padding-right: 14px;
	}

	.pickup-component .find-store-display .pickup-store-list .pickup-store-list-entry label:after {
		content: "";
		display: block;
		width: 1px;
		height: auto;
		position: absolute;
		top: -1px;
		right: 0;
		bottom: -1px;
		background: #47b6b1;
	}

	.pickup-component .find-store-display .pickup-store-list .pickup-store-list-entry input:checked+label {
		background: #47b6b1;
	}

	.pickup-component .find-store-display .pickup-store-list .pickup-store-list-entry input:checked+label .pickup-store-info {
		color: #fff;
	}

	.pickup-component .find-store-display .pickup-store-list .pickup-store-list-entry input:checked+label .store-availability {
		color: #fff;
	}

	.pickup-component .find-store-display .pickup-store-list .pickup-store-list-entry input:checked+label:after {
		display: block;
		content: "";
		width: 28px;
		height: 28px;
		position: absolute;
		top: 50%;
		right: -1px;
		background: transparent;
		border: 14px solid transparent;
		border-right-color: #fff;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
	}
}

@media(max-width:1023px) {
	.pickup-component {
		overflow: hidden;
	}

	.pickup-component .find-store-display {
		width: 200%;
		-webkit-transition: -webkit-transform 0.3s ease-out;
		-moz-transition: -moz-transform 0.3s ease-out;
		-o-transition: -o-transform 0.3s ease-out;
		transition: transform 0.3s ease-out;
	}

	.pickup-component .find-store-display .store-navigation {
		width: 50%;
		border: 0;
	}

	.pickup-component.show-store .find-store-display {
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-moz-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		-o-transform: translate(-50%, 0);
	}

	.pickup-component .qty-selector input {
		text-align: center;
		padding-left: 0;
		padding-right: 0;
		width: 60px;
	}

	.pickup-component .action {
		padding-top: 0 !important;
	}
}

@media(max-width:639px) {
	.pickup-component .find-store-display .display-details .store-image {
		float: none;
		width: auto;
		margin-bottom: 10px;
	}

	.pickup-component .find-store-display .display-details .store-image:before,
	.pickup-component .find-store-display .display-details .store-image:after {
		content: " ";
		display: table;
	}

	.pickup-component .find-store-display .display-details .store-image:after {
		clear: both;
	}

	.pickup-component .find-store-display .display-details .store-image:before,
	.pickup-component .find-store-display .display-details .store-image:after {
		content: " ";
		display: table;
	}

	.pickup-component .find-store-display .display-details .store-image:after {
		clear: both;
	}

	.pickup-component .find-store-display .display-details .store-image img {
		width: 50%;
		height: auto;
		float: left;
		max-width: 150px;
	}

	.pickup-component .find-store-display .display-details .store-image .distance {
		width: 50%;
		text-align: left;
		float: left;
		margin: 0;
		padding: 0 0 0 10px;
	}

	.pickup-component .find-store-display .display-details .store-image .distance strong {
		display: block;
	}

	.pickup-component .find-store-display .display-details .pickup-product {
		position: relative;
	}

	.pickup-component .find-store-display .display-details .pickup-product .thumb {
		width: 56px;
		height: 56px;
		padding: 5px;
	}

	.pickup-component .find-store-display .display-details .pickup-product .action {
		position: absolute;
		bottom: 0;
		width: 100%;
		background: #fff;
		white-space: nowrap;
		padding-top: 0;
	}

	.pickup-component .find-store-display .display-details .pickup-product .action .qty-selector {
		margin-right: 5px;
	}

	.pickup-component .find-store-display .display-details .pickup-product .action .qty-selector .input-group {
		min-width: 120px;
	}

	.pickup-component .find-store-display .display-details .pickup-product .action .qty-selector .input-group input {
		text-align: center;
		padding-left: 0;
		padding-right: 0;
		width: 60px;
	}

	.pickup-component .find-store-display .display-details .pickup-product .action .qty-selector .btn {
		padding-left: 10px;
		padding-right: 10px;
	}

	.pickup-component .find-store-display .display-details .pickup-product .action .btn {
		padding-left: 6px;
		padding-right: 6px;
	}
}

.pickup-component .display-details .store-tabs {
	position: relative;
	padding: 0 0 10px 10px;
	height: 252px;
}

.pickup-component .display-details .store-tabs .tabs-list {
	padding-left: 0;
	list-style: none;
	background-image: linear-gradient(to right, #f6f6f6 0%, #ffffff 8px);
	position: absolute;
	right: 0;
	top: 10px;
	padding: 10px 0;
}

.pickup-component .display-details .store-tabs .tabs-list .current-info {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.pickup-component .display-details .store-tabs .tabs-list:before,
.pickup-component .display-details .store-tabs .tabs-list:after {
	content: "";
	position: absolute;
	background-color: transparent;
	height: 10px;
	left: 0;
	width: 100%;
}

.pickup-component .display-details .store-tabs .tabs-list:before {
	top: 0;
	background-image: linear-gradient(#ffffff, rgba(255, 255, 255, 0));
}

.pickup-component .display-details .store-tabs .tabs-list:after {
	bottom: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
}

.pickup-component .display-details .store-tabs .tabs-list li {
	margin: 5px 0;
	border: 1px solid transparent;
	border-left: 0;
	color: #999;
	position: relative;
}

.pickup-component .display-details .store-tabs .tabs-list li a {
	color: inherit;
	font-size: 18px;
	padding: 5px 10px;
	display: block;
	border-left: 2px solid transparent;
	transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-webkit-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	-sm-transition: 0.3s ease-out;
}

.pickup-component .display-details .store-tabs .tabs-list li.active {
	border: 1px solid #eee;
	border-left: 0;
	background: #fff;
	color: #000;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
	border-right: 2px solid #47b6b1;
}

.pickup-component .display-details .store-tabs .tabs-list li.active a {
	border-left: 2px solid transparent !important;
}

.pickup-component .display-details .store-tabs .tabs-list li a:hover,
.pickup-component .display-details .store-tabs .tabs-list li a:focus {
	color: #000;
	border-left: 2px solid #47b6b1;
}

.pickup-component .display-details .store-tabs .tabs-list li a:hover:before,
.pickup-component .display-details .store-tabs .tabs-list li a:focus:before {
	display: block;
	content: attr(aria-label);
	width: auto;
	height: 20px;
	line-height: 20px;
	background: #47b6b1;
	position: absolute;
	top: 0;
	left: -10px;
	margin: 6px 0;
	transform: translate(-100%, 0);
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-ms-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
	font-size: 12px;
	padding: 0 5px;
	color: #fff;
	white-space: nowrap;
	z-index: 100;
}

.pickup-component .display-details .store-tabs .tabs-list li a:hover:after,
.pickup-component .display-details .store-tabs .tabs-list li a:focus:after {
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	border: 5px solid transparent;
	border-left: 5px solid #47b6b1;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	margin: 6px 0;
	transform: translate(-100%, 5px);
	-webkit-transform: translate(-100%, 5px);
	-moz-transform: translate(-100%, 5px);
	-ms-transform: translate(-100%, 5px);
	-o-transform: translate(-100%, 5px);
}

.pickup-component .display-details .store-tabs .content {
	margin-right: 52px;
	overflow: auto;
	height: 100%;
}

.pickup-component .display-details .store-tabs .tabhead {
	display: none;
}

.pickup-component .display-details .store-tabs .pickup-map {
	height: 232px;
}

.addressbook-component {
	border: 1px solid #eee;
	padding: 0;
	margin: 140px 0;
}

.addressbook-component .addressbook-header {
	background: #eee;
	position: relative;
	border-bottom: 1px solid #47b6b1;
	padding: 10px;
	height: 56px;
	display: table;
	width: 100%;
}

.addressbook-component .addressbook-header .headline {
	line-height: 16px;
	font-weight: bold;
	font-size: 13px;
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}

.addressbook-component .addressbook-header .headline .back-to-storelist {
	display: none;
}

.addressbook-component .addressbook-header .close-addressbook {
	display: table-cell;
}

.addressbook-component .find-address-display:before,
.addressbook-component .find-address-display:after {
	content: " ";
	display: table;
}

.addressbook-component .find-address-display:after {
	clear: both;
}

.addressbook-component .find-address-display:before,
.addressbook-component .find-address-display:after {
	content: " ";
	display: table;
}

.addressbook-component .find-address-display:after {
	clear: both;
}

.addressbook-component .find-address-display .address-navigation {
	float: left;
	width: 50%;
	border-right: 1px solid #47b6b1;
}

.addressbook-component .find-address-display .address-navigation .address-navigation-pager {
	height: 28px;
	line-height: 28px;
	padding: 0 10px;
	border-top: 1px solid #DDDDDD;
	margin-top: -1px;
	background: #fff;
}

.addressbook-component .find-address-display .address-navigation .address-navigation-pager:before,
.addressbook-component .find-address-display .address-navigation .address-navigation-pager:after {
	content: " ";
	display: table;
}

.addressbook-component .find-address-display .address-navigation .address-navigation-pager:after {
	clear: both;
}

.addressbook-component .find-address-display .address-navigation .address-navigation-pager:before,
.addressbook-component .find-address-display .address-navigation .address-navigation-pager:after {
	content: " ";
	display: table;
}

.addressbook-component .find-address-display .address-navigation .address-navigation-pager:after {
	clear: both;
}

.addressbook-component .find-address-display .address-navigation .address-navigation-pager .prev {
	float: left;
}

.addressbook-component .find-address-display .address-navigation .address-navigation-pager .next {
	float: right;
}

.addressbook-component .find-address-display .address-navigation .address-navigation-pager .position {
	text-align: center;
	margin: 0 80px;
}

.addressbook-component .find-address-display .display-details {
	float: left;
	width: 50%;
}

.addressbook-component .find-address-display .display-details .address-details {
	padding: 10px;
	height: 252px;
	overflow: hidden;
}

.addressbook-component .find-address-display .display-details .address-actions {
	height: 56px;
	width: 100%;
	font-weight: bold;
	border-top: 1px solid #ddd;
	padding: 10px 10px;
	position: relative;
}

.addressbook-component .find-address-display .display-details .address-actions .set-default {
	position: absolute;
	top: -50px;
	right: 10px;
}

.addressbook-component .address-list {
	padding-left: 0;
	list-style: none;
	height: 280px;
	overflow: hidden;
	margin: 0;
	position: relative;
}

.addressbook-component .address-list .address-list-entry {
	height: 56px;
	overflow: hidden;
}

.addressbook-component .address-list .address-list-entry input {
	display: none;
}

.addressbook-component .address-list .address-list-entry label {
	margin: 0;
	height: 100%;
	font-size: 13px;
	padding: 0 0 0 10px;
	display: table;
	width: 100%;
	cursor: pointer;
	position: relative;
	background: #eee;
	border-bottom: 1px solid #ddd;
	overflow: hidden;
}

.addressbook-component .address-list .address-list-entry label:hover {
	background: #f2f2f2;
}

.addressbook-component .address-list .address-list-entry .address-info {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.addressbook-component .address-list .address-list-entry .address-info .inner {
	max-height: 56px;
	overflow: hidden;
	display: block;
}

.addressbook-component .address-list .address-list-entry .address-list-entry-name {
	display: block;
}

.addressbook-component .address-list .address-list-entry .address-list-entry-city {
	display: block;
	font-weight: normal;
}

.addressbook-component .address-list .address-list-entry .address-actions {
	display: table;
	height: 100%;
	width: auto;
}

.addressbook-component .address-list .address-list-entry .address-actions span {
	display: table-cell;
	vertical-align: middle;
	padding: 0 5px;
	text-align: center;
}

.inline-layer {
	height: 0;
	overflow: hidden;
	transition: 0.9s ease-out;
	-moz-transition: 0.9s ease-out;
	-webkit-transition: 0.9s ease-out;
	-o-transition: 0.9s ease-out;
	-sm-transition: 0.9s ease-out;
}

.inline-layer.open {
	height: auto !important;
}

@media(min-width:1024px) {
	.addressbook-component .find-address-display .address-list {
		margin: 0 -1px 0 0;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry label {
		padding-right: 14px;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry label:after {
		content: "";
		display: block;
		width: 1px;
		height: auto;
		position: absolute;
		top: -1px;
		right: 0;
		bottom: -1px;
		background: #47b6b1;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry input:checked+label {
		background: #47b6b1;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry input:checked+label .address-info {
		color: #fff;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry input:checked+label .address-actions {
		color: #fff;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry input:checked+label:after {
		display: block;
		content: "";
		width: 28px;
		height: 28px;
		position: absolute;
		top: 50%;
		right: -1px;
		background: transparent;
		border: 14px solid transparent;
		border-right-color: #fff;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
	}
}

@media(max-width:1023px) {
	.addressbook-component {
		overflow: hidden;
	}

	.addressbook-component .find-address-display {
		width: 200%;
		-webkit-transition: -webkit-transform 0.3s ease-out;
		-moz-transition: -moz-transform 0.3s ease-out;
		-o-transition: -o-transform 0.3s ease-out;
		transition: transform 0.3s ease-out;
	}

	.addressbook-component .find-address-display .address-navigation {
		width: 50%;
		border: 0;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry input:checked+label {
		background: #47b6b1;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry input:checked+label .address-info {
		color: #fff;
	}

	.addressbook-component .find-address-display .address-list .address-list-entry input:checked+label .address-actions {
		color: #fff;
	}
}

.login-page__headline,
.user-register__headline {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
}

.login-page__headline.border,
.user-register__headline.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

.login-left-content-slot {
	margin-right: 10px;
	margin-left: 30px;
}

@media(max-width:1023px) {
	.login-left-content-slot {
		margin-left: 20px;
		margin-right: 20px;
	}
}

.login-right-content-slot {
	margin-right: 30px;
	margin-left: 10px;
}

@media(max-width:1023px) {
	.login-right-content-slot {
		margin-left: 20px;
		margin-right: 20px;
	}
}

form .forgotten-password {
	margin-bottom: 25px;
}

.forgotten-password.alert {
	padding-left: 0;
	padding-right: 0;
}

.forgotten-password .description {
	margin-bottom: 10px;
}

#colorbox .forgotten-password .btn-primary {
	margin-top: 35px;
}

.register-form-action,
.login-form-action {
	margin-top: 35px;
}

.forgotten-password+.login-form-action {
	margin-top: 0;
}

.alert-dismissable .close,
.alert-dismissible .close {
	right: 0;
}

.register__container {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.register__container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {
	.login-form-action .btn-default {
		margin-top: 30px;
	}
}

@media(max-width:639px) {

	.login-section .forgotten-password,
	.register-section .forgotten-password {
		margin-bottom: 45px;
	}
}

.checkout-login {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.checkout-login {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.checkout-login .headline {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
}

.checkout-login .headline.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

.checkout-login .btn.btn-block+.btn.btn-block {
	margin-top: 10px;
}

.checkout__new-account {
	text-align: center;
	background-color: #f4f4f4;
	border-top: 1px solid #e5e5e5;
	padding: 20px 0 55px;
}

.checkout__new-account .accountActions-bottom {
	margin-top: 35px;
}

.checkout__new-account__headling {
	font-size: 24px;
	font-weight: bold;
}

.checkout__new-account__form {
	text-align: left;
	margin-top: 25px;
}

@media(max-width:639px) {
	.checkout__new-account {
		margin-left: -10px;
		margin-right: -10px;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.checkout-headline {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
	padding-left: 30px;
}

.checkout-headline.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

@media(max-width:1024px) {
	.checkout-headline {
		padding-left: 20px;
	}
}

@media(max-width:768px) {
	.checkout-headline {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.checkout-headline span {
	color: #154259;
	margin-right: 5px;
	top: 2px;
}

.checkout-summary-headline {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	margin: 0;
	padding-right: 30px;
}

.checkout-summary-headline.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

@media(max-width:1024px) {
	.checkout-summary-headline {
		padding-right: 20px;
	}
}

@media(max-width:768px) {
	.checkout-summary-headline {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.checkout-summary-headline span {
	color: #154259;
	margin-right: 5px;
	top: 2px;
}

@media(max-width:639px) {
	.checkout-summary-headline {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.checkout-body-styling {
	padding: 30px 20px 15px;
	border: 1px solid #cccccc;
	border-top: 0;
}

.checkout-steps {
	padding-left: 30px;
}

.checkout-steps .step-head {
	background: #ffffff;
	color: #154259;
	border: 1px solid #cccccc;
	font-size: 18px;
	font-weight: 600;
	position: relative;
	display: table;
	width: 100%;
	padding: 10px 20px 10px 40px;
	height: 49px;
	counter-increment: checkout;
}

.checkout-steps .step-head:before {
	content: counter(checkout) '.';
	position: absolute;
	left: 3px;
	top: 0;
	width: 50px;
	text-align: center;
	line-height: 49px;
}

.checkout-steps .step-head+.step-head {
	margin-top: 10px;
}

.checkout-steps .step-head.active {
	background: #a6a6a6;
	color: #ffffff;
	border-color: #cccccc;
}

.checkout-steps .step-head .title {
	vertical-align: middle;
	display: table-cell;
	width: 100%;
}

.checkout-steps .step-head .edit {
	color: #ec7205;
	font-size: 20px;
	display: table-cell;
	vertical-align: top;
}

.checkout-steps .step-body .step-body-form {
	padding: 30px 20px 15px;
	border: 1px solid #cccccc;
	border-top: 0;
}

.checkout-steps .step-body .step-body-form .radiobuttons_paymentselection {
	margin-bottom: 5px;
}

.checkout-steps .step-body .checkout-next {
	margin: 30px 0;
}

.checkout-steps .step-body hr {
	margin: 0 -20px;
	border-color: #e5e5e5;
}

.checkout-steps .step-body .checkout-indent .headline {
	font-size: 20px;
	padding-bottom: 15px;
	padding-top: 30px;
}

@media(max-width:1024px) {
	.checkout-steps {
		padding-left: 20px;
	}
}

@media(max-width:639px) {
	.checkout-steps {
		padding-left: 20px;
		padding-right: 20px;
	}

	.checkout-steps .step-head {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.checkout-steps .step-head:before {
		line-height: 68px;
	}
}

.checkout-shipping {
	padding: 30px 20px 15px;
	border: 1px solid #cccccc;
	border-top: 0;
	padding-top: 0;
	padding-bottom: 10px;
}

.checkout-shipping .checkout-shipping-items .checkout-shipping-items-header {
	text-transform: uppercase;
	padding: 25px 0 10px 0;
	font-size: 16px;
	font-weight: 700;
}

.checkout-shipping .checkout-shipping-items>div {
	padding-bottom: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.checkout-shipping .checkout-shipping-items ul {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

.checkout-shipping .checkout-shipping-items ul li {
	padding-top: 6px;
	line-height: 18px;
}

.checkout-shipping .checkout-shipping-items ul li:first-child {
	padding-top: 1px;
}

.checkout-shipping .checkout-shipping-items ul li .name {
	font-weight: 700;
}

.checkout-shipping .simplify-pickup-locations {
	background: #f2f4f7;
	padding: 10px;
}

.checkout-shipping .simplify-pickup-locations .simplify-pickup-location-header {
	background: #b3bfd0;
	padding: 10px;
	line-height: 35px;
	margin: -10px -10px 10px -10px;
}

.checkout-shipping .simplify-pickup-locations .simplify-pickup-location-header:before,
.checkout-shipping .simplify-pickup-locations .simplify-pickup-location-header:after {
	content: " ";
	display: table;
}

.checkout-shipping .simplify-pickup-locations .simplify-pickup-location-header:after {
	clear: both;
}

.checkout-shipping .simplify-pickup-locations .simplify-pickup-location-header:before,
.checkout-shipping .simplify-pickup-locations .simplify-pickup-location-header:after {
	content: " ";
	display: table;
}

.checkout-shipping .simplify-pickup-locations .simplify-pickup-location-header:after {
	clear: both;
}

.checkout-shipping .simplify-pickup-locations ul {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

.checkout-shipping .simplify-pickup-locations ul li+li {
	border-top: 1px solid #b3bfd0;
}

.checkout-shipping .simplify-pickup-locations ul a {
	color: #19212b;
	background: #fff;
	display: block;
	padding: 10px;
	text-decoration: none;
}

@media(max-width:1399px) {
	.checkout-shipping .checkout-shipping-items .qty {
		text-align: right;
	}

	.checkout-shipping .checkout-shipping-items .checkout-pickup-items {
		padding-bottom: 0;
	}
}

.checkout-paymentmethod {
	padding: 30px 20px 15px;
	border: 1px solid #cccccc;
	border-top: 0;
	padding-top: 0;
}

.step-body .checkout-paymentmethod hr {
	margin-top: 25px;
}

#addressbook,
#savedpayments,
#savedpaymentsbody {
	display: none;
	padding-bottom: 20px;
}

#colorbox #addressbook,
#colorbox #savedpayments,
#colorbox #savedpaymentsbody {
	display: block;
}

#addressbook ul,
#savedpayments ul,
#savedpaymentsbody ul {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

#addressbook ul li,
#savedpayments ul li,
#savedpaymentsbody ul li {
	padding: 10px 0;
}

.checkout-order-summary {
	padding-right: 30px;
}

@media(max-width:1024px) {
	.checkout-order-summary {
		padding-right: 20px;
	}
}

@media(max-width:768px) {
	.checkout-order-summary {
		padding-right: 20px;
		padding-left: 20px;
	}
}

.checkout-order-summary .checkout-order-summary-list {
	padding-left: 0;
	list-style: none;
	border-bottom: 1px solid #e5e5e5;
	margin: 0;
}

@media(min-width:640px) {
	.checkout-order-summary .checkout-order-summary-list:first-of-type .checkout-order-summary-list-heading {
		padding-top: 0;
	}

	.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-heading:only-child {
		border-bottom: 0;
	}
}

.checkout-order-summary .checkout-order-summary-list li {
	padding: 20px;
}

.checkout-order-summary .checkout-order-summary-list li:before,
.checkout-order-summary .checkout-order-summary-list li:after {
	content: " ";
	display: table;
}

.checkout-order-summary .checkout-order-summary-list li:after {
	clear: both;
}

.checkout-order-summary .checkout-order-summary-list li:before,
.checkout-order-summary .checkout-order-summary-list li:after {
	content: " ";
	display: table;
}

.checkout-order-summary .checkout-order-summary-list li:after {
	clear: both;
}

.checkout-order-summary .checkout-order-summary-list li:nth-child(2n+3) {
	background-color: #f2f2f2;
}

.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-heading {
	background-color: #ffffff !important;
	color: #19212b;
	padding: 60px 0 10px;
	border-bottom: 1px solid #e5e5e5;
}

.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-heading>div {
	float: left;
}

.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-heading .title {
	font-weight: 700;
	padding-right: 5px;
}

.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-heading .address {
	text-overflow: ellipsis;
	overflow: hidden;
	width: 85%;
}

.checkout-order-summary .checkout-order-summary-list .thumb {
	float: left;
	margin-right: 20px;
	width: 65px;
}

.checkout-order-summary .checkout-order-summary-list .thumb img {
	width: 100%;
	height: auto;
}

.checkout-order-summary .checkout-order-summary-list .price {
	float: right;
	margin-left: 10px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
}

.checkout-order-summary .checkout-order-summary-list .details {
	font-size: 14px;
	margin-left: 85px;
}

.checkout-order-summary .checkout-order-summary-list .details .name {
	font-weight: 600;
}

.checkout-order-summary .checkout-order-summary-list .details .qty span {
	font-size: 13px;
	color: #929292;
	font-weight: 600;
	text-transform: uppercase;
	padding-right: 10px;
}

.checkout-order-summary .checkout-order-summary-list .updateQuantityProduct-toggle {
	float: right;
}

.checkout-order-summary .checkout-order-summary-list .stock-status {
	clear: both;
	padding: 10px 0;
	font-size: 13px;
}

@media(max-width:1023px) {
	.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-heading .address {
		width: 100%;
	}
}

.checkout-order-summary .subtotals {
	font-size: 18px;
	margin-top: 30px;
}

.checkout-order-summary .subtotals .subtotal,
.checkout-order-summary .subtotals .shipping,
.checkout-order-summary .subtotals .subtotals__item--state-discount,
.checkout-order-summary .subtotals .tax,
.checkout-order-summary .subtotals .totals {
	padding: 5px 0;
}

.checkout-order-summary .subtotals .subtotal span,
.checkout-order-summary .subtotals .shipping span,
.checkout-order-summary .subtotals .subtotals__item--state-discount span,
.checkout-order-summary .subtotals .tax span,
.checkout-order-summary .subtotals .totals span {
	float: right;
	font-weight: 600;
}

.checkout-order-summary .subtotals .totals {
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 15px;
	padding: 10px 0;
	border-top: 1px solid #cccccc;
}

.checkout-order-summary .subtotals .realTotals {
	font-size: 14px;
}

.subtotals__item--state-discount {
	color: #00a651;
}

.label-spacing {
	padding-right: 5px;
}

@media(max-width:639px) {
	.place-order-form {
		padding: 0 20px;
	}

	.checkout-order-summary {
		padding: 30px 20px 15px;
		border: 1px solid #cccccc;
		border-top: 0;
		margin-left: 20px;
		margin-right: 20px;
		padding-left: 0;
		padding-right: 0;
		padding-top: 0;
	}

	.checkout-order-summary .checkout-order-summary-list {
		padding-left: 0;
		list-style: none;
		border: none;
		padding: 0;
	}

	.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-heading {
		background-color: transparent !important;
		color: #19212b;
		padding: 25px 20px;
		border-color: #e5e5e5;
	}

	.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-heading .title {
		text-transform: uppercase;
		font-size: 16px;
	}

	.checkout-order-summary .checkout-order-summary-list .checkout-order-summary-list-items {
		border-bottom: 1px solid #e5e5e5;
	}

	.checkout-order-summary .subtotals {
		padding: 0 20px;
	}
}

.checkout-review {
	padding: 30px 20px 15px;
	border: 1px solid #cccccc;
	border-top: 0;
}

.checkout-review .checkout-order-summary .subtotals {
	margin-top: 0;
}

.place-order-form .checkbox {
	margin: 25px 0 40px;
}

.place-order-form .checkbox label {
	font-size: 14px;
	color: #19212b;
	text-transform: none;
}

.btn-close-terms-and-conditions {
	margin: 30px 0;
}

@media(min-width:640px) {
	.place-order-form .checkbox {
		margin-left: 20px;
		margin-right: 20px;
	}
}

.checkout-help {
	text-align: center;
	border: 1px solid #cccccc;
	font-size: 15px;
	padding: 10px;
	margin-top: 60px;
}

@media(max-width:639px) {
	.checkout-help {
		margin-top: 30px;
		margin-left: 20px;
		margin-right: 20px;
	}
}

.checkout-success {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.checkout-success {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.checkout-success__body {
	margin: 30px 0 55px;
	text-align: center;
}

.checkout-success__body__headline {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.termsAndConditions-section {
	padding-bottom: 20px;
}

label.terms {
	margin: 15px 0;
}

fieldset#cardDate>.control-label,
fieldset#startDate>.control-label {
	font-weight: bold;
	margin-bottom: 5px;
}

fieldset#cardDate .form-group .control-label,
fieldset#startDate .form-group .control-label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid #cboxLoadedContent {
	margin-top: 100px;
	padding: 0;
}

@media(max-width:1023px) {
	.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid #cboxLoadedContent {
		margin-top: 130px;
	}
}

@media(max-width:639px) {
	.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid #cboxLoadedContent {
		margin-top: 170px;
	}
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid .grid-row {
	border-top: 1px solid #e5e5e5;
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid .grid-row:nth-child(2n+2) {
	background: #f2f2f2;
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid .grid-prod-info {
	display: inline-block;
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td {
	padding: 10px 10px 15px;
	vertical-align: top;
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td>span {
	display: block;
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td.grid-prod-img {
	padding-left: 40px;
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td .grid-variant,
.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td .grid-size {
	font-weight: bold;
	min-width: 80px;
}

.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td .grid-variant {
	display: block;
	font-size: 16px;
}

@media(max-width:639px) {
	.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td {
		padding: 10px 15px 15px;
	}

	.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td:nth-child(2n+2) {
		background-color: transparent;
	}

	.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td .grid-prod-info {
		display: block;
		text-align: left;
	}

	.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td .grid-prod-info span {
		display: inline-block;
	}

	.page-multiStepCheckoutSummaryPage #colorbox.read-only-grid td .grid-price {
		float: right;
	}
}

@media(max-width:639px) {
	.checkout-coupon-list {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.checkout-order-summary .checkout-coupon-list {
	padding: 30px 0;
	border-bottom: 1px solid #cccccc;
}

@media(max-width:639px) {
	.checkout-order-summary .checkout-coupon-list {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.coupon-list__headline {
	font-size: 18px;
	line-height: 38px;
	font-weight: bold;
}

.coupon-list {
	padding-left: 0;
	list-style: none;
	margin-top: 5px;
	margin-bottom: 0;
}

.coupon-code {
	text-transform: uppercase;
}

.cart-voucher {
	margin-top: 27px;
	padding-left: 30px;
}

.cart-voucher__label {
	display: block;
	width: 100%;
}

.cart-voucher__input {
	width: 50%;
	float: left;
	margin-right: 10px;
}

.cart-voucher__input::-moz-placeholder {
	font-size: 13px;
	font-weight: 600;
	color: #19212b;
	text-transform: uppercase;
}

.cart-voucher__input:-ms-input-placeholder,
.cart-voucher__input::-webkit-input-placeholder {
	font-size: 13px;
	font-weight: 600;
	color: #19212b;
	text-transform: uppercase;
}

.cart-voucher__help-block {
	display: none;
}

.has-error .cart-voucher__help-block,
.has-success .cart-voucher__help-block {
	display: block;
}

@media(max-width:1399px) and (min-width:1024px) {
	.cart-voucher__input {
		width: 70%;
	}
}

@media(max-width:1023px) and (min-width:640px) {
	.cart-voucher {
		padding-left: 30px;
	}
}

@media(max-width:639px) {
	.cart-voucher {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.voucher-list {
	padding-left: 0;
	list-style: none;
	margin-top: -5px;
}

.voucher-list__item-box {
	display: inline-block;
	border: 1px solid #cccccc;
	background-color: #f2f2f2;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 10px 15px;
	margin-top: 10px;
}

.voucher-list__item-remove {
	color: #cdcdcd;
	padding: 10px;
	cursor: pointer;
	margin: -10px -10px -10px 0;
	position: relative;
	top: 2px;
}

@media(max-width:1023px) {
	.voucher-list__item {
		display: inline-block;
		padding-right: 5px;
	}
}

.gift__coupon {
	text-align: center;
	border-top: 1px solid #cccccc;
	margin: 0 auto 55px;
	padding-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
	width: 80%;
}

@media(max-width:1024px) {
	.gift__coupon {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.gift__coupon span {
	display: block;
}

@media(max-width:480px) {
	.gift__coupon {
		width: 90%;
	}
}

@media(min-width:1024px) {
	.gift__coupon {
		width: 40%;
	}
}

.gift__coupon .gift__coupon--title {
	margin-bottom: 5px;
}

.gift__coupon .gift__coupon--name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

#storeFinder #storelocator-query {
	height: 48px;
}

.headline {
	font-size: 18px;
	margin-bottom: 10px;
}

.store__finder--search #storeFinderForm {
	margin-bottom: 10px;
}

.store__finder {
	display: none;
	padding: 0;
}

.store__finder .store__finder--pagination {
	line-height: 48px;
	padding-top: 20px;
	padding-bottom: 20px;
	display: inline-block;
	width: 100%;
}

.store__finder .store__finder--pagination:before,
.store__finder .store__finder--pagination:after {
	content: " ";
	display: table;
}

.store__finder .store__finder--pagination:after {
	clear: both;
}

.store__finder .store__finder--pagination:before,
.store__finder .store__finder--pagination:after {
	content: " ";
	display: table;
}

.store__finder .store__finder--pagination:after {
	clear: both;
}

.store__finder .store__finder--navigation {
	overflow: hidden;
	height: 561px;
}

@media(min-width:768px) {
	.store__finder .store__finder--navigation {
		padding-right: 10px;
	}
}

.store__finder .store__finder--map {
	width: 100%;
	height: 500px;
	margin-bottom: 152px;
}

.store__finder .stores-nearby {
	margin-bottom: 10px;
}

.store__finder .store__finder--navigation-list {
	padding-left: 0;
	list-style: none;
	margin: 0;
	border: 1px solid #ddd;
	position: relative;
}

.store__finder .store__finder--navigation-list li.loading {
	height: 56px;
	background: #f2f4f7;
	border-bottom: 1px solid #ddd;
	text-align: center;
	line-height: 56px;
}

.store__finder .store__finder--navigation-list li.loading .glyphicon {
	color: #ff4444;
	-webkit-animation: spin 1s linear infinite;
	-moz-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.store__finder .store__finder--navigation-list .list__entry {
	height: 56px;
}

.store__finder .store__finder--navigation-list .list__entry:last-child label {
	border: 0;
}

.store__finder .store__finder--navigation-list .list__entry input {
	display: none;
}

.store__finder .store__finder--navigation-list .list__entry label {
	margin: 0;
	height: 100%;
	font-size: 13px;
	padding: 0 14px 0 10px;
	display: table;
	width: 100%;
	cursor: pointer;
	position: relative;
	background: #f2f4f7;
	border-bottom: 1px solid #ddd;
}

.store__finder .store__finder--navigation-list .list__entry label:hover {
	background: #f2f2f2;
}

.store__finder .store__finder--navigation-list .list__entry input:checked+label {
	background: #47b6b1;
	color: #fff !important;
}

.store__finder .store__finder--navigation-list .list__entry input:checked+label:after {
	display: block;
	content: "";
	width: 28px;
	height: 28px;
	position: absolute;
	top: 50%;
	right: -1px;
	background: transparent;
	border: 14px solid transparent;
	border-right-color: #fff;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.store__finder .store__finder--navigation-list .list__entry .entry__info {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.store__finder .store__finder--navigation-list .list__entry .entry__name {
	display: block;
}

.store__finder .store__finder--navigation-list .list__entry .entry__city {
	display: block;
	font-weight: normal;
}

.store__finder .store__finder--navigation-list .list__entry .entry__distance {
	display: table;
	height: 100%;
	width: 80px;
	border-left: 1px solid #ddd;
}

.store__finder .store__finder--navigation-list .list__entry .entry__distance span {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 5px;
	text-align: center;
	white-space: nowrap;
}

.store__finder .store__finder--details .store__finder--details-back {
	margin-bottom: 20px;
	display: none;
}

.store__finder .store__finder--details .store__finder--details-image {
	width: 112px;
	float: left;
	margin-right: 10px;
}

.store__finder .store__finder--details .store__finder--details-image img {
	width: 100%;
	height: auto;
}

.store__finder .store__finder--details .info__name {
	font-weight: bold;
}

.store__finder .store__finder--details hr {
	clear: both;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	height: 1px;
	position: relative;
	border: 0;
}

.store__finder .store__finder--details hr:after {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	height: 1px;
	right: 0;
	left: 0;
	background: #ddd;
}

.store__finder .store__finder--details .store__finder--details-map {
	background: #eee;
}

@media(max-width:767px) {
	.store__finder .store__finder--details .store__finder--details-openings dl {
		font-size: 12px;
	}
}

.store__finder .store__finder--details .store__finder--details-openings dl dt {
	text-align: left !important;
	width: auto;
	padding-right: 5px;
	float: left;
}

.store__finder .store__finder--details .store__finder--details-openings dl dd {
	margin-left: 60px;
}

.store__finder .store__finder--details .store__finder--details-openings ul {
	padding-left: 0;
	list-style: none;
}

@media(max-width:639px) {
	.store__finder .back__to__storelist {
		margin-bottom: 10px;
	}

	.store__finder .store__finder--panel {
		margin: 0;
		-webkit-transition: -webkit-transform 0.3s ease-out;
		-moz-transition: -moz-transform 0.3s ease-out;
		-o-transition: -o-transform 0.3s ease-out;
		transition: transform 0.3s ease-out;
	}

	.store__finder .store__finder--panel>* {
		padding: 0;
	}

	.store__finder .store__finder--pagination {
		line-height: 20px;
	}

	.store__finder.show-store .store__finder--pagination {
		color: rgba(0, 0, 0, 0);
		height: 46px;
	}

	.store__finder.show-store .store__finder--pagination * {
		display: none;
	}

	.store__finder.show-store .store__finder--panel {
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-moz-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		-o-transform: translate(-50%, 0);
	}

	.store__finder.show-store .store__finder--panel .store__finder--navigation {
		padding-right: 20px;
	}

	.store__finder.show-store .store__finder--panel .store__finder--details {
		display: block;
	}
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
}

#cboxWrapper {
	max-width: none;
}

#cboxOverlay {
	width: 100%;
	height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
	clear: left;
}

#cboxContent {
	position: relative;
}

#cboxLoadedContent {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#cboxTitle {
	margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow {
	cursor: pointer;
}

.cboxPhoto {
	float: left;
	margin: auto;
	border: 0;
	display: block;
	max-width: none;
	-ms-interpolation-mode: bicubic;
}

.cboxIframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	padding: 0;
	margin: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
}

#cboxOverlay {
	background: #000;
}

#colorbox {
	outline: 0;
}

#cboxTopLeft {
	width: 14px;
	height: 14px;
}

#cboxTopCenter {
	height: 14px;
}

#cboxTopRight {
	width: 14px;
	height: 14px;
}

#cboxBottomLeft {
	width: 14px;
}

#cboxBottomCenter {
	height: 43px;
}

#cboxBottomRight {
	width: 14px;
}

#cboxMiddleLeft {
	width: 14px;
}

#cboxMiddleRight {
	width: 14px;
}

#cboxContent {
	background: #fff;
	overflow: visible;
}

.cboxIframe {
	background: #fff;
}

#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}

#cboxCurrent {
	position: absolute;
	bottom: -25px;
	left: 58px;
	font-weight: bold;
	color: #7C7C7C;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow {
	border: 0;
	padding: 0;
	margin: 0;
	overflow: visible;
	position: absolute;
	bottom: -29px;
	width: 23px;
	height: 23px;
	text-indent: -9999px;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
	outline: 0;
}

#cboxPrevious {
	left: 0px;
	background-position: -51px -25px;
}

#cboxPrevious:hover {
	background-position: -51px 0px;
}

#cboxNext {
	left: 27px;
	background-position: -75px -25px;
}

#cboxNext:hover {
	background-position: -75px 0px;
}

.cboxSlideshow_on #cboxSlideshow {
	background-position: -125px 0px;
	right: 27px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
	background-position: -150px 0px;
}

.cboxSlideshow_off #cboxSlideshow {
	background-position: -150px -25px;
	right: 27px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
	background-position: -125px 0px;
}

#cboxTitle {
	background: transparent;
	position: absolute;
	top: 0;
	padding: 43px 40px 15px;
	height: 88px;
	display: table;
	width: 100%;
}

#cboxTitle .headline {
	font-size: 24px;
	line-height: 24px;
	font-weight: bold;
	width: 100%;
	vertical-align: middle;
}

#cboxClose {
	position: absolute;
	right: 13px;
	top: 10px;
	background: transparent;
	border: 0 none;
	color: #797979;
	padding: 5px;
	font-size: 25px;
}

#cboxLoadedContent {
	margin-top: 88px;
	padding: 15px 40px 30px 40px;
}

#cboxLoadedContent .add-to-cart-item {
	margin-bottom: 40px;
}

#cboxLoadedContent .addressEntry+.addressEntry,
#cboxLoadedContent .saved-payment-entry+.saved-payment-entry {
	margin-top: 55px;
}

#cboxLoadedContent .addressEntry ul,
#cboxLoadedContent .saved-payment-entry ul {
	margin-top: -10px;
	margin-bottom: 20px;
}

#cboxLoadedContent .modal-details {
	line-height: 1.8em;
}

#cboxLoadedContent .modal-actions {
	margin-top: 20px;
}

#cboxLoadedContent .modal-actions .btn {
	margin-top: 20px;
}

@media(max-width:639px) {
	#cboxTitle {
		height: 112px;
		padding-left: 20px;
		padding-right: 20px;
	}

	#cboxTitle:before,
	#cboxTitle:after {
		content: " ";
		display: table;
	}

	#cboxTitle:after {
		clear: both;
	}

	#cboxTitle:before,
	#cboxTitle:after {
		content: " ";
		display: table;
	}

	#cboxTitle:after {
		clear: both;
	}

	#cboxLoadedContent {
		margin-top: 112px;
		padding: 15px 20px 30px 20px;
	}

	#cboxLoadedContent .addressEntry ul {
		margin-top: -25px;
	}
}

.modal__top {
	padding-bottom: 32px;
	margin-bottom: 30px;
	border-bottom: 1px solid #f2f2f2;
}

.modal__top .modal__top--label {
	color: #19212b;
	font-weight: bold;
	font-style: italic;
}

.modal__top .modal__top--text {
	font-style: italic;
}

.modal__text--bold {
	font-weight: bold;
}

.modal__bottom {
	margin-bottom: 40px;
	font-size: 15px;
}

.quote-discount__modal--label {
	font-size: 15px;
	font-weight: 600;
	color: #19212b;
	text-transform: capitalize;
	vertical-align: middle;
	display: table-cell;
	height: 40px;
}

.quote-discount__modal--input {
	margin-bottom: 17px;
	width: 100%;
}

.quote-discount__modal--input input[type=number] {
	-moz-appearance: textfield;
}

.quote-discount__modal--input input[type=number]::-webkit-inner-spin-button,
.quote-discount__modal--input input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.quote-discount__modal--input__label {
	display: table-cell;
	vertical-align: middle;
	font-size: 18px;
	padding-right: 10px;
	width: 25px;
	text-align: right;
}

.quote-discount__modal--original__total {
	font-size: 15px;
	font-style: italic;
	border-bottom: 1px solid #f2f2f2;
	color: #19212b;
	padding-bottom: 13px;
	margin-bottom: 9px;
	margin-top: 10px;
}

.quote-discount__modal--new__total {
	color: #19212b;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 47px;
}

.price del {
	color: #000;
	font-weight: bold;
}

.price ins {
	color: #19212b;
	text-decoration: none;
}

a.price ins:hover,
a.price ins:focus {
	color: #06080b;
}

.price.msrp {
	color: #666;
}

.account-navigation {
	margin-bottom: 10px;
}

.account-navigation .account-navigation-header {
	padding: 10px;
	text-transform: uppercase;
}

.account-navigation .account-navigation-header a {
	display: block;
}

.account-navigation .account-navigation-list {
	margin: 10px;
	padding-left: 0;
	list-style: none;
}

@media(min-width:640px) and (max-width:1023px) {
	.account-navigation .account-navigation-list {
		display: none !important;
	}
}

@media(max-width:639px) {
	.account-navigation .account-navigation-list {
		display: none !important;
	}
}

@media(max-width:767px) {
	.account-navigation .account-navigation-list {
		display: none !important;
	}
}

.account-navigation .account-navigation-list li.title {
	margin-top: 10px;
	font-weight: bold;
}

.account-navigation .account-navigation-list li.active {
	font-weight: bold;
}

.account-navigation .account-navigation-list li a:hover,
.account-navigation .account-navigation-list li afocus {
	color: #47b6b1;
}

.account-home .account-home-section {
	margin-bottom: 20px;
}

.account-home .account-home-section .account-home-section-header {
	background: #f2f4f7;
	padding: 10px;
	text-transform: uppercase;
}

.account-home .account-home-section .account-home-section-content {
	height: 100px;
	padding: 10px;
	border: 1px solid #f2f4f7;
	border-top: 0;
}

.account-home .account-home-section .account-home-section-content ul {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

@media(max-width:1023px) {
	.account-home .account-home-section {
		margin-bottom: 10px;
	}

	.account-home .account-home-section .account-home-section-content {
		height: auto;
		padding: 0;
	}

	.account-home .account-home-section .account-home-section-content ul li a {
		padding: 10px;
		display: block;
	}

	.account-home .account-home-section .account-home-section-content ul li+li {
		border-top: 1px solid #eee;
	}
}

@media(min-width:1400px) {
	.account-section {
		margin: 0 auto;
		width: 1400px;
	}
}

.account-section .pagination-bar {
	margin: 15px 0 0;
}

.account-section .pagination-bar .pagination-toolbar {
	padding-left: 0;
	padding-right: 0;
	padding-top: 15px;
	border-bottom: none;
}

.account-section .pagination-bar .pagination-toolbar .sort-refine-bar {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-section .pagination-bar .pagination-toolbar .sort-refine-bar {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .pagination-bar .pagination-toolbar .sort-refine-bar form {
	padding: 0;
}

.account-section .pagination-bar .pagination-bar-results {
	font-size: 13px;
	font-weight: 600;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	padding-right: 30px;
	border-top: 1px solid #cccccc;
}

@media(max-width:1024px) {
	.account-section .pagination-bar .pagination-bar-results {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {
	.account-section .pagination-bar .pagination-bar-results {
		border-bottom: 1px solid #cccccc;
	}
}

.account-section .pagination-bar.bottom .pagination-toolbar {
	padding-top: 5px;
	border: none;
}

@media(max-width:639px) {
	.account-section .pagination-bar .pagination-toolbar {
		margin: 0;
	}

	.account-section .pagination-bar .pagination-bar-results {
		border-bottom: 1px solid #cccccc;
		padding-left: 20px;
		padding-right: 20px;
	}

	.account-section .account-overview-table,
	.account-section div.responsive-table {
		margin-left: -10px;
		margin-right: -10px;
	}
}

.account-section .addressBackBtn,
.account-section .orderTopBackBtn {
	background-color: transparent;
	border: none;
	box-shadow: none;
}

.account-section .account-section-header {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	text-transform: capitalize;
	border-bottom: 1px solid #cccccc;
	margin: 0;
	padding-left: 30px;
	padding-right: 30px;
}

.account-section .account-section-header.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

@media(max-width:1024px) {
	.account-section .account-section-header {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .account-section-header.account-section-header-secondary {
	color: #19212b;
	font-size: 22px;
	line-height: 32px;
	font-weight: 400;
	padding-bottom: 10px;
}

.account-section .account-section-header.no-border {
	border-bottom: none;
}

.account-section .account-section-header .account-section-header-add {
	font-size: 14px;
	font-weight: 700;
	margin-top: 4px;
}

.account-section .account-section-header__subheadline {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.571;
	text-transform: none;
}

.account-section .account-orderdetail+.account-section-content .pagination-bar {
	margin-top: 0;
}

.account-section .container-lg .account-section-content {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-section .container-lg .account-section-content {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(min-width:1366px) {
	.account-section .container-lg .account-section-content {
		padding: 0;
	}
}

@media(min-width:1366px) {
	.account-section .container-lg .account-section-content .account-section-form {
		padding: 0 5px;
	}
}

.account-section .account-section-content .item__list--item .item__total {
	padding-right: 30px;
}

.account-section .account-section-content .account-section-header {
	color: #154259;
	font-size: 24px;
	line-height: 35px;
	font-weight: 700;
	padding: 20px 0;
	text-transform: capitalize;
	border-bottom: 1px solid #cccccc;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	padding-left: 30px;
	padding-right: 30px;
}

.account-section .account-section-content .account-section-header.border {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 25px;
}

@media(max-width:1024px) {
	.account-section .account-section-content .account-section-header {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .account-section-content .account-section-header.no-border {
	border-bottom: none;
}

.account-section .account-section-content .account-section-header .container-lg {
	float: none;
	padding: 0 10px;
}

@media(min-width:1366px) {
	.account-section .account-section-content .account-section-header .container-lg {
		padding: 0;
	}
}

@media(min-width:1366px) {
	.account-section .account-section-content .back-link .container-lg {
		padding: 0;
	}
}

.account-section .account-section-content .account-section-form {
	margin: 40px 0;
}

.account-section .account-section-content .account-section-form .accountActions {
	padding-left: 0;
	padding-right: 0;
}

@media(max-width:768px) {
	.account-section .account-section-content .account-section-form .accountButtons:last-child {
		padding-top: 20px;
	}
}

.account-section .account-section-content .account-section-form form {
	padding: 0;
}

.account-section .account-section-content form {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-section .account-section-content form {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .account-section-content form .accountActions-bottom {
	padding: 0;
}

.account-section .account-section-content #quoteForm {
	padding: 0;
}

.account-section .account-section-content #addNewPermissionForm .account-select-form {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-section .account-section-content #addNewPermissionForm .account-select-form {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .account-section-content.content-empty {
	margin: 45px 0;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-section .account-section-content.content-empty {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .account-section-content .help-block {
	font-size: 14px;
	font-weight: normal;
	color: #c53131;
}

.account-section .account-section-content .account-orderhistory-pagination {
	padding-top: 10px;
}

.account-section .account-section-content .account-orderhistory-pagination .pagination-bar .sort-refine-bar {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-section .account-section-content .account-orderhistory-pagination .pagination-bar .sort-refine-bar {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .account-section-content .account-orderhistory-pagination .pagination-bar form {
	padding: 0;
}

.account-section .account-section-content .account-orderhistory-pagination .account-orderhistory-pagination-text {
	line-height: 32px;
}

.account-section .account-section-content .account-orderhistory-pagination .pager {
	margin: 0;
}

.account-section .account-section-content .account-orderhistory-sort {
	background: #f2f4f7;
	padding: 10px;
}

.account-section .account-section-content table>tbody>tr>td:nth-child(2) a {
	font-weight: 600;
}

.account-section .account-section-content .accountActions {
	padding-left: 0;
	padding-right: 0;
	padding-top: 20px;
}

.account-section .account-section-content .cart-voucher form,
.account-section .account-section-content .cart-items form,
.account-section .account-section-content .item-action form {
	padding: 0;
}

@media(min-width:1024px) {
	.account-section .account-section-content .item__btn {
		margin-bottom: 10px;
	}
}

@media(max-width:1023px) {
	.account-section .account-section-content .item__btn {
		margin-top: 20px;
	}
}

.account-section .account-section-content .disable-link,
.account-section .account-section-content .enable-link {
	display: inline-block;
	text-align: right;
	margin: 25px 0;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 16px;
}

@media(max-width:639px) {

	.account-section .account-section-content .disable-link,
	.account-section .account-section-content .enable-link {
		text-align: center;
		float: none;
		padding-right: 0 !important;
		width: 100%;
	}
}

.account-section .account-section-content .disable-link button,
.account-section .account-section-content .enable-link button {
	background: transparent;
	border: 0 none;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0;
}

.account-section .account-section-content .disable-link button[disabled],
.account-section .account-section-content .enable-link button[disabled] {
	color: #929292;
}

.account-section .account-section-content .disable-link form,
.account-section .account-section-content .enable-link form {
	display: inline-block;
}

.account-section .account-section-content .enable-link+.disable-link,
.account-section .account-section-content .disable-link+.enable-link,
.account-section .account-section-content .disable-link+.disable-link,
.account-section .account-section-content .enable-link+.enable-link {
	padding-left: 20px;
	position: relative;
}

.account-section .account-section-content .enable-link+.disable-link:before,
.account-section .account-section-content .disable-link+.enable-link:before,
.account-section .account-section-content .disable-link+.disable-link:before,
.account-section .account-section-content .enable-link+.enable-link:before {
	content: "";
	display: block;
	position: absolute;
	height: 24px;
	width: 1px;
	left: 10px;
	background: #cccccc;
	top: 0;
}

@media(max-width:639px) {

	.account-section .account-section-content .enable-link+.disable-link:before,
	.account-section .account-section-content .disable-link+.enable-link:before,
	.account-section .account-section-content .disable-link+.disable-link:before,
	.account-section .account-section-content .enable-link+.enable-link:before {
		display: none;
	}
}

@media(max-width:639px) {

	.account-section .account-section-content .enable-link+.disable-link,
	.account-section .account-section-content .disable-link+.enable-link,
	.account-section .account-section-content .disable-link+.disable-link,
	.account-section .account-section-content .enable-link+.enable-link {
		padding-left: 0;
	}
}

.account-section .account-section-content .disable-link a,
.account-section .account-section-content .disable-link button,
.account-section .account-section-content .disable-link form {
	color: #ed1c24;
}

@media(max-width:639px) {
	.account-section .account-section-content .remove-item-column {
		position: absolute;
		right: -4px;
		top: -5px;
		width: auto;
	}

	.account-section .account-section-content .restore-item-column {
		position: absolute;
		right: -4px;
		top: 50px;
		width: auto;
	}
}

.account-section .account-section-content .restore-item-link {
	text-transform: uppercase;
	font-weight: 700;
}

.account-section .account-section-content .restore-item-link .glyphicon-share-alt {
	font-size: 24px;
	padding: 13px;
	transform: scale(-1, 1);
	margin-right: 13px;
}

.account-section .account-section-content .edit-item-link {
	margin-top: 10px;
	display: block;
}

.account-section .account-section-content .remove-item-link .glyphicon-remove {
	font-size: 21px;
	padding: 0 14px;
}

@media(max-width:768px) {
	.account-section .account-section-content .remove-item-link .glyphicon-remove {
		padding: 14px;
	}
}

.account-section .account-section-content .saved__carts__overview--table .responsive-table-item {
	position: relative;
	padding-right: 35px;
}

@media(min-width:640px) {
	.account-section .account-section-content .saved-cart .saved-cart-name {
		width: 15%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 0;
	}

	.account-section .account-section-content .saved-cart .saved-cart-description {
		width: 30%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 0;
	}
}

.account-section .account-section-action {
	margin-top: 20px;
}

@media(max-width:639px) {
	.account-section .account-section-action .row {
		margin: 0;
	}

	.account-section .account-section-action .btn-primary {
		margin-bottom: 20px;
	}
}

.account-section .accountActions-bottom {
	clear: both;
	margin-top: 35px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-section .accountActions-bottom {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {
	.account-section .accountActions-bottom .btn-primary {
		margin-bottom: 20px;
	}
}

.account-section .cancel-panel .orderBackBtn {
	padding-right: 0;
}

@media(max-width:768px) {
	.account-section .cancel-panel .orderBackBtn {
		padding-right: 20px;
		margin-bottom: 20px;
	}
}

@media(min-width:640px) {
	.account-section .cancel-panel {
		padding-left: 0;
	}
}

.account-section .btn.btn-block+.btn.btn-block {
	margin-top: 10px;
}

.account-section .account-consignment {
	margin-top: 20px;
}

.account-section .account-list.account-addressbook ul,
.account-section .account-list.account-paymentdetails ul {
	margin-bottom: 30px;
}

.account-section .account-list ul {
	padding-left: 0;
	list-style: none;
	display: inline-block;
	width: 90%;
}

.account-section .account-list ul li {
	text-overflow: ellipsis;
	overflow: hidden;
}

.account-section .account-list .account-list-header {
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	background-color: #f4f4f4;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 20px;
	line-height: 1.5;
	margin-top: -1px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-section .account-list .account-list-header {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .account-list .account-list-header .account-list-header-add {
	font-size: 15px;
	line-height: 2;
	font-weight: 600;
	position: relative;
	top: 2px;
}

.account-section .account-list .account-cards {
	border-left: 1px solid #cccccc;
	padding: 0 10px;
}

.account-section .account-list .account-cards.card-select {
	border-top: 1px solid #cccccc;
}

.account-section .account-list .account-cards .account-cards-actions {
	display: inline-block;
	width: 10%;
}

.account-section .account-list .account-cards .account-cards-actions .glyphicon {
	font-size: 24px;
	margin-bottom: 20px;
}

.account-section .account-list .account-cards .account-cards-actions .edit-item .glyphicon {
	margin-top: 3px;
}

@media(min-width:640px) {
	.account-section .account-list .account-cards .row {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flexbox;
		display: -ms-flex;
		display: flex;
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.account-section .account-list .account-cards .row:before {
		content: none;
	}

	.account-section .account-list .account-cards .row:after {
		content: '';
	}
}

.account-section .account-list .account-cards .card,
.account-section .account-list .account-cards .search-empty {
	list-style: none;
	border-left: 0;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	padding: 30px 30px 25px;
	margin-bottom: 0;
	min-height: 150px;
	clear: both;
}

.account-section .account-list .account-cards .card span,
.account-section .account-list .account-cards .search-empty span {
	padding: 0;
	text-align: right;
}

.account-section .account-list .account-cards .card>ul>li,
.account-section .account-list .account-cards .search-empty>ul>li {
	margin-bottom: 3px;
}

.account-section .account-list .account-cards .card>ul>li:first-child,
.account-section .account-list .account-cards .search-empty>ul>li:first-child {
	text-transform: uppercase;
	font-weight: 600;
}

.account-section .account-list .account-cards .card .action-links,
.account-section .account-list .account-cards .search-empty .action-links {
	float: right;
	height: 50px;
	width: 50px;
	margin-right: -15px;
	margin-top: -15px;
	text-align: right;
}

.account-section .account-list .account-cards .card .action-links .glyphicon-remove,
.account-section .account-list .account-cards .search-empty .action-links .glyphicon-remove,
.account-section .account-list .account-cards .card .action-links .glyphicon-pencil,
.account-section .account-list .account-cards .search-empty .action-links .glyphicon-pencil {
	font-size: 20px;
	color: #929292;
	padding-right: 15px;
	padding-top: 15px;
}

.account-section .account-list .account-cards .card .action-links:hover .glyphicon-remove,
.account-section .account-list .account-cards .search-empty .action-links:hover .glyphicon-remove,
.account-section .account-list .account-cards .card .action-links:hover .glyphicon-pencil,
.account-section .account-list .account-cards .search-empty .action-links:hover .glyphicon-pencil {
	color: #ec7205;
}

@media(max-width:1024px) {

	.account-section .account-list .account-cards .card,
	.account-section .account-list .account-cards .search-empty {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-section .account-list .account-set-default-address {
	position: absolute;
	left: 25px;
	bottom: 25px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	color: #ec7205;
	background: transparent;
	padding: 0;
	border: 0 none;
}

@media(max-width:639px) {
	.account-section .account-list .account-set-default-address {
		left: 20px;
	}
}

.account-section .continue__shopping,
.account-section .orderBackBtn {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {

	.account-section .continue__shopping,
	.account-section .orderBackBtn {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {
	.account-section .account-list .account-cards {
		border: none;
	}

	.account-section .account-list .account-cards .card {
		border-left: 0;
		border-right: 0;
		padding-left: 20px;
		padding-right: 20px;
	}

	.account-section .account-list .account-cards .card:first-child {
		margin: 0;
	}

	.account-section .account-list .account-cards .selected:first-child {
		border-left: none;
	}
}

.account-profil .account-profil-info {
	margin: 0 0 10px;
}

.account-profil .account-profil-info .account-profil-info-line {
	line-height: 2em;
}

.account-profil .account-profil-info .account-profil-info-line span {
	display: inline-block;
	width: 100px;
}

.account-profil a.btn {
	margin-top: 10px;
}

.account-profil .btn+.btn {
	margin-left: 10px;
}

.account-orderdetail.well {
	padding-left: 0;
	padding-right: 0;
}

@media(min-width:1024px) {
	.account-orderdetail .item__list .item__list--item .item__total {
		padding-right: 30px;
	}
}

.account-orderdetail .well-content {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-orderdetail .well-content {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-orderdetail:before,
.account-orderdetail:after {
	content: " ";
	display: table;
}

.account-orderdetail:after {
	clear: both;
}

.account-orderdetail:before,
.account-orderdetail:after {
	content: " ";
	display: table;
}

.account-orderdetail:after {
	clear: both;
}

.account-orderdetail .col-sm-9>.col-sm-4:nth-child(3n+1) {
	clear: both;
}

.account-orderdetail .order-savings {
	color: #00a651;
	font-weight: 700;
	padding: 10px 10px 25px 0;
}

.account-orderdetail .order-savings+.order-savings {
	padding-top: 0;
}

.account-orderdetail .item-box {
	background: #afb2b5;
	padding: 10px;
	margin-bottom: 5px;
	margin-top: 5px;
}

.account-orderdetail .item-box:before,
.account-orderdetail .item-box:after {
	content: " ";
	display: table;
}

.account-orderdetail .item-box:after {
	clear: both;
}

.account-orderdetail .item-box:before,
.account-orderdetail .item-box:after {
	content: " ";
	display: table;
}

.account-orderdetail .item-box:after {
	clear: both;
}

.account-orderdetail .order-data {
	background-color: #F2F4F7;
	padding: 10px;
}

.account-orderdetail .orderDetail_itemHeader {
	font-size: 20px;
	background-color: #f4f4f4;
	padding: 10px 20px;
}

.account-orderdetail .button-panel {
	float: right;
	max-width: 200px;
}

.account-orderdetail .account-orderdetail-item-section-body ul {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

.account-orderdetail .account-orderdetail-item-section-body ul li {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.account-orderdetail .account-orderdetail-item-section-body ul li:before,
.account-orderdetail .account-orderdetail-item-section-body ul li:after {
	content: " ";
	display: table;
}

.account-orderdetail .account-orderdetail-item-section-body ul li:after {
	clear: both;
}

.account-orderdetail .account-orderdetail-item-section-body ul li:before,
.account-orderdetail .account-orderdetail-item-section-body ul li:after {
	content: " ";
	display: table;
}

.account-orderdetail .account-orderdetail-item-section-body ul li:after {
	clear: both;
}

.account-orderdetail .account-orderdetail-item-section-body ul li+li {
	border-top: 1px solid #eee;
}

.account-orderdetail .account-orderdetail-item-section-body ul .thumb {
	float: left;
	margin-right: 10px;
	max-width: 100px;
}

.account-orderdetail .account-orderdetail-item-section-body ul .price-total {
	float: right;
	padding-right: 10px;
}

.account-orderdetail .account-orderdetail-item-section-body ul .details .name {
	font-weight: bold;
}

.account-orderdetail .account-orderdetail-item-section-body ul .promo {
	color: #00a651;
}

@media(min-width:1024px) and (max-width:1399px) {
	.account-orderdetail .account-orderdetail-item-section-body ul .promo {
		padding-left: 22px;
	}
}

@media(min-width:1400px) {
	.account-orderdetail .account-orderdetail-item-section-body ul .promo {
		padding-left: 0;
	}
}

.account-orderdetail .account-orderdetail-item-section-body ul .promo li {
	border-bottom: 0;
}

.account-orderdetail .account-orderdetail__footer {
	padding-top: 55px;
}

.account-orderdetail .account-orderdetail__footer>div {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.account-orderdetail .account-orderdetail__footer>div {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.account-orderdetail .order-savings__headline {
	font-size: 18px;
	color: #19212b;
	font-weight: 500;
}

.account-orderdetail .orderTotal {
	font-size: 18px;
	line-height: 38px;
	margin-bottom: 20px;
}

.account-orderdetail .orderTotal .text-right {
	font-weight: 700;
}

.account-orderdetail .orderTotal .totals {
	font-size: 22px;
	line-height: 1.2em;
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 15px;
}

.account-orderdetail .orderTotal .discount {
	color: #00a651;
}

.account-orderdetail .order-store-address .order-track-number,
.account-orderdetail .order-store-hours .order-track-number {
	color: #ed1c24;
}

.account-orderdetail .order-billing-address ul {
	padding: 0;
}

.account-orderdetail .order-billing-address ul li {
	list-style: none;
}

.account-orderdetail .order-billing-address .label-order,
.account-orderdetail .order-payment-data .label-order,
.account-orderdetail .order-ship-to .label-order,
.account-orderdetail .order-shipping-method .label-order,
.account-orderdetail .order-tracking-no .label-order,
.account-orderdetail .order-store-address .label-order,
.account-orderdetail .order-store-hours .label-order {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 2px;
}

.account-orderdetail .order-billing-address .value-order-date,
.account-orderdetail .order-payment-data .value-order-date,
.account-orderdetail .order-ship-to .value-order-date,
.account-orderdetail .order-shipping-method .value-order-date,
.account-orderdetail .order-tracking-no .value-order-date,
.account-orderdetail .order-store-address .value-order-date,
.account-orderdetail .order-store-hours .value-order-date {
	display: inline-block;
	min-width: 15%;
}

.account-orderdetail .value-order {
	overflow: hidden;
	text-overflow: ellipsis;
}

@media(max-width:639px) {

	.account-orderdetail .order-shipping-method,
	.account-orderdetail .order-tracking-no,
	.account-orderdetail .order-payment-data,
	.account-orderdetail .order-store-hours {
		padding-top: 20px;
	}
}

.account-orderdetail .account-orderdetail-orderTotalDiscount-section {
	clear: both;
	margin-bottom: 20px;
}

.account-orderdetail .account-orderdetail-orderTotalDiscount-section .order-total__taxes {
	text-align: right;
}

.account-orderdetail .account-orderdetail-orderTotalDiscount-section .order-savings__info {
	color: #00a651;
	font-weight: 700;
	text-transform: uppercase;
}

.account-address-removal-popup .address {
	margin-top: 20px;
}

.account-address-removal-popup .btn {
	margin-top: 10px;
}

.savedcart_restore_confirm_modal .restore-current-cart-form {
	margin-top: 40px;
}

.not-active {
	pointer-events: none;
	cursor: default;
	font-weight: normal !important;
	color: black !important;
}

.quick-view-popup .product-image {
	float: left;
	width: 33%;
}

.quick-view-popup .product-image a {
	display: block;
}

.quick-view-popup .product-image img {
	width: 100%;
	height: auto;
}

.quick-view-popup .product-details {
	margin-left: 33%;
	padding-left: 20px;
}

.quick-view-popup .product-details .name {
	font-size: inherit;
	font-weight: bold;
}

.quick-view-popup .product-details .rating:after {
	clear: none;
}

.quick-view-popup .product-details .price {
	font-size: inherit;
	font-weight: bold;
}

.quick-view-popup .addtocart-component {
	clear: both;
	padding-top: 20px;
}

table {
	width: 100%;
}

table th {
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	background-color: #128a9e;
	color: #ffffff;
	padding: 8px 10px;
	vertical-align: top;
}

table th:last-child {
	text-align: right;
}

table td {
	padding: 20px 10px;
	vertical-align: top;
}

.responsive-table th:first-child {
	padding-left: 30px;
}

@media(max-width:1024px) {
	.responsive-table th:first-child {
		padding-left: 20px;
	}
}

.responsive-table th:last-child {
	text-align: right;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.responsive-table th:last-child {
		padding-right: 20px;
	}
}

@media(min-width:768px) {
	.responsive-table td:nth-child(2) {
		padding-left: 20px;
	}
}

@media(min-width:1024px) {
	.responsive-table td:nth-child(2) {
		padding-left: 30px;
	}
}

.responsive-table td:last-child {
	text-align: right;
	padding-right: 30px;
}

@media(max-width:640px) {
	.responsive-table td:last-child {
		padding-right: 20px;
	}
}

.responsive-table-item {
	padding: 10px;
}

@media(max-width:640px) {
	.responsive-table-item {
		padding: 10px 20px;
	}
}

.responsive-table-item:nth-child(even) {
	background-color: #f2f2f2;
}

.responsive-table-item a.responsive-table-link {
	color: #ec7205;
}

.responsive-table-item a:hover,
.responsive-table-item a:focus {
	color: #154259;
}

.responsive-table-item td:last-child {
	text-align: right;
}

@media(max-width:639px) {
	.responsive-table-item {
		display: block;
	}

	.responsive-table-item .status strong {
		display: block;
	}

	.responsive-table-item td {
		display: inline-block;
		width: 40%;
		padding: 3px 10px;
	}

	.responsive-table-item td:last-child {
		text-align: left;
	}

	.responsive-table-item td.responsive-table-cell {
		width: 55%;
	}

	.responsive-table-item td.responsive-table-cell-bold {
		font-weight: 600;
	}
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: 10px;
	margin-bottom: 20px;
}

label {
	color: #153a59;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
}

.form-control:focus {
	border-color: #5adfd9;
	outline: 0;
	box-shadow: none;
}

.form-control::-moz-placeholder {
	color: #b9bdc2;
	opacity: 1;
}

.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
	color: #b9bdc2;
}

select.form-control {
	text-transform: uppercase;
	font-size: 13px;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	color: #929292;
}

.has-error .control-label {
	color: #153a59;
}

.has-error input.form-control {
	background: #f6e0e0;
	border-color: #c53131;
}

.has-error .help-block {
	font-weight: 600;
	color: #c53131;
}

.has-success .control-label {
	color: #153a59;
}

.has-success input.form-control {
	background: transparent;
	border-color: #cccccc;
}

.has-success .help-block {
	font-weight: 600;
	color: #00a651;
}

legend {
	font-size: 18px;
	border-bottom: 0;
	margin-top: 20px;
	margin-bottom: 20px;
}

.form-element-icon {
	position: relative;
}

.form-element-icon .glyphicon {
	position: absolute;
}

.form-element-icon.datepicker .glyphicon {
	top: 32px;
	right: 10px;
	color: #47b6b1;
	cursor: pointer;
}

@media(max-width:1023px) {
	.form-element-icon.datepicker .glyphicon {
		top: 38px;
	}
}

.form-control-radio,
.form-control-checkbox {
	display: block;
}

.form-control-radio input,
.form-control-checkbox input {
	margin-bottom: 0;
	float: left;
}

.form-control-radio .form-control-label,
.form-control-checkbox .form-control-label {
	margin-left: 25px;
}

fieldset>div:last-of-type input,
fieldset>div:last-of-type label {
	margin-bottom: 0;
}

.legend {
	margin-bottom: 20px;
}

textarea {
	min-height: 245px;
}

textarea+.help-block {
	font-size: 12px;
	margin-bottom: 25px;
	text-align: right;
}

.input-sm {
	height: 40px;
	padding: 9px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	border-radius: 0;
}

select.input-sm {
	height: 40px;
	line-height: 40px;
}

textarea.input-sm,
select[multiple].input-sm {
	height: auto;
}

.textpage-faqs th:last-child {
	text-align: left;
}

.section1 {
	margin: 10px 0;
}

.zoneA .disp-img {
	height: 108px;
	margin: 10px 0 0 0;
	border-bottom: 1px dotted #A5A5A5;
	position: relative;
}

.zoneA .disp-img:first-child {
	margin: 0;
}

.zoneA .disp-img a {
	display: block;
}

.zoneA .disp-img .title {
	display: block;
	margin-left: 106px;
	border-bottom: 1px dotted #A5A5A5;
	margin-bottom: 10px;
}

.zoneA .disp-img .thumb {
	position: absolute;
	top: 0;
}

.zoneA .disp-img .details {
	width: 124px;
	height: 96px;
	margin-left: 106px;
	display: block;
}

.zoneA .action {
	display: none;
}

.zoneB .simple_disp-img:first-child {
	margin: 0 0 10px 0;
}

#homepage_slider.stripViewer {
	position: relative;
	overflow: hidden;
	margin: 0;
}

#homepage_slider.stripViewer ul {
	margin: 0;
	padding: 0;
	position: relative;
	left: 0;
	top: 0;
	width: 1%;
	list-style-type: none;
}

#homepage_slider.stripViewer ul li {
	float: left;
}

#homepage_slider .svw {
	width: 50px;
	height: 20px;
	background-color: #ffffff;
}

#homepage_slider .svw ul {
	position: relative;
	left: -999em;
}

#homepage_slider .tooltip {
	padding: 0.5em;
	background-color: #ffffff;
	color: #000000;
	border: 5px solid #dedede;
}

.stripTransmitter {
	overflow: auto;
	padding: 0 15px;
	width: 438px !important;
	height: 51px;
	border-bottom: 1px dotted #A5A5A5;
	background-color: #eee;
}

.stripTransmitter ul {
	margin: 0;
	padding: 0;
	position: relative;
	list-style-type: none;
}

.stripTransmitter ul li {
	width: 30px;
	float: left;
}

.stripTransmitter a {
	line-height: 47px;
	display: block;
	padding: 0 0 0 0;
	text-align: center;
	text-decoration: none;
	font-size: 1.4em;
}

.stripTransmitter a:hover,
.stripTransmitter a.current {
	font-weight: bold;
}

.tooltip {
	padding: 0.5em;
	background-color: #ffffff;
	color: #000000;
	border-bottom: 1px dotted #A5A5A5;
}

.section4 .disp-img {
	margin: 0 0 15px 0;
}

.section4 .disp-img .title {
	border-bottom: 1px solid #a5a5a5;
	height: 30px;
	line-height: 30px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1em;
	white-space: nowrap;
	display: block;
	margin: 0 0 10px 0;
}

.section4 .disp-img .thumb {
	margin: 0 0 5px 0;
	display: block;
}

.section4 .disp-img .action {
	display: none;
}

.product-details-toggle {
	position: relative;
	cursor: pointer;
	margin-bottom: 20px;
	padding-right: 20px;
}

.product-details-toggle.name {
	font-weight: 600;
}

.product-details.open .product-details-toggle {
	margin-bottom: 0;
}

.product-details-toggle .glyphicon {
	float: right;
	font-size: 14px;
	line-height: 35px;
}

.product-details.open .product-details-toggle .glyphicon:before {
	content: "\e114";
}

.product-details-toggle-wrap {
	display: none;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.product-details-toggle-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.product-details.open+.product-details-toggle-wrap {
	display: block;
}

.product-details-toggle-wrap .product-details {
	font-size: 22px;
}

.product-details-toggle-wrap img {
	width: 175px;
	margin: 0 30px 35px 0;
	float: left;
}

@media(min-width:640px) {
	.product-details-toggle-wrap .product-details {
		text-align: right;
	}
}

@media(max-width:639px) {
	.product-details-toggle {
		padding: 0 25px 0 10px;
	}

	.product-details-toggle .glyphicon {
		right: 10px;
	}

	.product-details-toggle-wrap {
		margin: 0;
	}

	.product-details-toggle-wrap img {
		float: none;
		width: 100%;
		margin: 0 0 20px 0;
	}

	.product-details-toggle-wrap .product-details {
		margin-bottom: 20px;
	}
}

.product-action {
	overflow: hidden;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 15px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.product-action {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.product-action ol {
	list-style: none;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.product-action ol li {
	font-size: 18px;
	float: right;
	margin: 15px 0 15px 20px;
	line-height: 48.85714286px;
}

.product-action #total-price {
	font-size: 18px;
	font-weight: 600;
}

.product-action div {
	float: left;
	margin: 15px 0;
	line-height: 48.85714286px;
}

@media(max-width:639px) {
	.product-action {
		margin-bottom: 0;
	}

	.product-action ol li {
		margin-right: 0;
	}
}

@media(max-width:480px) {

	.product-action ol li,
	.product-action .btn {
		width: 100%;
	}

	.product-action div {
		float: none;
		line-height: 1.42857;
		margin-bottom: 0;
	}
}

.update-future-stock {
	text-align: right;
	padding: 20px 7px 15px 0;
}

.update-future-stock .update_future_stock_button,
.update-future-stock .hide_future_stock_info {
	font-size: 13px;
	font-weight: 700;
}

.update-future-stock .hide_future_stock_info {
	display: none;
}

.product-grid-container .sku-quantity,
#cboxContent .sku-quantity {
	font-size: 13px;
	line-height: 20px;
	width: 60px;
	padding: 9px 10px;
	margin: 5px 0 3px;
	border: 1px solid #cccccc;
	text-align: center;
}

.product-grid-container .td_stock,
#cboxContent .td_stock {
	display: block;
	padding-bottom: 5px;
}

.product-grid-container .td_stock .in-stock,
#cboxContent .td_stock .in-stock {
	color: #929292;
	font-size: 13px;
	font-weight: 600;
}

.product-grid-container .future_stock,
#cboxContent .future_stock {
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.product-grid-container .future_stock .future_stock_value,
#cboxContent .future_stock .future_stock_value {
	margin: 2px 0 8px 0;
}

.product-grid-container .data-grid-total,
#cboxContent .data-grid-total {
	display: inline-block;
	padding-top: 5px;
	border-top: 1px solid #cccccc;
	font-size: 15px;
	font-weight: 700;
}

.product-grid-container table td .price {
	font-size: 15px;
	font-weight: bold;
}

.product-grid-container table td.out-of-stock .variant-prop,
.product-grid-container table td.out-of-stock .price {
	opacity: 0.3;
}

.product-grid-container table td.out-of-stock .sku-quantity {
	opacity: 0.3;
	background-color: #fff;
}

@media(min-width:640px) {
	.add-to-cart-order-form-wrap {
		position: relative;
		padding-left: 30px;
		padding-right: 30px;
	}

	.add-to-cart-order-form-wrap::after {
		background-color: white;
		bottom: 0;
		content: "";
		height: 17px;
		position: absolute;
		width: 100%;
	}

	.add-to-cart-order-form-wrap::before {
		background-color: white;
		right: 0;
		content: "";
		position: absolute;
		height: 100%;
	}

	.add_to_cart_order_form {
		overflow: scroll;
		max-height: 907px;
	}

	.order-form-scroll {
		cursor: pointer;
		background-color: #47b6b1;
		opacity: 0.4;
		color: #fff;
		text-align: center;
		position: absolute;
		display: none;
	}

	.order-form-scroll.right {
		width: 50px;
		height: 75px;
		line-height: 75px;
		right: 0px;
		top: 50%;
		margin-top: -35px;
	}

	.order-form-scroll.left {
		width: 50px;
		height: 75px;
		line-height: 75px;
		left: 0;
		top: 50%;
		margin-top: -35px;
	}

	.order-form-scroll.up {
		width: 75px;
		height: 50px;
		line-height: 50px;
		top: 0;
		left: 50%;
		margin-left: -35px;
	}

	.order-form-scroll.down {
		width: 75px;
		height: 50px;
		line-height: 50px;
		bottom: 17px;
		left: 50%;
		margin-left: -35px;
	}

	.product-grid-container-dim-3,
	.product-grid-container-dim-2 {
		width: 100%;
	}

	.product-grid-container table {
		border-bottom: 1px solid #e5e5e5;
	}

	.product-grid-container table:nth-child(2n) {
		background: #f2f2f2;
	}

	.product-grid-container table tr:first-child>th:first-child {
		border-right: 1px solid #d3d3d3;
		white-space: nowrap;
	}

	.product-grid-container table tr>td:first-child {
		border-right: 1px solid #e5e5e5;
		padding-top: 20px;
	}

	.product-grid-container table th {
		text-align: center;
	}

	.product-grid-container table td {
		text-align: center;
		padding: 25px 10px 15px;
		vertical-align: top;
		max-width: 200px;
	}
}

@media(min-width:640px) and (max-width:1024px) {
	.add-to-cart-order-form-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {
	#cboxContent .sku-quantity {
		font-size: 16px;
	}

	.product-grid-container {
		font-size: 16px;
		margin-left: -10px;
		margin-right: -10px;
	}

	.product-grid-container table {
		table-layout: fixed;
		width: 100%;
	}

	.product-grid-container table tr td {
		border-bottom: 1px solid #e5e5e5;
	}

	.product-grid-container table tr .variant-detail {
		width: 60%;
		padding: 15px 0 15px 20px;
	}

	.product-grid-container table tr .variant-detail img {
		float: left;
		padding-right: 20px;
	}

	.product-grid-container table tr .variant-detail .description {
		padding: 12px 0;
	}

	.product-grid-container table tr .variant-select {
		width: 40%;
		text-align: right;
		font-weight: 600;
		padding-right: 20px;
		vertical-align: middle;
	}

	.product-grid-container table .hidden-size {
		display: none;
	}

	.product-grid-container table .variant-summary {
		display: none;
		background-color: #e5e5e5;
	}

	.product-grid-container table .variant-summary .variant-summary-items {
		margin: 15px 0;
	}

	.product-grid-container table .variant-summary tr td {
		padding: 0 20px;
		font-weight: bold;
	}

	.product-grid-container table .variant-summary tr td:last-child {
		text-align: right;
	}

	.product-grid-container table .variant-summary tr:first-child td {
		font-weight: normal;
	}

	.product-grid-container table .variant-summary span {
		display: none;
	}

	.product-grid-container table .editSize {
		display: none;
	}

	.product-grid-container table.selected .variant-summary {
		display: table-row;
	}

	.product-grid-container table.selected .editSize {
		display: inline;
	}

	.product-grid-container table.selected .selectSize {
		display: none;
	}

	.variantSelectMobile #cboxLoadedContent {
		overflow: visible !important;
		padding-left: 0;
		padding-right: 0;
	}

	.variantSelectMobile #cboxContent table {
		width: 100%;
	}

	.variantSelectMobile #cboxContent table td {
		display: block;
		font-weight: 600;
		text-align: center;
		padding: 25px 0 10px 0;
	}

	.variantSelectMobile #cboxContent table td:first-child {
		width: auto;
	}

	.variantSelectMobile #cboxContent table td:nth-child(2n+2) {
		background: #f2f2f2;
	}

	.variantSelectMobile #cboxContent .product-grid-container {
		margin: 0;
	}

	.variantSelectMobile #cboxContent .orderForm_grid_group {
		position: relative;
	}

	.variantSelectMobile #cboxContent .update-future-stock {
		position: absolute;
		margin-left: -65px;
		left: 50%;
		top: 100px;
	}

	.variantSelectMobile #cboxContent .variant-detail {
		padding: 0 0 60px 0;
	}

	.variantSelectMobile #cboxContent .variant-detail img {
		display: inline-block;
		max-width: 200px;
		float: none;
		padding: 0;
	}

	.variantSelectMobile #cboxContent .variant-detail .description {
		padding: 0;
	}

	.variantSelectMobile #cboxContent .variant-detail .description>div {
		display: inline;
	}

	.variantSelectMobile #cboxContent .mobile-cart-actions {
		padding: 20px;
		border-bottom: none;
		background-color: #fff !important;
	}

	.variantSelectMobile #cboxContent .mobile-cart-actions .btn {
		width: 100%;
	}

	.variantSelectMobile #cboxContent .variant-select,
	.variantSelectMobile #cboxContent .variant-summary {
		display: none;
	}

	.variantSelectMobile #cboxContent .variant-prop>span {
		font-weight: 400;
	}

	.variantSelectMobile #cboxContent .sku-quantity {
		font-weight: 400;
		line-height: 60px;
		width: 120px;
		height: 80px;
	}
}

.quick-order__introduction {
	padding-top: 13px;
	margin-top: 10px;
	line-height: 22px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.quick-order__introduction {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:1023px) {
	.quick-order__introduction {
		margin-bottom: 10px;
	}
}

.quick-order__actions {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.quick-order__actions {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(max-width:639px) {
	.quick-order__actions .pull-right {
		float: none !important;
	}
}

.quick-order__add-to-cart-btn {
	margin-top: 10px;
}

.quick-order__add-to-cart-btn .btn {
	width: 100%;
}

.quick-order__reset-link {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.375;
	border: none;
	background-color: transparent;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 13px;
	margin-top: 10px;
}

@media(max-width:639px) {
	.quick-order__reset-link {
		margin: 20px 0;
		text-align: center;
		width: 100%;
		padding-top: 5px;
	}
}

.quick-order__list {
	margin-top: 10px;
}

.quick-order__list.item__list .item__list--item:last-child {
	padding-right: 0;
}

@media(min-width:1024px) {
	.quick-order__list.item__list .item__remove {
		padding-right: 30px;
		width: 64px;
	}
}

#quickOrder .item__list .item__info {
	width: auto;
}

@media(min-width:1024px) {
	#quickOrder .item__quantity {
		text-align: left;
	}
}

@media(min-width:1024px) {
	#quickOrder .item__sku__input input {
		max-width: 300px;
	}
}

@media(min-width:1024px) {
	#quickOrder .item__list--header .item-sku-input {
		width: 25%;
	}
}

@media(max-width:1023px) {
	#quickOrder .item__list--header .item-sku-input {
		width: 100%;
		padding: 0 20px;
	}
}

@media(min-width:1023px) {
	#quickOrder .item__list--header .item__info {
		width: 20%;
	}
}

#quickOrder .item__list--header .item__total--column {
	text-align: left;
}

#quickOrder .item__list--header li:first-child {
	padding-left: 30px;
}

#quickOrder .item__sku__input {
	padding-left: 30px;
	width: 25%;
}

@media(max-width:1023px) {
	#quickOrder .item__sku__input {
		padding-left: 20px;
		margin: 0 0 10px;
		width: 100%;
	}
}

#quickOrder .item__list--item:nth-child(odd) {
	background: #f2f2f2;
}

#quickOrder .item__list--item:nth-child(4n+4) {
	background-color: transparent;
}

@media(max-width:1023px) {
	#quickOrder .item__list--item {
		display: inline-block;
		width: 100%;
	}
}

@media(min-width:1024px) {
	#quickOrder .item__list--item .item__info {
		width: 20%;
	}
}

#quickOrder .item__list--item .item__info .item__name {
	display: block;
	padding-right: 20px;
}

@media(max-width:1023px) {
	#quickOrder .item__list--item .item__quantity {
		padding-top: 10px;
		text-align: left;
	}
}

@media(min-width:1024px) {
	#quickOrder .item__list--item .item__total {
		text-align: left;
		padding-left: 10px;
	}
}

@media(max-width:1023px) {
	#quickOrder .item__list--item .item__total {
		float: left;
	}
}

.account-section .account-section-content .import-csv__form {
	padding: 0;
}

.import-csv__well {
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.import-csv__well {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.import-csv__file-spec {
	padding-top: 15px;
}

.import-csv__file-spec-item {
	padding-top: 5px;
}

.import-csv__file-upload {
	padding-top: 20px;
}

.import-csv__actions {
	margin-top: 35px;
	padding-left: 30px;
	padding-right: 30px;
}

@media(max-width:1024px) {
	.import-csv__actions {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media(min-width:640px) {
	.import-csv__file-upload {
		border-left: 1px solid #cccccc;
		padding-top: 15px;
		padding-bottom: 10px;
		padding-left: 40px;
	}
}

@media(max-width:639px) {
	.import-csv__well {
		margin: 0;
	}
}

.file-upload {
	margin-top: 15px;
}

.file-upload__label {
	display: block;
}

.file-upload__wrapper {
	position: relative;
	overflow: hidden;
	margin-right: 20px;
}

.file-upload__input {
	position: absolute;
	right: -3px;
	top: -3px;
	bottom: -3px;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
}

.file-upload__file-name {
	font-size: 16px;
	display: inline-block;
	white-space: nowrap;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
	position: relative;
	top: 8px;
}

@media print {
	a[href]:after {
		content: "";
	}

	abbr[title]:after {
		content: "";
	}

	.breadcrumb-section {
		border-top: 2px solid #d3d3d3;
		border-bottom: 2px solid #d3d3d3;
	}

	.col-xs-1,
	.col-xs-2,
	.col-xs-3,
	.col-xs-4,
	.col-xs-5,
	.col-xs-6,
	.col-xs-7,
	.col-xs-8,
	.col-xs-9,
	.col-xs-10,
	.col-xs-11,
	.col-xs-12 {
		float: left;
	}

	.col-xs-12 {
		width: 100%;
	}

	.col-xs-11 {
		width: 91.66666667%;
	}

	.col-xs-10 {
		width: 83.33333333%;
	}

	.col-xs-9 {
		width: 75%;
	}

	.col-xs-8 {
		width: 66.66666667%;
	}

	.col-xs-7 {
		width: 58.33333333%;
	}

	.col-xs-6 {
		width: 50%;
	}

	.col-xs-5 {
		width: 41.66666667%;
	}

	.col-xs-4 {
		width: 33.33333333%;
	}

	.col-xs-3 {
		width: 25%;
	}

	.col-xs-2 {
		width: 16.66666667%;
	}

	.col-xs-1 {
		width: 8.33333333%;
	}

	.col-xs-pull-12 {
		right: 100%;
	}

	.col-xs-pull-11 {
		right: 91.66666667%;
	}

	.col-xs-pull-10 {
		right: 83.33333333%;
	}

	.col-xs-pull-9 {
		right: 75%;
	}

	.col-xs-pull-8 {
		right: 66.66666667%;
	}

	.col-xs-pull-7 {
		right: 58.33333333%;
	}

	.col-xs-pull-6 {
		right: 50%;
	}

	.col-xs-pull-5 {
		right: 41.66666667%;
	}

	.col-xs-pull-4 {
		right: 33.33333333%;
	}

	.col-xs-pull-3 {
		right: 25%;
	}

	.col-xs-pull-2 {
		right: 16.66666667%;
	}

	.col-xs-pull-1 {
		right: 8.33333333%;
	}

	.col-xs-pull-0 {
		right: auto;
	}

	.col-xs-push-12 {
		left: 100%;
	}

	.col-xs-push-11 {
		left: 91.66666667%;
	}

	.col-xs-push-10 {
		left: 83.33333333%;
	}

	.col-xs-push-9 {
		left: 75%;
	}

	.col-xs-push-8 {
		left: 66.66666667%;
	}

	.col-xs-push-7 {
		left: 58.33333333%;
	}

	.col-xs-push-6 {
		left: 50%;
	}

	.col-xs-push-5 {
		left: 41.66666667%;
	}

	.col-xs-push-4 {
		left: 33.33333333%;
	}

	.col-xs-push-3 {
		left: 25%;
	}

	.col-xs-push-2 {
		left: 16.66666667%;
	}

	.col-xs-push-1 {
		left: 8.33333333%;
	}

	.col-xs-push-0 {
		left: auto;
	}

	.col-xs-offset-12 {
		margin-left: 100%;
	}

	.col-xs-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-xs-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-xs-offset-9 {
		margin-left: 75%;
	}

	.col-xs-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-xs-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-xs-offset-6 {
		margin-left: 50%;
	}

	.col-xs-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-xs-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-xs-offset-3 {
		margin-left: 25%;
	}

	.col-xs-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-xs-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-xs-offset-0 {
		margin-left: 0%;
	}

	.col-md-1,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-md-10,
	.col-md-11,
	.col-md-12 {
		float: left;
	}

	.col-md-12 {
		width: 100%;
	}

	.col-md-11 {
		width: 91.66666667%;
	}

	.col-md-10 {
		width: 83.33333333%;
	}

	.col-md-9 {
		width: 75%;
	}

	.col-md-8 {
		width: 66.66666667%;
	}

	.col-md-7 {
		width: 58.33333333%;
	}

	.col-md-6 {
		width: 50%;
	}

	.col-md-5 {
		width: 41.66666667%;
	}

	.col-md-4 {
		width: 33.33333333%;
	}

	.col-md-3 {
		width: 25%;
	}

	.col-md-2 {
		width: 16.66666667%;
	}

	.col-md-1 {
		width: 8.33333333%;
	}

	.col-md-pull-12 {
		right: 100%;
	}

	.col-md-pull-11 {
		right: 91.66666667%;
	}

	.col-md-pull-10 {
		right: 83.33333333%;
	}

	.col-md-pull-9 {
		right: 75%;
	}

	.col-md-pull-8 {
		right: 66.66666667%;
	}

	.col-md-pull-7 {
		right: 58.33333333%;
	}

	.col-md-pull-6 {
		right: 50%;
	}

	.col-md-pull-5 {
		right: 41.66666667%;
	}

	.col-md-pull-4 {
		right: 33.33333333%;
	}

	.col-md-pull-3 {
		right: 25%;
	}

	.col-md-pull-2 {
		right: 16.66666667%;
	}

	.col-md-pull-1 {
		right: 8.33333333%;
	}

	.col-md-pull-0 {
		right: auto;
	}

	.col-md-push-12 {
		left: 100%;
	}

	.col-md-push-11 {
		left: 91.66666667%;
	}

	.col-md-push-10 {
		left: 83.33333333%;
	}

	.col-md-push-9 {
		left: 75%;
	}

	.col-md-push-8 {
		left: 66.66666667%;
	}

	.col-md-push-7 {
		left: 58.33333333%;
	}

	.col-md-push-6 {
		left: 50%;
	}

	.col-md-push-5 {
		left: 41.66666667%;
	}

	.col-md-push-4 {
		left: 33.33333333%;
	}

	.col-md-push-3 {
		left: 25%;
	}

	.col-md-push-2 {
		left: 16.66666667%;
	}

	.col-md-push-1 {
		left: 8.33333333%;
	}

	.col-md-push-0 {
		left: auto;
	}

	.col-md-offset-12 {
		margin-left: 100%;
	}

	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-md-offset-9 {
		margin-left: 75%;
	}

	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-md-offset-6 {
		margin-left: 50%;
	}

	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-md-offset-3 {
		margin-left: 25%;
	}

	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-md-offset-0 {
		margin-left: 0%;
	}

	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12 {
		float: left;
	}

	.col-sm-12 {
		width: 100%;
	}

	.col-sm-11 {
		width: 91.66666667%;
	}

	.col-sm-10 {
		width: 83.33333333%;
	}

	.col-sm-9 {
		width: 75%;
	}

	.col-sm-8 {
		width: 66.66666667%;
	}

	.col-sm-7 {
		width: 58.33333333%;
	}

	.col-sm-6 {
		width: 50%;
	}

	.col-sm-5 {
		width: 41.66666667%;
	}

	.col-sm-4 {
		width: 33.33333333%;
	}

	.col-sm-3 {
		width: 25%;
	}

	.col-sm-2 {
		width: 16.66666667%;
	}

	.col-sm-1 {
		width: 8.33333333%;
	}

	.col-sm-pull-12 {
		right: 100%;
	}

	.col-sm-pull-11 {
		right: 91.66666667%;
	}

	.col-sm-pull-10 {
		right: 83.33333333%;
	}

	.col-sm-pull-9 {
		right: 75%;
	}

	.col-sm-pull-8 {
		right: 66.66666667%;
	}

	.col-sm-pull-7 {
		right: 58.33333333%;
	}

	.col-sm-pull-6 {
		right: 50%;
	}

	.col-sm-pull-5 {
		right: 41.66666667%;
	}

	.col-sm-pull-4 {
		right: 33.33333333%;
	}

	.col-sm-pull-3 {
		right: 25%;
	}

	.col-sm-pull-2 {
		right: 16.66666667%;
	}

	.col-sm-pull-1 {
		right: 8.33333333%;
	}

	.col-sm-pull-0 {
		right: auto;
	}

	.col-sm-push-12 {
		left: 100%;
	}

	.col-sm-push-11 {
		left: 91.66666667%;
	}

	.col-sm-push-10 {
		left: 83.33333333%;
	}

	.col-sm-push-9 {
		left: 75%;
	}

	.col-sm-push-8 {
		left: 66.66666667%;
	}

	.col-sm-push-7 {
		left: 58.33333333%;
	}

	.col-sm-push-6 {
		left: 50%;
	}

	.col-sm-push-5 {
		left: 41.66666667%;
	}

	.col-sm-push-4 {
		left: 33.33333333%;
	}

	.col-sm-push-3 {
		left: 25%;
	}

	.col-sm-push-2 {
		left: 16.66666667%;
	}

	.col-sm-push-1 {
		left: 8.33333333%;
	}

	.col-sm-push-0 {
		left: auto;
	}

	.col-sm-offset-12 {
		margin-left: 100%;
	}

	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-sm-offset-9 {
		margin-left: 75%;
	}

	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-sm-offset-6 {
		margin-left: 50%;
	}

	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-sm-offset-3 {
		margin-left: 25%;
	}

	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-sm-offset-0 {
		margin-left: 0%;
	}

	.footer__left {
		width: 100%;
	}

	.footer__right {
		display: none;
	}

	.owl-wrapper {
		width: 100% !important;
	}

	.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item {
		width: 25% !important;
		display: none !important;
	}

	.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item:nth-child(-n+4) {
		display: block !important;
	}

	.owl-controls {
		display: none !important;
	}

	.cart-voucher,
	.cart-actions--print {
		width: 100% !important;
	}

	.image-gallery__image,
	.image-gallery__image .owl-wrapper,
	.image-gallery__image .owl-wrapper .owl-item {
		width: 190% !important;
	}

	.tabs .tabhead+.tabbody {
		display: block !important;
	}

	.back-link .label {
		border: 0;
	}

	.carousel-component {
		overflow: hidden;
		height: 320px;
	}
}

.skip,
.skiptocontent,
.skiptonavigation {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.ason-news-logo {
	width: 460px;
	height: 460px;
	border-radius: 50%;
}

.ason-news-logo img {
	border-radius: 50%;
}

.wse_events_page .wse_events_content .ason-events_right h3 {
	padding-right: 0;
}

.wse_events_page .wse_events_content .events_right .more {
	margin-top: 10px;
	font-size: 24px;
}

.wse_events_page .wse_events_content .events_right .more a {
	color: #ee2d42;
}

.news-list .container {
	width: 1000px;
}

.news-list .n-list {
	padding: 50px 0;
}

.news-list .n-list .n-col {
	overflow: hidden;
	margin-bottom: 10px;
	font-size: 16px;
	color: #043458;
}

.news-list .n-list .n-col i {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	position: relative;
	border-radius: 50%;
	height: 21px;
	width: 21px;
	background: #023359;
}

.news-list .n-list .n-col i:before {
	left: 3px;
	top: 3px;
	position: absolute;
	border-radius: 50%;
	display: block;
	content: '';
	background: #023359;
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
}

.news-list .n-list .n-col label {
	float: right;
	color: #575757;
}

.news-title-color {
	color: #ee2d42;
	padding-top: 50px;
}

.news-page {
	box-shadow: 0px 20px 60px #043458;
	width: 136px;
	height: 136px;
	float: right;
	background: #043458;
	border-radius: 50%;
}

.news-page a {
	border-right: 1px solid #365d79;
	background: url(../_ui/addons/newsaddon/responsive/common/images/news/news-page-left.png) center no-repeat;
	width: 68px;
	height: 136px;
	float: left;
}

.news-page a:last-child {
	border: 0;
	border-left: 1px solid #365d79;
	background: url(../_ui/addons/newsaddon/responsive/common/images/news/news-page-right.png) center no-repeat;
}

.news-page-add {
	margin-top: -50px;
}

.mobile-news-page {
	box-shadow: 0px 10px 30px #043458;
	margin: 0 20px 40px;
	width: 68px;
	height: 68px;
	float: right;
	background: #043458;
	border-radius: 50%;
	display: none;
}

.mobile-news-page a {
	border-right: 1px solid #365d79;
	background: url(../_ui/addons/newsaddon/responsive/common/images/news/news-page-left.png) center / 50% no-repeat;
	width: 34px;
	height: 68px;
	float: left;
}

.mobile-news-page a:last-child {
	border: 0;
	background: url(../_ui/addons/newsaddon/responsive/common/images/news/news-page-right.png) center / 50% no-repeat;
}

.wse_news_detail {
	padding-bottom: 60px;
}

.wse_news_detail .detail {
	padding: 0 60px;
}

.wse_news_detail .detail strong {
	font-size: 30px;
	color: #023359;
	display: block;
	line-height: 40px;
}

.wse_news_detail .detail label {
	display: block;
	margin: 10px 0 20px;
	color: #333333;
	font-size: 18px;
	font-weight: normal;
}

.wse_news_detail .detail p {
	font-size: 16px;
	color: #333333;
	line-height: 28px;
}

.wse_news_detail .detail img {
	margin: 30px auto;
	display: block;
}

.mobile-news-img {
	display: none;
}

.desktop-img {
	display: block;
}

.mobile-img {
	display: none;
}

.language-zh .text_en {
	display: none;
}

.language-en .text_zh {
	display: none;
}

@media(max-width:767px) {
	.ason-news-logo {
		display: none;
	}

	.wse_events_page .wse_events h1 {
		margin-bottom: 30px;
	}

	.wse_events_page .news_content {
		padding-top: 0px;
	}

	.wse_events_page .wse_events_content .events_right .more {
		margin: 0;
		display: inline-block;
		font-size: 12px;
	}

	.wse_events_page .wse_events_content .events_right .des {
		max-height: 100px;
	}

	.mobile-news-img {
		display: block;
		margin-bottom: 15px;
	}

	.mobile-news-page {
		display: block;
	}

	.wse_news_detail {
		padding: 0;
	}

	.wse_news_detail .wse_events h1 {
		margin: 50px 0 20px;
	}

	.wse_news_detail .detail {
		padding: 0;
	}

	.wse_news_detail .detail strong {
		font-size: 18px;
		line-height: 24px;
	}

	.wse_news_detail .detail label {
		font-size: 12px;
	}

	.wse_news_detail .detail p {
		font-size: 12px;
		line-height: 22px;
	}

	.news-page {
		box-shadow: 0px 10px 30px #043458;
		margin: 0 20px 40px;
		width: 68px;
		height: 68px;
		float: right;
		background: #043458;
		border-radius: 50%;
	}

	.news-page a {
		border-right: 1px solid #365d79;
		background: url(../_ui/addons/newsaddon/responsive/common/images/news/news-page-left.png) center / 50% no-repeat;
		width: 34px;
		height: 68px;
		float: left;
	}

	.news-page a:last-child {
		border: 0;
		background: url(../_ui/addons/newsaddon/responsive/common/images/news/news-page-right.png) center / 50% no-repeat;
	}

	.news-help-div {
		display: none;
	}

	.news-list .container {
		padding: 0;
		width: auto;
	}

	.news-list .news-tle {
		display: none;
	}

	.news-list .n-list {
		padding: 0;
	}

	.news-list .n-list .n-col {
		word-wrap: break-word;
		word-break: break-all;
		margin: 0;
		font-size: 12px;
		border-top: 1px solid #d8d8d8;
		padding: 10px 30px;
	}

	.news-list .n-list .n-col i {
		display: none;
	}

	.news-list .n-list .n-col:nth-child(odd) {
		background: #f6f6f6;
	}

	.news-list .n-list .n-col label {
		float: none;
		display: block;
		font-weight: normal;
		color: #575757;
	}

	.desktop-img {
		display: none;
	}

	.mobile-img {
		display: block;
	}
}

@font-face {
	font-family: 'ProximaNova';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.eot');
	src: local("ProximaNova"), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.woff2') format('woff2'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.svg#proxima_nova_rgbold') format('svg');
	font-style: normal;
	font-weight: bold;
}

@font-face {
	font-family: 'ProximaNova';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.woff2') format('woff2'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.svg#proxima_novaregular_italic') format('svg');
	font-style: italic;
	font-weight: normal;
}

@font-face {
	font-family: 'ProximaNova';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.woff2') format('woff2'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.svg#proxima_nova_rgregular') format('svg');
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: 'ProximaNova-Black';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_black_macroman/ProximaNova-Black-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_black_macroman/ProximaNova-Black-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_black_macroman/ProximaNova-Black-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_black_macroman/ProximaNova-Black-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_black_macroman/ProximaNova-Black-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-BlackItalic';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-BoldItalic';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-ExtraBold';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabold_macroman/ProximaNova-Xbold-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabold_macroman/ProximaNova-Xbold-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabold_macroman/ProximaNova-Xbold-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabold_macroman/ProximaNova-Xbold-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabold_macroman/ProximaNova-Xbold-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-ExtraBoldItalic';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabolditalic_macroman/ProximaNova-XboldIt-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabolditalic_macroman/ProximaNova-XboldIt-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabolditalic_macroman/ProximaNova-XboldIt-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabolditalic_macroman/ProximaNova-XboldIt-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_extrabolditalic_macroman/ProximaNova-XboldIt-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-Light';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_light_macroman/ProximaNova-Light-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_light_macroman/ProximaNova-Light-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_light_macroman/ProximaNova-Light-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_light_macroman/ProximaNova-Light-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_light_macroman/ProximaNova-Light-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-LightItalic';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-SemiBold';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-SemiBoldItalic';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-Thin';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.svg#webfont') format('svg');
}

@font-face {
	font-family: 'ProximaNova-ThinItalic';
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.eot');
	src: url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.eot?#iefix') format('embedded-opentype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.woff') format('woff'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.ttf') format('truetype'), url('../_ui/responsive/theme-alpha/fonts/Proxima_Nove_Font_family/Webfonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.svg#webfont') format('svg');
}

.Microsoft_Yahei {
	font-family: "Microsoft Yahei", Tahoma, Helvetica, Arial, "微软雅黑", STXihei, "华文细黑", sans-serif;
}

.icon-additional {
	background-image: url(../picture/sprites_img.png);
	background-position: -672px -680px;
	width: 64px;
	height: 66px;
}

.icon-arrow-center-disable {
	background-image: url(../picture/sprites_img.png);
	background-position: -1740px -205px;
	width: 23px;
	height: 13px;
}

.icon-arrow-center {
	background-image: url(../picture/sprites_img.png);
	background-position: -1793px -205px;
	width: 23px;
	height: 13px;
}

.icon-arrow_next {
	background-image: url(../picture/sprites_img.png);
	background-position: -690px -776px;
	width: 26px;
	height: 46px;
}

.icon-arrow_next_disable {
	background-image: url(../picture/sprites_img.png);
	background-position: -858px -776px;
	width: 26px;
	height: 46px;
}

.icon-arrow_prev {
	background-image: url(../picture/sprites_img.png);
	background-position: -746px -776px;
	width: 26px;
	height: 46px;
}

.icon-arrow_prev_disable {
	background-image: url(../picture/sprites_img.png);
	background-position: -802px -776px;
	width: 26px;
	height: 46px;
}

.icon-bg-about-mobile {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -205px;
	width: 114px;
	height: 348px;
}

.icon-bg-about {
	background-image: url(../picture/sprites_img.png);
	background-position: 0px 0px;
	width: 548px;
	height: 1150px;
}

.icon-bg-contact-before {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -73px;
	width: 1400px;
	height: 37px;
}

.icon-bg-reset-password-mobile {
	background-image: url(../picture/sprites_img.png);
	background-position: -1629px -140px;
	width: 320px;
	height: 9px;
}

.icon-bg-reset-password {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -140px;
	width: 1021px;
	height: 35px;
}

.icon-bg_footer {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px 0px;
	width: 1400px;
	height: 43px;
}

.icon-buy {
	background-image: url(../picture/sprites_img.png);
	background-position: -1902px -414px;
	width: 40px;
	height: 47px;
}

.icon-center_slide_next {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -776px;
	width: 26px;
	height: 46px;
}

.icon-center_slide_prev {
	background-image: url(../picture/sprites_img.png);
	background-position: -634px -776px;
	width: 26px;
	height: 46px;
}

.icon-change-password {
	background-image: url(../picture/sprites_img.png);
	background-position: -1297px -323px;
	width: 52px;
	height: 52px;
}

.icon-chat-function {
	background-image: url(../picture/sprites_img.png);
	background-position: -1145px -583px;
	width: 40px;
	height: 40px;
}

.icon-chat-icon {
	background-image: url(../picture/sprites_img.png);
	background-position: -1470px -583px;
	width: 30px;
	height: 30px;
}

.icon-check-form {
	background-image: url(../picture/sprites_img.png);
	background-position: -1552px -205px;
	width: 38px;
	height: 27px;
}

.icon-check {
	background-image: url(../picture/sprites_img.png);
	background-position: -1538px -323px;
	width: 47px;
	height: 46px;
}

.icon-core-service-enable {
	background-image: url(../picture/sprites_img.png);
	background-position: -771px -583px;
	width: 65px;
	height: 65px;
}

.icon-core-service-inform {
	background-image: url(../picture/sprites_img.png);
	background-position: -675px -583px;
	width: 66px;
	height: 65px;
}

.icon-core-service-teach {
	background-image: url(../picture/sprites_img.png);
	background-position: -996px -414px;
	width: 85px;
	height: 66px;
}

.icon-dashboard_list_after {
	background-image: url(../picture/sprites_img.png);
	background-position: -722px -267px;
	width: 800px;
	height: 26px;
}

.icon-dashboard_list_empty_after {
	background-image: url(../picture/sprites_img.png);
	background-position: -722px -205px;
	width: 800px;
	height: 32px;
}

.icon-email-contact {
	background-image: url(../picture/sprites_img.png);
	background-position: -1212px -323px;
	width: 55px;
	height: 55px;
}

.icon-full-study {
	background-image: url(../picture/sprites_img.png);
	background-position: -1111px -414px;
	width: 71px;
	height: 66px;
}

.icon-glyphicon-menu-right {
	background-image: url(../picture/sprites_img.png);
	background-position: -1875px -267px;
	width: 6px;
	height: 11px;
}

.icon-glyphicon-more-blue {
	background-image: url(../picture/sprites_img.png);
	background-position: -1154px -776px;
	width: 18px;
	height: 31px;
}

.icon-glyphicon-more-disable {
	background-image: url(../picture/sprites_img.png);
	background-position: -914px -776px;
	width: 18px;
	height: 31px;
}

.icon-glyphicon-more-red {
	background-image: url(../picture/sprites_img.png);
	background-position: -1250px -776px;
	width: 18px;
	height: 31px;
}

.icon-glyphicon-more {
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
}

.icon-glyphicon-more2 {
	background-image: url(../picture/sprites_img.png);
	background-position: -1620px -205px;
	width: 30px;
	height: 23px;
}

.icon-glyphicon-prev-blue {
	background-image: url(../picture/sprites_img.png);
	background-position: -1106px -776px;
	width: 18px;
	height: 31px;
}

.icon-glyphicon-prev-disable {
	background-image: url(../picture/sprites_img.png);
	background-position: -1058px -776px;
	width: 18px;
	height: 31px;
}

.icon-glyphicon-prev-red {
	background-image: url(../picture/sprites_img.png);
	background-position: -1010px -776px;
	width: 18px;
	height: 31px;
}

.icon-glyphicon-prev {
	background-image: url(../picture/sprites_img.png);
	background-position: -962px -776px;
	width: 18px;
	height: 31px;
}

.icon-icon-QQzone-hover {
	background-image: url(../picture/sprites_img.png);
	background-position: -1530px -583px;
	width: 30px;
	height: 30px;
}

.icon-icon-QQzone {
	background-image: url(../picture/sprites_img.png);
	background-position: -1590px -583px;
	width: 30px;
	height: 30px;
}

.icon-icon-close-poup {
	background-image: url(../picture/sprites_img.png);
	background-position: -1005px -583px;
	width: 40px;
	height: 40px;
}

.icon-icon-close {
	background-image: url(../picture/sprites_img.png);
	background-position: -1215px -583px;
	width: 39px;
	height: 39px;
}

.icon-icon-consult {
	background-image: url(../picture/sprites_img.png);
	background-position: -1075px -583px;
	width: 40px;
	height: 40px;
}

.icon-icon-douban-hover {
	background-image: url(../picture/sprites_img.png);
	background-position: -1350px -583px;
	width: 30px;
	height: 30px;
}

.icon-icon-douban {
	background-image: url(../picture/sprites_img.png);
	background-position: -1410px -583px;
	width: 30px;
	height: 30px;
}

.icon-icon-heart {
	background-image: url(../picture/sprites_img.png);
	background-position: -1650px -583px;
	width: 30px;
	height: 30px;
}

.icon-icon-search {
	background-image: url(../picture/sprites_img.png);
	background-position: -1787px -267px;
	width: 16px;
	height: 17px;
}

.icon-icon-trynow {
	background-image: url(../picture/sprites_img.png);
	background-position: -1615px -323px;
	width: 45px;
	height: 43px;
}

.icon-icon-user {
	background-image: url(../picture/sprites_img.png);
	background-position: -1770px -583px;
	width: 30px;
	height: 30px;
}

.icon-icon-wechat {
	background-image: url(../picture/sprites_img.png);
	background-position: -1830px -583px;
	width: 30px;
	height: 30px;
}

.icon-icon-weibo-hover {
	background-image: url(../picture/sprites_img.png);
	background-position: -1890px -583px;
	width: 30px;
	height: 30px;
}

.icon-icon-weibo {
	background-image: url(../picture/sprites_img.png);
	background-position: -1906px -323px;
	width: 30px;
	height: 30px;
}

.icon-in-center {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -680px;
	width: 64px;
	height: 66px;
}

.icon-learning-partners-small {
	background-image: url(../picture/sprites_img.png);
	background-position: -1680px -205px;
	width: 30px;
	height: 22px;
}

.icon-learning-partners {
	background-image: url(../picture/sprites_img.png);
	background-position: -1782px -116px;
	width: 46px;
	height: 34px;
}

.icon-link-out {
	background-image: url(../picture/sprites_img.png);
	background-position: -1891px -205px;
	width: 10px;
	height: 10px;
}

.icon-marks_left {
	background-image: url(../picture/sprites_img.png);
	background-position: -1521px -414px;
	width: 73px;
	height: 62px;
}

.icon-marks_right {
	background-image: url(../picture/sprites_img.png);
	background-position: -1624px -414px;
	width: 73px;
	height: 62px;
}

.icon-mobile_role {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -583px;
	width: 67px;
	height: 67px;
}

.icon-phone-contact {
	background-image: url(../picture/sprites_img.png);
	background-position: -1459px -323px;
	width: 49px;
	height: 49px;
}

.icon-phone-icon {
	background-image: url(../picture/sprites_img.png);
	background-position: -1950px -583px;
	width: 28px;
	height: 28px;
}

.icon-products_listing_awrrow_before {
	background-image: url(../picture/sprites_img.png);
	background-position: -1846px -205px;
	width: 15px;
	height: 10px;
}

.icon-qq_login {
	background-image: url(../picture/sprites_img.png);
	background-position: -1379px -323px;
	width: 50px;
	height: 50px;
}

.icon-qr-clock {
	background-image: url(../picture/sprites_img.png);
	background-position: -1833px -267px;
	width: 12px;
	height: 12px;
}

.icon-quote-bot-blue {
	background-image: url(../picture/sprites_img.png);
	background-position: -1418px -414px;
	width: 73px;
	height: 62px;
}

.icon-quote-bot {
	background-image: url(../picture/sprites_img.png);
	background-position: -1727px -414px;
	width: 73px;
	height: 62px;
}

.icon-quote-top-blue {
	background-image: url(../picture/sprites_img.png);
	background-position: -1315px -414px;
	width: 73px;
	height: 62px;
}

.icon-quote-top {
	background-image: url(../picture/sprites_img.png);
	background-position: -1212px -414px;
	width: 73px;
	height: 62px;
}

.icon-rating {
	background-image: url(../picture/sprites_img.png);
	background-position: -866px -583px;
	width: 39px;
	height: 42px;
}

.icon-recognised {
	background-image: url(../picture/sprites_img.png);
	background-position: -722px -414px;
	width: 126px;
	height: 88px;
}

.icon-register {
	background-image: url(../picture/sprites_img.png);
	background-position: -1690px -323px;
	width: 48px;
	height: 39px;
}

.icon-role {
	background-image: url(../picture/sprites_img.png);
	background-position: -878px -414px;
	width: 88px;
	height: 88px;
}

.icon-save {
	background-image: url(../picture/sprites_img.png);
	background-position: -1284px -583px;
	width: 36px;
	height: 36px;
}

.icon-see-small-home {
	background-image: url(../picture/sprites_img.png);
	background-position: -1552px -267px;
	width: 25px;
	height: 25px;
}

.icon-see {
	background-image: url(../picture/sprites_img.png);
	background-position: -935px -583px;
	width: 40px;
	height: 40px;
}

.icon-slider_next {
	background-image: url(../picture/sprites_img.png);
	background-position: -766px -680px;
	width: 30px;
	height: 44px;
}

.icon-slider_prev {
	background-image: url(../picture/sprites_img.png);
	background-position: -826px -680px;
	width: 30px;
	height: 44px;
}

.icon-span_disabled {
	background-image: url(../picture/sprites_img.png);
	background-position: -722px -323px;
	width: 460px;
	height: 61px;
}

.icon-star {
	background-image: url(../picture/sprites_img.png);
	background-position: -1710px -583px;
	width: 30px;
	height: 30px;
}

.icon-story-next-hover {
	background-image: url(../picture/sprites_img.png);
	background-position: -1652px -267px;
	width: 15px;
	height: 24px;
}

.icon-story-next {
	background-image: url(../picture/sprites_img.png);
	background-position: -1607px -267px;
	width: 15px;
	height: 24px;
}

.icon-story-prev-hover {
	background-image: url(../picture/sprites_img.png);
	background-position: -1697px -267px;
	width: 15px;
	height: 24px;
}

.icon-story-prev {
	background-image: url(../picture/sprites_img.png);
	background-position: -1742px -267px;
	width: 15px;
	height: 24px;
}

.icon-test {
	background-image: url(../picture/sprites_img.png);
	background-position: -1830px -414px;
	width: 42px;
	height: 49px;
}

.icon-valid-form {
	background-image: url(../picture/sprites_img.png);
	background-position: -1844px -323px;
	width: 32px;
	height: 33px;
}

.icon-valid {
	background-image: url(../picture/sprites_img.png);
	background-position: -886px -680px;
	width: 30px;
	height: 28px;
}

.backgroundSize {
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
}

.icon-additional-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/additional-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 45px;
	height: 46px;
}

.icon-arrow-center-disable-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow-center-disable-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 23px;
	height: 13px;
}

.icon-arrow-center-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow-center-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 23px;
	height: 13px;
}

.icon-arrow_next_mobile {
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 13px;
	height: 23px;
}

.icon-arrow_next_mobile_disable {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow_next_mobile_disable.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 13px;
	height: 23px;
}

.icon-arrow_next_small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow_next_small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 13px;
	height: 23px;
}

.icon-arrow_prev_mobile {
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 13px;
	height: 23px;
}

.icon-arrow_prev_mobile_disable {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow_prev_mobile_disable.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 13px;
	height: 23px;
}

.icon-blue-arrow-next-mobile-disable {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/blue-arrow-next-mobile-disable.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 24px;
	height: 42px;
}

.icon-blue-arrow-next-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/blue-arrow-next-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 24px;
	height: 42px;
}

.icon-blue-arrow-prev-mobile-disable {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/blue-arrow-prev-mobile-disable.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 23px;
	height: 39px;
}

.icon-blue-arrow-prev-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/blue-arrow-prev-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 23px;
	height: 39px;
}

.icon-buy-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/buy-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 20px;
	height: 24px;
}

.icon-change-password-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/change-password-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 26px;
	height: 26px;
}

.icon-chat-function-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/chat-function-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
}

.icon-chat-icon-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/chat-icon-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 32px;
	height: 32px;
}

.icon-check-form-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/check-form-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 24px;
	height: 17px;
}

.icon-check-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/check-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 24px;
	height: 23px;
}

.icon-close-menu-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/close-menu-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.icon-close-accounloged-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/close-accounloged-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.icon-core-service-enable-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/core-service-enable-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 33px;
	height: 33px;
}

.icon-core-service-inform-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/core-service-inform-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 33px;
	height: 33px;
}

.icon-core-service-teach-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/core-service-teach-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 43px;
	height: 33px;
}

.icon-email-contact-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/email-contact-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 31px;
	height: 31px;
}

.icon-full-study-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/full-study-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 51px;
	height: 47px;
}

.icon-glyphicon-more-blue-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-blue-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 12px;
	height: 21px;
}

.icon-glyphicon-more-disable-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-disable-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 12px;
	height: 21px;
}

.icon-glyphicon-more-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 12px;
	height: 21px;
}

.icon-glyphicon-more-mobile2 {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile2.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 20px;
	height: 15px;
}

.icon-glyphicon-more-red-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-red-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 12px;
	height: 21px;
}

.icon-glyphicon-prev-blue-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-blue-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 12px;
	height: 21px;
}

.icon-glyphicon-prev-disable-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-disable-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 12px;
	height: 21px;
}

.icon-glyphicon-prev-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 12px;
	height: 21px;
}

.icon-glyphicon-prev-red-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-red-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 12px;
	height: 21px;
}

.icon-icon-QQzone-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-QQzone-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
}

.icon-icon-close-poup-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-close-poup-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.icon-icon-douban-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-douban-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
}

.icon-icon-heart-sm {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-heart-sm.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
}

.icon-icon-trynow-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-trynow-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 23px;
	height: 22px;
}

.icon-icon-user-sm {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-user-sm.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
}

.icon-icon-wechat-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-wechat-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
}

.icon-icon-weibo-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-weibo-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
}

.icon-in-center-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/in-center-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 45px;
	height: 45px;
}

.icon-learning-partners-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/learning-partners-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 30px;
	height: 22px;
}

.icon-phone-contact-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/phone-contact-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 27px;
	height: 27px;
}

.icon-phone-icon-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/phone-icon-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
}

.icon-register-icon-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/register-icon-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
}

.icon-myaccount-icon-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/myaccount-icon-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
}

.icon-qq_login_small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/qq_login_small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 35px;
	height: 35px;
}

.icon-qr-clock-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/qr-clock-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 10px;
	height: 11px;
}

.icon-quote-bot-blue-mb {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/quote-bot-blue-mb.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 37px;
	height: 31px;
}

.icon-quote-bot-mb {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/quote-bot-mb.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 37px;
	height: 31px;
}

.icon-quote-top-blue-mb {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/quote-top-blue-mb.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 37px;
	height: 31px;
}

.icon-quote-top-mb {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/quote-top-mb.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 37px;
	height: 31px;
}

.icon-rating-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/rating-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 28px;
	height: 31px;
}

.icon-recognised-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/recognised-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 96px;
	height: 67px;
}

.icon-register-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/register-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 30px;
	height: 24px;
}

.icon-save-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/save-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.icon-see-small-2 {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/see-small-2.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
}

.icon-see-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/see-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
}

.icon-star-mobile {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/star-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
}

.icon-story-next-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/story-next-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 9px;
	height: 14px;
}

.icon-story-prev-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/story-prev-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 9px;
	height: 14px;
}

.icon-test-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/test-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 21px;
	height: 25px;
}

.icon-valid_small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/valid_small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 18px;
	height: 17px;
}

.icon-link-out-small {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/link-out-small.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 10px;
	height: 10px;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media(max-width:767px) {
	html {
		overflow-x: hidden;
	}
}

body {
	color: #333333;
	overflow: inherit;
	font-family: 'ProximaNova', Arial, sans-serif;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	padding-top: 110px;
}

@media(max-width:1400px) {
	body {
		max-width: 1400px;
		margin: auto;
	}
}

@media(max-width:767px) {
	body {
		font-size: 12px;
		line-height: 18px;
		width: auto;
		margin: 0;
		overflow: hidden;
		padding-top: 0;
	}
}

body.language-zh {
	font-family: "Microsoft Yahei", Tahoma, Helvetica, Arial, "微软雅黑", STXihei, "华文细黑", sans-serif;
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh {
		font-size: 12px;
		line-height: 18px;
	}
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical>.btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after,
.tabs .tabs-list:after,
.cart__content:after {
	width: 0;
	height: 0;
	content: "";
	display: block;
	clear: both;
}

.clear {
	clear: both;
}

img {
	max-width: 100%;
}

@media(max-width:767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media(min-width:768px) and (max-width:1024px) {
	.hidden_sm {
		display: none !important;
	}
}

.ul {
	padding: 0;
	margin: 0;
}

.ul li {
	list-style: none;
}

h1 {
	font-size: 50px;
	font-weight: bold;
}

@media(max-width:767px) {
	h1 {
		font-size: 30px;
		line-height: 35px;
	}
}

h2 {
	font-size: 60px;
}

@media(max-width:767px) {
	h2 {
		font-size: 30px;
		line-height: 35px;
	}
}

.bold {
	font-weight: bold;
}

.bold-color {
	color: #043458;
}

.hover-color {
	color: #ee2d42;
}

.wrapper {
	margin-top: 30px;
	margin-bottom: 30px;
}

.full-container {
	margin-left: auto;
	margin-right: auto;
}

@media(max-width:767px) {
	.full-container {
		width: 100%;
		padding: 0 10px;
	}
}

.container {
	width: 1181px;
	padding: 0;
}

@media(min-width:1025px) and (max-width:1365px) {
	.container {
		max-width: 1181px;
		width: 100%;
	}
}

@media(max-width:767px) {
	.container {
		width: 100%;
		padding: 0 10px;
	}
}

@media(max-width:767px) {
	.container-xs {
		width: 260px;
		margin-left: auto;
		margin-right: auto;
	}
}

a {
	cursor: pointer;
	color: #043458;
}

a:hover {
	color: #0082a9;
	text-decoration: none;
}

@media(max-width:767px) {
	a:hover {
		color: #043458;
	}
}

a:focus {
	cursor: default;
	text-decoration: none;
}

.a {
	color: #0000ff;
}

.bg-icon-arrow.carousel-control {
	text-shadow: none;
	opacity: 1;
	background: none;
	box-shadow: none;
	top: 30%;
	bottom: auto;
}

.icon-arrow {
	width: 26px;
	height: 46px;
	position: absolute;
}

.icon-arrow.arrow_prev {
	left: -30px;
}

@media screen and (max-width:567px) {
	.icon-arrow.arrow_prev {
		left: 0px;
	}
}

.icon-arrow.arrow_next {
	right: -30px;
}

@media screen and (max-width:567px) {
	.icon-arrow.arrow_next {
		right: 0px;
	}
}

.main-content {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
}

@media(max-width:767px) {
	.main-content {
		max-width: 320px;
		overflow: visible;
	}
}

@media(max-width:480px) {
	.main-content {
		max-width: 100%;
	}
}

.wrapper-content {
	margin-left: 80px;
	margin-right: 60px;
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	.wrapper-content {
		margin: 0;
		font-size: 12px;
		line-height: 18px;
	}
}

.wrapper-content h1 {
	color: #043458;
}

.btn {
	font-size: 18px;
	line-height: 28px;
	color: #ffffff;
	font-weight: bold;
	background: #043458;
	text-transform: none;
	width: 180px;
	height: 30px;
	text-align: center;
	padding: 0;
}

.btn:hover {
	background: #0082a9;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.btn:hover {
		background: #043458;
	}
}

.btn:focus,
.btn:activer,
.btn:visited {
	background: #043458;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {

	.btn:focus,
	.btn:activer,
	.btn:visited {
		background: #043458;
	}
}

.awrrow {
	content: '';
	border-style: solid;
	_border-style: dashed;
	border-width: 6px;
	border-color: transparent;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	position: relative;
	right: 12px;
	display: inline-block;
}

.awrrow.top {
	border-bottom-width: 0;
	border-top: 8px solid #333333;
	margin-top: 5px;
}

.awrrow.bottom {
	border-top-width: 0;
	border-bottom: 8px solid #333333;
	position: absolute;
	bottom: 33px;
	visibility: hidden;
	opacity: 0;
}

.pull_left {
	float: left;
}

.pull_right {
	float: right;
}

.col2 {
	width: 50%;
	float: left;
	padding: 0 10px;
	min-height: 1px;
}

.col3 {
	width: 33.3333%;
	float: left;
	padding: 0 10px;
	min-height: 1px;
}

b,
strong {
	font-weight: bold;
}

form {
	margin: 0;
}

.control-label {
	font-size: 18px;
	line-height: 25px;
	text-transform: none;
}

.form-control {
	padding-left: 10px;
	padding-right: 10px;
	border-color: #ffffff;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.ie8 .form-control {
	border: 1px solid transparent;
}

.form-control:focus {
	border-color: transparent;
}

.form-control::-webkit-input-placeholder {
	color: #043458;
}

.form-control::-moz-placeholder {
	color: #043458;
}

.form-control:-ms-input-placeholder {
	color: #043458;
}

.form-control:-moz-placeholder {
	color: #043458;
}

.chosen-container .chosen-single {
	border: 0;
	box-shadow: none;
	background: #fff;
	border-radius: 0;
	height: 33px;
	font-size: 18px;
	line-height: 28px;
	padding-top: 3px;
	padding-bottom: 0;
	text-align: left;
	cursor: pointer;
}

@media(max-width:767px) {
	.chosen-container .chosen-single {
		padding-top: 1px;
	}
}

.chosen-container .chosen-single span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-right: 0;
}

.chosen-container .chosen-single span i {
	font-style: normal;
}

.chosen-container .chosen-single div {
	width: auto;
}

.chosen-container .chosen-single div b {
	content: '';
	border-style: solid;
	_border-style: dashed;
	border-width: 6px;
	border-color: transparent;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	position: relative;
	right: 12px;
	display: inline-block;
	border-bottom-width: 0;
	border-top: 8px solid #043458;
}

.chosen-container .chosen-single div b.top {
	border-bottom-width: 0;
	border-top: 8px solid #333333;
	margin-top: 5px;
}

.chosen-container .chosen-single div b.bottom {
	border-top-width: 0;
	border-bottom: 8px solid #333333;
	position: absolute;
	bottom: 33px;
	visibility: hidden;
	opacity: 0;
}

.chosen-container .chosen-single div.span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-right: 0;
	position: relative;
}

.chosen-container .chosen-drop {
	border: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	font-size: 18px;
	line-height: 28px;
	text-align: left;
}

.chosen-container .chosen-drop .chosen-results {
	margin-right: 0;
	padding-left: 0;
}

@media(max-width:767px) {
	.chosen-container .chosen-drop .chosen-results {
		max-height: 200px;
	}
}

.chosen-container .chosen-drop .chosen-results li {
	font-size: 18px;
	line-height: 28px;
	padding-left: 15px;
	padding-right: 15px;
}

.chosen-container .chosen-drop .chosen-results li.highlighted {
	background: #0082a9;
}

@media(max-width:767px) {
	.chosen-container .chosen-drop .chosen-results li {
		font-size: 12px;
		line-height: 18px;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.chosen-container .chosen-drop .mCSB_draggerRail {
	background: none;
	width: 8px;
}

.chosen-container .chosen-drop .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background: #c2c2c2;
	width: 8px;
}

.chosen-container-active.chosen-with-drop .chosen-single {
	border: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: #fff;
	height: 33px;
	font-size: 18px;
	line-height: 28px;
	padding-top: 3px;
	padding-bottom: 0;
	text-align: left;
}

.chosen-container-active.chosen-with-drop .chosen-single span {
	background: #0082a9;
	color: #ffffff;
	margin-right: 0;
	background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single span i {
	background: #0082a9;
	color: #ffffff;
	display: inline-block;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	border-top: 0;
	border-bottom: 8px solid #043458;
}

.fancybox-wrap .fancybox-skin {
	padding: 0 !important;
	background: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
}

.fancybox-wrap .fancybox-skin:after {
	content: '';
	display: block;
	width: 100%;
	height: 50px;
	background: url(../_ui/responsive/theme-alpha/img/popup-contact-after.png) center 0 no-repeat;
	background-size: 100%;
	bottom: 0;
	left: 0;
	margin-top: -1px;
}

@media(max-width:767px) {
	.fancybox-wrap .fancybox-skin:after {
		background: url(../_ui/responsive/theme-alpha/img/popup-contact-after-mobile.png) center 0 no-repeat;
	}
}

.fancybox-close {
	background-image: url(../picture/sprites_img.png);
	background-position: -1005px -583px;
	width: 40px;
	height: 40px;
	top: 30px;
	right: 23px;
	background-size: inherit;
}

@media(max-width:767px) {
	.fancybox-close {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-close-poup-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 20px;
		height: 20px;
	}
}

.fancybox-outer {
	padding: 75px 0 20px 0;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	color: #043458;
	background: #d7dfe5;
}

.fancybox-outer h2 {
	font-size: 30px;
	line-height: 40px;
	font-weight: bold;
}

.help-block {
	color: #f12c3e;
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 0;
	padding-bottom: 9px;
}

@media(max-width:767px) {
	.help-block {
		font-size: 12px;
		line-height: 17px;
		padding-bottom: 15px;
	}
}

.help-block .underline {
	border-bottom: 1px solid;
}

.help-block .help-block-message {
	color: #333;
}

.has-error input {
	border: 2px solid #f12c3e !important;
	background: #ffffff;
}

.has-error input.form-control {
	background: #ffffff;
}

.has-error .help-block {
	font-weight: normal;
	color: #f12c3e;
	line-height: 18px;
	margin-top: 9px;
	padding-bottom: 0;
	margin-bottom: 0;
}

@media(max-width:767px) {
	.has-error .help-block {
		margin-bottom: -7px;
	}
}

.has-error .chosen-single {
	border: 2px solid #f12c3e;
	padding-top: 0;
}

.has-error textarea {
	border: 2px solid #ff0000 !important;
}

.alert-dismissable .close,
.alert-dismissible .close {
	top: 5px;
}

.arrow-explore {
	position: relative;
	top: 0;
}

.arrow-explore:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	animation: sonar 2.5s infinite 2.5s;
	-moz-animation: sonar 2.5s infinite 2.5s;
	-webkit-animation: sonar 2.5s infinite 2.5s;
	-o-animation: sonar 2.5s infinite 2.5s;
	-ms-animation: sonar 2.5s infinite 2.5s;
	border: 1px solid rgba(233, 156, 5, 0.5);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.arrow-explore:before {
		width: 120px;
		height: 120px;
	}
}

@media(max-width:767px) {
	.arrow-explore:before {
		display: none;
	}
}

.arrow-explore:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	animation: sonar 2.5s infinite 1s;
	-moz-animation: sonar 2.5s infinite 1s;
	-webkit-animation: sonar 2.5s infinite 1s;
	-o-animation: sonar 2.5s infinite 1s;
	-ms-animation: sonar 2.5s infinite 1s;
	border: 1px solid rgba(233, 156, 5, 0.5);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.arrow-explore:after {
		width: 120px;
		height: 120px;
	}
}

@media(max-width:767px) {
	.arrow-explore:after {
		display: none;
	}
}

.content_item h2,
.content_item h1 {
	font-size: 70px;
	line-height: 80px;
	margin-left: 60px;
	color: #ff7f15;
	margin-bottom: 40px;
	font-weight: bold;
}

@media(max-width:767px) {

	.content_item h2,
	.content_item h1 {
		font-size: 30px;
		line-height: 36px;
		margin-left: 0px;
	}
}

.content_item .des {
	font-size: 16px;
	color: #575757;
	margin-bottom: 20px;
	margin-left: 120px;
	line-height: 24px;
}

@media(max-width:767px) {
	.content_item .des {
		font-size: 12px;
		line-height: 18px;
		margin-left: 0;
	}
}

.content_item_more {
	display: table;
	vertical-align: middle;
	position: relative;
}

.content_item_more:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ee2d42;
	box-shadow: 0px 18px 25px 10px rgba(233, 156, 5, 0.5);
	-moz-box-shadow: 0px 18px 25px 10px rgba(233, 156, 5, 0.5);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(233, 156, 5, 0.5);
	-o-box-shadow: 0px 18px 25px 10px rgba(233, 156, 5, 0.5);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.content_item_more:hover a {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.content_item_more:hover a {
		background: #ee2d42;
	}
}

.content_item_more:focus,
.content_item_more:active {
	cursor: default;
}

.content_item_more:focus a,
.content_item_more:active a {
	background: #ee2d42;
	cursor: default;
}

.content_item_more a {
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	background: #f5a406;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	text-decoration: none;
}

@media(max-width:767px) {
	.content_item_more a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.content_item_more a:focus,
.content_item_more a:active {
	background: #ee2d42;
	cursor: default;
}

.content_item_more a span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.content_item_more a span {
		font-size: 12px;
	}
}

.content_item_more a span.glyphicon {
	font-size: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../picture/sprites_img.png);
	background-position: -1216px -569px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.content_item_more a span.glyphicon {
		background-position: -1320px -570px;
	}
}

.content_item_more a span.glyphicon:before {
	content: '';
}

@media(max-width:767px) {
	.content_item_more.content_item_more2 a {
		line-height: 14px;
	}
}

_::-webkit-full-page-media,
_:future,
:root .content_item_more:hover:before {
	width: 99%;
	height: 99%;
	margin-left: 1px;
	margin-top: 1px;
}

.content_item_more.more_style:hover a {
	background: #0fbd46;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.content_item_more.more_style:hover a {
		background: #043458;
	}
}

.content_item_more.more_style:focus a,
.content_item_more.more_style:active a {
	background: #043458;
}

.content_item_more.more_style a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #f5a406;
}

.content_item_more.more_style a:focus,
.content_item_more.more_style a:active {
	cursor: default;
}

.content_item_more.more_style .arrow-explore:before {
	border: 1px solid rgba(245, 164, 6, 0.1);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.content_item_more.more_style .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.content_item_more.more_style .arrow-explore:after {
	border: 1px solid #99c05, 50%;
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.content_item_more.more_style .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.content_item_more.more_style:before {
	background: #11ef57;
	box-shadow: 0px 18px 25px 10px rgba(233, 156, 5, 0.5);
	-moz-box-shadow: 0px 18px 25px 10px rgba(233, 156, 5, 0.5);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(233, 156, 5, 0.5);
	-o-box-shadow: 0px 18px 25px 10px rgba(233, 156, 5, 0.5);
}

.item_content_middle {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.icon {
	margin-left: auto;
	margin-right: auto;
}

.dots span {
	display: inline-block;
	width: 4px;
	height: 4px;
	margin: 1px -1px;
	background: #043458;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

.dots:hover span:nth-child(1) {
	opacity: 0;
	animation: dots 1s linear infinite;
	nimation-delay: 0.1s;
}

.dots:hover span:nth-child(2) {
	opacity: 0;
	animation: dots 1s linear infinite;
	animation-delay: 0.2s;
}

.dots:hover span:nth-child(3) {
	opacity: 0;
	animation: dots 1s linear infinite;
	animation-delay: 0.3s;
}

.ring:hover {
	animation: ring 1s linear infinite;
	-moz-animation: ring 1s linear infinite;
	-webkit-animation: ring 1s linear infinite;
	-o-animation: ring 1s linear infinite;
	-ms-animation: ring 1s linear infinite;
}

.carousel_center {
	width: 100%;
	position: absolute;
	z-index: 100;
	height: 100%;
	left: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	top: 0;
	bottom: 0;
	text-align: center;
	color: #ffffff;
}

.carousel_center .owl-nav {
	text-indent: -9999px;
	position: absolute;
	width: 117%;
	top: 50%;
	left: -9%;
	margin-top: 10px;
}

@media(max-width:767px) {
	.carousel_center .owl-nav {
		width: 100%;
		left: 0;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.carousel_center .owl-nav .owl-prev {
	float: left;
	background-image: url(../picture/sprites_img.png);
	background-position: -746px -776px;
	width: 26px;
	height: 46px;
}

@media(max-width:767px) {
	.carousel_center .owl-nav .owl-prev {
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

.carousel_center .owl-nav .owl-prev.disabled {
	background-image: url(../picture/sprites_img.png);
	background-position: -802px -776px;
	width: 26px;
	height: 46px;
}

@media(max-width:767px) {
	.carousel_center .owl-nav .owl-prev.disabled {
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

.carousel_center .owl-nav .owl-next {
	float: right;
	background-image: url(../picture/sprites_img.png);
	background-position: -690px -776px;
	width: 26px;
	height: 46px;
	margin: 35px auto 0;
	width: 18px;
	height: 31px;
	background-position: -1202px -776px;
}

@media(max-width:767px) {
	.carousel_center .owl-nav .owl-next {
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

.carousel_center .owl-nav .owl-next.disabled {
	background-image: url(/picture/sprites_img.png);
	background-position: -858px -776px;
	width: 26px;
	height: 46px;
}

@media(max-width:767px) {
	.carousel_center .owl-nav .owl-next.disabled {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow_next_mobile_disable.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

.wt__center__slide h2 {
	font-size: 50px;
	line-height: 60px;
	padding-left: 80px;
	margin-bottom: 30px;
}

@media(max-width:767px) {
	.wt__center__slide h2 {
		font-size: 60px;
		line-height: 70px;
		padding-left: 0;
		margin-bottom: 80px;
		margin-top: 22px;
	}
}

.wt__center__slide .center__slide {
	margin-top: 0;
	padding-bottom: 88px;
	max-width: 870px;
	margin-left: auto;
	margin-right: auto;
	float: none;
	padding-left: 0;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide {
		margin-right: 0;
		padding-left: 0;
	}
}

.wt__center__slide .center__slide .owl-carousel img {
	width: auto;
	max-width: 250px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel img {
		width: auto;
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
		border-radius: 50%;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav {
	background: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	top: 125px;
	left: 0px;
	-webkit-transform: translate(0);
	-moz-transform: translate(0);
	-ms-transform: translate(0);
	-o-transform: translate(0);
	transform: translate(0);
	width: 100%;
	height: 0px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav {
		top: 120px;
		margin-top: -45px;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav:before {
	display: none;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav:before {
		height: 70px;
		margin-top: -35px;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev,
.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next {
	width: auto;
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev {
	background: none;
	left: -56px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev {
		width: 50px;
		height: 50px;
		left: -30px;
		background: none;
	}

	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev:active {
		background: none;
	}
}

@media(max-width:767px) {

	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev:before,
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev:after {
		width: 12px;
		height: 1px;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev:before {
	background-image: url(/picture/sprites_img.png);
	background-position: -634px -776px;
	width: 26px;
	height: 46px;
	margin-left: 0;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-blue-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev:after {
		margin-top: -6px !important;
		margin-left: -6px !important;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev:hover:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -634px -776px;
	width: 26px;
	height: 46px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev:hover:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-blue-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev.disabled {
	background: none;
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev.disabled:before {
	opacity: 0;
	background-image: url(../picture/sprites_img.png);
	background-position: -634px -776px;
	width: 26px;
	height: 46px;
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev.disabled:before:hover {
	opacity: 0;
	background-image: url(../picture/sprites_img.png);
	background-position: -1058px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev.disabled:before:hover {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-disable-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.ie8 .wt__center__slide .center__slide .owl-carousel .owl-nav .owl-prev.disabled {
	filter: alpha(opacity=0);
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next {
	background: none;
	float: right;
	right: -30px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next {
		width: 50px;
		height: 50px;
		right: -20px;
		background: none;
	}

	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next:active {
		background: none;
	}
}

@media(max-width:767px) {

	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next:before,
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next:after {
		width: 12px;
		height: 1px;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -776px;
	width: 26px;
	height: 46px;
	margin-left: 0;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-blue-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next:after {
		margin-top: 2px !important;
		margin-left: -6px !important;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next:hover:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -776px;
	width: 26px;
	height: 46px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next:hover:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-blue-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next.disabled {
	background: none;
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next.disabled:before {
	opacity: 0;
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -776px;
	width: 26px;
	height: 46px;
}

.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next.disabled:before:hover {
	opacity: 0;
	background-image: url(../picture/sprites_img.png);
	background-position: -914px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next.disabled:before:hover {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-disable-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.ie8 .wt__center__slide .center__slide .owl-carousel .owl-nav .owl-next.disabled {
	filter: alpha(opacity=0);
}

.wt__center__slide .center__slide h3 {
	font-size: 30px;
	line-height: 40px;
	color: #043458;
	font-weight: bold;
	margin-top: 35px;
	margin-bottom: 0px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide h3 {
		width: 90%;
		margin-bottom: 15px;
		font-size: 20px;
		line-height: 26px;
	}
}

.wt__center__slide .center__slide h3 a {
	color: #043458;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide h3 a {
		font-size: 20px;
		line-height: 25px;
	}
}

.wt__center__slide .center__slide .date {
	margin-bottom: 15px;
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .date {
		margin-bottom: 25px;
		font-size: 12px;
		line-height: 25px;
	}
}

@media(max-width:767px) {
	.wt__center__slide .center__slide .des {
		font-size: 12px;
		line-height: 17px;
	}
}

.bg_full_nav .content_bottom {
	position: relative;
	margin-top: 43px;
	background: #f2f1f1;
	padding-bottom: 98px;
}

.bg_full_nav .content_bottom:before {
	background: url(../_ui/responsive/theme-alpha/img/bg_footer_grey.png) no-repeat center bottom;
	width: 100%;
	height: 50px;
	background-size: cover;
	left: 0;
	bottom: 100%;
	position: absolute;
	content: '';
}

.overflow_load {
	overflow: hidden;
	height: 100%;
}

.overflow_load body {
	overflow: hidden;
	height: 100%;
}

.loading-nothomepage {
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	min-height: 100%;
	height: 100%;
	zoom: 1;
	background: #fff;
}

.loading-homepage {
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	min-height: 100%;
	height: 100%;
	zoom: 1;
	background: #fff;
}

.global-alerts {
	position: relative;
	z-index: 1;
	line-height: 24px;
}

@media(max-width:767px) {
	.global-alerts {
		line-height: 18px;
	}
}

.body_tooltip {
	cursor: pointer;
}

.tooltips {
	position: relative;
}

.tooltips .tooltip_content {
	position: absolute;
	display: none;
}

.tooltips .tooltip_content:after {
	content: '';
	border-style: solid;
	_border-style: dashed;
	border-color: transparent;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	position: relative;
	right: -50%;
	border-width: 16px;
	margin-left: -14px;
	display: inline-block;
	border-bottom-width: 0;
	border-top: 25px solid #f4f4f4;
	top: 22px;
}

a[href^='tel:'] {
	cursor: default;
}

.language-zh .navigation--bottom .awrrow.bottom {
	bottom: 30px;
}

.opacity_hide {
	opacity: 0;
	visibility: hidden;
	display: none !important;
}

.language-en .hidden-en {
	display: none;
}

.language-zh .hidden-zh {
	display: none;
}

.text-underline {
	text-decoration: underline;
}

.text-underline:hover {
	text-decoration: underline;
}

.line-break-hide {
	display: none;
}

@media(min-width:768px) {
	.show-pc-zh {
		display: block !important;
	}
}

@media(max-width:767px) {
	.show-mobile-zh {
		display: block !important;
	}

	.show-mobile-en {
		display: block !important;
	}
}

.wse_news_detail .detail h1 {
	font-size: 30px;
	color: #023359;
	display: block;
	line-height: 40px;
}

.wt_slideshow.banner_product .slideshow_content .slideshow_text--big h1 {
	font-size: 90px;
	line-height: 100px;
	max-width: 650px;
	margin: auto;
	font-weight: bold;
}

@media(max-width:767px) {
	.wt_slideshow.banner_product .slideshow_content .slideshow_text--big h1 {
		font-size: 30px;
		line-height: 34px;
	}
}

* {}

@keyframes dots {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes ring {
	0% {
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		-moz-transform: rotate(-15deg);
		transform: rotate(-15deg);
		-o-transform: rotate(-15deg);
		-sm-transform: rotate(-15deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	2% {
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		-moz-transform: rotate(15deg);
		transform: rotate(15deg);
		-o-transform: rotate(15deg);
		-sm-transform: rotate(15deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	4% {
		-ms-transform: rotate(-18deg);
		-webkit-transform: rotate(-18deg);
		-moz-transform: rotate(-18deg);
		transform: rotate(-18deg);
		-o-transform: rotate(-18deg);
		-sm-transform: rotate(-18deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	6% {
		-ms-transform: rotate(18deg);
		-webkit-transform: rotate(18deg);
		-moz-transform: rotate(18deg);
		transform: rotate(18deg);
		-o-transform: rotate(18deg);
		-sm-transform: rotate(18deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	8% {
		-ms-transform: rotate(-22deg);
		-webkit-transform: rotate(-22deg);
		-moz-transform: rotate(-22deg);
		transform: rotate(-22deg);
		-o-transform: rotate(-22deg);
		-sm-transform: rotate(-22deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	10% {
		-ms-transform: rotate(22deg);
		-webkit-transform: rotate(22deg);
		-moz-transform: rotate(22deg);
		transform: rotate(22deg);
		-o-transform: rotate(22deg);
		-sm-transform: rotate(22deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	12% {
		-ms-transform: rotate(-18deg);
		-webkit-transform: rotate(-18deg);
		-moz-transform: rotate(-18deg);
		transform: rotate(-18deg);
		-o-transform: rotate(-18deg);
		-sm-transform: rotate(-18deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	14% {
		-ms-transform: rotate(18deg);
		-webkit-transform: rotate(18deg);
		-moz-transform: rotate(18deg);
		transform: rotate(18deg);
		-o-transform: rotate(18deg);
		-sm-transform: rotate(18deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	16% {
		-ms-transform: rotate(-12deg);
		-webkit-transform: rotate(-12deg);
		-moz-transform: rotate(-12deg);
		transform: rotate(-12deg);
		-o-transform: rotate(-12deg);
		-sm-transform: rotate(-12deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	18% {
		-ms-transform: rotate(12deg);
		-webkit-transform: rotate(12deg);
		-moz-transform: rotate(12deg);
		transform: rotate(12deg);
		-o-transform: rotate(12deg);
		-sm-transform: rotate(12deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}

	100% {
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-sm-transform: rotate(0deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0deg);
	}
}

.ProximaNova {
	font-family: 'ProximaNova', Arial, sans-serif;
}

.ProximaNova-Black {
	font-family: 'ProximaNova-Black', Arial, sans-serif;
}

.ProximaNova-BlackItalic {
	font-family: 'ProximaNova-BlackItalic', Arial, sans-serif;
}

.ProximaNova-BoldItalic {
	font-family: 'ProximaNova-BoldItalic', Arial, sans-serif;
}

.ProximaNova-ExtraBold {
	font-family: 'ProximaNova-ExtraBold', Arial, sans-serif;
}

.ProximaNova-ExtraBoldItalic {
	font-family: 'ProximaNova-ExtraBoldItalic', Arial, sans-serif;
}

.ProximaNova-Light {
	font-family: 'ProximaNova-Light', Arial, sans-serif;
}

.ProximaNova-LightItalic {
	font-family: 'ProximaNova-LightItalic', Arial, sans-serif;
}

.ProximaNova-SemiBold {
	font-family: 'ProximaNova-SemiBold', Arial, sans-serif;
}

.ProximaNova-SemiBoldItalic {
	font-family: 'ProximaNova-SemiBoldItalic', Arial, sans-serif;
}

.ProximaNova-Thin {
	font-family: 'ProximaNova-Thin', Arial, sans-serif;
}

.ProximaNova-ThinItalic {
	font-family: 'ProximaNova-ThinItalic', Arial, sans-serif;
}

@keyframes float-down {
	0% {
		top: -100px;
	}

	100% {
		top: 0px;
	}
}

@keyframes sonar {
	0% {
		transform: scale(1);
		opacity: 0;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}

	100% {
		transform: scale(2);
		opacity: 0;
	}
}

@keyframes slide-fide {
	0% {
		background: #fff;
		display: block;
	}

	25% {
		background: rgba(255, 255, 255, 0.7);
		display: block;
	}

	50% {
		background: rgba(255, 255, 255, 0.5);
		display: block;
	}

	75% {
		background: rgba(255, 255, 255, 0.25);
		display: block;
	}

	100% {
		background: rgba(255, 255, 255, 0);
		display: none;
	}
}

.spinner-css {
	width: 1410px;
	height: 1410px;
	position: absolute;
	top: 0;
	margin-left: -200px;
	z-index: -1;
}

@media(min-width:1024px) {
	.spinner-css {
		margin-left: -100px;
	}
}

@media(min-width:1366px) {
	.spinner-css {
		margin-left: -200px;
	}
}

@media(max-width:767px) {
	.spinner-css {
		display: none;
	}
}

.spinner-css .side {
	height: 50%;
	width: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
}

.spinner-css .side>.fill {
	position: absolute;
	width: 100%;
	height: 200%;
	border: 2px solid #010124a6;
	box-sizing: border-box;
	border-top-color: transparent;
	border-left-color: transparent;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	transition: transform 0.5s linear;
	-moz-transition: transform 0.5s linear;
	-webkit-transition: transform 0.5s linear;
	-o-transition: transform 0.5s linear;
	-sm-transition: transform 0.5s linear;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.spinner-css .side.sp_right {
	top: 50%;
}

.spinner-css .side.sp_right>.fill {
	bottom: 0;
	transition-delay: 0s;
	-moz-transition-delay: 0s;
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

@media(min-width:768px) {
	.circle-active .spinner-css .side.sp_right>.fill {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
		transition-delay: .5s;
		-moz-transition-delay: .5s;
		-webkit-transition-delay: .5s;
		-ms-transition-delay: .5s;
		-o-transition-delay: .5s;
	}
}

@media(min-width:768px) {
	.circle-active .spinner-css .side.sp_left>.fill {
		-webkit-transform: rotate(225deg);
		-moz-transform: rotate(225deg);
		-ms-transform: rotate(225deg);
		-o-transform: rotate(225deg);
		transform: rotate(225deg);
	}
}

@keyframes loading {
	0% {
		display: block;
		opacity: 1;
	}

	25% {
		display: block;
		opacity: 0.8;
	}

	50% {
		display: block;
		opacity: 0.6;
	}

	75% {
		display: block;
		opacity: 0.4;
	}

	100% {
		display: none;
		opacity: 0.2;
	}
}

@keyframes slideInDownMenu {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}

	to {
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}
}

.slideInDownMenu {
	animation-name: slideInDownMenu;
	animation-duration: 1s;
}

.mCustomScrollbar {
	-ms-touch-action: pinch-zoom;
	touch-action: pinch-zoom;
}

.mCustomScrollbar.mCS_no_scrollbar,
.mCustomScrollbar.mCS_touch_action {
	-ms-touch-action: auto;
	touch-action: auto;
}

.mCustomScrollBox {
	position: relative;
	overflow: hidden;
	height: 100%;
	max-width: 100%;
	outline: 0;
	direction: ltr;
}

.mCSB_container {
	overflow: hidden;
	width: auto;
	height: auto;
}

.mCSB_inside>.mCSB_container {
	margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-right: 0;
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container {
	margin-right: 0;
	margin-left: 30px;
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-left: 0;
}

.mCSB_scrollTools {
	position: absolute;
	width: 16px;
	height: auto;
	left: auto;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: .75;
	filter: "alpha(opacity=75)";
	-ms-filter: "alpha(opacity=75)";
}

.mCSB_outside+.mCSB_scrollTools {
	right: -26px;
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,
.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
	right: auto;
	left: 0;
}

.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
	left: -26px;
}

.mCSB_scrollTools .mCSB_draggerContainer {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: auto;
}

.mCSB_scrollTools a+.mCSB_draggerContainer {
	margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
	width: 2px;
	height: 100%;
	margin: 0 auto;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
	cursor: pointer;
	width: 100%;
	height: 30px;
	z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	position: relative;
	width: 4px;
	height: 100%;
	margin: 0 auto;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
	width: 12px;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	width: 8px;
}

.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonUp {
	display: block;
	position: absolute;
	height: 20px;
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
	bottom: 0;
}

.mCSB_horizontal.mCSB_inside>.mCSB_container {
	margin-right: 0;
	margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside>.mCSB_container {
	min-height: 100%;
}

.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
	margin-bottom: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	width: auto;
	height: 16px;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
}

.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	bottom: -26px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer {
	margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	width: 100%;
	height: 2px;
	margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
	width: 30px;
	height: 100%;
	left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	width: 100%;
	height: 4px;
	margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
	height: 12px;
	margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	height: 8px;
	margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
	display: block;
	position: absolute;
	width: 20px;
	height: 100%;
	overflow: hidden;
	margin: 0 auto;
	cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
	left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
	right: 0;
}

.mCSB_container_wrapper {
	position: absolute;
	height: auto;
	width: auto;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin-right: 30px;
	margin-bottom: 30px;
}

.mCSB_container_wrapper>.mCSB_container {
	padding-right: 30px;
	padding-bottom: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical {
	bottom: 20px;
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	right: 20px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical {
	bottom: 0;
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	right: 0;
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	left: 20px;
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	left: 0;
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper {
	margin-right: 0;
	margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container {
	padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container {
	padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-right: 0;
	margin-left: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
	margin-bottom: 0;
}

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	-webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar {
	-webkit-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-moz-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-o-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools {
	opacity: 0;
	filter: "alpha(opacity=0)";
	-ms-filter: "alpha(opacity=0)";
}

.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools,
.mCustomScrollBox:hover>.mCSB_scrollTools,
.mCustomScrollBox:hover~.mCSB_scrollTools,
.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag {
	opacity: 1;
	filter: "alpha(opacity=100)";
	-ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.4);
	filter: "alpha(opacity=40)";
	-ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.75);
	filter: "alpha(opacity=75)";
	-ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.85);
	filter: "alpha(opacity=85)";
	-ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.9);
	filter: "alpha(opacity=90)";
	-ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight,
.mCSB_scrollTools .mCSB_buttonUp {
	background-image: url(../_ui/responsive/theme-alpha/css/mCSB_buttons.png);
	background-repeat: no-repeat;
	opacity: .4;
	filter: "alpha(opacity=40)";
	-ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
	background-position: 0 0;
}

.mCSB_scrollTools .mCSB_buttonDown {
	background-position: 0 -20px;
}

.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: 0 -40px;
}

.mCSB_scrollTools .mCSB_buttonRight {
	background-position: 0 -56px;
}

.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover,
.mCSB_scrollTools .mCSB_buttonUp:hover {
	opacity: .75;
	filter: "alpha(opacity=75)";
	-ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active,
.mCSB_scrollTools .mCSB_buttonUp:active {
	opacity: .9;
	filter: "alpha(opacity=90)";
	-ms-filter: "alpha(opacity=90)";
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -80px -56px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail {
	width: 4px;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 4px;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.75);
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	width: 100%;
	height: 4px;
	margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -40px -56px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -120px -56px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
	width: 4px;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 6px;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.75);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	width: 100%;
	height: 4px;
	margin: 6px 0;
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	width: 100%;
	height: 6px;
	margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -20px -56px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -100px -56px;
}

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 2px;
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	width: 100%;
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	width: 100%;
	height: 2px;
	margin: 7px auto;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -80px -56px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded.mCSB_scrollTools .mCSB_dragger {
	height: 14px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 14px;
	margin: 0 1px;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger {
	width: 14px;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	height: 14px;
	margin: 1px 0;
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
	width: 16px;
	height: 16px;
	margin: -1px 0;
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	width: 4px;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
	height: 16px;
	width: 16px;
	margin: 0 -1px;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	height: 4px;
	margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
	background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
	background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
	background-position: 0 -128px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -80px -128px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail {
	width: 4px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	background-color: transparent;
	background-position: center;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);
	background-repeat: repeat-y;
	opacity: .3;
	filter: "alpha(opacity=30)";
	-ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	height: 4px;
	margin: 6px 0;
	background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -20px -128px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=);
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -100px -128px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-repeat: repeat-y;
	background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
	background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
	background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger {
	height: 70px;
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger {
	width: 70px;
}

.mCS-3d-dark.mCSB_scrollTools,
.mCS-3d.mCSB_scrollTools {
	opacity: 1;
	filter: "alpha(opacity=30)";
	-ms-filter: "alpha(opacity=30)";
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
	width: 8px;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.2);
	box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #555555;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 8px;
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	width: 100%;
	height: 8px;
	margin: 4px 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	width: 100%;
	height: 8px;
	margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -40px -128px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.1);
	box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -120px -128px;
}

.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools {
	opacity: 1;
	filter: "alpha(opacity=30)";
	-ms-filter: "alpha(opacity=30)";
}

.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical,
.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical {
	right: 1px;
}

.mCS-3d-thick-dark.mCSB_scrollTools_vertical,
.mCS-3d-thick.mCSB_scrollTools_vertical {
	box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal,
.mCS-3d-thick.mCSB_scrollTools_horizontal {
	bottom: 1px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
	width: 12px;
	margin: 2px;
	position: absolute;
	height: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
	height: 12px;
	width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #555555;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.05);
	box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
	background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -40px -128px;
}

.mCS-3d-thick-dark.mCSB_scrollTools {
	box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #777777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
	background-color: #fff;
	background-color: rgba(0, 0, 0, 0.05);
	box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail {
	background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -120px -128px;
}

.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,
.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical {
	right: 0;
	margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	bottom: 0;
	margin: 0 12px;
}

.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,
.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical {
	left: 0;
	right: auto;
}

.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger {
	height: 50px;
}

.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger {
	width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
	filter: "alpha(opacity=20)";
	-ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.5);
	filter: "alpha(opacity=50)";
	-ms-filter: "alpha(opacity=50)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.2);
	filter: "alpha(opacity=20)";
	-ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.5);
	filter: "alpha(opacity=50)";
	-ms-filter: "alpha(opacity=50)";
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail {
	width: 6px;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.2);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 6px;
}

.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	width: 100%;
	height: 6px;
	margin: 5px 0;
}

.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	width: 12px;
}

.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	height: 12px;
	margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -40px -128px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -120px -128px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail {
	width: 12px;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 6px;
	margin: 3px 5px;
	position: absolute;
	height: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	height: 6px;
	margin: 5px 3px;
	position: absolute;
	width: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	width: 100%;
	height: 12px;
	margin: 2px 0;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -32px -72px;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -32px -92px;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -40px -112px;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -40px -128px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp {
	background-position: -112px -72px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown {
	background-position: -112px -92px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: -120px -112px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight {
	background-position: -120px -128px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail {
	background-color: transparent;
	border-width: 1px;
	border-style: solid;
	border-color: #fff;
	border-color: rgba(255, 255, 255, 0.2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
	border-color: #000;
	border-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.9);
}

.form-control::-webkit-input-placeholder {
	color: #333;
	opacity: 1 !important;
	font-weight: normal !important;
}

.form-control::-moz-placeholder {
	color: #333;
	opacity: 1 !important;
	font-weight: normal !important;
}

.form-control:-ms-input-placeholder {
	color: #333;
	opacity: 1 !important;
	font-weight: normal !important;
}

.form-control:-moz-placeholder {
	color: #333;
	opacity: 1 !important;
	font-weight: normal !important;
}

.ie8 .custom-checkbox input[type="checkbox"],
.ie8 .custom-radio input[type="checkbox"] {
	margin: 12px 10px 0 0 !important;
}

.ie8 .custom-checkbox input[type="radio"],
.ie8 .custom-radio input[type="radio"] {
	margin: 10px 10px 0 0 !important;
}

.mt0 {
	margin-top: 0;
}

html:not(.ie8) .custom-checkbox,
html:not(.ie8) .custom-radio {
	margin: 0;
}

html:not(.ie8) .custom-checkbox label,
html:not(.ie8) .custom-radio label {
	padding-left: 0;
	position: relative;
}

html:not(.ie8) .custom-checkbox input[type="radio"],
html:not(.ie8) .custom-radio input[type="radio"],
html:not(.ie8) .custom-checkbox input[type="checkbox"],
html:not(.ie8) .custom-radio input[type="checkbox"] {
	position: absolute;
	left: -999em;
}

html:not(.ie8) .custom-checkbox input[type="radio"]+label:before,
html:not(.ie8) .custom-radio input[type="radio"]+label:before,
html:not(.ie8) .custom-checkbox input[type="checkbox"]+label:before,
html:not(.ie8) .custom-radio input[type="checkbox"]+label:before,
html:not(.ie8) .custom-checkbox input[type="checkbox"]+input[type="hidden"]+label:before,
html:not(.ie8) .custom-radio input[type="checkbox"]+input[type="hidden"]+label:before {
	content: '';
	display: inline-block;
	position: relative;
	top: 0;
	left: 0;
	width: 34px;
	height: 34px;
	margin-right: 10px;
	vertical-align: top;
}

@media(max-width:767px) {

	html:not(.ie8) .custom-checkbox input[type="radio"]+label:before,
	html:not(.ie8) .custom-radio input[type="radio"]+label:before,
	html:not(.ie8) .custom-checkbox input[type="checkbox"]+label:before,
	html:not(.ie8) .custom-radio input[type="checkbox"]+label:before,
	html:not(.ie8) .custom-checkbox input[type="checkbox"]+input[type="hidden"]+label:before,
	html:not(.ie8) .custom-radio input[type="checkbox"]+input[type="hidden"]+label:before {
		width: 24px;
		height: 24px;
	}
}

html:not(.ie8) .custom-checkbox input[type="radio"]+label:before,
html:not(.ie8) .custom-radio input[type="radio"]+label:before {
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

html:not(.ie8) .custom-checkbox input[type="checkbox"]+label:before,
html:not(.ie8) .custom-radio input[type="checkbox"]+label:before {
	background: #fff;
}

html:not(.ie8) .custom-checkbox input[type="checkbox"]~label:before,
html:not(.ie8) .custom-radio input[type="checkbox"]~label:before {
	background: #fff;
}

html:not(.ie8) .custom-checkbox input[type="checkbox"]:checked~label:before,
html:not(.ie8) .custom-radio input[type="checkbox"]:checked~label:before {
	width: 34px;
	height: 34px;
	background: #043458;
	border: 8px solid #fff;
}

@media(max-width:767px) {

	html:not(.ie8) .custom-checkbox input[type="checkbox"]:checked~label:before,
	html:not(.ie8) .custom-radio input[type="checkbox"]:checked~label:before {
		width: 30px;
		height: 30px;
		border-width: 6px;
	}
}

html:not(.ie8) .custom-checkbox input[type="radio"]+label:before,
html:not(.ie8) .custom-radio input[type="radio"]+label:before {
	background: #fff;
}

html:not(.ie8) .custom-checkbox input[type="radio"]:checked+label:before,
html:not(.ie8) .custom-radio input[type="radio"]:checked+label:before {
	background: #043458;
}

html:not(.ie8) .custom-checkbox input[type="hidden"],
html:not(.ie8) .custom-radio input[type="hidden"],
html:not(.ie8) .custom-checkbox .mandatory,
html:not(.ie8) .custom-radio .mandatory,
html:not(.ie8) .custom-checkbox .skip,
html:not(.ie8) .custom-radio .skip {
	display: none;
}

html:not(.ie8) .custom-checkbox--squared,
html:not(.ie8) .custom-radio--squared {
	float: left;
	margin: 0;
}

html:not(.ie8) .custom-checkbox--squared:last-child,
html:not(.ie8) .custom-radio--squared:last-child {
	margin-left: 1px;
	margin-top: 0;
}

html:not(.ie8) .custom-checkbox--squared label,
html:not(.ie8) .custom-radio--squared label {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	position: relative;
	z-index: 10;
	width: 34px;
	height: 34px;
	overflow: hidden;
	text-align: center;
	line-height: 37px;
}

@media(max-width:767px) {

	html:not(.ie8) .custom-checkbox--squared label,
	html:not(.ie8) .custom-radio--squared label {
		width: 30px;
		height: 30px;
		line-height: 32px;
		font-size: 12px;
	}
}

html:not(.ie8) .custom-checkbox--squared input[type="radio"]+label:before,
html:not(.ie8) .custom-radio--squared input[type="radio"]+label:before,
html:not(.ie8) .custom-checkbox--squared input[type="radio"]+label:after,
html:not(.ie8) .custom-radio--squared input[type="radio"]+label:after {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
}

@media(max-width:767px) {

	html:not(.ie8) .custom-checkbox--squared input[type="radio"]+label:before,
	html:not(.ie8) .custom-radio--squared input[type="radio"]+label:before,
	html:not(.ie8) .custom-checkbox--squared input[type="radio"]+label:after,
	html:not(.ie8) .custom-radio--squared input[type="radio"]+label:after {
		width: 30px;
		height: 30px;
	}
}

html:not(.ie8) .custom-checkbox--squared input[type="radio"]+label:before,
html:not(.ie8) .custom-radio--squared input[type="radio"]+label:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

html:not(.ie8) .custom-checkbox--squared input[type="radio"]+label:after,
html:not(.ie8) .custom-radio--squared input[type="radio"]+label:after {
	display: none;
}

html:not(.ie8) .custom-checkbox--squared input[type="radio"]:checked+label,
html:not(.ie8) .custom-radio--squared input[type="radio"]:checked+label {
	color: #fff;
}

html:not(.ie8) .custom-checkbox--squared input[type="radio"]:checked+label:before,
html:not(.ie8) .custom-radio--squared input[type="radio"]:checked+label:before {
	background: #043458;
}

.button--zoom {
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
	backface-visibility: hidden;
}

.button--zoom:hover {
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.button--zoom:active {
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

.button--zoom.disabled:hover {
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

.button--zoom.disabled:active {
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

.chosen-container-single .chosen-single span {
	font-size: 18px;
}

@media(max-width:767px) {
	.chosen-container-single .chosen-single span {
		font-size: 12px;
	}
}

.chosen-search {
	display: none;
}

.bg-curve-grey {
	background: #f1f2f2;
	position: relative;
}

.bg-curve-grey:before {
	content: '';
	display: block;
	width: 100%;
	height: 43px;
	background: url('../_ui/responsive/theme-alpha/img/bg_footer_grey.png') center 0 no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -43px;
	left: 0;
}

@media(max-width:767px) {
	.bg-curve-grey:before {
		height: 15px;
		top: -15px;
	}
}

.chosen-container .chosen-single {
	padding-left: 10px;
}

.select-style-2 .chosen-container {
	min-width: 100%;
	height: 36px;
	border-bottom: 2px solid #043458;
}

@media(max-width:767px) {
	.select-style-2 .chosen-container {
		height: 30px;
	}
}

.select-style-2 .chosen-container .chosen-single {
	height: 100%;
	padding: 0;
	background: none;
}

.select-style-2 .chosen-container .chosen-single span {
	font-size: 18px;
	color: #043458;
	font-weight: bold;
	line-height: 34px;
}

@media(max-width:767px) {
	.select-style-2 .chosen-container .chosen-single span {
		font-size: 12px;
		line-height: 27px;
	}
}

.select-style-2 .chosen-container .chosen-single b {
	border: none;
	right: 0;
	top: 5px;
	background-image: url(../picture/sprites_img.png);
	background-position: -1793px -205px;
	width: 23px;
	height: 13px;
}

@media(max-width:767px) {
	.select-style-2 .chosen-container .chosen-single b {
		top: 1px;
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow-center-mobile.png) !important;
		background-size: 100% auto !important;
		background-position: 0 0 !important;
		background-repeat: no-repeat !important;
		width: 23px !important;
		height: 13px !important;
	}
}

.select-style-2 .chosen-container .chosen-results {
	padding: 0;
	margin: 0;
}

.select-style-2 .chosen-container .chosen-results .active-result {
	padding: 5px 30px;
	line-height: 27px;
	font-size: 18px;
	margin: 6px 0;
}

.select-style-2 .chosen-container .chosen-results .active-result:hover,
.select-style-2 .chosen-container .chosen-results .active-result.result-selected {
	background: #0082a9;
	color: #fff;
	font-size: 18px;
}

@media(max-width:767px) {

	.select-style-2 .chosen-container .chosen-results .active-result:hover,
	.select-style-2 .chosen-container .chosen-results .active-result.result-selected {
		font-size: 12px;
	}
}

@media(max-width:767px) {
	.select-style-2 .chosen-container .chosen-results .active-result {
		font-size: 12px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

.select-style-2 .chosen-container.chosen-with-drop {
	background: #fff;
	border: none;
	box-shadow: 10px 12px 15px #b2b2b2;
	-moz-box-shadow: 10px 12px 15px #b2b2b2;
	-webkit-box-shadow: 10px 12px 15px #b2b2b2;
	-o-box-shadow: 10px 12px 15px #b2b2b2;
	height: 37px;
}

@media(max-width:767px) {
	.select-style-2 .chosen-container.chosen-with-drop {
		height: 35px;
	}
}

.select-style-2 .chosen-container.chosen-with-drop .chosen-drop {
	box-shadow: 10px 10px 15px #b2b2b2;
	-moz-box-shadow: 10px 10px 15px #b2b2b2;
	-webkit-box-shadow: 10px 10px 15px #b2b2b2;
	-o-box-shadow: 10px 10px 15px #b2b2b2;
}

.select-style-2 .chosen-container.chosen-with-drop .chosen-single span {
	font-weight: normal;
	margin-left: 5px;
	padding: 0 5px;
	background: #0082a9;
	color: #fff;
	display: inline-block;
	line-height: 27px;
	margin-top: 6px;
}

.select-style-2 .chosen-container.chosen-with-drop .chosen-single b {
	top: -3px;
	right: -1px;
	left: auto;
	border: none;
}

@media(max-width:767px) {
	.select-style-2 .chosen-container.chosen-with-drop .chosen-single b {
		background: none !important;
	}
}

.select-style-2 .chosen-container.chosen-with-drop .chosen-single b:after {
	content: '';
	width: 0;
	height: 0;
	border-bottom: 8px solid #043458;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	background: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	right: -8px;
	top: 0;
}

@media(max-width:767px) {
	.select-style-2 .chosen-container.chosen-with-drop .chosen-single b:after {
		border-bottom-width: 7px;
		border-left-width: 5px;
		border-right-width: 5px;
		right: -2px;
		top: -1px;
	}
}

.select-style-2.disabled .chosen-container {
	border-color: #666666;
}

.select-style-2.disabled .chosen-container .chosen-single b {
	background-image: url(../picture/sprites_img.png);
	background-position: -1740px -205px;
	width: 23px;
	height: 13px;
}

@media(max-width:767px) {
	.select-style-2.disabled .chosen-container .chosen-single b {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow-center-disable-mobile.png) !important;
		background-size: 100% auto !important;
		background-position: 0 0 !important;
		background-repeat: no-repeat !important;
		width: 23px !important;
		height: 13px !important;
	}
}

.select-style-2.disabled .chosen-container .chosen-single span {
	color: #666666;
}

.select-style-2.error .chosen-container {
	border-color: #ff0000;
}

.select-style-2.error .chosen-container .chosen-single b:before,
.select-style-2.error .chosen-container .chosen-single b:after {
	background: #ff0000;
}

.select-style-2.error .chosen-container .chosen-single span {
	color: #ff0000;
}

.select-style-2.error .chosen-container.chosen-with-drop .chosen-single b:before,
.select-style-2.error .chosen-container.chosen-with-drop .chosen-single b:after {
	background: none;
	border-right-color: transparent;
	border-bottom-color: #ff0000;
}

.select-style-2.error .chosen-container.chosen-with-drop span {
	color: #fff;
	background-color: #ff0000;
}

.disabled {
	position: relative;
	cursor: default;
}

.disabled:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

#main {
	position: relative;
	z-index: 10;
	overflow: hidden;
}

@media(min-width:769px) {
	#main {
		min-width: 1181px;
	}
}

.wrapper {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.breadcrumb-top {
	position: absolute;
	top: 8px;
	left: 0;
	z-index: 10;
	width: 100%;
}

.breadcrumb-top .breadcrumb-section .breadcrumb li,
.breadcrumb-top .breadcrumb-section .breadcrumb li.active {
	color: #fff;
}

.breadcrumb-top .breadcrumb-section .breadcrumb li:before,
.breadcrumb-top .breadcrumb-section .breadcrumb li.active:before,
.breadcrumb-top .breadcrumb-section .breadcrumb li a,
.breadcrumb-top .breadcrumb-section .breadcrumb li.active a {
	color: #fff;
	border-color: #fff;
}

.breadcrumb-top .breadcrumb-section .breadcrumb li a:hover,
.breadcrumb-top .breadcrumb-section .breadcrumb li.active a:hover {
	color: #0082a9;
}

@media(max-width:767px) {

	.breadcrumb-top .breadcrumb-section .breadcrumb li a:hover,
	.breadcrumb-top .breadcrumb-section .breadcrumb li.active a:hover {
		color: #fff;
	}
}

.img-tablet {
	display: none !important;
}

@media(max-width:767px) {
	.img-tablet {
		display: block !important;
	}
}

@media(max-width:767px) {
	.img-desktop {
		display: none !important;
	}
}

.text-tablet {
	display: none !important;
}

@media(max-width:767px) {
	.text-tablet {
		display: inline !important;
	}
}

@media(max-width:767px) {
	.text-desktop {
		display: none !important;
	}
}

.scroll-nav {
	z-index: 10000;
	position: fixed;
	font-size: 18px;
	line-height: 28px;
}

.scroll-nav ol {
	list-style: none;
	padding: 0;
}

.scroll-nav li.active,
.scroll-nav li:hover {
	color: #ee2d42;
}

.sidebar {
	transform: translate3d(0, 0, 0);
}

.sidebar.is_stuck {
	z-index: 1000;
	padding-bottom: 50px;
}

.sidebar__nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

@media(max-width:767px) {
	.page-productDetails.language-en .sidebar__nav li:nth-child(even) a {
		padding-left: 10px;
	}
}

@media(max-width:767px) {
	.sidebar__nav li {
		width: 50%;
		float: left;
		padding-top: 7px;
	}

	.sidebar__nav li:nth-child(2n+1) {
		clear: both;
	}
}

.sidebar__nav li a {
	font-size: 16px;
	line-height: 35px;
	color: #333;
	padding-left: 112px;
	position: relative;
}

@media(max-width:767px) {
	.sidebar__nav li a {
		font-size: 12px;
		line-height: 18px;
		padding-left: 30px;
	}
}

.sidebar__nav li a:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1px;
	width: 0;
	height: 2px;
	background: #ee2d42;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
}

.ie8 .sidebar__nav li a:before {
	display: none;
}

.sidebar__nav li a span {
	display: none;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1px;
	width: 0;
	height: 2px;
	background: #ee2d42;
}

.ie8 .sidebar__nav li a span {
	display: block;
}

.sidebar__nav li a.active {
	color: #ee2d42;
	font-weight: bold;
}

.sidebar__nav li a.active span,
.sidebar__nav li a.active:before {
	width: 91px;
}

@media(max-width:767px) {

	.sidebar__nav li a.active span,
	.sidebar__nav li a.active:before {
		width: 20px;
	}
}

@media(min-width:1024px) {
	.sidebar__nav li a:hover {
		color: #ee2d42;
		font-weight: bold;
	}

	.sidebar__nav li a:hover span,
	.sidebar__nav li a:hover:before {
		width: 91px;
	}
}

@media(min-width:1024px) and (max-width:767px) {

	.sidebar__nav li a:hover span,
	.sidebar__nav li a:hover:before {
		width: 20px;
	}
}

.mCSB_outside+.mCSB_scrollTools {
	right: 0;
	background: #fafafa;
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	z-index: 20;
	opacity: 1;
}

.mCSB_outside+.mCSB_scrollTools .mCSB_draggerRail {
	background: none;
	width: 8px;
}

.mCSB_outside+.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 8px;
	background: #c2c2c2;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
}

@media(max-width:767px) {
	.mCSB_outside+.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
		width: 7px;
	}
}

.form-control#mobileNumber,
.form-control#about\.mobileNumber {
	padding-left: 45px;
}

.ie10 .form-control#mobileNumber,
.ie10 .form-control#about\.mobileNumber {
	line-height: 33px;
}

.ie10 .form-control#mobileNumber.error,
.ie10 .form-control#about\.mobileNumber.error {
	line-height: 30px;
}

.ie8 .form-control#mobileNumber,
.ie8 .form-control#about\.mobileNumber {
	line-height: 33px;
}

.ie8 .form-control#mobileNumber.error,
.ie8 .form-control#about\.mobileNumber.error {
	line-height: 28px;
}

@media(max-width:767px) {

	.form-control#mobileNumber,
	.form-control#about\.mobileNumber {
		padding-left: 33px;
		padding-top: 10px;
		padding-bottom: 10px;
		line-height: 30px;
	}
}

.form-control#mobileNumber1,
.form-control#about\.mobileNumber1 {
	padding-left: 45px;
}

.ie10 .form-control#mobileNumber1,
.ie10 .form-control#about\.mobileNumber1 {
	line-height: 33px;
}

.ie10 .form-control#mobileNumber1.error,
.ie10 .form-control#about\.mobileNumber1.error {
	line-height: 30px;
}

.ie8 .form-control#mobileNumber1,
.ie8 .form-control#about\.mobileNumber1 {
	line-height: 33px;
}

.ie8 .form-control#mobileNumber1.error,
.ie8 .form-control#about\.mobileNumber1.error {
	line-height: 28px;
}

@media(max-width:767px) {

	.form-control#mobileNumber1,
	.form-control#about\.mobileNumber1 {
		padding-left: 33px;
		padding-top: 10px;
		padding-bottom: 10px;
		line-height: 30px;
	}
}

.page-update-profile .global-alerts {
	display: none !important;
}

@media(max-width:767px) {
	.chosen-container .chosen-drop .chosen-results {
		max-height: 140px;
	}
}

header {
	margin-bottom: 0;
	background: #ffffff;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 12;
	height: 110px;
	min-width: 1181px;
	transition: height 0.3s;
	-moz-transition: height 0.3s;
	-webkit-transition: height 0.3s;
	-o-transition: height 0.3s;
	-sm-transition: height 0.3s;
}

@media(max-width:767px) {
	header {
		position: relative;
		height: auto;
		min-width: auto;
	}
}

.branding-mobile {
	padding: 0;
}

@media(max-width:767px) {
	.branding-mobile {
		box-shadow: 0px 3px 5px rgba(195, 195, 195, 0.58);
		-moz-box-shadow: 0px 3px 5px rgba(195, 195, 195, 0.58);
		-webkit-box-shadow: 0px 3px 5px rgba(195, 195, 195, 0.58);
		-o-box-shadow: 0px 3px 5px rgba(195, 195, 195, 0.58);
		background: #ffffff;
	}
}

.branding-mobile .js-mobile-logo {
	float: left;
	padding: 0px 0px 0px 13px;
}

@media(max-width:767px) {
	.branding-mobile .js-mobile-logo img {
		width: 60px;
		margin-top: 7px;
	}
}

.branding-mobile .mobile_top {
	text-align: right;
}

.branding-mobile .mobile_top .mobile_top_menu {
	display: inline-block;
}

.branding-mobile .mobile_top .mobile_top_menu ul {
	display: inline-block;
}

.branding-mobile .mobile_top .mobile_top_menu ul li {
	padding: 17px 0;
}

.branding-mobile .mobile_top .mobile_top_menu ul li a {
	color: #043458;
	font-size: 12px;
	padding-right: 7px;
	line-height: 20px;
	font-weight: bold;
}

.branding-mobile .mobile_top .mobile_top_menu ul li:first-child a {
	color: #ee2d42;
}

.branding-mobile .mobile_top .mobile_top_menu ul li.call_corporate {
	display: none;
}

.branding-mobile .mobile_top .mobile_top_menu ul .chat-icon {
	position: relative;
}

.branding-mobile .mobile_top .mobile_top_menu ul .chat-icon:before {
	content: '';
	position: absolute;
	top: 23%;
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/chat-icon-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 32px;
	height: 32px;
	margin-top: 0px;
}

@media(max-width:767px) {
	.branding-mobile .mobile_top .mobile_top_menu ul .chat-icon:before {
		-webkit-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
	}
}

.branding-mobile .mobile_top .mobile_top_menu ul .chat-icon a {
	padding-left: 17px;
}

.branding-mobile .mobile_top .mobile_top_menu ul .call-icon {
	position: relative;
}

.branding-mobile .mobile_top .mobile_top_menu ul .call-icon:before {
	content: '';
	position: absolute;
	top: 25%;
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/phone-icon-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	margin-top: 0px;
}

@media(max-width:767px) {
	.branding-mobile .mobile_top .mobile_top_menu ul .call-icon:before {
		-webkit-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
	}
}

.page-corporate .branding-mobile .mobile_top .mobile_top_menu ul .call-icon:before,
.page-corporateSolution .branding-mobile .mobile_top .mobile_top_menu ul .call-icon:before,
.page-executiveSolution .branding-mobile .mobile_top .mobile_top_menu ul .call-icon:before,
.page-provenSuccess .branding-mobile .mobile_top .mobile_top_menu ul .call-icon:before {
	width: 20px;
	height: 20px;
	margin-top: 3px;
}

.branding-mobile .mobile_top .mobile_top_menu ul .call-icon a {
	padding-left: 15px;
	padding-right: 5px;
	position: relative;
}

.page-corporate .branding-mobile .mobile_top .mobile_top_menu ul .call-icon a,
.page-corporateSolution .branding-mobile .mobile_top .mobile_top_menu ul .call-icon a,
.page-executiveSolution .branding-mobile .mobile_top .mobile_top_menu ul .call-icon a,
.page-provenSuccess .branding-mobile .mobile_top .mobile_top_menu ul .call-icon a {
	padding-left: 16px;
	padding-right: 14px;
}

.branding-mobile .mobile_top .mobile_top_menu ul .register-icon {
	position: relative;
	text-indent: -9999px;
}

.branding-mobile .mobile_top .mobile_top_menu ul .register-icon:before {
	content: '';
	position: absolute;
	top: 25%;
	left: 0;
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/register-icon-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	margin-top: 0px;
}

@media(max-width:767px) {
	.branding-mobile .mobile_top .mobile_top_menu ul .register-icon:before {
		-webkit-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
	}
}

.branding-mobile .mobile_top .mobile_top_menu ul .register-icon a {
	padding-left: 18px;
	padding-right: 20px;
	opacity: 0;
}

.branding-mobile .mobile_top .mobile_top_menu ul .myaccount-icon {
	position: relative;
}

.branding-mobile .mobile_top .mobile_top_menu ul .myaccount-icon:before {
	content: '';
	position: absolute;
	top: 25%;
	left: 0;
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/myaccount-icon-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	margin-top: 0px;
}

@media(max-width:767px) {
	.branding-mobile .mobile_top .mobile_top_menu ul .myaccount-icon:before {
		-webkit-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
	}
}

.branding-mobile .mobile_top .mobile_top_menu ul .myaccount-icon span {
	padding-left: 16px;
	padding-right: 20px;
}

.branding-mobile .mobile_top .mobile_top_menu .mobile_account_logged {
	background: #043458;
	color: #ffffff;
	position: absolute;
	z-index: 50;
	text-align: left;
	padding: 15px 30px;
	font-weight: bold;
	top: 0;
	right: 0;
	height: 100%;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-sm-transition: all 0.3s ease;
	width: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
}

.branding-mobile .mobile_top .mobile_top_menu .mobile_account_logged ul {
	margin-top: 25px;
	width: 100%;
}

.branding-mobile .mobile_top .mobile_top_menu .mobile_account_logged ul li {
	padding: 10px 20px;
}

.branding-mobile .mobile_top .mobile_top_menu .mobile_account_logged ul li a {
	color: #ffffff;
	display: inline-block;
	font-weight: normal;
	width: 100%;
}

.branding-mobile .mobile_top .mobile_top_menu .mobile_account_logged .close {
	position: absolute;
	right: 11px;
	top: 15px;
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/close-accounloged-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	text-indent: -99999px;
	z-index: 100;
	text-shadow: none;
	opacity: 1;
}

.push-right-AccountLogged .branding-mobile .mobile_top .mobile_top_menu .mobile_account_logged {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.push-right-AccountLogged {
	overflow: hidden;
	height: 100%;
	width: 100%;
	position: fixed;
}

.header {
	background: #ffffff;
	position: relative;
	z-index: 1000;
}

.logo .js-site-logo .banner__component img {
	width: 71px;
	height: 51px;
	width: auto\0;
	max-width: 71px !important\0;
}

.dropdown {
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0;
	background: #043458;
	width: 223px;
	display: none;
}

.dropdown a {
	color: #ffffff;
}

.dropdown a:hover {
	color: #ffffff;
	background: #0082a9;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-sm-transition: all 0.3s;
}

li:hover .dropdown {
	display: block;
}

@media(max-width:767px) {
	li.js-enquire-has-sub.show-sub .dropdown {
		display: block;
	}
}

.nav_top {
	background: #f2f1f1;
	margin-top: 0px;
	visibility: visible;
	opacity: 1;
}

@media(min-width:769px) {
	.nav_top {
		min-width: 1181px;
	}
}

@media(max-width:767px) {
	.nav_top {
		display: none;
	}
}

.nav_top .navigation {
	float: left;
}

.nav_top ul li {
	padding: 0px 20px;
}

@media(max-width:767px) {
	.nav_top ul li {
		padding: 15px 5px;
	}
}

.nav_top ul li a {
	color: #333333;
	font-size: 12px;
	line-height: 38px;
}

@media(max-width:767px) {
	.nav_top ul li a {
		font-size: 28px;
		line-height: 80px;
	}
}

.nav_top ul li:hover {
	background: #ffffff;
}

.nav_top .nav_top_left {
	float: left;
}

@media(max-width:767px) {
	.nav_top .nav_top_left {
		float: none;
	}
}

.nav_top .nav_top_left ul li {
	padding: 0;
	float: left;
	text-align: center;
}

@media(max-width:767px) {
	.nav_top .nav_top_left ul li {
		width: 33.3333%;
		padding: 0;
	}
}

.nav_top .nav_top_left ul li a {
	color: #333333;
	font-size: 14px;
	padding: 1px 16px;
	display: block;
}

@media(max-width:767px) {
	.nav_top .nav_top_left ul li a {
		color: #ffffff;
		font-size: 14px;
	}
}

.nav_top .nav_top_left ul li:hover {
	color: #333333;
	background: #ffffff;
}

@media(max-width:767px) {
	.nav_top .nav_top_left ul li:hover {
		background: #043458;
	}
}

.page-careerPage .nav_top .nav_top_left ul li.careers {
	background: #ffffff;
}

.page-careerPage .nav_top .nav_top_left ul li.careers a {
	font-weight: bold;
}

.page-channel .nav_top .nav_top_left ul li.channel {
	background: #ffffff;
}

.page-channel .nav_top .nav_top_left ul li.channel a {
	font-weight: bold;
}

.nav_top .nav_top_right {
	font-weight: bold;
	float: right;
	padding-right: 0px;
}

@media(max-width:767px) {
	.nav_top .nav_top_right {
		float: none;
	}
}

.nav_top .nav_top_right .menu_account {
	display: table-cell;
	vertical-align: middle;
}

.nav_top .nav_top_right .menu_account ul li {
	position: relative;
	color: #333333;
	margin-top: 0px;
	padding-left: 15px;
	padding-right: 15px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-sm-transition: all 0.3s;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.nav_top .nav_top_right .menu_account ul li {
		margin-top: 0;
	}
}

@media(max-width:767px) {
	.nav_top .nav_top_right .menu_account ul li {
		padding-left: 0;
		padding-right: 0;
	}
}

.nav_top .nav_top_right .menu_account ul li:first-child {
	padding-left: 0px;
}

.nav_top .nav_top_right .menu_account ul li:first-child a {
	text-transform: none;
}

.nav_top .nav_top_right .menu_account ul li a {
	color: #333333;
}

.nav_top .nav_top_right .menu_account ul li a.bold-color {
	color: #043458;
}

.nav_top .nav_top_right .menu_account ul li a.bold-color:hover {
	color: #0082a9;
}

.nav_top .nav_top_right .menu_account ul li a:hover {
	color: #0082a9;
}

.nav_top .nav_top_right .menu_account ul li:hover {
	background: transparent;
}

.nav_top .nav_top_right .menu_account ul li:hover a .awrrow {
	border-top-color: #ffffff;
	border-top-width: 0;
	border-bottom: 8px solid #ffffff;
}

.nav_top .nav_top_right .menu_account ul li .dropdown {
	width: 169px;
}

.nav_top .nav_top_right .menu_account ul li .dropdown:before {
	display: none;
}

.nav_top .nav_top_right .menu_account ul li .dropdown li {
	padding: 0;
}

.nav_top .nav_top_right .menu_account ul li .dropdown li a {
	color: #ffffff;
	text-transform: none;
	font-size: 14px;
	line-height: 50px;
	padding: 0 20px;
	display: block;
	font-weight: normal;
	clear: both;
}

.nav_top .nav_top_right .menu_account ul li .dropdown li a:hover {
	color: #ffffff;
	background: #0082a9;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-sm-transition: all 0.3s;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.nav_top .nav_top_right .menu_account ul li .dropdown li a:hover {
		background: #043458;
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
		-sm-transition: none;
	}
}

.nav_top .nav_top_right .menu_account ul li .dropdown li a span {
	font-size: 0;
	margin-top: 20px;
	float: right;
	background-image: url(../picture/sprites_img.png);
	background-position: -1875px -267px;
	width: 6px;
	height: 11px;
}

.nav_top .nav_top_right .menu_account ul li.account_top {
	text-transform: capitalize;
	font-weight: bold;
}

.nav_top .nav_top_right .menu_account ul li.account_top a {
	color: #043458;
}

.nav_top .nav_top_right .menu_account ul li.account_top .awrrow {
	left: 10px;
}

.nav_top .nav_top_right .menu_account ul li.account_top:hover {
	background: #043458;
}

.nav_top .nav_top_right .menu_account ul li.account_top:hover a {
	color: #ffffff;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.nav_top .nav_top_right .menu_account ul li.account_top:hover:after {
		background: #043458;
	}
}

.nav_top .nav_top_right .menu_account ul li.language_top {
	padding: 0;
}

.nav_top .nav_top_right .menu_account ul li.language_top a {
	color: #043458;
	font-weight: bold;
	font-size: 12px;
	line-height: 38px;
	text-transform: uppercase;
	padding-left: 15px;
}

.nav_top .nav_top_right .menu_account ul li.language_top .chosen-with-drop a {
	padding-left: 15px;
}

.nav_top .nav_top_right .menu_account ul li.language_top .dropdown {
	width: 100%;
}

.nav_top .nav_top_right .menu_account ul li.language_top .dropdown li a {
	font-weight: normal;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}

.nav_top .nav_top_right .menu_account ul li.not_login a {
	color: #043458;
}

.nav_top .nav_top_right .menu_account ul li.not_login a:hover {
	color: #0082a9;
}

.nav_top .nav_top_right .menu_account ul li.account_user_top {
	padding-right: 0px;
}

.nav_top .nav_top_right .menu_account ul li.account_user_top>a {
	display: inline-block;
	line-height: 1;
	border-right: 1px solid #333333;
	padding-right: 20px;
}

.nav_top .nav_top_right .menu_account ul li#account_top {
	margin-top: -1px;
	padding-top: 1px;
}

.nav_top .nav_top_right .menu_account ul li#account_top a {
	padding-right: 30px;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.nav_top .nav_top_right .menu_account ul li#account_top:after {
		content: '';
		background: transparent;
		display: block;
		bottom: -1px;
		position: absolute;
		left: 0;
		right: 0;
		height: 2px;
	}
}

.nav_top .nav_top_right .menu_account ul li#account_top .account_top_a {
	padding-right: 30px;
	display: inline-block;
	line-height: 38px;
	font-size: 12px;
	color: #043458;
	clear: both;
	text-transform: none;
}

.nav_top .nav_top_right .menu_account ul li#account_top .account_top_a:before {
	content: '';
	position: absolute;
	width: 1px;
	height: 12px;
	background: #333333;
	right: 0;
	top: 50%;
	margin-top: -6px;
}

.nav_top .nav_top_right .menu_account ul li#account_top:hover .account_top_a {
	color: #ffffff;
}

.nav_top .nav_top_right .menu_account ul li#account_top:hover .account_top_a .awrrow {
	border-top-color: #ffffff;
	border-top-width: 0;
	border-bottom: 8px solid #ffffff;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.nav_top .nav_top_right .menu_account ul li#account_top:hover:after {
		background: #043458;
	}
}

.nav_top .nav_top_right .menu_account ul li.usertop_register {
	background: #043458;
	padding-left: 0;
	padding-right: 0;
}

.nav_top .nav_top_right .menu_account ul li.usertop_register:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #043458;
	left: 0;
	top: -1px;
}

.nav_top .nav_top_right .menu_account ul li.usertop_register a {
	color: #fff;
	padding-left: 31px;
	padding-right: 31px;
	display: block;
}

.nav_top .nav_top_left ul li:first-child {
	background: #ffffff;
}

.page-careerPage .nav_top .nav_top_left ul li:first-child {
	background: transparent;
}

.page-channel .nav_top .nav_top_left ul li:first-child {
	background: transparent;
}

.page-careerPage .nav_top .nav_top_left ul li:first-child:hover {
	background: #ffffff;
}

.page-channel .nav_top .nav_top_left ul li:first-child:hover {
	background: #ffffff;
}

.nav_top .nav_top_left ul li:first-child a {
	font-weight: bold;
}

.page-careerPage .nav_top .nav_top_left ul li:first-child a {
	font-weight: normal;
}

.page-channel .nav_top .nav_top_left ul li:first-child a {
	font-weight: normal;
}

.fix {
	background: #ffffff;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 900;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
	-o-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.fix .nav_top {
	height: 0;
	overflow: hidden;
	visibility: hidden;
}

header.fix {}

.mobile_menu_trigger {
	float: right;
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	color: #ffffff;
	background: #043458;
	font-weight: bold;
	padding: 17px 14px;
}

.mobile_menu_trigger:hover,
.mobile_menu_trigger:focus {
	color: #ffffff;
}

.mobile_menu_wrapper {
	margin: 0px auto;
	padding: 0px;
	position: absolute;
	background: #043458;
	z-index: 999999;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-sm-transition: all 0.3s ease;
	text-align: left;
	width: 0;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
}

.mobile_menu_wrapper .mobile_menu_top {
	background: #f2f1f1;
	position: relative;
}

.mobile_menu_wrapper .mobile_menu_top .close {
	position: absolute;
	right: 11px;
	top: 15px;
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/close-menu-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	text-indent: -99999px;
	z-index: 100;
	text-shadow: none;
	opacity: 1;
}

.mobile_menu_wrapper .mobile_menu_top ul {
	padding: 0;
	overflow: hidden;
}

.mobile_menu_wrapper .mobile_menu_top ul li {
	float: left;
	color: #043458;
	background: #f2f1f1;
}

.page-careerPage .mobile_menu_wrapper .mobile_menu_top ul li.careers {
	background: #043458;
	color: #ffffff;
	font-weight: bold;
}

.page-careerPage .mobile_menu_wrapper .mobile_menu_top ul li.careers a {
	color: #ffffff;
	padding-left: 5px;
	padding-right: 5px;
}

.page-channel .mobile_menu_wrapper .mobile_menu_top ul li.channel {
	background: #043458;
	color: #ffffff;
	font-weight: bold;
}

.page-channel .mobile_menu_wrapper .mobile_menu_top ul li.channel a {
	color: #ffffff;
	padding-left: 5px;
	padding-right: 5px;
}

.mobile_menu_wrapper .mobile_menu_top ul li a {
	color: #043458;
	line-height: 80px;
	padding: 7px 5px 6px 0px;
	display: block;
	font-size: 24px;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_top ul li a {
		font-size: 12px;
		line-height: 40px;
	}
}

.mobile_menu_wrapper .mobile_menu_top ul li:first-child {
	background: #043458;
	color: #ffffff;
	font-weight: bold;
}

.page-careerPage .mobile_menu_wrapper .mobile_menu_top ul li:first-child {
	background: #f2f1f1;
	font-weight: normal;
}

.page-channel .mobile_menu_wrapper .mobile_menu_top ul li:first-child {
	background: #f2f1f1;
	font-weight: normal;
}

.mobile_menu_wrapper .mobile_menu_top ul li:first-child a {
	color: #ffffff;
	padding: 7px 15px 6px 10px;
}

.page-careerPage .mobile_menu_wrapper .mobile_menu_top ul li:first-child a {
	color: #043458;
}

.page-channel .mobile_menu_wrapper .mobile_menu_top ul li:first-child a {
	color: #043458;
}

.mobile_menu_wrapper .mobile_menu {
	text-align: left;
	padding: 0 0 13px 0;
	margin-top: 14px;
	text-transform: none;
}

.mobile_menu_wrapper .mobile_menu ul {
	margin: 0px;
	padding: 0px;
}

.mobile_menu_wrapper .mobile_menu ul li {
	padding: 0px;
	margin: 0px;
	position: relative;
	list-style: none;
	float: none;
}

.mobile_menu_wrapper .mobile_menu ul li a {
	display: block;
	padding: 0 30px;
	color: #ffffff;
	font-size: 24px;
	line-height: 80px;
	font-weight: bold;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu ul li a {
		font-size: 12px;
		line-height: 40px;
		color: #a6b8c5;
	}
}

.mobile_menu_wrapper .mobile_menu ul li .plus {
	position: absolute;
	z-index: 1000;
	top: 0px;
	right: 0;
	text-align: center;
	font-size: 24px;
	cursor: pointer;
	color: #ffffff;
	padding-right: 16px;
	width: 100%;
	padding-left: 90%;
	height: 40px;
}

.mobile_menu_wrapper .mobile_menu ul li .plus ._minus {
	font-size: 0;
	opacity: 0;
	visibility: hidden;
	display: none;
}

.mobile_menu_wrapper .mobile_menu ul li .plus .awrrow.right {
	border-bottom-width: 0;
	margin-top: 5px;
	border-right: 8px solid #fff;
	border-top: 0;
	border-width: 8px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 4px;
}

.mobile_menu_wrapper .mobile_menu ul li .plus .awrrow.top {
	border-top-color: #fff;
	border-top: 6px solid #fff;
	border-width: 6px;
	margin-top: 15px;
	margin-right: -7px;
}

.mobile_menu_wrapper .mobile_menu ul li.open .plus ._plus {
	font-size: 0;
	opacity: 0;
	visibility: hidden;
	display: none;
}

.mobile_menu_wrapper .mobile_menu ul li.open .plus ._minus {
	font-size: 24px;
	opacity: 1;
	visibility: visible;
	display: inline-block;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu ul li.open .plus ._minus {
		font-size: 16px;
	}
}

.mobile_menu_wrapper .mobile_menu ul li.open ul {
	background: #0082a9;
	padding: 7px 0 7px 20px;
	margin: 13px 0;
}

.mobile_menu_wrapper .mobile_menu ul li.open ul li a {
	font-weight: normal;
	padding-left: 30px;
	font-size: 12px;
}

.mobile_menu_wrapper .mobile_menu ul li.open ul li .plus .awrrow.top {
	border-top-color: #fff;
}

.mobile_menu_wrapper .mobile_menu ul li.open ul li.open .plus .awrrow.top {
	border-top-color: #fff;
}

.mobile_menu_wrapper .mobile_menu ul li.open ul li:last-child a {
	color: #ffffff;
}

.mobile_menu_wrapper .mobile_menu ul li ul {
	display: none;
}

.mobile_menu_wrapper .mobile_menu ul li ul li ul li a {
	padding: 15px 45px;
}

.mobile_menu_wrapper .mobile_menu ul li.free_trial a {
	color: #ee2d42;
}

.mobile_menu_wrapper .mobile_menu ul li.last a {
	font-weight: normal;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu ul.nav__links li a {
		color: #ffffff;
	}
}

.mobile_menu_wrapper .mobile_menu ul.dropdown {
	position: relative;
	width: 100%;
	background: #0082a9;
}

.mobile_menu_wrapper .mobile_menu ul.nav__links--products li:last-child a {
	color: #ee2d42;
}

.mobile_menu_wrapper .mobile_menu_bottom {
	background: #fff;
	padding: 0px;
}

.mobile_menu_wrapper .mobile_menu_bottom li a {
	color: #043458;
	line-height: 80px;
	font-weight: bold;
	font-size: 24px;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom li a {
		font-size: 12px;
		line-height: 28px;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom li a span {
	margin-left: 30px;
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account {
	padding: 0px 75px;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom .mobile_account {
		padding: 12px 0px 12px 35px;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li {
	position: relative;
	width: 50%;
	float: left;
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top {
	color: #043458;
	line-height: 80px;
	font-size: 24px;
	font-weight: bold;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top {
		font-size: 12px;
		line-height: 28px;
		width: 44%;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top .awrrow {
	margin-left: 100px;
	text-align: right;
	border-width: 15px;
	border-right: 15px solid #043458;
	border-top: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top .awrrow {
		border-width: 8px;
		border-right: 8px solid #043458;
		top: 0;
		float: right;
		margin-left: 0;
		margin-top: 7px;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top .dropdown {
	display: none;
	position: relative;
	width: 100%;
	background: #0082a9;
	height: 100%;
	margin-left: -75px;
	margin-right: -75px;
	min-width: 640px;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top .dropdown {
		margin-bottom: -12px;
		margin-top: 13px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top .dropdown li {
	float: none;
	width: 100%;
	padding-left: 90px;
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top .dropdown li a {
	color: #ffffff;
	font-size: 28px;
	line-height: 80px;
	font-weight: normal;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top .dropdown li a {
		font-size: 12px;
		line-height: 40px;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top.show_drowpdown .awrrow {
	border-bottom: 15px solid #043458;
	border-right: 0;
	border-top: 0;
	margin-left: 115px;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top.show_drowpdown .awrrow {
		margin-left: 20px;
		border-bottom: 8px solid #043458;
		border-width: 8px;
		top: 0px;
		margin-top: -20px;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.account_top.show_drowpdown .dropdown {
	display: block;
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li:first-child:after {
	content: '';
	height: 25px;
	width: 1px;
	background: #333333;
	position: absolute;
	right: 0;
	top: 29px;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li:first-child:after {
		height: 15px;
		top: 7px;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.pull-right {
	padding-left: 70px;
}

@media(max-width:767px) {
	.mobile_menu_wrapper .mobile_menu_bottom .mobile_account ul li.pull-right {
		padding-left: 20px;
	}
}

.mobile_menu_wrapper .mobile_menu_bottom .language {
	text-align: center;
	background: #f2f1f1;
}

.mobile_menu_wrapper .mobile_menu_bottom .language ul li a {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	background: #043458;
	color: #ffffff;
	display: block;
	line-height: 65px;
	text-align: center;
	margin-top: 7px;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: bold;
}

.mobile_menu_wrapper .mobile_menu_bottom .language ul li:last-child a {
	background: #ffffff;
	border: 2px solid #043458;
	color: #043458;
	font-size: 30px;
	font-weight: bold;
}

.push-right .mobile_menu_wrapper {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

@media(max-width:767px) {
	.push-right .overlap_mobile {
		background: rgba(0, 0, 0, 0.7);
		position: absolute;
		z-index: 10000;
		height: 100%;
		width: 100%;
		top: 0;
		bottom: 0;
		overflow: hidden;
	}
}

.navigation--top {
	padding: 0 0 0 20px;
}

.navigation--top .nav__left.js-site-logo {
	padding: 9px 0px 0px 0px;
}

.navigation {
	float: left;
}

.navigation .navigation--bottom {
	position: relative;
	left: 0;
	width: auto;
	border-bottom: 0;
	background: transparent;
}

.navigation .navigation--bottom .nav__link {
	width: auto;
}

.navigation .navigation--bottom .nav__links--products {
	padding-left: 0px;
	padding-right: 0;
}

.navigation .navigation--bottom .nav__links--products li {
	float: left;
	padding: 21px 0px 21px 0;
	border-bottom: 0;
	position: relative;
}

.language-zh .navigation .navigation--bottom .nav__links--products li {
	padding: 23px 0px 23px 0;
}

.navigation .navigation--bottom .nav__links--products li a {
	color: #333333;
	border-left: 1px solid #333333;
	font-weight: bold;
	font-size: 16px;
	line-height: 16px;
	padding: 0 15px 0px 12px;
	text-transform: none;
}

.language-en .navigation .navigation--bottom .nav__links--products li a {
	padding: 0 10px 0px 10px;
}

@media(min-width:1025px) and (max-width:1365px) {
	.navigation .navigation--bottom .nav__links--products li a {
		padding: 0 10px 0px 10px;
	}

	body.language-zh .navigation .navigation--bottom .nav__links--products li a {
		padding: 0 15px 0px 12px;
	}

	body.language-en .navigation .navigation--bottom .nav__links--products li a {
		padding: 0 10px 0px 10px;
	}
}

.navigation .navigation--bottom .nav__links--products li a:hover {
	color: #0082a9;
}

.navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub span.top {
	vertical-align: top;
	top: 5px;
}

.navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub span.bottom {
	bottom: 31px\0;
}

.navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub:hover {
	color: #333333;
}

.navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub:hover a {
	color: #333333;
}

.navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub:hover span.top {
	filter: alpha(opacity=0);
}

.navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub:hover span.bottom {
	bottom: 31px\0;
	filter: alpha(opacity=100);
	visibility: visible\0;
}

.navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub:hover span.top {
	visibility: hidden;
	opacity: 0;
	filter: alpha(opacity=0);
}

.navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub:hover span.bottom {
	bottom: 31px;
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=100);
}

.navigation .navigation--bottom .nav__links--products li:hover a {
	color: #0082a9;
}

.navigation .navigation--bottom .nav__links--products li:first-child a {
	border-left: 0;
	padding-left: 45px;
}

.navigation .navigation--bottom .nav__links--products li:first-child a span {
	vertical-align: middle;
}

.navigation .navigation--bottom .nav__links--products li:nth-child(2) a {
	border-left: 0;
}

.navigation .navigation--bottom .nav__links--products li:last-child a {
	color: #ee2d42;
	padding-right: 0;
}

.navigation .navigation--bottom .nav__links--products li .dropdown {
	position: absolute;
	background: #ffffff;
	width: 100%;
	top: 100%;
	margin-top: -1px;
	box-shadow: 3px 5px 8px rgba(195, 195, 195, 0.85);
	-moz-box-shadow: 3px 5px 8px rgba(195, 195, 195, 0.85);
	-webkit-box-shadow: 3px 5px 8px rgba(195, 195, 195, 0.85);
	-o-box-shadow: 3px 5px 8px rgba(195, 195, 195, 0.85);
}

.navigation .navigation--bottom .nav__links--products li .dropdown li {
	float: none;
	padding: 0;
}

.navigation .navigation--bottom .nav__links--products li .dropdown li a {
	color: #333333;
	padding: 20px 0px 20px 20px;
	font-weight: normal;
}

.navigation .navigation--bottom .nav__links--products li .dropdown li a:hover {
	color: #ffffff;
	background: #0082a9;
	font-weight: bold;
}

.navigation .navigation--bottom .nav__links--products:hover a span {
	vertical-align: middle;
}

.navigation .navigation--bottom .nav__links--products:hover a .bottom {
	display: inline-block;
}

.navigation .navigation--bottom .nav__links--products:hover a .top {
	display: none;
}

.navigation .navigation--bottom .nav__links--products .show-sub .nav__link a:after {
	display: none;
}

.navigation .navigation--bottom .navigation__overflow {
	height: auto;
	left: 0;
}

.sticky-nav-top {
	display: none;
}

.group_search_menuaccount {
	display: table;
}

.group_search_menuaccount .site-search {
	margin-top: 0px;
	display: table-cell;
	vertical-align: middle;
	padding-right: 37px;
	padding-top: 0px;
}

.group_search_menuaccount .site-search .btn-link {
	padding: 10px 0 0 0;
	background: url('../_ui/responsive/theme-alpha/img/icon-search.png') no-repeat 0 0;
	width: 20px;
	height: 20px;
	margin-top: 0px;
	margin-left: 5px;
	opacity: 1;
	filter: none;
}

.group_search_menuaccount .site-search .btn-link span {
	color: #333333;
	font-size: 0;
}

.group_search_menuaccount .site-search a {
	color: #333333;
	font-size: 12px;
	line-height: 38px;
}

.group_search_menuaccount .site-search a:hover {
	color: #0082a9;
}

.group_search_menuaccount .site-search .input-group-btn {
	padding-right: 10px;
}

.group_search_menuaccount .site-search .js-site-search-input {
	color: #333333;
	background: transparent;
	border: 0;
	margin-top: 2px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	padding: 6px;
	font-size: 12px;
}

.group_search_menuaccount .site-search .js-site-search-input::-webkit-input-placeholder {
	color: #333333;
	text-transform: capitalize;
	font-size: 12px;
}

.group_search_menuaccount .site-search .js-site-search-input::-moz-placeholder {
	color: #333333;
	text-transform: capitalize;
	font-size: 12px;
}

.group_search_menuaccount .site-search .js-site-search-input:-ms-input-placeholder {
	color: #333333;
	text-transform: capitalize;
	font-size: 12px;
}

.group_search_menuaccount .site-search .js-site-search-input:-moz-placeholder {
	color: #333333;
	text-transform: capitalize;
	font-size: 12px;
}

.language_header {
	position: relative;
	background: transparent;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 40px;
	cursor: pointer;
	width: 81px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-sm-transition: all 0.3s;
}

@media(max-width:767px) {
	.language_header {
		list-style: none;
		width: auto;
		padding: 5px 0;
	}
}

.language_header .language_code {
	color: #043458;
}

@media(max-width:767px) {
	.language_header .language_code {
		display: none;
	}
}

.language_header .language_code_color {
	color: #043458;
}

.language_header .language_code_color {
	color: #043458;
}

.language_header .awrrow {
	right: 20px;
	margin-left: 0;
	border-top-color: #043458;
	position: absolute;
	top: 50%;
	margin-top: -4px;
	vertical-align: middle;
}

.language_header .language-list {
	position: absolute;
	width: 100%;
	left: 0;
	display: none;
}

@media(max-width:767px) {
	.language_header .language-list {
		visibility: visible;
		opacity: 1;
		display: block;
		position: relative;
		font-weight: bold;
		text-align: center;
	}
}

.language_header .language-list li {
	display: block;
}

@media(max-width:767px) {
	.language_header .language-list li {
		display: inline-block;
		width: 34px;
		height: 34px;
		line-height: 34px;
		color: #043458;
		border: 1px solid #043458;
		border-radius: 50%;
		padding: 0;
		text-align: center;
		margin-left: 10px;
		margin-right: 10px;
	}
}

@media(max-width:767px) and (max-width:767px) {
	.language_header .language-list li.selected {
		color: #ffffff;
		background: #043458;
	}
}

@media(max-width:767px) {
	.language_header .language-list li:first-child {
		margin-left: 0px;
		margin-right: 12px;
	}
}

@media(max-width:767px) {
	.language_header .language-list li:last-child {
		margin-left: 12px;
		margin-right: 0;
	}
}

@media(max-width:767px) {
	.language_header:hover {
		background: transparent;
	}
}

.language_header:hover .language_code {
	color: #043458;
}

.language_header:hover .language-list {
	display: block;
}

.language_header:hover .awrrow {
	right: 0;
	margin-left: 0px;
	border-top-color: #ffffff;
}

.language_header:hover .awrrow.top {
	visibility: hidden;
	opacity: 0;
}

.language_header:hover .awrrow.bottom {
	visibility: visible;
	opacity: 1;
	border-bottom-width: 8px;
	margin-top: -4px;
	border-bottom-color: #fff;
	bottom: auto;
	z-index: 3;
	right: 20px;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.header .nav_top .nav_top_right .menu_account ul li.language_header.show-sub {
		background: #043458;
	}

	.header .nav_top .nav_top_right .menu_account ul li.language_header.show-sub .language_code {
		color: #ffffff;
	}

	.header .nav_top .nav_top_right .menu_account ul li.language_header.show-sub .language-list {
		visibility: visible;
		opacity: 1;
	}

	.header .nav_top .nav_top_right .menu_account ul li.language_header.show-sub .awrrow {
		right: 0;
		margin-left: 7px;
		border-top-color: #ffffff;
	}

	.header .nav_top .nav_top_right .menu_account ul li.language_header.show-sub .awrrow.top {
		visibility: hidden;
		opacity: 0;
	}

	.header .nav_top .nav_top_right .menu_account ul li.language_header.show-sub .awrrow.bottom {
		visibility: visible;
		opacity: 1;
		border-bottom-width: 8px;
		margin-top: 14px;
		border-bottom-color: #fff;
		bottom: auto;
		z-index: 3;
		right: 35%;
	}
}

.nav_top .nav_top_right .menu_account ul li.language_header {
	cursor: default;
	padding-left: 17px;
	padding-right: 20px;
}

.nav_top .nav_top_right .menu_account ul li.language_header .language-list {
	background: #043458;
}

.nav_top .nav_top_right .menu_account ul li.language_header .language-list li {
	padding-right: 0;
	padding-left: 0;
	text-align: center;
	cursor: pointer;
	color: #999999;
}

.nav_top .nav_top_right .menu_account ul li.language_header .language-list li:hover {
	background: #0082a9;
	color: #ffffff;
}

.nav_top .nav_top_right .menu_account ul li.language_header .language-list li.selected {
	cursor: default;
	color: #ffffff;
}

@media(max-width:767px) {
	.language-zh .language_header .language-list li {
		line-height: 33px;
	}
}

@media(max-width:767px) {
	.language_header.disable_Language {
		display: none;
	}
}

.language_header.disable_Language:hover .language-list {
	display: none;
}

.language_header.show-sub.disable_Language .language-list {
	display: none;
}

.nav_top .nav_top_right .menu_account ul li.disable_Language {
	display: none;
}

.nav_top .nav_top_right .menu_account ul li.disable_Language:hover {
	background: transparent;
}

.nav_top .nav_top_right .menu_account ul li.disable_Language:hover .language_code {
	color: #043458;
}

.nav_top .nav_top_right .menu_account ul li.disable_Language:hover.show-sub:hover .language_code {
	color: #043458;
}

.nav_top .nav_top_right .menu_account ul li.disable_Language:hover .awrrow.top {
	visibility: visible;
	opacity: 1;
	border-top-color: #043458;
}

.nav_top .nav_top_right .menu_account ul li.disable_Language:hover .awrrow.bottom {
	visibility: hidden;
	opacity: 0;
}

.nav_top .nav_top_right .menu_account ul li.disable_Language:hover.show-sub:hover .awrrow.top {
	visibility: visible;
	opacity: 1;
	border-top-color: #043458;
}

.nav_top .nav_top_right .menu_account ul li.disable_Language:hover.show-sub:hover .awrrow.bottom {
	visibility: hidden;
	opacity: 0;
}

footer {
	background: none;
	padding-top: 0px;
	margin-top: 0;
	position: relative;
	z-index: 20;
	clear: both;
}

@media(min-width:769px) {
	footer {
		min-width: 1181px;
	}
}

.wrapper_footer {
	background: #043458;
	color: #ffffff;
	padding: 0;
	position: relative;
}

.wrapper_footer:before {
	content: '';
	display: block;
	width: 100%;
	height: 43px;
	background: url('../_ui/responsive/theme-alpha/img/bg_footer.png') center 0 no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -42px;
	left: 0;
}

@media(max-width:767px) {
	.wrapper_footer:before {
		height: 15px;
		top: -14px;
	}
}

.wrapper_footer .col {
	width: 23%;
	float: left;
	padding: 0 80px 0 10px;
}

@media(max-width:767px) {
	.wrapper_footer .col {
		padding: 0 10px;
		width: 50%;
	}

	.wrapper_footer .col:nth-child(2n+1) {
		clear: both;
	}
}

.wrapper_footer .col:first-child {
	width: 15%;
	padding-right: 25px;
}

.wrapper_footer .col:last-child {
	width: 16%;
	padding-right: 0;
}

@media(max-width:767px) {
	.wrapper_footer .col:last-child {
		width: 50%;
	}
}

@media(max-width:767px) {
	body.language-en .wrapper_footer .col .child54 .icon-link-out {
		bottom: 0;
		top: initial;
		margin-bottom: 5px;
	}
}

.wrapper_footer .col .child53,
.wrapper_footer .col .child54 {
	position: relative;
}

.wrapper_footer .col .child53 .icon-link-out,
.wrapper_footer .col .child54 .icon-link-out {
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	margin-left: 5px;
}

@media(max-width:767px) {

	.wrapper_footer .col .child53 .icon-link-out,
	.wrapper_footer .col .child54 .icon-link-out {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/link-out-small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 10px;
		height: 10px;
	}
}

.wrapper_footer .logo_footer {
	margin-top: 20px;
}

@media(max-width:767px) {
	.wrapper_footer .logo_footer {
		max-width: 91px;
	}
}

.wrapper_footer h3 {
	text-transform: uppercase;
	margin-top: 18px;
	margin-bottom: 0px;
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	color: #ffffff;
}

@media(max-width:767px) {
	.wrapper_footer h3 {
		font-size: 12px;
		line-height: 18px;
	}
}

.wrapper_footer a {
	color: #a6b8c5;
	font-size: 14px;
	line-height: 24px;
}

@media(max-width:767px) {
	.wrapper_footer a {
		font-size: 12px;
		line-height: 18px;
	}
}

.wrapper_footer .footer {
	padding: 20px 80px 37px 80px;
	font-size: 14px;
	line-height: 24px;
	color: #a6b8c5;
}

@media(max-width:767px) {
	.wrapper_footer .footer {
		padding: 20px 0 40px 0;
		font-size: 10px;
		line-height: 18px;
	}
}

.wrapper_footer .hotline_footer {
	margin-top: 15px;
	margin-bottom: 25px;
}

@media(max-width:767px) {
	.wrapper_footer .hotline_footer {
		margin-bottom: 0;
		margin-top: -48px;
	}
}

.wrapper_footer .hotline_footer .hoteline a {
	font-size: 14px;
	color: #ffffff;
	font-weight: bold;
}

@media(max-width:767px) {
	.wrapper_footer .hotline_footer .hoteline a {
		font-size: 12px;
	}
}

.wrapper_footer .hotline_footer .email a {
	font-size: 14px;
	color: #ffffff;
	font-weight: bold;
	cursor: auto;
}

.wrapper_footer .hotline_footer .email a a:-webkit-any-link {
	cursor: auto;
}

@media(max-width:767px) {
	.wrapper_footer .hotline_footer .email a {
		font-size: 10px;
	}
}

.wrapper_footer .hotline_footer .email a:hover {
	color: #0082a9;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.wrapper_footer .hotline_footer .email a:hover {
		color: #ffffff;
	}
}

.wrapper_footer .follow_footer {
	margin-bottom: 8px;
}

@media(max-width:767px) {
	.wrapper_footer .follow_footer {
		margin-bottom: 0px;
	}
}

.wrapper_footer .qr_code_footer {
	padding-left: 7px;
	background: #ffffff;
	width: 100px;
	padding: 10px;
}

.wrapper_footer .qr_code_footer img {
	width: 80px;
	background: #fff;
}

.wrapper_footer .footer_copyright {
	background: #ffffff;
	color: #043458;
	padding-bottom: 0;
	padding-top: 0;
}

.wrapper_footer .footer_copyright a {
	color: #043458;
	font-size: 14px;
}

@media(max-width:767px) {
	.wrapper_footer .footer_copyright a {
		font-size: 24px;
	}
}

.wrapper_footer .footer_copyright .footer {
	padding-top: 10px;
	padding-bottom: 20px;
}

@media(max-width:767px) {
	.wrapper_footer .footer_copyright .footer {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.wrapper_footer .footer_copyright .copyright {
	line-height: 40px;
	font-size: 14px;
	float: left;
	color: #043458;
}

@media(max-width:767px) {
	.wrapper_footer .footer_copyright .copyright {
		line-height: 18px;
		font-size: 10px;
		float: none;
		max-width: 75%;
	}
}

.wrapper_footer .footer_copyright .copyright>span {
	display: inline-block;
	line-height: 40px;
}

@media(max-width:767px) {
	.wrapper_footer .footer_copyright .copyright>span {
		display: block;
		line-height: 18px;
	}
}

.wrapper_footer .footer_copyright .copyright>span:last-child {
	font-family: "Microsoft Yahei", Tahoma, Helvetica, Arial, "微软雅黑", STXihei, "华文细黑", sans-serif;
	line-height: 40px;
	font-size: 12px;
}

@media(max-width:767px) {
	.wrapper_footer .footer_copyright .copyright>span:last-child {
		font-size: 10px;
		line-height: 17px;
	}
}

.wrapper_footer .footer_copyright .footer_navigation {
	font-weight: bold;
	float: right;
	margin-top: 0;
	line-height: 40px;
	font-size: 14px;
	color: #043458;
}

@media(max-width:767px) {
	.wrapper_footer .footer_copyright .footer_navigation {
		margin-top: -22px;
		font-size: 10px;
		line-height: 25px;
	}
}

.wrapper_footer .footer_copyright .footer_navigation a {
	font-size: 14px;
	line-height: 40px;
	color: #043458;
}

@media(max-width:767px) {
	.wrapper_footer .footer_copyright .footer_navigation a {
		font-size: 10px;
		line-height: 25px;
	}
}

.wrapper_footer .icon-social-footer {
	margin-top: 15px;
}

.wrapper_footer .icon-social-footer ul {
	padding: 0;
	margin: 0;
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul {
		margin-left: -5px;
		margin-right: -5px;
	}
}

.wrapper_footer .icon-social-footer ul li {
	margin: 0 2px;
	cursor: pointer;
	padding: 0;
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li {
		margin: 0 1px;
	}
}

.wrapper_footer .icon-social-footer ul li:first-child {
	margin-left: 0;
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li:first-child {
		margin-left: 5px;
	}
}

.wrapper_footer .icon-social-footer ul li.wechat {
	display: none;
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li.wechat {
		padding-top: 1px;
		display: inline-block;
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-wechat-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

.wrapper_footer .icon-social-footer ul li.wechat span {
	font-size: 0;
}

.wrapper_footer .icon-social-footer ul li.weibo {
	margin-left: 0px;
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li.weibo {
		margin-top: 1px;
		margin-left: 5px;
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-weibo-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

.wrapper_footer .icon-social-footer ul li.weibo:hover {
	background-image: url(../picture/sprites_img.png);
	background-position: -1890px -583px;
	width: 30px;
	height: 30px;
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li.weibo:hover {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-weibo-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li.douban {
		margin-left: 7px;
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-douban-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

.wrapper_footer .icon-social-footer ul li.douban:hover {
	background-image: url(../picture/sprites_img.png);
	background-position: -1350px -583px;
	width: 30px;
	height: 30px;
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li.douban:hover {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-douban-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li.qqzone {
		margin-left: 5px;
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-QQzone-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

.wrapper_footer .icon-social-footer ul li.qqzone:hover {
	background-image: url(../picture/sprites_img.png);
	background-position: -1530px -583px;
	width: 30px;
	height: 30px;
}

@media(max-width:767px) {
	.wrapper_footer .icon-social-footer ul li.qqzone:hover {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-QQzone-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

.wrapper_footer .icon-social-footer ul li a {
	display: inline-block;
	text-indent: -9999px;
	width: 100%;
	height: 100%;
}

.wrapper_footer .icon-social-footer .tooltips .tooltip_content {
	bottom: 100%;
	top: 0;
	margin-top: -235px;
	left: -87px;
	width: 200px;
	height: 200px;
	padding: 24px;
	background: #f4f4f4;
}

.wrapper_footer .footer_security_record {
	width: 300px;
	padding: 20px 0;
}

@media(max-width:767px) {
	.wrapper_footer .footer_security_record {
		width: 100%;
	}
}

.wrapper_footer .footer_security_record .link {
	text-decoration: none;
	height: 20px;
	line-height: 20px;
}

.wrapper_footer .footer_security_record img {
	float: left;
}

.wrapper_footer .footer_security_record .text {
	float: left;
	height: 20px;
	line-height: 20px;
	margin: 0px 0px 0px 5px;
	color: #939393;
}

@media(max-width:767px) {
	.wrapper_footer .footer_security_record .text {
		font-size: 12px;
	}
}

@media(max-width:767px) {
	.wrapper_footer .footer_address {
		width: 100%;
	}
}

.wrapper_footer .footer_address p {
	float: left;
	height: 20px;
	line-height: 20px;
	margin: 0px 0px 0px 5px;
	color: #939393;
}

@media(max-width:767px) {
	.wrapper_footer .footer_address p {
		font-size: 12px;
		margin: 0px 0px 80px 0px;
	}
}

#colorbox {
	color: #043458;
}

@media(max-width:767px) {
	#colorbox {
		width: 80% !important;
		left: 10% !important;
		top: 0% !important;
	}
}

@media(max-width:767px) {
	#colorbox #cboxWrapper {
		width: 100% !important;
		margin-left: auto;
		margin-right: auto;
	}
}

#colorbox #cboxWrapper:after {
	content: '';
	display: block;
	width: 100%;
	height: 54px;
	background: url('../_ui/responsive/theme-alpha/img/bg-colorbox.png') center 0 no-repeat;
	bottom: 0px;
	left: 0;
}

#colorbox #cboxMiddleLeft,
#colorbox #cboxBottomLeft {
	width: 0;
}

#colorbox #cboxMiddleRight,
#colorbox #cboxBottomRight {
	width: 0;
}

#colorbox #cboxBottomCenter {
	height: 54px;
}

#colorbox #cboxContent {
	padding: 75px 0px 0px 0px;
	font-size: 18px;
	line-height: 28px;
	color: #043458;
	background: #d7dfe5;
}

@media(max-width:767px) {
	#colorbox #cboxContent {
		width: 100% !important;
		margin-left: auto;
		margin-right: auto;
	}
}

#colorbox #cboxLoadedContent {
	margin-top: 28px;
	padding: 15px 125px 10px 125px;
}

@media(max-width:767px) {
	#colorbox #cboxLoadedContent {
		padding: 10px;
		margin-top: 0px;
		width: auto !important;
		overflow: inherit !important;
	}
}

#colorbox #cboxLoadedContent .description {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 24px;
	padding-left: 15px;
}

@media(max-width:767px) {
	#colorbox #cboxLoadedContent .description {
		font-size: 12px;
		line-height: 17px;
		margin-top: 0px;
		margin-bottom: 10px;
		padding-left: 0;
	}
}

@media(max-width:767px) {
	#colorbox #cboxTitle .headline {
		text-align: center;
	}
}

#colorbox #cboxTitle .headline-text {
	color: #043458;
	font-size: 30px;
	line-height: 28px;
	text-align: center;
	font-weight: bold;
	margin-top: 35px;
}

@media(max-width:767px) {
	#colorbox #cboxTitle .headline-text {
		font-size: 20px;
		line-height: 14px;
	}
}

#colorbox .control-label {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	padding-left: 15px;
	margin-bottom: 7px;
}

@media(max-width:767px) {
	#colorbox .control-label {
		padding-left: 0px;
		font-size: 12px;
		line-height: 14px;
	}
}

#colorbox .form-control {
	width: 320px;
	height: 35px;
	margin-left: 15px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

@media(max-width:767px) {
	#colorbox .form-control {
		width: 100%;
		margin-left: 0px;
		font-size: 12px;
		line-height: 14px;
		height: 31px;
	}
}

#colorbox .btn-primary {
	border: 0;
}

#colorbox .forgotten-password {
	width: 570px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

@media(max-width:767px) {
	#colorbox .forgotten-password {
		width: 100%;
	}
}

#colorbox .forgotten-password .btn-primary {
	position: absolute;
	top: 69%;
	margin-top: 38px;
	right: 23%;
	height: 33px;
	width: 185px;
	margin-right: 6px;
}

@media(max-width:767px) {
	#colorbox .forgotten-password .btn-primary {
		position: relative;
		right: 0;
		top: 0;
		width: 100%;
		margin-top: 0;
		font-size: 12px;
		line-height: 16px;
		height: 31px;
	}
}

#colorbox #cboxClose {
	background-image: url(../picture/sprites_img.png);
	background-position: -1005px -583px;
	width: 40px;
	height: 40px;
	top: 30px;
	right: 23px;
	background-size: inherit;
	font-size: 0;
}

@media(max-width:767px) {
	#colorbox #cboxClose {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-close-poup-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 20px;
		height: 20px;
	}
}

.fancybox-wrap .fancybox-inner {
	height: auto !important;
}

@media(max-width:767px) {
	.fancybox-wrap .fancybox-inner .headline {
		text-align: center;
	}
}

.fancybox-wrap .fancybox-inner .headline-text {
	color: #043458;
	font-size: 30px;
	line-height: 28px;
	text-align: center;
	font-weight: bold;
	margin-top: 35px;
}

.fancybox-wrap .control-label {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	padding-left: 15px;
	margin-bottom: 7px;
}

.fancybox-wrap .form-control {
	width: 320px;
	height: 35px;
	margin-left: 15px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

@media(max-width:767px) {
	.fancybox-wrap .form-control {
		margin-left: 0px;
	}
}

.fancybox-wrap .btn-primary {
	border: 0;
}

.fancybox-wrap .forgotten-password {
	width: 570px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

@media(max-width:767px) {
	.fancybox-wrap .forgotten-password {
		width: 90%;
		font-size: 12px;
		line-height: 17px;
	}
}

.fancybox-wrap .forgotten-password .btn-primary {
	position: absolute;
	top: 69%;
	margin-top: 38px;
	right: 23%;
	height: 33px;
	width: 185px;
	margin-right: 6px;
}

.fancybox-wrap .fancybox-close {
	background-image: url(../picture/sprites_img.png);
	background-position: -1005px -583px;
	width: 40px;
	height: 40px;
	top: 30px;
	right: 23px;
	background-size: inherit;
	font-size: 0;
}

@media(max-width:767px) {
	.fancybox-wrap .fancybox-close {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-close-poup-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 20px;
		height: 20px;
	}
}

.fancybox_popup {
	width: 1020px;
	margin: 0 auto;
}

@media(max-width:767px) {
	.fancybox_popup {
		width: 260px;
	}
}

.fancybox_popup .fancybox_popup_inner {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
}

.fancybox_popup .fancybox_popup_inner h2 {
	margin-top: 0;
	margin-bottom: 20px;
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner h2 {
		font-size: 20px;
		line-height: 14px;
	}
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner .description {
		font-size: 12px;
		line-height: 17px;
	}
}

.fancybox_popup .fancybox_popup_inner .fancybox_popup_content {
	text-align: left;
	margin-top: 26px;
}

.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .control-group {
	position: relative;
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .control-group {
		margin-right: 15px;
	}
}

.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .control-label {
	display: block;
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .control-label {
		padding-left: 0px;
	}
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .control-label {
		font-size: 12px;
		line-height: 14px;
	}
}

.fancybox_popup .fancybox_popup_inner .fancybox_popup_content input.form-control {
	display: inline-block;
	height: 33px;
	margin-top: 2px;
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner .fancybox_popup_content input.form-control {
		font-size: 12px;
		line-height: 14px;
		width: 100%;
	}
}

.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .help-block {
	display: block;
	padding-left: 15px;
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .help-block {
		padding-left: 0px;
	}
}

.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .help-block a {
	color: #ee2d42;
}

.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .help-block a:hover {
	color: #0082a9;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .help-block a:hover {
		color: #ee2d42;
	}
}

.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .btn {
	position: absolute;
	top: 43px;
	right: 17px;
	margin-top: -6px;
	width: 185px;
	height: 33px;
}

@media(max-width:767px) {
	.fancybox_popup .fancybox_popup_inner .fancybox_popup_content .btn {
		font-size: 12px;
		line-height: 14px;
		position: relative;
		width: 100%;
		margin-left: 17px;
		top: 0;
	}
}

.breadcrumb-section {
	background: none;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
}

@media(max-width:767px) {
	.breadcrumb-section {
		display: none;
	}
}

.breadcrumb-section .breadcrumb {
	background: none;
	padding: 15px 0;
}

.breadcrumb-section .breadcrumb li {
	text-transform: none;
	font-size: 16px;
	line-height: 18px;
}

.breadcrumb-section .breadcrumb li a {
	color: #333333;
	font-size: 16px;
	border-right: 1px solid #333333;
	padding-right: 10px;
	line-height: 18px;
	text-transform: capitalize;
}

.breadcrumb-section .breadcrumb li a:hover {
	color: #0082a9;
}

.breadcrumb-section .breadcrumb li.active {
	color: #ee2d42;
	border-right: 0;
	font-weight: bold;
}

body.page-howToLearnPage .breadcrumb-section .breadcrumb li.active,
body.page-order .breadcrumb-section .breadcrumb li.active {
	color: #ee2d42;
}

.breadcrumb-section .breadcrumb li.active a {
	color: #ee2d42;
	border-right: 0;
	font-weight: bold;
}

.breadcrumb-section .breadcrumb li+li:before {
	content: "";
}

.breadcrumb-section--black .breadcrumb li a,
.breadcrumb-section--black .breadcrumb li.active {
	color: #333;
}

.breadcrumb-section--blue .breadcrumb li a,
.breadcrumb-section--blue .breadcrumb li.active {
	color: #043458;
}

.navigation+.breadcrumb-section {
	display: none;
}

.navigation .breadcrumb-section {
	display: none;
}

.chat_box_fix {
	position: fixed;
	top: 173px;
	right: 0px;
	z-index: 1000;
	width: 60px;
}

@media(max-width:767px) {
	.chat_box_fix {
		display: none;
	}
}

.chat_box_fix .chat_box {
	display: block;
	float: right;
	background: #043458;
	width: 100%;
	text-align: center;
	padding: 17px 0;
	position: relative;
	cursor: pointer;
}

.chat_box_fix .chat_box .span {
	position: absolute;
	background: #0082a9;
	color: #ffffff;
	padding: 17px 0;
	top: 0;
	height: 100%;
	width: 150px;
	font-size: 24px;
	right: -150px;
	display: none;
}

.chat_box_fix .chat_box .icon {
	line-height: 28px;
	line-height: 26px\0;
	line-height: 26px\9;
	animation-play-state: paused;
}

.chat_box_fix .chat_box .icon span {
	animation-play-state: paused;
}

.chat_box_fix .chat_box:hover {
	background: #0082a9;
}

.chat_box_fix .chat_box:hover span {
	display: inline-block;
	right: 100%;
	animation-play-state: running;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.chat_box_fix .chat_box:hover {
		background: #043458;
	}

	.chat_box_fix .chat_box:hover span {
		display: none;
		right: 0%;
	}
}

.chat_box_fix .chat_box:hover .dots span {
	background: #0082a9;
}

.chat_box_fix .chat_box:hover .dots span:nth-child(1) {
	opacity: 0;
	animation: dots 1s linear infinite;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.chat_box_fix .chat_box:hover .dots span:nth-child(1) {
		animation: none;
		opacity: 1;
		display: inline-block;
		background: #043458;
	}
}

.chat_box_fix .chat_box:hover .dots span:nth-child(2) {
	opacity: 0;
	animation: dots 1s linear infinite;
	animation-delay: 0.1s;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.chat_box_fix .chat_box:hover .dots span:nth-child(2) {
		animation: none;
		opacity: 1;
		display: inline-block;
		background: #043458;
	}
}

.chat_box_fix .chat_box:hover .dots span:nth-child(3) {
	opacity: 0;
	animation: dots 1s linear infinite;
	animation-delay: 0.2s;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.chat_box_fix .chat_box:hover .dots span:nth-child(3) {
		animation: none;
		opacity: 1;
		display: inline-block;
		background: #043458;
	}
}

.chat_box_fix .chat_box.call span {
	width: 100px;
}

.chat_box_fix .chat_box.call:hover .ring {
	animation: ring 1s linear infinite;
	-moz-animation: ring 1s linear infinite;
	-webkit-animation: ring 1s linear infinite;
	-o-animation: ring 1s linear infinite;
	-ms-animation: ring 1s linear infinite;
	animation-play-state: running;
}

.chat_box_fix ul li {
	padding: 12px;
	display: block;
	background: #043458;
}

.chat_box_fix ul li a {
	font-size: 24px;
	color: #fff;
}

.chat_box_fix ul li a span {
	display: none;
}

.chat_box_fix ul li:hover {
	background: #0082a9;
}

.chat_box_fix ul li:hover a span {
	display: inline-block;
}

.language-zh .chat_box_fix .chat_box.call span {
	width: 150px;
}

.language-zh .chat_box_fix .chat_box .icon {
	line-height: 24px;
}

@-moz-document url-prefix() {
	.chat_box_fix .chat_box .icon {
		line-height: 26px;
	}

	.language-zh .chat_box_fix .chat_box .icon {
		line-height: 23px;
	}
}

.news-help-div {
	right: 180px;
	top: 340px;
	position: fixed;
	z-index: 9997;
	width: 340px;
	height: 340px;
	display: none;
}

.news-help-div .pt {
	font-size: 24px;
	padding: 100px 0 0 50px;
	box-shadow: 0px 0px 40px #043458;
	background: #023359;
	color: #ffffff;
	width: 340px;
	height: 340px;
	border-radius: 50%;
}

.news-help-div .pt p {
	font-size: 16px;
}

.news-help-div img {
	border-radius: 50%;
	box-shadow: 0px 0px 20px #666;
	position: absolute;
	top: 80px;
	right: -120px;
}

.news-help-div a.bp {
	box-shadow: 0px 15px 50px #EE2D42;
	top: 230px;
	right: -10px;
	font-size: 20px;
	text-align: center;
	border-radius: 50%;
	width: 95px;
	height: 95px;
	line-height: 95px;
	position: absolute;
	background: #EE2D42;
	color: #ffffff;
}

.news-help-div .close {
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 10;
	position: absolute;
	top: 0;
	right: -100px;
	background: url(../_ui/responsive/theme-alpha/img/help-close.png) center / 40px 40px no-repeat;
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev,
.owl-carousel .owl-controls .owl-buttons .owl-next {
	width: 26px;
	height: 46px;
	z-index: 20;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev:before,
.owl-carousel .owl-controls .owl-buttons .owl-next:before {
	display: none;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev span.glyphicon,
.owl-carousel .owl-controls .owl-buttons .owl-next span.glyphicon {
	font-size: 0;
}

.owl-carousel .owl-controls .owl-buttons .owl-prev {
	left: 20%;
}

@media(max-width:767px) {
	.owl-carousel .owl-controls .owl-buttons .owl-prev {
		left: 10px;
	}
}

.owl-carousel .owl-controls .owl-buttons .owl-prev span {}

.owl-carousel .owl-controls .owl-buttons .owl-next {
	right: 20%;
}

@media(max-width:767px) {
	.owl-carousel .owl-controls .owl-buttons .owl-next {
		right: 10px;
	}
}

.owl-carousel .owl-controls .owl-buttons .owl-next span {}

#myCarousel {
	margin: 0;
}

#myCarousel .carousel-inner .item img {
	width: 100%;
}

.page-homepage .wt_slideshow {}

@media(max-width:767px) {
	.page-homepage .wt_slideshow {
		margin-top: 0px;
	}
}

.wt_slideshow {
	position: relative;
}

.wt_slideshow .loading_slideshow {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: slide-fide 3s linear;
	-moz-animation: slide-fide 3s linear;
	-webkit-animation: slide-fide 3s linear;
	-o-animation: slide-fide 3s linear;
	-ms-animation: slide-fide 3s linear;
}

.wt_slideshow .slideshow_carousel {
	margin: 0;
}

.wt_slideshow .slideshow img {
	width: 100%;
}

.wt_slideshow .slideshow_content {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	bottom: 0;
	text-align: center;
	padding-top: 200px\0;
}

.wt_slideshow .slideshow_content .slideshow_text {
	color: #ffffff;
}

@media(max-width:767px) {
	.wt_slideshow .slideshow_content .slideshow_text {
		position: relative;
		top: -18px;
	}
}

.wt_slideshow .slideshow_content .slideshow_text h2 {
	font-size: 100px;
	color: #ffffff;
	text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.wt_slideshow .slideshow_content .slideshow_text h2 {
		font-size: 40px;
		line-height: 33px;
		margin-top: 25px;
		margin-bottom: 5px;
		margin-top: 20px;
		margin-bottom: 10px;
	}
}

.wt_slideshow .slideshow_content .slideshow_text p {
	font-size: 30px;
	margin-bottom: 25px;
}

@media(max-width:767px) {
	.wt_slideshow .slideshow_content .slideshow_text p {
		margin-bottom: 10px;
		font-size: 15px;
		line-height: 23px;
		letter-spacing: 0.5px;
		text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
	}
}

.wt_slideshow .owl-controls .owl-buttons {
	display: none;
}

.wt_slideshow .bx-has-controls-direction {
	display: none;
}

.wt_slideshow .item {
	margin: 0;
	padding: 0;
}

.wt_slideshow .item img {
	width: 100%;
}

.wt_slideshow .item.active {
	display: block;
}

.wt_slideshow .chat_box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

.wt_slideshow .chat_box img {
	float: right;
	margin-top: 45px;
}

@media(max-width:767px) {
	.wt_slideshow .chat_box img {
		margin-top: 20px;
	}
}

.wt_slideshow .menu_slider {
	position: absolute;
	z-index: 100;
	bottom: 5%;
	left: 0;
	width: 100%;
	text-align: center;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider {
		bottom: 3%;
	}
}

.wt_slideshow .menu_slider ul li {
	margin: 0;
	padding: 0 5px;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-sm-transition: all 0.5s ease;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li {
		padding: 0;
	}
}

.wt_slideshow .menu_slider ul li a {
	color: #ffffff;
	font-size: 18px;
	vertical-align: middle;
	display: table-cell;
	width: 110px;
	height: 110px;
	border: 1px solid #ffffff;
	cursor: pointer;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li a {
		width: 55px;
		height: 55px;
		font-size: 11px;
		line-height: 14px;
		padding: 0 5px;
	}
}

.wt_slideshow .menu_slider ul li a:hover {
	border: 2px solid transparent;
	font-weight: bold;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li a:hover {
		border: 2px solid #ffffff;
	}
}

.wt_slideshow .menu_slider ul li a:hover .rotate_circle_text {
	padding: 0 15px;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li a:hover .rotate_circle_text {
		padding: 0;
	}
}

.wt_slideshow .menu_slider ul li a.selected {
	cursor: default;
}

.wt_slideshow .menu_slider ul li a.selected:hover {
	border: 0;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li a.selected:hover {
		border: 1px solid #ffffff;
	}
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li a .rotate_circle .pie {
		border: 0;
	}
}

.wt_slideshow .menu_slider ul li a .rotate_circle_text {
	padding: 0 16px;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li a .rotate_circle_text {
		padding: 0;
		font-size: 11px;
	}
}

.wt_slideshow .menu_slider ul li a.active {
	border: 2px solid #fff;
	font-weight: bold;
	padding: 0 15px;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li a.active .rotate_circle_text {
		padding: 0;
	}
}

.wt_slideshow .menu_slider ul li a.active:hover {
	border: 2px solid transparent;
	padding: 0 15px;
}

@media(max-width:767px) {
	.wt_slideshow .menu_slider ul li a.active:hover .rotate_circle_text {
		padding: 0;
	}
}

.bx-wrapper {
	margin-bottom: 0;
	border: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.bx-wrapper .bx-loading {
	height: 100%;
	width: 100%;
	background: #fff;
}

.bx-wrapper img {
	width: 100%;
}

@media(max-width:767px) {
	.page-homepage .wt_slideshow.banner_product .wrap-circle {
		bottom: 20px;
	}
}

.page-homepage .wt_slideshow.banner_product .wrap-circle .circle {
	width: 108px;
	height: 108px;
	border-width: 1px;
	position: relative;
}

.page-homepage .wt_slideshow.banner_product .wrap-circle .circle a {
	font-weight: normal;
	text-transform: none;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.page-homepage .wt_slideshow.banner_product .wrap-circle .circle a span {
	padding: 0 15px;
}

@media(max-width:767px) {
	.page-homepage .wt_slideshow.banner_product .wrap-circle .circle a span {
		padding: 0 5px;
	}
}

.page-homepage .wt_slideshow.banner_product .wrap-circle .circle:hover {
	border-color: transparent;
	background: none !important;
	border: 3px solid #fff\0;
	border: 3px solid #fff\9;
}

.page-homepage .wt_slideshow.banner_product .wrap-circle .circle:hover a {
	color: #fff;
	font-weight: bold;
}

@media(max-width:767px) {
	.page-homepage .wt_slideshow.banner_product .wrap-circle .circle:hover a {
		font-weight: normal;
	}
}

@media(max-width:767px) {
	.page-homepage .wt_slideshow.banner_product .wrap-circle .circle:hover {
		border-color: #fff;
	}
}

.page-homepage .wt_slideshow.banner_product .wrap-circle .circle:hover svg.spinner {
	opacity: 1;
}

@media(max-width:767px) {
	.page-homepage .wt_slideshow.banner_product .wrap-circle .circle:hover svg.spinner {
		opacity: 0;
	}
}

.page-homepage .wt_slideshow.banner_product .wrap-circle .circle:hover svg.spinner circle {
	-webkit-animation: spinner 1s linear infinite;
	-moz-animation: spinner 1s linear infinite;
	-ms-animation: spinner 1s linear infinite;
	-o-animation: spinner 1s linear infinite;
	animation: spinner 1s linear infinite;
}

svg.spinner {
	opacity: 0;
	width: 100%;
	height: 100%;
	x: 0px;
	y: 0px;
	viewBox: 0 0 108 108;
}

svg.spinner circle {
	fill: transparent;
	stroke: #fff;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-dasharray: 339.12;
	-webkit-transform-origin: 54px 54px 0;
	-moz-transform-origin: 54px 54px 0;
	-ms-transform-origin: 54px 54px 0;
	-o-transform-origin: 54px 54px 0;
	transform-origin: 54px 54px 0;
}

@keyframes spinner {
	0% {
		stroke-dashoffset: 339.12;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

.carousel-fade .carousel-inner .item {
	transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
	z-index: 2;
}

.wrap-circle .timex {
	display: inline-block;
	position: relative;
	margin: 0 11px;
}

.ie .wrap-circle .timex {
	width: 109px;
	height: 109px;
}

@media(max-width:767px) {
	.wrap-circle .timex {
		width: 55px;
		height: 55px;
		margin: 0 2px;
	}
}

.wrap-circle .timex a {
	position: absolute;
	width: 109px;
	height: 109px;
	z-index: 10000;
	color: #fff;
	left: 0;
	background: none;
	line-height: 24px;
	font-size: 16px;
	display: table;
	vertical-align: middle;
	border: 1px solid #fff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

.ie .wrap-circle .timex a,
.ie10 .wrap-circle .timex a {
	background: url("../_ui/responsive/theme-alpha/img/transparent.png") no-repeat 0 0;
	cursor: pointer;
}

@media(max-width:767px) {
	.wrap-circle .timex a {
		width: 55px;
		height: 55px;
		font-size: 11px;
		line-height: 18px;
		font-weight: normal;
		text-transform: none;
	}
}

.wrap-circle .timex a span {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	padding: 0 15px;
}

.ie .wrap-circle .timex a span,
.ie10 .wrap-circle .timex a span {
	padding: 0;
}

@media(max-width:767px) {
	.wrap-circle .timex a span {
		padding: 0 3px;
	}
}

@media(max-width:767px) {
	.wrap-circle .timex a+div {
		display: none;
	}
}

.wrap-circle .timex svg.zeSvg {
	opacity: 0;
}

.wrap-circle .timex:hover a {
	border: 1px solid transparent;
}

.ie .wrap-circle .timex:hover a {
	border: 3px solid #fff;
	font-weight: bold;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.wrap-circle .timex:hover a {
		border: 1px solid #fff;
	}
}

.wrap-circle .timex:hover svg.zeSvg {
	opacity: 1;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.wrap-circle .timex:hover svg.zeSvg {
		opacity: 0;
	}
}

@media(max-width:767px) {
	.page-homepage .main-content .content {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media(max-width:480px) {
	.page-homepage .main-content .content {
		max-width: 100%;
	}
}

.page-homepage .wt_slideshow .slideshow_content {
	z-index: 200;
}

.wt_content_item {
	position: relative;
	z-index: 80;
	margin-bottom: 50px;
}

@media(max-width:767px) {
	.wt_content_item {
		margin-bottom: 0;
	}
}

.wt_content_item .content_item h1 {
	font-size: 60px;
	line-height: 70px;
	width: 45%;
	margin-top: 0px;
	margin-bottom: 0px;
}

@media(max-width:767px) {
	.wt_content_item .content_item h1 {
		width: 100%;
		margin-top: 10px;
		margin-bottom: 15px;
		font-size: 30px;
		line-height: 36px;
	}
}

.wt_content_item .content_item h2 {
	width: 45%;
	margin-top: 25px;
	margin-bottom: 30px;
}

@media(max-width:767px) {
	.wt_content_item .content_item h2 {
		width: 100%;
		margin-top: 10px;
		margin-bottom: 15px;
	}
}

.wt_content_item .content_item .des {
	width: 30%;
	font-size: 18px;
	margin-left: 60px;
	margin-bottom: 43px;
	line-height: 24px;
}

@media(max-width:767px) {
	.wt_content_item .content_item .des {
		width: 100%;
		font-size: 12px;
		line-height: 18px;
		margin-left: 0;
		margin-bottom: 19px;
		padding-right: 20px;
	}
}

.wt_content_item .content_item .content_item_more {
	margin-left: 123px;
}

@media(max-width:767px) {
	.wt_content_item .content_item .content_item_more {
		margin-left: -5px;
	}
}

@media(max-width:767px) {
	.wt_content_item .content_item .content_item_more a {
		width: 83px;
		height: 83px;
		font-size: 12px;
		line-height: 14px;
		padding: 0 10px;
	}
}

.wt_content_item .content_item .content_item_more span {
	font-size: 18px;
}

.wrapper_pro_item {
	position: relative;
	z-index: 71;
	margin-top: -250px;
}

@media(max-width:767px) {
	.wrapper_pro_item {
		margin-top: -99px;
		margin-bottom: 99px;
	}
}

.wrapper_pro_item .wt_pro_item {
	position: relative;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item {
		position: static;
	}
}

.wrapper_pro_item .wt_pro_item .img {
	position: absolute;
	z-index: 1;
	right: 791px;
	top: 337px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .img {
		top: 184px;
		right: auto;
		left: 0;
		max-width: 102px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item {
	padding: 0 60px;
	background: #fb8621;
	width: 991px;
	height: 991px;
	min-height: 0px;
	float: right;
	display: table;
	vertical-align: middle;
	margin-right: -72px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item {
		background: transparent;
		height: auto;
		padding: 0 10px;
		max-width: 100%;
		display: table;
		vertical-align: middle;
		width: 100%;
		margin: 0;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		position: relative;
		margin-top: 100px;
	}
}

@media(max-width:767px) and (max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item:before {
		content: '';
		position: absolute;
		left: -27.2%;
		top: -1.5%;
		width: 633px;
		height: 633px;
		border-radius: 50%;
		background: #fb8621;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content {
	height: 100%;
	vertical-align: middle;
	color: #ffffff;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content {
		padding-top: 94px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_content_title {
	height: 320px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_content_title {
		height: 203px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content h2 {
	padding-left: 213px;
	padding-top: 180px;
	width: 90%;
	line-height: 70px;
	font-size: 60px;
	position: relative;
	font-weight: bold;
	color: white;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content h2 {
		padding-top: 0px;
		padding-left: 40px;
		padding-bottom: 0;
		margin-top: -50px;
		margin-bottom: 0;
		font-size: 30px;
		line-height: 36px;
		width: 100%;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .des {
	position: relative;
	font-size: 16px;
	line-height: 24px;
	padding-left: 160px;
	margin-top: 25px;
	width: 80%;
	max-width: 560px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .des {
		padding-left: 90px;
		padding-right: 0px;
		font-size: 12px;
		line-height: 18px;
		margin-top: 10px;
		width: 100%;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab {
	position: relative;
	font-size: 16px;
	line-height: 24px;
	width: 90%;
	padding-left: 160px;
	padding-right: 10px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab {
		padding-left: 13%;
		padding-right: 0;
		font-size: 18px;
		line-height: 26px;
	}

	body.language-zh .wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab {
		padding-top: 16px;
	}

	body.language-en .wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab {
		padding-top: 60px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs {
	border-bottom: 0;
	padding-bottom: 50px;
	margin-left: 35px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs {
		margin-left: 0;
		padding-bottom: 7px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li {
	position: relative;
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a {
	color: #ffffff;
	border: 0;
	border-bottom: 1px solid transparent;
	font-weight: bold;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 25px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a {
		font-size: 16px;
		line-height: 35px;
		padding: 0 7px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a:after {
	content: '';
	border-style: solid;
	_border-style: dashed;
	border-width: 6px;
	border-color: transparent;
	border-top-width: 0;
	border-bottom: 12px solid #1a1a1a;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -6px;
	margin-top: 6px;
	display: none;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a:after {
		border-bottom: 6px solid #1a1a1a;
		border-width: 6px;
		margin-top: 0px;
		top: 80%;
	}

	.img-responsive,
	.thumbnail>img,
	.thumbnail a>img,
	.carousel-inner>.item>img,
	.carousel-inner>.item>a>img {
		max-width: 125% !important;
		margin-left: -10%;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a:hover {
	color: #0082a9;
	background: transparent;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a:hover {
		color: #ffffff;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a:hover:after {
	display: none;
	border-bottom-color: #0082a9;
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a.selected {
	background: transparent;
	border: 0;
	color: #000000;
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a.selected:hover:after {
	display: inline;
	border-bottom-color: #ee2d42;
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .nav-tabs>li>a.selected:after {
	display: inline;
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .item_tab_left {
	float: left;
	width: 48%;
	position: relative;
	height: 250px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .item_tab_left {
		width: 100%;
		height: 100px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .item_tab_left .item_tab_left_span {
	float: left;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .item_tab_left .item_tab_left_span {
		font-size: 12px;
		line-height: 18px;
		padding-left: 25px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .item_tab_left img {
	position: absolute;
	left: 0%;
	margin-left: 40px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .item_tab_left img {
		top: 0;
		left: 0;
		margin-left: auto;
		margin-right: auto;
		position: relative;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .item_tab_right {
	float: left;
	width: 30%;
	margin-top: 0px;
	text-align: left;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .item_tab_right {
		font-size: 12px;
		line-height: 18px;
		max-height: 53px;
		padding-left: 5px;
		padding-right: 20px;
		margin-top: 13px;
		width: 100%;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .content_item_more {
	position: absolute;
	bottom: -82px;
	left: -98px;
	z-index: 1;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .content_item_more {
		width: 82px;
		left: 29%;
		bottom: -190px;
	}

	body.language-en .wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .content_item_more {
		bottom: -125px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .content_item_more a {
	width: 120px;
	height: 120px;
	padding: 0 10px;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .content_item_more a {
		width: 83px;
		height: 83px;
	}
}

.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .carousel-inner {
	overflow: inherit;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .carousel-control {
		top: 50%;
	}
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .carousel-control .arrow_prev {
		left: -40px;
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .carousel-control .arrow_next {
		right: -35px;
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
	-sm-transition: none;
}

@media(max-width:767px) {
	.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item {
		min-height: 170px;
	}
}

.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item .item_tab_left,
.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item .item_tab_right {
	opacity: 0;
	transition: 0.5s ease-in-out opacity;
	-moz-transition: 0.5s ease-in-out opacity;
	-webkit-transition: 0.5s ease-in-out opacity;
	-o-transition: 0.5s ease-in-out opacity;
	-sm-transition: 0.5s ease-in-out opacity;
}

.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item.next.left .item_tab_left,
.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item.prev.right .item_tab_left,
.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item.active .item_tab_left,
.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item.next.left .item_tab_right,
.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item.prev.right .item_tab_right,
.wrapper_pro_item .wt_pro_item .carousel-fade .carousel-inner .item.active .item_tab_right {
	opacity: 1;
}

@media(max-width:767px) {
	.language-zh .wrapper_pro_item .wt_pro_item .pro_item .pro_item_content .pro_item_tab .menu_slider {
		margin: 0 -45px;
	}
}

#wt_team_item {
	padding-top: 0px;
	padding-bottom: 160px;
}

@media(max-width:767px) {
	#wt_team_item {
		padding-top: 0px;
		padding-bottom: 0px;
		margin-bottom: 55px;
	}
}

.ios11 #wt_team_item .spinner-css .fill {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1410' height='1410'><path d='M1,705 a1,1 0 0,0 1408,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") center bottom no-repeat;
}

.ios11 #wrapper_social_item .spinner-css .fill {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='956' height='956'><path d='M1,478 a1,1 0 0,0 954,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") center bottom no-repeat;
}

.ios11 .wrapper_wt_learnmore_item .spinner-css .fill {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1460' height='1460'><path d='M1,730 a1,1 0 0,0 1458,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") center bottom no-repeat;
}

.ios11 #wt_team_item .spinner-css .sp_left .fill {
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
}

.ios11 #wt_team_item .spinner-css .sp_right .fill {
	-webkit-transform: rotate(150deg);
	-moz-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	-o-transform: rotate(150deg);
	transform: rotate(150deg);
}

.ios11 #wt_team_item.circle-active .spinner-css .sp_left .fill {
	-webkit-transform: rotate(220deg);
	-moz-transform: rotate(220deg);
	-ms-transform: rotate(220deg);
	-o-transform: rotate(220deg);
	transform: rotate(220deg);
}

.ios11 #wt_team_item.circle-active .spinner-css .sp_right .fill {
	-webkit-transform: rotate(330deg);
	-moz-transform: rotate(330deg);
	-ms-transform: rotate(330deg);
	-o-transform: rotate(330deg);
	transform: rotate(330deg);
}

.ios11 #wrapper_social_item .spinner-css .sp_left .fill {
	-webkit-transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	transform: rotate(-30deg);
}

.ios11 #wrapper_social_item .spinner-css .sp_right .fill {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.ios11 #wrapper_social_item.circle-active .spinner-css .sp_left .fill {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.ios11 #wrapper_social_item.circle-active .spinner-css .sp_right .fill {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
}

.ios11 .wrapper_wt_learnmore_item .spinner-css .sp_left .fill {
	-webkit-transform: rotate(50deg);
	-moz-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	-o-transform: rotate(50deg);
	transform: rotate(50deg);
}

.ios11 .wrapper_wt_learnmore_item .spinner-css .sp_right .fill {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.ios11 .wrapper_wt_learnmore_item.circle-active .spinner-css .sp_left .fill {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.ios11 .wrapper_wt_learnmore_item.circle-active .spinner-css .sp_right .fill {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.wt_team_item {
	position: relative;
	z-index: 70;
	background: transparent;
	float: left;
	display: table;
	vertical-align: middle;
	margin-left: -370px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	padding: 0;
	margin-right: 20%;
	margin-top: 30px;
	width: 1537px;
	height: 1300px;
}

@media(max-width:767px) {
	.wt_team_item {
		width: 100%;
		height: auto;
		margin-left: 0;
		margin-right: 0;
		float: none;
		display: block;
		margin-bottom: 0px;
		background: transparent;
		margin-top: -55px;
	}
}

@media(max-width:767px) {
	.wt_team_item:before {
		content: '';
		position: absolute;
		width: 833px;
		height: 833px;
		top: 7%;
		left: -127%;
		border: 2px solid #ee2d42;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		-o-border-radius: 50%;
	}

	.ios11 .wt_team_item:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='833' height='833'><path d='M2,416.5a414.5,414.5 0 1,0 829,0a414.5,414.5 0 1,0 -829,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
	}
}

.wt_team_item .wt_team_item_content {
	margin-left: 150px;
	padding: 88px 0 0px 200px;
	width: 1366px;
	height: 1366px position:relative;
}

@media(max-width:767px) {
	.wt_team_item .wt_team_item_content {
		width: 100%;
		height: auto;
		padding: 130px 0 0 0;
		margin-left: 0;
	}
}

.wt_team_item .team_item_title {
	margin-right: 300px;
	margin-left: 240px;
	height: 301px;
}

@media(max-width:767px) {
	.wt_team_item .team_item_title {
		margin-left: 0px;
		margin-right: 0px;
		height: 221px;
	}
}

.wt_team_item .team_item_title h2 {
	margin-bottom: 25px;
	font-size: 60px;
	line-height: 70px;
}

@media(max-width:767px) {
	.wt_team_item .team_item_title h2 {
		margin-bottom: 15px;
		margin-top: 14px;
		font-size: 30px;
		line-height: 35px;
	}
}

.wt_team_item .team_item_title .des {
	margin-left: 130px;
	font-size: 16px;
	line-height: 24px;
	width: 60%;
	margin-bottom: 43px;
}

@media(max-width:767px) {
	.wt_team_item .team_item_title .des {
		margin-left: 0px;
		font-size: 12px;
		line-height: 18px;
		width: 90%;
		height: 136px;
		margin-bottom: 0;
	}
}

.wt_team_item .team_item {
	text-align: left;
	padding: 0 30px;
	max-width: 100%;
	position: relative;
	float: right;
	vertical-align: middle;
	background: #ea6f09;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	margin-top: 15px;
	margin-right: 79px;
	width: 900px;
	height: 900px;
}

@media(max-width:767px) {
	.wt_team_item .team_item {
		width: 470px;
		height: 470px;
		margin-right: 0;
		background: transparent;
		margin-top: 5px;
	}
}

@media(max-width:767px) {
	.wt_team_item .team_item:before {
		content: '';
		background: #ee2d42;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		-o-border-radius: 50%;
		width: 470px;
		height: 470px;
		position: absolute;
		left: -42%;
		top: 0%;
		z-index: -1;
	}
}

.wt_team_item .team_item .team_item_content {
	color: #ffffff;
	padding-left: 120px;
	padding-right: 62px;
	display: table-cell;
	padding-top: 100px;
	width: 100%;
	text-align: left;
	opacity: 0;
	filter: alpha(opacity=0);
	height: 825px;
}

@media(max-width:767px) {
	.wt_team_item .team_item .team_item_content {
		max-width: 520px;
		padding: 0;
		margin-left: auto;
		margin-right: auto;
		display: block;
		height: auto;
	}
}

.wt_team_item .team_item .team_item_content h3 {
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
	margin-left: 120px;
	margin-bottom: 20px;
	margin-top: 160px;
	text-align: left;
	color: white;
}

@media(max-width:767px) {
	.wt_team_item .team_item .team_item_content h3 {
		margin-left: 30px;
		margin-top: 167px;
		margin-bottom: 15px;
		font-size: 24px;
		line-height: 30px;
		width: 58%;
	}
}

.wt_team_item .team_item .team_item_content .description {
	font-size: 16px;
	line-height: 24px;
	margin-left: 170px;
	width: 50%;
	margin-bottom: 110px;
}

@media(max-width:767px) {
	.wt_team_item .team_item .team_item_content .description {
		margin-left: 30px;
		padding-right: 70px;
		width: 100%;
		font-size: 12px;
		line-height: 18px;
		margin-bottom: 55px;
	}

	body.language-en .wt_team_item .team_item .team_item_content .description {
		margin-bottom: 40px;
	}
}

.wt_team_item .team_item .team_item_content .team_item_comment {
	margin-top: 50px;
	padding: 0 50px;
	margin-left: 50px;
	width: 85%;
}

@media(max-width:767px) {
	.wt_team_item .team_item .team_item_content .team_item_comment {
		width: 100%;
		padding: 0;
		margin-left: 0;
	}

	body.language-en .wt_team_item .team_item .team_item_content .team_item_comment {
		margin-top: 40px;
	}
}

.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks {
	position: relative;
	padding-top: 20px;
	font-weight: bold;
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 180px;
}

@media(max-width:767px) {
	.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks {
		margin-bottom: 0;
		font-size: 20px;
		line-height: 26px;
		padding-top: 0;
	}
}

.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks span {
	position: relative;
	display: block;
	margin-left: 70px;
	margin-right: 100px;
}

@media(max-width:767px) {
	.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks span {
		margin-left: 33px;
		margin-right: 33px;
	}
}

.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks:before,
.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks:after {
	content: '';
	position: absolute;
}

.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -1521px -414px;
	width: 73px;
	height: 62px;
	left: -10px;
	top: -45px;
}

@media(max-width:767px) {
	.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks:before {
		left: -20px !important;
		top: -48px;
		-webkit-transform: scale(0.4);
		-moz-transform: scale(0.4);
		-ms-transform: scale(0.4);
		-o-transform: scale(0.4);
		transform: scale(0.4);
	}

	body.language-en .wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks:before {
		top: -40px;
	}
}

.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks:after {
	background-image: url(../picture/sprites_img.png);
	background-position: -1624px -414px;
	width: 73px;
	height: 62px;
	bottom: -55px;
	margin-left: 100px;
	margin-top: 0;
	right: 0;
}

@media(max-width:767px) {
	.wt_team_item .team_item .team_item_content .team_item_comment .quotation_marks:after {
		right: 11% !important;
		bottom: -40%;
		-webkit-transform: scale(0.4);
		-moz-transform: scale(0.4);
		-ms-transform: scale(0.4);
		-o-transform: scale(0.4);
		transform: scale(0.4);
	}
}

@media(max-width:767px) {
	.wt_team_item .active .team_item {
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		visibility: visible;
	}
}

.wt_team_item .owl-carousel .owl-item .img_big {
	position: absolute;
	z-index: 1;
	margin-right: auto;
	width: auto;
	display: block;
	right: -230px;
	top: -50px;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

@media(max-width:767px) {
	.wt_team_item .owl-carousel .owl-item .img_big {
		right: -20px;
		top: -25px;
		max-width: 143px;
	}
}

.wt_team_item .content_item_more {
	z-index: 15;
	position: relative;
	top: -164px;
	left: 19px;
}

@media(max-width:767px) {
	.wt_team_item .content_item_more {
		position: absolute;
		left: 9%;
		top: 89%;
		width: 82px;
		height: 82px;
	}
}

.wt_team_item .content_item_more a {
	width: 143px;
	height: 143px;
	line-height: 20px;
}

.wt_team_item .content_item_more a span[class^="icon-"] {
	margin: auto;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.wt_team_item .content_item_more a {
		line-height: 16px;
		font-size: 12px;
		width: 82px;
		height: 82px;
		padding: 0;
	}
}

@media(max-width:767px) and (max-width:767px) {
	.wt_team_item .content_item_more a span {
		font-size: 14px;
	}
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {

	.wt_team_item .content_item_more a.arrow-explore:before,
	.wt_team_item .content_item_more a.arrow-explore:after {
		width: 143px;
		height: 143px;
	}
}

.wt_team_item .owl-carousel .owl-wrapper-outer {
	width: 110%;
}

.wt_team_item .owl-carousel .owl-item img {
	width: auto;
}

.wt_team_item .owl-carousel .owl-stage-outer {
	width: 127%;
	margin-top: -150px;
	padding-top: 90px;
}

@media(max-width:767px) {
	.wt_team_item .owl-carousel .owl-stage-outer {
		margin-top: -20px;
		overflow: visible;
	}
}

.wt_team_item .owl-carousel .team_item .img_big {
	display: none;
}

.wt_team_item .owl-carousel .active .team_item_content {
	opacity: 1;
	filter: alpha(opacity=100);
}

.wt_team_item .owl-carousel .active .img_big {
	display: block;
	opacity: 1;
	filter: alpha(opacity=100);
}

.wt_team_item .owl-nav {
	position: absolute;
	top: 50%;
	width: 96%;
	left: 2%;
	text-indent: -9999px;
	margin-top: -7px;
}

@media(max-width:767px) {
	.wt_team_item .owl-nav {
		width: 100%;
		margin-top: 9px;
		top: 208px;
		left: 5px;
	}
}

.wt_team_item .owl-nav .owl-prev {
	float: left;
	background-image: url(../picture/sprites_img.png);
	background-position: -759px -568px;
	width: 26px;
	height: 46px;
}

@media(max-width:767px) {
	.wt_team_item .owl-nav .owl-prev {
		background-image: url(../picture/sprites_img.png);
		background-position: -975px -573px;
		width: 13px;
		height: 23px;
	}
}

.wt_team_item .owl-nav .owl-prev.disabled {
	background-image: url(../picture/sprites_img.png);
	background-position: -802px -776px;
	width: 26px;
	height: 46px;
}

@media(max-width:767px) {
	.wt_team_item .owl-nav .owl-prev.disabled {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow_prev_mobile_disable.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

.wt_team_item .owl-nav .owl-next {
	float: right;
	background-image: url(../picture/sprites_img.png);
	background-position: -704px -569px;
	width: 26px;
	height: 46px;
	margin: 35px auto 0;
}

@media(max-width:767px) {
	.wt_team_item .owl-nav .owl-next {
		background-image: url(../picture/sprites_img.png);
		background-position: -1220px -573px;
		width: 13px;
		height: 23px;
	}
}

.wt_team_item .owl-nav .owl-next.disabled {
	background-image: url(../picture/sprites_img.png);
	background-position: -858px -776px;
	width: 26px;
	height: 46px;
}

@media(max-width:767px) {
	.wt_team_item .owl-nav .owl-next.disabled {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow_next_mobile_disable.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

.wt_team_item .spinner-css {
	margin-left: -205px;
}

.wt_learn_item {
	position: relative;
}

@media(max-width:767px) {
	.wt_learn_item {
		margin-top: 0px;
		z-index: 100;
	}
}

@media(max-width:767px) {
	.wt_learn_item .full-container {
		padding: 0;
	}
}

.wt_learn_item .content_item h2 {
	color: #043458;
	font-size: 60px;
	line-height: 70px;
	margin-top: 0;
	margin-left: 110px;
	width: 75%;
	margin-bottom: 40px;
}

@media(max-width:767px) {
	.wt_learn_item .content_item h2 {
		width: 100%;
		font-size: 30px;
		line-height: 36px;
		margin-left: 0;
		margin-bottom: 10px;
	}
}

.wt_learn_item .content_item .des {
	margin-left: 185px;
	width: 53%;
	margin-bottom: 32px;
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	.wt_learn_item .content_item .des {
		width: 100%;
		margin-left: 0px;
		margin-bottom: 15px;
		padding-right: 30px;
		max-height: 58px;
		overflow: hidden;
		font-size: 12px;
		line-height: 18px;
	}

	body.language-en .wt_learn_item .content_item .des {
		max-height: 108px;
	}
}

.wt_learn_item .item_left {
	position: relative;
	margin-bottom: 63px;
	float: left;
	width: 50%;
}

@media(max-width:767px) {
	.wt_learn_item .item_left {
		width: 100%;
	}
}

.wt_learn_item .item_right_moblie {
	float: right;
	width: 50%;
	padding-top: 53px;
	padding-left: 36px;
}

@media(max-width:767px) {
	.wt_learn_item .item_right_moblie {
		padding: 0;
		width: auto;
		position: absolute;
		right: 0;
		bottom: -213px;
	}
}

@media(max-width:767px) {
	.wt_learn_item .item_right_moblie img {
		max-width: 193px;
	}
}

.wt_learn_item .content_item_more {
	position: absolute;
	right: 45.5%;
	z-index: 10;
}

@media(max-width:767px) {
	.wt_learn_item .content_item_more {
		left: 0;
		right: auto;
	}
}

.wt_learn_item .content_item_more a {
	padding: 0 35px;
	width: 137px;
	height: 137px;
}

@media(max-width:767px) {
	.wt_learn_item .content_item_more a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 18px;
		padding: 0 15px;
	}
}

.wrapper_social_item {
	position: relative;
}

@media(max-width:767px) {
	.wrapper_social_item {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media(max-width:480px) {
	.wrapper_social_item {
		max-width: 100%;
	}
}

.wrapper_social_item .container {
	width: auto;
	padding: 0;
}

@media(max-width:767px) {
	.wrapper_social_item .full-container {
		padding: 0;
	}
}

@media(max-width:767px) {
	.wrapper_social_item .item_right {
		width: 260px;
		margin-left: auto;
		margin-right: auto;
	}
}

.wrapper_social_item .wt_social_item {
	background: transparent;
	width: 807px;
	height: 807px;
	padding: 0 30px;
	max-width: 100%;
	position: relative;
	z-index: 1;
	float: right;
	display: table;
	vertical-align: middle;
	margin-bottom: 0;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	margin-top: -100px;
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item {
		width: 100%;
		height: 687px;
		margin-top: 0px;
		padding: 0;
		float: none;
	}
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item:before {
		position: absolute;
		width: 500px;
		height: 500px;
		top: 55px;
		left: -180px;
		border: 2px solid #ee2d42;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		-o-border-radius: 50%;
	}

	.ios11 .wrapper_social_item .wt_social_item:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500'><path d='M2,250a248,248 0 1,0 496,0a248,248 0 1,0 -496,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
	}
}

.wrapper_social_item .wt_social_item .item_content h2 {
	font-size: 60px;
	line-height: 70px;
	margin-top: 172px;
	margin-left: 16px;
	margin-bottom: 23px;
	width: 50%;
	height: 160px;
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item .item_content h2 {
		font-size: 30px;
		line-height: 36px;
		margin-top: 94px;
		margin-bottom: 18px;
		margin-left: 0;
		height: 73px;
		width: 60%;
	}
}

.wrapper_social_item .wt_social_item .item_content .des {
	font-size: 16px;
	line-height: 24px;
	width: 55%;
	margin-left: 90px;
	min-height: 260px;
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item .item_content .des {
		font-size: 12px;
		line-height: 18px;
		margin-left: 0;
		width: 100%;
		padding-right: 0px;
		margin-bottom: 18px;
		min-height: 200px;
	}
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item .item_content .des:first-child {
		padding-right: 5px;
	}
}

.wrapper_social_item .wt_social_item .item_content h4 {
	margin-top: 25px;
	margin-bottom: 5px;
	color: #ee2d42;
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
	width: 60%;
	margin-left: 90px;
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item .item_content h4 {
		margin-top: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		font-size: 12px;
		line-height: 18px;
	}
}

.wrapper_social_item .wt_social_item .item_content_middle {
	float: right;
	width: 90%;
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item .item_content_middle {
		width: 100%;
		margin-top: 0;
	}
}

.wrapper_social_item .wt_social_item .content_item_more {
	position: relative;
	top: 228px;
	right: -48.5%;
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item .content_item_more {
		top: 66px;
		right: auto;
		left: 69%;
	}
}

.wrapper_social_item .wt_social_item .content_item_more:before {
	width: 138px;
	height: 138px;
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item .content_item_more:before {
		width: 80px;
		height: 80px;
	}
}

.wrapper_social_item .wt_social_item .content_item_more a {
	line-height: 26px;
	font-size: 18px;
	width: 138px;
	height: 138px;
}

.wrapper_social_item .wt_social_item .content_item_more a span[class^="icon-"] {
	margin: auto;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.wrapper_social_item .wt_social_item .content_item_more a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding-top: 0px;
	}
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {

	.wrapper_social_item .wt_social_item .content_item_more a.arrow-explore:before,
	.wrapper_social_item .wt_social_item .content_item_more a.arrow-explore:after {
		width: 138px;
		height: 138px;
	}
}

.wrapper_social_item .wt_social_item .content_item_more a .icon-see-small {
	background-image: url(../picture/sprites_img.png);
	background-position: -1566px -59px;
	width: 25px;
	height: 25px;
	background-size: auto;
}

.wrapper_social_item .wt_social_item .spinner-css {
	width: 956px;
	height: 956px;
	margin-left: 0;
	right: -12%;
	top: -2%;
}

.wrapper_social_item .item_left {
	position: absolute;
	z-index: 3;
	bottom: -130px;
	right: 720px;
}

@media(max-width:767px) {
	.wrapper_social_item .item_left {
		left: 0;
		bottom: 0;
		right: auto;
	}
}

@media(max-width:767px) {
	.wrapper_social_item .item_left img {
		max-width: 144px;
	}
}

@media(max-width:767px) {
	.wrapper_social_item .spinner-css {
		display: none;
	}
}

.wrapper_wt_learnmore_item {
	padding: 0;
	position: relative;
	margin-top: 0px;
	padding-bottom: 135px;
}

@media(max-width:767px) {
	.wrapper_wt_learnmore_item {
		padding-bottom: 0;
		margin-bottom: 0;
	}
}

.wrapper_wt_learnmore_item .spinner-css {
	left: -20.5%;
	top: 19%;
	width: 1460px;
	height: 1460px;
}

@media(max-width:767px) {
	.wrapper_wt_learnmore_item .spinner-css {
		display: none;
	}
}

.wrapper_wt_learnmore_item.circle-active .spinner-css .side>.fill {
	border-color: #010124a6;
	border-top-color: transparent;
	border-left-color: transparent;
}

.wt_learnmore_item {
	position: relative;
	margin-left: 0px;
	margin-top: 114px;
}

@media(max-width:767px) {
	.wt_learnmore_item {
		margin-top: 23px;
		padding-bottom: 52px;
	}
}

@media(max-width:767px) {
	.wt_learnmore_item:before {
		position: absolute;
		content: '';
		top: 16px;
		right: -5px;
		border: 2px solid #043458;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		-o-border-radius: 50%;
		width: 763px;
		height: 763px;
	}

	.ios11 .wt_learnmore_item:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='763' height='763'><path d='M2,381.5a379.5,379.5 0 1,0 759,0a379.5,379.5 0 1,0 -759,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
	}
}

.wt_learnmore_item .content_item {
	background: #fb8621;
	position: relative;
	z-index: 5;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	margin-left: 145px;
	width: 727px;
	height: 727px;
}

@media(max-width:767px) {
	.wt_learnmore_item .content_item {
		width: 353px;
		height: 353px;
		margin-left: -55px;
	}
}

.wt_learnmore_item .content_item .item_content {
	color: #ffffff;
	height: 100%;
	position: absolute;
	padding: 160px 100px 100px 130px;
}

@media(max-width:767px) {
	.wt_learnmore_item .content_item .item_content {
		padding: 0px 0px 0px 0px;
	}
}

.wt_learnmore_item .content_item h2 {
	color: #ffffff;
	margin-left: 0;
	font-size: 60px;
	line-height: 70px;
	width: 80%;
	margin-top: 0;
	margin-bottom: 33px;
}

@media(max-width:767px) {
	.wt_learnmore_item .content_item h2 {
		font-size: 30px;
		line-height: 36px;
		padding-top: 73px;
		padding-left: 70px;
		margin-bottom: 18px;
		width: 70%;
	}
}

.wt_learnmore_item .content_item .des {
	color: #ffffff;
	font-size: 16px;
	margin-left: 70px;
	padding-right: 23px;
	width: 90%;
	line-height: 24px;
}

@media(max-width:767px) {
	.wt_learnmore_item .content_item .des {
		font-size: 12px;
		line-height: 18px;
		width: 80%;
	}
}

.wt_learnmore_item .content_item .des p {
	margin-bottom: 30px;
}

.wt_learnmore_item .content_item .des br {
	display: none;
}

.wt_learnmore_item .content_item_more {
	position: absolute;
	z-index: 11;
	left: 25.5%;
	bottom: -20.5%;
}

@media(max-width:767px) {
	.wt_learnmore_item .content_item_more {
		left: 54.5%;
		top: 278px;
	}
}

.wt_learnmore_item .content_item_more a {
	font-size: 24px;
	padding: 0 20px;
	width: 193px;
	height: 193px;
}

@media(max-width:767px) {
	.wt_learnmore_item .content_item_more a {
		width: 86px;
		height: 86px;
		font-size: 12px;
		line-height: 18px;
		padding: 0 5px;
	}
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {

	.wt_learnmore_item .content_item_more a.arrow-explore:before,
	.wt_learnmore_item .content_item_more a.arrow-explore:after {
		width: 193px;
		height: 193px;
	}
}

.wt_learnmore_item .item_left {
	width: 50%;
	z-index: 10;
	position: absolute;
	left: -33px;
	bottom: -170px;
}

@media(max-width:767px) {
	.wt_learnmore_item .item_left {
		top: 280px;
		width: auto;
		z-index: 6;
		left: 0;
	}
}

@media(max-width:767px) {
	.wt_learnmore_item .item_left img {
		max-width: 123px;
	}
}

.wt_learnmore_item .take_item {
	position: relative;
	z-index: 1;
	width: 55%;
	float: left;
	margin-left: 34%;
	margin-right: 20px;
	margin-top: 0px;
	padding-right: 100px;
	height: 246px;
}

@media(max-width:767px) {
	.wt_learnmore_item .take_item {
		width: 100%;
		margin-left: 0;
		padding: 0;
		float: none;
		height: auto;
	}
}

.wt_learnmore_item .take_item .take_item_content {
	height: 100%;
}

@media(max-width:767px) {
	.wt_learnmore_item .take_item .item_content_middle .item_content_middle_title {
		height: 152px;
	}
}

.wt_learnmore_item .take_item .item_content_middle h2 {
	color: #fb8621;
	font-weight: bold;
	margin-top: 26px;
	font-size: 40px;
	line-height: 50px;
	margin-left: 158px;
	margin-bottom: 26px;
}

@media(max-width:767px) {
	.wt_learnmore_item .take_item .item_content_middle h2 {
		margin-top: 55px;
		padding-left: 120px;
		margin-bottom: 0px;
		margin-left: 0;
		font-size: 20px;
		line-height: 26px;
	}
}

.wt_learnmore_item .take_item .item_content_middle .des {
	font-size: 16px;
	line-height: 24px;
	margin-left: 195px;
	padding-right: 50px;
}

@media(max-width:767px) {
	.wt_learnmore_item .take_item .item_content_middle .des {
		padding-left: 120px;
		padding-right: 30px;
		margin-left: 0;
		font-size: 12px;
		line-height: 18px;
	}
}

.wt_learnmore_item .take_item .content_item_more {
	position: absolute;
	left: auto;
	bottom: -35px;
	right: -23px;
}

@media(max-width:767px) {
	.wt_learnmore_item .take_item .content_item_more {
		position: relative;
		right: 20px;
		left: auto;
		float: right;
		width: 82px;
		top: 0;
	}
}

.wt_learnmore_item .take_item .content_item_more a {
	width: 136px;
	height: 136px;
	font-size: 18px;
	line-height: 28px;
}

@media(max-width:767px) {
	.wt_learnmore_item .take_item .content_item_more a {
		width: 82px;
		height: 82px;
		font-size: 12px;
		line-height: 18px;
	}
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {

	.wt_learnmore_item .take_item .content_item_more a.arrow-explore:before,
	.wt_learnmore_item .take_item .content_item_more a.arrow-explore:after {
		width: 136px;
		height: 136px;
	}
}

.contact-us-btn {
	position: relative;
	z-index: 1;
	width: 136px;
	height: 136px;
	font-size: 14px;
	padding: 0 5px;
	vertical-align: middle;
	background: #ee2d42;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	border: 0;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	margin-top: 33px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

@media(max-width:767px) {
	.contact-us-btn {
		font-size: 12px;
		width: 80px;
		height: 80px;
		margin-top: 24px;
		box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-moz-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-webkit-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-o-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
	}
}

.contact-us-btn:before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ee2d42;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.contact-us-btn:hover:before {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.contact-us-btn:hover:before {
		background: #ee2d42;
	}
}

.contact-us-btn:focus {
	cursor: default;
}

.contact-us-btn:focus:before {
	background: #ee2d42;
}

.contact-us-btn.disabled:before {
	background: #666666;
}

.contact-us-btn.disabled:hover:before {
	transform: scale(1);
}

.contact-us-btn span {
	margin-bottom: 10px;
	display: block;
}

.contact-us-btn.ason-btn {
	position: relative;
	left: 50%;
	margin-left: -65px;
	bottom: -15px;
}

.contact_page {
	color: #043458;
	font-size: 18px;
	line-height: 40px;
	word-break: break-word;
}

body.language-zh .contact_page {
	font-size: 16px;
}

@media(max-width:767px) {
	body.language-zh .contact_page {
		font-size: 12px;
	}
}

@media(max-width:767px) {
	.contact_page {
		font-size: 12px;
		line-height: 17px;
	}
}

body.language-zh .contact_page .wrapper-content {
	font-size: 16px;
}

@media(max-width:767px) {
	body.language-zh .contact_page .wrapper-content {
		font-size: 12px;
	}
}

.contact_page h1 {
	color: #ee2d42;
	line-height: 60px;
	margin-bottom: 50px;
}

body.language-zh .contact_page h1 {
	font-size: 60px;
	line-height: 70px;
}

@media(max-width:767px) {
	body.language-zh .contact_page h1 {
		line-height: 35px;
		font-size: 30px;
	}
}

@media(max-width:767px) {
	.contact_page h1 {
		line-height: 35px;
		margin-top: 30px;
		margin-bottom: 28px;
	}
}

@media(max-width:767px) {
	.contact_page .icon {
		margin-top: 11px;
	}
}

@media(max-width:767px) {
	.contact_page .icon .icon-phone-contact {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/phone-contact-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 27px;
		height: 27px;
	}
}

@media(max-width:767px) {
	.contact_page .icon .icon-email-contact {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/email-contact-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 31px;
		height: 31px;
	}
}

@media(max-width:767px) {
	.contact_page .icon.icon-arrow_next {
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
		margin-top: 0;
	}
}

.contact_page .contact_info {
	padding-left: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
}

@media(max-width:767px) {
	.contact_page .contact_info {
		font-size: 12px;
		line-height: 20px;
		padding-left: 20px;
		margin-bottom: 5px;
		padding-top: 0px;
	}

	body.language-zh .contact_page .contact_info {
		line-height: 18px;
	}
}

.contact_page .contact_info.col_content {
	padding-left: 25px;
	margin-top: 10px;
}

@media(max-width:767px) {
	.contact_page .contact_info.col_content {
		line-height: 17px;
		padding-left: 15px;
		margin-top: 9px;
		margin-bottom: 0;
	}

	body.language-zh .contact_page .contact_info.col_content {
		line-height: 18px;
	}
}

.contact_page .contact_info .info {
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
}

@media(max-width:767px) {
	.contact_page .contact_info .info {
		font-size: 20px;
		line-height: 25px;
	}
}

.contact_page .col_content {
	line-height: 28px;
	margin-top: 18px;
	padding-left: 27px;
}

body.language-zh .contact_page .col_content {
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .contact_page .col_content {
		line-height: 17px;
	}
}

@media(max-width:767px) {
	.contact_page .col_content {
		padding-left: 0px;
		font-size: 12px;
		line-height: 17px;
		margin-top: 10px;
	}
}

.contact_page .col_content .title {
	color: #ee2d42;
	font-size: 30px;
	line-height: 28px;
	margin-bottom: 7px;
	font-weight: bold;
}

@media(max-width:767px) {
	.contact_page .col_content .title {
		font-size: 20px;
		line-height: 17px;
		margin-bottom: 5px;
	}

	body.language-zh .contact_page .col_content .title {
		line-height: 26px;
	}
}

.contact_page .col_content a {
	font-weight: bold;
	text-decoration: underline;
	margin-bottom: 28px;
	display: inline-block;
	word-break: break-word;
	cursor: pointer;
}

@media(max-width:767px) {
	.contact_page .col_content a {
		margin-bottom: 13px;
	}
}

.contact_page .col_content a:hover {
	cursor: pointer;
}

.contact_page .col_content a#corporateEmailContact div {
	white-space: nowrap;
}

.contact_page .col_content a:-webkit-any-link {
	cursor: pointer;
}

.contact_page .col_content a:-webkit-any-link:hover {
	cursor: pointer;
}

@media(max-width:767px) {
	.contact_page .col3 {
		width: 100%;
	}
}

.contact_page .col3 .pull_left.icon {
	margin-top: 20px;
}

@media(max-width:767px) {
	.contact_page .col3 .pull_left.icon {
		margin-top: 10px;
	}
}

.contact_page .col3:last-child .col_content {
	padding-left: 17px;
	margin-top: 20px;
}

@media(max-width:767px) {
	.contact_page .col3:last-child .col_content {
		margin-top: 20px;
	}
}

.contact_page .col3:last-child .col_content .title {
	margin-bottom: 6px;
}

@media(max-width:767px) {
	.contact_page .col3:last-child .col_content .title {
		margin-bottom: 3px;
	}
}

.contact_page .col3:last-child .col_content a {
	margin-bottom: 22px;
}

@media(max-width:767px) {
	.contact_page .col3:last-child .col_content a {
		margin-bottom: 30px;
	}
}

@media(max-width:767px) {
	.contact_page .col3:last-child .col_content {
		padding-left: 0px;
	}
}

.language-zh .bg_contact .wrap-mobile-input .mobile-prefix:before {
	line-height: 34px;
	color: #333333;
}

@media(max-width:767px) {
	.language-zh .bg_contact .wrap-mobile-input .mobile-prefix:before {
		line-height: 30px;
	}
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.language-zh .bg_contact .wrap-mobile-input .mobile-prefix:before {
		line-height: 33px;
	}

	.language-zh .bg_contact .wrap-mobile-input .mobile-prefix .form-control {
		line-height: 33px;
		height: 33px;
	}

	.language-zh .bg_contact .wrap-mobile-input .has-error .mobile-prefix .form-control {
		line-height: 28px;
	}
}

.bg_contact {
	background: #d7dee4;
	position: relative;
	margin-top: 71px;
	padding-top: 75px;
}

@media(max-width:767px) {
	.bg_contact {
		margin-top: 30px;
		padding-top: 13px;
		margin-left: auto;
		margin-right: auto;
	}
}

.bg_contact:before {
	background: url('../_ui/responsive/theme-alpha/img/bg-contact-before.png') center top no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 37px;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	z-index: 1;
	background: none\0;
}

@media(max-width:767px) {
	.bg_contact:before {
		background: url('../_ui/responsive/theme-alpha/img/bg-contact-before-mobile.png') center top no-repeat;
		background-size: 100% 100%;
		height: 12px;
		top: -10px;
	}
}

.bg_contact .bg_contact_content {
	width: 860px;
	margin-left: auto;
	margin-right: auto;
	line-height: 28px;
	padding-bottom: 123px;
}

body.language-zh .bg_contact .bg_contact_content {
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .bg_contact .bg_contact_content {
		line-height: 25px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content {
		width: auto;
		font-size: 12px;
		line-height: 25px;
		padding-bottom: 50px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .form-group {
		margin-bottom: 16px;
	}
}

.bg_contact .bg_contact_content h2 {
	font-size: 50px;
	line-height: 40px;
	font-weight: bold;
	color: #043458;
	text-align: center;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content h2 {
		font-size: 20px;
		line-height: 25px;
		text-align: left;
		margin-bottom: 7px;
	}
}

body.language-zh .bg_contact .bg_contact_content h2 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .bg_contact .bg_contact_content h2 {
		font-size: 20px;
		line-height: 26px;
	}
}

.bg_contact .bg_contact_content .des {
	text-align: center;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .des {
		text-align: left;
		line-height: 17px;
	}

	body.language-zh .bg_contact .bg_contact_content .des {
		line-height: 18px;
	}
}

.bg_contact .bg_contact_content .mandatory_required {
	text-align: right;
	margin-bottom: 33px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .mandatory_required {
		text-align: left;
		margin-top: 10px;
		margin-bottom: 12px;
	}
}

.bg_contact .bg_contact_content .col-form-group {
	margin-bottom: 25px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col-form-group {
		margin-bottom: 0px;
	}
}

.bg_contact .bg_contact_content .control-label {
	width: 153px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .control-label {
		display: block;
		width: auto;
		font-size: 12px;
		line-height: 17px;
	}
}

.bg_contact .bg_contact_content .form-control {
	height: 33px;
	width: 222px;
	display: inline-block;
	text-transform: none;
	font-size: 18px;
	line-height: 28px;
	color: #333333;
	padding-top: 0;
	padding-bottom: 0;
	border: 0;
	background-color: #fff;
}

@media(min-width:1024px) {
	.language-zh .bg_contact .bg_contact_content .form-control {
		font-size: 16px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .form-control {
		height: 30px;
		width: 100%;
		font-size: 12px;
		line-height: 17px;
		padding: 10px;
	}
}

.bg_contact .bg_contact_content .btn {
	color: #ffffff;
}

.bg_contact .bg_contact_content .content_item_more {
	margin-left: auto;
	margin-right: auto;
	margin-top: 33px;
	margin-bottom: 127px;
}

.bg_contact .bg_contact_content .content_item_more a {
	width: 136px;
	height: 136px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .content_item_more a {
		width: 163px;
		height: 163px;
	}
}

.bg_contact .bg_contact_content .content_item_more a span {
	margin-top: 7px;
	font-size: 14px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .content_item_more a span {
		font-size: 24px;
	}
}

.bg_contact .bg_contact_content .text-center {
	text-align: center;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2 {
		width: 100%;
	}
}

.bg_contact .bg_contact_content .col2 .has-error .help-block {
	margin-left: 158px;
	text-align: left;
	width: 223px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2 .has-error .help-block {
		margin-left: 0px;
		width: 100%;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2:first-child .col-form-group:nth-child(2n+1) {
		margin-bottom: 0px;
	}
}

.bg_contact .bg_contact_content .col2:first-child .col-form-group:nth-child(2n+1) .form-group {
	margin-bottom: 8px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2:first-child .col-form-group:nth-child(2n+1) .form-group {
		margin-bottom: 15px;
	}
}

.bg_contact .bg_contact_content .col2:first-child .col-form-group:first-child {
	margin-bottom: 8px;
}

@media(max-width:767px) {

	.bg_contact .bg_contact_content .col2:first-child .col-form-group:first-child,
	.bg_contact .bg_contact_content .col2:first-child .col-form-group:nth-child(2) {
		width: 47%;
		display: inline-block;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2:first-child .col-form-group:nth-child(2) {
		float: right;
		margin-top: 17px;
		margin-bottom: 0;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2:first-child .col-form-group:last-child {
		width: 100%;
	}
}

.bg_contact .bg_contact_content .col2:last-child {
	text-align: right;
}

.bg_contact .bg_contact_content .col2:last-child .control-label {
	text-align: left;
	padding-left: 15px;
	font-weight: bold;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2:last-child .control-label {
		padding-left: 0px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2:last-child .col-form-group:last-child {
		margin-top: 15px;
	}
}

.bg_contact .bg_contact_content .col2:last-child .has-error .help-block {
	margin-left: 196px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2:last-child .has-error .help-block {
		margin-left: 0px;
	}
}

.bg_contact .bg_contact_content .col2 .control {
	display: inline-block;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .col2 .control {
		display: block;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .chosen-container .chosen-single {
		width: 100%;
		font-size: 18px;
		line-height: 28px;
		height: 30px;
		padding-top: 1px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .chosen-container .chosen-single span {
		line-height: 28px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .chosen-container .chosen-single div {
		margin-top: 0;
		line-height: 30px;
	}
}

.bg_contact .bg_contact_content .chosen-container .chosen-single div b {
	margin-top: 13px;
	right: 3px;
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .chosen-container .chosen-single div b {
		margin-top: 5px;
		border-width: 6px;
		right: 10px;
		border-top: 8px solid #043458;
		top: 5px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .chosen-container .chosen-drop {
		margin-top: 0px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .chosen-container.chosen-with-drop .chosen-single div b {
		border-top: 0;
		border-bottom: 8px solid #043458;
		top: -5px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .chosen-container .mCSB_scrollTools {
		width: 36px;
	}
}

@media(max-width:767px) {
	.bg_contact .bg_contact_content .has-error .chosen-container .chosen-single {
		padding-top: 0;
	}
}

@media(max-width:767px) {
	.language-zh .bg_contact .bg_contact_content .has-error .chosen-container .chosen-single div b {
		top: 3px;
	}
}

.wrapper_footer {
	margin-top: 0;
	word-break: normal;
}

.contact_popup {
	display: none;
	width: 1020px;
	margin: 0 auto;
	padding-top: 75px;
}

@media(max-width:767px) {
	.contact_popup {
		width: auto;
		max-width: 260px;
		padding-top: 48px;
	}
}

.contact_popup .popup_content {
	width: 60%;
	margin: 0 auto;
	font-size: 18px;
	line-height: 28px;
}

@media(max-width:767px) {
	.contact_popup .popup_content {
		width: 100%;
		padding: 0 5px;
		font-size: 18px;
		line-height: 28px;
	}
}

.contact_popup .popup_content h2 {
	margin-top: 0;
	margin-bottom: 25px;
	padding: 0 85px;
}

@media(max-width:767px) {
	.contact_popup .popup_content h2 {
		font-size: 20px;
		line-height: 25px;
		padding: 0 30px;
	}
}

.contact_popup .popup_content p {
	padding-left: 15px;
	margin-bottom: 15px;
}

@media(max-width:767px) {
	.contact_popup .popup_content p {
		font-size: 12px;
		line-height: 17px;
	}
}

@media(max-width:767px) {
	.page-contactUs .fancybox-wrap .fancybox-close {
		top: 16px;
		right: 15px;
	}
}

.page-contactUs .fancybox-wrap .fancybox-outer {
	padding-top: 0;
}

@media(max-width:767px) {
	.page-contactUs .fancybox-wrap .fancybox-outer {
		padding-bottom: 20px;
	}
}

@media(max-width:767px) {
	.page-contactUs .fancybox-wrap .fancybox-outer .contact_popup .popup_content h2 {
		margin-bottom: 15px;
	}
}

@media(max-width:767px) {
	.page-contactUs .fancybox-wrap .fancybox-outer .contact_popup .popup_content p {
		margin-bottom: 7px;
		padding-left: 11px;
	}
}

.policy_page {
	padding-top: 10px;
}

@media(max-width:767px) {
	.policy_page {
		padding-top: 0px;
	}
}

.policy_page .wrapper-content {
	margin-top: 49px;
}

@media(max-width:767px) {
	.policy_page .wrapper-content {
		margin-top: 25px;
		margin-bottom: 59px;
	}
}

.policy_page .menu_left ul li a.nav-active:before,
.policy_page .menu_left ul li a.active:before,
.policy_page .menu_left ul li a.nav-active1:before,
.policy_page .menu_left ul li a:hover:before {
	left: -108%;
}

@media(max-width:767px) {

	.policy_page .menu_left ul li a.nav-active:before,
	.policy_page .menu_left ul li a.active:before,
	.policy_page .menu_left ul li a.nav-active1:before,
	.policy_page .menu_left ul li a:hover:before {
		left: -30px;
	}
}

.menu_left {
	float: left;
	width: 240px;
	position: absolute;
}

@media(max-width:767px) {
	.menu_left {
		width: 100%;
		float: none;
		position: relative;
	}
}

.menu_left ul li {
	position: relative;
	margin-bottom: 28px;
}

@media(max-width:767px) {
	.menu_left ul li {
		margin-bottom: 0px;
	}
}

.menu_left ul li a {
	font-size: 18px;
	line-height: 28px;
	padding-left: 5px;
	position: static;
}

@media(max-width:767px) {
	.menu_left ul li a {
		font-size: 12px;
		line-height: 17px;
		padding-left: 0px;
	}
}

body.language-zh .menu_left ul li a {
	font-size: 16px;
}

@media(max-width:767px) {
	body.language-zh .menu_left ul li a {
		font-size: 12px;
	}
}

.menu_left ul li a:hover:before {
	content: '';
	width: 100%;
	height: 3px;
	position: absolute;
	left: -100%;
	top: 50%;
	margin-top: -2px;
}

@media(max-width:767px) {
	.menu_left ul li a:hover:before {
		display: none;
	}
}

.menu_left ul li a.nav-active,
.menu_left ul li a.active,
.menu_left ul li a.nav-active1 {
	color: #ee2d42;
}

.menu_left ul li a.nav-active:before,
.menu_left ul li a.active:before,
.menu_left ul li a.nav-active1:before {
	content: '';
	width: 100%;
	height: 3px;
	background: #ee2d42;
	position: absolute;
	left: -100%;
	top: 50%;
	margin-top: -2px;
}

@media(max-width:767px) {

	.menu_left ul li a.nav-active:before,
	.menu_left ul li a.active:before,
	.menu_left ul li a.nav-active1:before {
		height: 2px;
		margin-top: 2px;
		width: 20px;
		left: -30px;
	}
}

.menu_left ul li a.nav-active a,
.menu_left ul li a.active a,
.menu_left ul li a.nav-active1 a {
	color: #ee2d42;
	font-weight: bold;
}

.menu_left ul li.active:before {
	content: '';
	width: 100%;
	height: 3px;
	background: #ee2d42;
	position: absolute;
	left: -100%;
	top: 50%;
	margin-top: -2px;
}

.menu_left ul li.active a {
	color: #ee2d42;
	font-weight: bold;
}

.right_content_main {
	float: right;
	margin-left: 240px;
	padding-bottom: 159px;
}

@media(max-width:767px) {
	.right_content_main {
		width: 100%;
		float: none;
		padding: 0;
		margin-left: 0;
		margin-top: 48px;
	}
}

.text_policy {
	font-size: 18px;
	line-height: 28px;
	color: #1d1d1d;
}

body.language-zh .text_policy {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .text_policy {
		font-size: 12px;
		line-height: 18px;
	}
}

@media(max-width:767px) {
	.text_policy {
		font-size: 12px;
		line-height: 17px;
	}
}

.text_policy h2 {
	font-size: 30px;
	line-height: 38px;
	color: #043458;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 15px;
}

@media(max-width:767px) {
	.text_policy h2 {
		font-size: 20px;
		line-height: 17px;
		margin-bottom: 10px;
	}
}

body.language-zh .text_policy h2 {
	line-height: 36px;
}

@media(max-width:767px) {
	body.language-zh .text_policy h2 {
		line-height: 26px;
	}
}

.text_policy p {
	margin-bottom: 45px;
}

@media(max-width:767px) {
	.text_policy p {
		margin-bottom: 20px;
	}
}

.text_policy .bold-color {
	font-weight: bold;
}

@media(max-width:767px) {
	.text_policy .scroll-section:first-child p {
		margin-bottom: 32px;
	}
}

@media(max-width:767px) {
	.policy_page .sidebar .sidebar__nav li {
		float: none;
		width: 100%;
	}
}

@media(max-width:767px) {
	.student_login .wrapper-content {
		line-height: 14px;
	}
}

body.language-zh .student_login .wrapper-content {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .student_login .wrapper-content {
		font-size: 12px;
		line-height: 18px;
	}
}

@media(max-width:767px) {
	.student_login .content_item_more a {
		padding: 0 10px;
	}
}

.student_login h1 {
	line-height: 80px;
	margin-top: 35px;
	margin-left: 20px;
	color: #043458;
}

@media(max-width:767px) {
	.student_login h1 {
		line-height: 35px;
		font-size: 30px;
		margin-top: 40px;
		margin-left: 0;
	}
}

body.language-zh .student_login h1 {
	font-size: 60px;
	line-height: 70px;
}

@media(max-width:767px) {
	body.language-zh .student_login h1 {
		font-size: 30px;
		line-height: 36px;
	}
}

body.language-en .student_login .content_left .content_item_more {
	right: -20px;
}

.student_login .content_left,
.student_login .content_right {
	position: relative;
	margin-top: 76px;
	margin-bottom: 83px;
	padding-top: 5px;
}

@media(max-width:767px) {

	.student_login .content_left,
	.student_login .content_right {
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

.student_login .content_left .healine,
.student_login .content_right .healine {
	font-size: 30px;
}

@media(max-width:767px) {

	.student_login .content_left .healine,
	.student_login .content_right .healine {
		font-size: 15px;
		line-height: 30px;
	}
}

.student_login .content_left h2,
.student_login .content_right h2 {
	font-size: 50px;
	margin-top: 13px;
	margin-bottom: 19px;
}

@media(max-width:767px) {

	.student_login .content_left h2,
	.student_login .content_right h2 {
		font-size: 30px;
		line-height: 35px;
		margin-top: 5px;
		margin-bottom: 4px;
	}
}

body.language-zh .student_login .content_left h2,
body.language-zh .student_login .content_right h2 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {

	body.language-zh .student_login .content_left h2,
	body.language-zh .student_login .content_right h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

.student_login .content_left .des,
.student_login .content_right .des {
	width: 70%;
	margin-bottom: 15px;
}

@media(max-width:767px) {

	.student_login .content_left .des,
	.student_login .content_right .des {
		width: 60%;
		line-height: 17px;
		margin-bottom: 0;
	}

	body.language-zh .student_login .content_left .des,
	body.language-zh .student_login .content_right .des {
		line-height: 18px;
	}
}

.student_login .content_left .content_item_more,
.student_login .content_right .content_item_more {
	position: absolute;
	right: 34px;
	top: 1px;
}

@media(max-width:767px) {

	.student_login .content_left .content_item_more,
	.student_login .content_right .content_item_more {
		top: 85px;
		bottom: 5px;
		right: 0;
	}
}

.student_login .content_left .content_item_more a,
.student_login .content_right .content_item_more a {
	font-size: 14px;
	width: 137px;
	height: 137px;
}

@media(max-width:767px) {

	.student_login .content_left .content_item_more a,
	.student_login .content_right .content_item_more a {
		width: 69px;
		height: 69px;
		font-size: 14px;
		padding: 0;
	}
}

.student_login .content_left .content_item_more a span,
.student_login .content_right .content_item_more a span {
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 10px;
}

@media(max-width:767px) {

	.student_login .content_left .content_item_more a span,
	.student_login .content_right .content_item_more a span {
		font-size: 7px;
		margin-bottom: 5px;
	}
}

@media(max-width:767px) {

	.student_login .content_left .content_item_more a .icon-arrow_next,
	.student_login .content_right .content_item_more a .icon-arrow_next {
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
	}
}

.student_login .content_left {
	width: 40%;
}

@media(max-width:767px) {
	.student_login .content_left {
		width: 100%;
		min-height: 160px;
	}
}

.student_login .content_right {
	width: 60%;
	padding-left: 65px;
}

@media(max-width:767px) {
	.student_login .content_right {
		width: 100%;
		padding-left: 0;
		padding-bottom: 27px;
		margin-top: 10px;
	}
}

@media(max-width:767px) {
	.student_login .content_right .des {
		width: 55%;
		margin-bottom: 15px;
		margin-top: 7px;
	}
}

.student_login .content_right .content_item_more {
	right: 20px;
}

@media(max-width:767px) {
	.student_login .content_right .content_item_more {
		right: 0;
		top: 94px;
	}
}

.student_login .link_content {
	padding-right: 20px;
	margin-bottom: 65px;
}

@media(max-width:767px) {
	.student_login .link_content {
		text-align: left;
		margin-bottom: 12px;
	}
}

.student_login .link_content a {
	color: #ee2d42;
	font-weight: bold;
	border-bottom: 1px solid #ee2d42;
}

.student_login .link_content a:hover {
	color: #0082a9;
	border-bottom: 1px solid #0082a9;
}

.student_login .content_bottom {
	position: relative;
	margin-top: 43px;
	background: #f2f1f1;
	padding-bottom: 98px;
}

@media(max-width:767px) {
	.student_login .content_bottom {
		padding-bottom: 0px;
		margin-top: 53px;
	}
}

.student_login .content_bottom:before {
	background: url(../_ui/responsive/theme-alpha/img/bg_footer_grey.png) no-repeat 0 0;
	width: 100%;
	height: 43px;
	background-size: 100% 100%;
	left: 0;
	top: -43px;
	position: absolute;
	content: '';
	background: none\0;
}

@media(max-width:767px) {
	.student_login .content_bottom:before {
		height: 15px;
		top: -15px;
	}
}

.student_login .content_bottom .wrapper-content {
	margin-left: 60px;
	margin-right: 60px;
}

@media(max-width:767px) {
	.student_login .content_bottom .wrapper-content {
		margin-left: 0;
		margin-right: 0;
		padding-bottom: 30px;
	}
}

.student_login .content_bottom h2 {
	font-size: 50px;
	line-height: 40px;
	margin-bottom: 42px;
	padding: 0 0 0 55px;
	font-weight: bold;
	color: #ee2d42;
}

@media(max-width:767px) {
	.student_login .content_bottom h2 {
		font-size: 25px;
		line-height: 35px;
		text-align: center;
		padding: 0;
		margin-top: 0;
		margin-bottom: 10px;
	}
}

body.language-zh .student_login .content_bottom h2 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .student_login .content_bottom h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

.student_login .content_bottom h3 {
	color: #043458;
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 30px;
	min-height: 80px;
}

@media(max-width:767px) {
	.student_login .content_bottom h3 {
		display: inline-block;
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 10px;
		width: 70%;
		min-height: 0px;
	}
}

body.language-zh .student_login .content_bottom h3 {
	line-height: 36px;
}

@media(max-width:767px) {
	body.language-zh .student_login .content_bottom h3 {
		line-height: 25px;
	}
}

.student_login .content_bottom .content {
	padding: 40px 50px;
}

@media(max-width:767px) {
	.student_login .content_bottom .content {
		padding: 22px 0px;
	}
}

.student_login .content_bottom .content .img {
	text-align: center;
	margin-bottom: 25px;
}

@media(max-width:767px) {
	.student_login .content_bottom .content .img {
		float: right;
		margin-top: 24px;
		margin-bottom: 10px;
		padding-right: 2px;
		max-width: 46px;
	}
}

.student_login .content_bottom .content .des {
	margin-bottom: 22px;
	min-height: 140px;
}

@media(max-width:767px) {
	.student_login .content_bottom .content .des {
		max-height: 100%;
		margin-bottom: 14px;
		width: 90%;
		line-height: 17px;
		min-height: 0px;
	}
}

.student_login .content_bottom .content .pull_left {
	width: 55%;
}

@media(max-width:767px) {
	.student_login .content_bottom .content .pull_left {
		width: 100%;
	}
}

.student_login .content_bottom .content .pull_left img {
	margin-bottom: 5px;
	max-width: 121px;
}

@media(max-width:767px) {
	.student_login .content_bottom .content .pull_left img {
		margin-bottom: 9px;
	}
}

.student_login .content_bottom .content .content_item_more a span {
	font-size: 18px;
}

@media(max-width:767px) {
	.student_login .content_bottom .content .content_item_more a span {
		font-size: 15px;
	}
}

.student_login .content_bottom .content .col3 {
	padding: 0 50px;
}

@media(max-width:767px) {
	.student_login .content_bottom .content .col3 {
		width: 100%;
		padding: 0;
		margin-bottom: 10px;
	}
}

.student_login .content_bottom .content .col3:last-child .des {
	margin-bottom: 20px;
}

.student_login .content_bottom .content .col3:last-child .content .img {
	margin-right: 0;
}

.student_login .content_bottom .content .col3:last-child h3 {
	margin-bottom: 30px;
}

@media(max-width:767px) {
	.student_login .content_bottom .content .col3:last-child h3 {
		margin-bottom: 9px;
	}
}

.student_login .content_bottom .content .col3:last-child .des {
	width: 100%;
}

.student_login .content_bottom .content .col3 .img img {
	height: 85px;
}

@media(max-width:767px) {
	.student_login .content_bottom .content .col3 .img img {
		height: auto;
	}
}

.student_login .qrcode_student {
	max-width: 80px;
}

.wse_events_page {
	padding-bottom: 40px;
}

body.language-zh .wse_events_page {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .wse_events_page {
		font-size: 12px;
		line-height: 18px;
	}
}

@media(max-width:767px) {
	.wse_events_page {
		padding-bottom: 22px;
	}
}

.wse_events_page .bg_events_cicle {
	position: relative;
	padding-top: 20px;
}

.wse_events_page .bg_events_cicle:before {
	position: absolute;
	content: '';
	z-index: -1;
	width: 2111px;
	height: 2111px;
	border: 3px solid #043458;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	top: -168%;
	left: -4%;
}

.ios11 .wse_events_page .bg_events_cicle:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2111' height='2111'><path d='M2,1055.5a1053.5,1053.5 0 1,0 2107,0a1053.5,1053.5 0 1,0 -2107,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.wse_events_page .bg_events_cicle:before {
		display: none;
	}
}

.wse_events_page .wse_events {
	padding-bottom: 70px;
	margin-bottom: 80px;
}

@media(max-width:767px) {
	.wse_events_page .wse_events {
		padding-bottom: 25px;
	}
}

@media(max-width:767px) {
	.wse_events_page .wse_events h1 {
		font-size: 40px;
		line-height: 45px;
		margin-top: 16px;
	}

	body.language-zh .wse_events_page .wse_events h1 {
		font-size: 30px;
		line-height: 34px;
		margin-bottom: 25px;
	}
}

.wse_events_page .wse_events_content .events_left {
	float: left;
	width: 45%;
}

@media(max-width:767px) {
	.wse_events_page .wse_events_content .events_left {
		width: 100%;
	}
}

.wse_events_page .wse_events_content .events_right {
	float: left;
	width: 44%;
	padding-left: 30px;
}

@media(max-width:767px) {
	.wse_events_page .wse_events_content .events_right {
		width: 100%;
		padding-left: 0;
		margin-top: 0;
	}
}

@media(max-width:767px) {
	.wse_events_page .wse_events_content .events_right strong {
		line-height: 10px;
		font-size: 12px;
	}
}

.wse_events_page .wse_events_content .events_right h3 {
	font-size: 30px;
	line-height: 40px;
	margin-top: 10px;
	padding-right: 130px;
	color: #043458;
	font-weight: bold;
}

@media(max-width:767px) {
	.wse_events_page .wse_events_content .events_right h3 {
		font-size: 20px;
		line-height: 26px;
		padding-right: 0;
		margin-top: 4px;
		margin-bottom: 2px;
	}

	body.language-zh .wse_events_page .wse_events_content .events_right h3 {
		margin-bottom: 12px;
	}
}

.wse_events_page .wse_events_content .events_right .date {
	margin-bottom: 20px;
}

@media(max-width:767px) {
	.wse_events_page .wse_events_content .events_right .date {
		font-size: 12px;
		line-height: 25px;
		margin-bottom: 8px;
	}
}

.wse_events_page .wse_events_content .events_right .des {
	padding-left: 37px;
}

@media(max-width:767px) {
	.wse_events_page .wse_events_content .events_right .des {
		padding-left: 0;
		max-height: 86px;
		overflow: hidden;
		font-size: 12px;
		line-height: 17px;
	}

	body.language-zh .wse_events_page .wse_events_content .events_right .des {
		line-height: 18px;
	}
}

.wse_events_page .event_slider h2 {
	font-size: 50px;
	line-height: 60px;
	padding-left: 80px;
	margin-bottom: 40px;
}

@media(max-width:767px) {
	.wse_events_page .event_slider h2 {
		font-size: 30px;
		line-height: 35px;
		padding-left: 0;
		margin-bottom: 40px;
		margin-top: 22px;
	}
}

body.language-zh .wse_events_page .event_slider h2 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .wse_events_page .event_slider h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

.wse_events_page .event_slider .center__slide {
	padding-bottom: 80px;
	margin-bottom: 0;
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide {
		padding-right: 0px;
		padding-left: 0;
		padding-bottom: 0px;
		margin-right: 0px;
		margin-bottom: 65px;
	}

	.language-zh .wse_events_page .event_slider .center__slide {
		margin-bottom: 60px;
	}
}

.wse_events_page .event_slider .center__slide img {
	width: auto;
	max-width: 250px;
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide img {
		width: 100%;
	}
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide .owl-nav::before {
		height: 74px;
	}
}

.wse_events_page .event_slider .center__slide h3 {
	font-size: 30px;
	line-height: 40px;
	color: #043458;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 10px;
	max-height: 120px;
	overflow: hidden;
}

body.language-zh .wse_events_page .event_slider .center__slide h3 {
	margin-bottom: 20px;
}

@media(max-width:767px) {
	body.language-zh .wse_events_page .event_slider .center__slide h3 {
		margin-bottom: 10px;
	}
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide h3 {
		width: 90%;
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 10px;
		margin-top: 18px;
		max-height: 100%;
	}
}

.wse_events_page .event_slider .center__slide h3 a {
	color: #043458;
}

.wse_events_page .event_slider .center__slide .date {
	margin-bottom: 15px;
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide .date {
		margin-bottom: 10px;
		font-size: 12px;
		line-height: 25px;
	}
}

.wse_events_page .event_slider .center__slide .des {
	max-height: 145px;
	overflow: hidden;
	width: 250px;
}

.language-zh .wse_events_page .event_slider .center__slide .des {
	max-height: 120px;
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide .des {
		font-size: 12px;
		line-height: 17px;
		font-weight: normal;
		width: auto;
		max-height: 100%;
	}

	body.language-zh .wse_events_page .event_slider .center__slide .des {
		line-height: 18px;
	}
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide .item>img {
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
}

.wse_events_page .event_slider .center__slide .wrapper_sponsored {
	position: relative;
	overflow: hidden;
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide .wrapper_sponsored {
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
}

.wse_events_page .event_slider .center__slide .wrapper_sponsored .sponsored {
	position: absolute;
	background: rgba(252, 252, 251, 0.98);
	width: 100%;
	border-radius: 50%;
	height: 100%;
	text-align: center;
	padding-top: 20px;
	bottom: -61%;
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide .wrapper_sponsored .sponsored {
		padding-top: 15px;
		font-size: 12px;
		line-height: 18px;
	}
}

.wse_events_page .event_slider .center__slide .wrapper_sponsored .sponsored .logo_sponsored {
	width: auto;
	margin: 0 auto;
	padding-top: 5px;
}

@media(max-width:767px) {
	.wse_events_page .event_slider .center__slide .wrapper_sponsored .sponsored .logo_sponsored {
		width: 45px;
	}
}

@media(max-width:767px) {
	.free_trial_page {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media(max-width:480px) {
	.free_trial_page {
		max-width: 100%;
	}
}

.free_trial_page .breadcrumb-section {
	margin-top: 26px;
}

.free_trial_page .main-content {
	position: relative;
}

.free_trial_page .bg_freetrail {
	position: relative;
	padding-bottom: 93px;
}

@media(max-width:767px) {
	.free_trial_page .bg_freetrail {
		padding-bottom: 13px;
	}
}

@media(max-width:480px) {
	.free_trial_page .bg_freetrail {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

.free_trial_page .bg_freetrail:before {
	content: '';
	position: absolute;
	border: 3px solid #043458;
	width: 2100px;
	height: 2100px;
	left: -50%;
	top: 15%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

.ios11 .free_trial_page .bg_freetrail:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2100' height='2100'><path d='M2,1050a1048,1048 0 1,0 2096,0a1048,1048 0 1,0 -2096,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.free_trial_page .bg_freetrail:before {
		width: 900px;
		height: 900px;
		left: -192%;
		top: 4%;
	}

	.ios11 .free_trial_page .bg_freetrail:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='900' height='900'><path d='M2,450a448,448 0 1,0 896,0a448,448 0 1,0 -896,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
	}
}

.free_trial_page .content_item {
	width: 45%;
	padding-bottom: 49px;
	min-height: 390px;
}

@media(max-width:767px) {
	.free_trial_page .content_item {
		width: 90%;
		margin-top: 40px;
		padding-bottom: 16px;
		min-height: 0px;
	}
}

.free_trial_page .content_item h1 {
	color: #043458;
	padding-right: 145px;
	margin-bottom: 18px;
}

body.language-zh .free_trial_page .content_item h1 {
	font-size: 60px;
	line-height: 70px;
}

@media(max-width:767px) {
	body.language-zh .free_trial_page .content_item h1 {
		font-size: 30px;
		line-height: 34px;
	}
}

@media(max-width:767px) {
	.free_trial_page .content_item h1 {
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 10px;
		padding-right: 75px;
	}
}

.free_trial_page .content_item .des {
	margin-left: 105px;
}

body.language-zh .free_trial_page .content_item .des {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .free_trial_page .content_item .des {
		font-size: 12px;
		line-height: 18px;
	}
}

@media(max-width:767px) {
	.free_trial_page .content_item .des {
		margin-left: 0;
		margin-right: 70px;
	}
}

.free_trial_page .img_free_trial {
	position: absolute;
	top: 0;
	right: 0;
}

.free_trial_page .wrapper_freetrail .freetrial_content {
	position: relative;
	width: 415px;
	height: 415px;
	background: #ee2d42;
	color: #ffffff;
	display: table;
	vertical-align: middle;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

.free_trial_page .wrapper_freetrail .freetrial_content .content_content {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	padding-left: 72px;
	padding-right: 72px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetrial_content .content_content {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.free_trial_page .wrapper_freetrail .freetrial_content h3 {
	font-size: 50px;
	line-height: 60px;
	font-weight: bold;
	margin-bottom: 15px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetrial_content h3 {
		margin-top: 0px;
		margin-bottom: 7px;
		font-size: 25px;
		line-height: 30px;
	}
}

body.language-zh .free_trial_page .wrapper_freetrail .freetrial_content h3 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .free_trial_page .wrapper_freetrail .freetrial_content h3 {
		font-size: 25px;
		line-height: 30px;
	}
}

.free_trial_page .wrapper_freetrail .freetrial_content .des {
	margin-bottom: 20px;
	padding-left: 32px;
	padding-right: 12px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetrial_content .des {
		max-height: 70px;
		overflow: hidden;
		font-size: 12px;
		line-height: 17px;
		padding-left: 15px;
		padding-right: 10px;
		margin-bottom: 0;
	}
}

body.language-zh .free_trial_page .wrapper_freetrail .freetrial_content .des {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .free_trial_page .wrapper_freetrail .freetrial_content .des {
		font-size: 12px;
		line-height: 18px;
	}
}

.free_trial_page .wrapper_freetrail .freetrial_content .content_item_more {
	position: absolute;
	right: 6px;
	bottom: -6px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetrial_content .content_item_more {
		right: -13px;
		bottom: -34px;
	}
}

.free_trial_page .wrapper_freetrail .freetrial_content .content_item_more a {
	width: 136px;
	height: 136px;
	padding: 0 37px;
	font-size: 14px;
	line-height: 1.5;
}

body.language-zh .free_trial_page .wrapper_freetrail .freetrial_content .content_item_more a {
	padding: 0 30px;
}

@media(max-width:767px) {
	body.language-zh .free_trial_page .wrapper_freetrail .freetrial_content .content_item_more a {
		padding: 0 12px;
		line-height: 14px;
	}
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetrial_content .content_item_more a {
		width: 82px;
		height: 82px;
		font-size: 12px;
		line-height: 1.2;
		padding: 0 20px;
	}
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetrial_content .content_item_more a .icon-icon-trynow {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-trynow-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 23px;
		height: 22px;
	}
}

.free_trial_page .wrapper_freetrail .freetial_left {
	float: left;
	padding-bottom: 50px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_left {
		float: none;
		margin-left: -16px;
		padding-bottom: 47px;
	}
}

.free_trial_page .wrapper_freetrail .freetial_left .freetrial_content {
	margin-left: 137px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_left .freetrial_content {
		width: 198px;
		height: 198px;
		margin-left: 0;
	}
}

.free_trial_page .wrapper_freetrail .freetial_right {
	float: right;
	padding-bottom: 50px;
	padding-top: 82px;
	padding-right: 60px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_right {
		padding-top: 0px;
		padding-right: 0px;
		margin-right: -30px;
	}
}

.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content {
	width: 500px;
	height: 500px;
	background: #043458;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content {
		width: 265px;
		height: 265px;
		margin-right: 20px;
	}
}

.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_content {
	padding-left: 80px;
	padding-right: 72px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_content {
		padding-left: 42px;
		padding-right: 30px;
	}
}

.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_content h3 {
	margin-bottom: 20px;
	margin-top: 5px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_content h3 {
		margin-top: 15px;
		margin-bottom: 10px;
	}
}

.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_content .des {
	padding-right: 40px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_content .des {
		padding-right: 40px;
	}
}

.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_item_more {
	bottom: 35px;
	right: 0px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_item_more {
		bottom: 5%;
		right: -1px;
	}
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_item_more .icon-icon-consult {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/chat-function-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_item_more a {
	padding: 0 20px;
}

@media(max-width:767px) {
	.free_trial_page .wrapper_freetrail .freetial_right .freetrial_content .content_item_more a {
		padding: 0;
	}
}

.bg_color_list {
	background: #d7dfe5;
	padding: 40px 52px 38px 30px;
	margin-top: 35px;
	margin-bottom: 40px;
	position: relative;
	width: 1020px;
}

@media(max-width:767px) {
	.bg_color_list {
		width: 100%;
		margin-top: 29px;
		padding: 10px 0px 36px 0px;
	}
}

.bg_color_list:after {
	position: absolute;
	content: '';
	left: 0;
	top: 100%;
	background-image: url(../picture/sprites_img.png);
	background-position: -578px -140px;
	width: 1021px;
	height: 35px;
	margin-top: -1px;
}

@media(max-width:767px) {
	.bg_color_list:after {
		background-image: url(../picture/sprites_img.png);
		background-position: -1629px -140px;
		width: 320px;
		height: 9px;
	}
}

.bg_color_list .list_content {
	margin: 0 auto;
	padding-top: 19px;
	width: 565px;
}

@media(max-width:767px) {
	.bg_color_list .list_content {
		width: 100%;
	}
}

.bg_color_list .list_content .form-group {
	overflow: hidden;
	margin-bottom: 38px;
}

@media(max-width:767px) {
	.bg_color_list .list_content .form-group {
		margin-bottom: 20px;
	}
}

.bg_color_list .list_content .control-label {
	float: left;
	padding-left: 25px;
	padding-top: 6px;
	line-height: 24px;
	width: 263px;
	font-weight: bold;
}

@media(max-width:767px) {
	.bg_color_list .list_content .control-label {
		width: 100%;
		font-size: 12px;
		line-height: 14px;
		padding-top: 0px;
		padding-left: 0px;
		margin-bottom: 8px;
	}
}

.bg_color_list .list_content .form-control {
	float: right;
	width: 302px;
	height: 35px;
	line-height: 24px;
	font-size: 18px;
}

@media(max-width:767px) {
	.bg_color_list .list_content .form-control {
		width: 100%;
		font-size: 12px;
		line-height: 14px;
		height: 30px;
		float: none;
	}
}

.bg_color_list .list_content .form-control:arter {
	content: 'a';
}

.bg_color_list .list_content .help-block {
	float: left;
	margin-left: 263px;
}

.bg_color_list .list_content .help-block.change-pw-help-block {
	margin-top: -28px;
	padding-bottom: 28px;
	float: none;
}

@media(max-width:767px) {
	.bg_color_list .list_content .help-block.change-pw-help-block {
		margin-left: 0;
		margin-top: -14px;
		padding-bottom: 14px;
	}
}

@media(max-width:767px) {
	.bg_color_list .list_content .help-block {
		margin-left: 0;
	}
}

.bg_color_list .list_content .bottom {
	margin-top: 59px;
	margin-left: 37px;
	margin-right: 5px;
}

@media(max-width:767px) {
	.bg_color_list .list_content .bottom {
		margin-top: 0px;
		text-align: left;
		margin-left: 0;
		margin-right: 0;
	}
}

.bg_color_list .list_content .btn {
	width: 140px;
	height: 33px;
	margin-left: 5px;
	margin-right: 10px;
	line-height: 31px;
	padding-top: 1px;
}

@media(max-width:767px) {
	.bg_color_list .list_content .btn {
		font-size: 12px;
		line-height: 16px;
		height: 31px;
		margin-left: 0;
		margin-right: 5px;
		width: 122px;
	}
}

.bg_color_list .list_content .btn.redirectToHome {
	margin-left: 7px;
}

@media(max-width:767px) {
	.bg_color_list .list_content .btn.redirectToHome {
		margin-left: 0;
		margin-right: 0;
		float: right;
	}
}

.page-updatePassword .fancybox-outer {
	padding: 5px 0 35px 0;
}

@media(max-width:767px) {
	.page-updatePassword .fancybox-outer {
		padding-top: 0;
		padding-bottom: 30px;
	}
}

@media(max-width:767px) {
	.page-updatePassword .fancybox-wrap .fancybox-close {
		top: 15px;
		right: 15px;
	}
}

@media(max-width:767px) {
	.page-updatePassword .container {
		padding-left: 0;
		padding-right: 0;
	}
}

@media(max-width:767px) {
	.page-updatePassword .fogetpass_popup .popup_content {
		padding: 0 30px;
	}
}

.page-updatePassword .fogetpass_popup .popup_content h2 {
	margin-bottom: 30px;
}

@media(max-width:767px) {
	.page-updatePassword .fogetpass_popup .popup_content h2 {
		margin-bottom: 20px;
	}
}

.page-updatePassword .fogetpass_popup .popup_content a {
	text-decoration: none;
	border-bottom: 1px solid #ee2d42;
}

.page-updatePassword .fogetpass_popup .popup_content a:hover {
	border-bottom: 1px solid #0082a9;
}

.wrapper_reset_password {
	padding-bottom: 138px;
}

@media(max-width:767px) {
	.wrapper_reset_password {
		padding-bottom: 20px;
	}
}

.wrapper_reset_password h1 {
	line-height: 80px;
	margin-top: 33px;
}

@media(max-width:767px) {
	.wrapper_reset_password h1 {
		font-size: 30px;
		line-height: 35px;
		width: 60%;
		margin-top: 30px;
	}
}

@media(max-width:767px) {
	.wrapper_reset_password .bg_color_list .has-error .help-block {
		margin-bottom: 0;
	}
}

.fogetpass_popup .popup_content {
	font-size: 18px;
	line-height: 28px;
}

@media(max-width:767px) {
	.fogetpass_popup .popup_content {
		font-size: 12px;
		line-height: 17px;
		padding: 0 35px;
	}
}

.fogetpass_popup .popup_content h2 {
	line-height: 28px;
	margin-bottom: 24px;
}

@media(max-width:767px) {
	.fogetpass_popup .popup_content h2 {
		font-size: 20px;
		line-height: 25px;
	}
}

.fogetpass_popup .popup_content p {
	margin-bottom: 0px;
}

@media(max-width:767px) {
	.fogetpass_popup .popup_content p {
		padding-left: 35px;
		padding-right: 35px;
	}
}

.fogetpass_popup .popup_content a {
	color: #f32a38;
	text-decoration: underline;
	font-weight: bold;
}

@media(max-width:767px) {
	.fogetpass_popup .popup_content a {
		font-size: 12px;
		line-height: 17px;
	}
}

.fogetpass_popup .popup_content a:hover {
	color: #0082a9;
}

.fogetpass_popup #resetpassword-close {
	margin-top: -5px;
	border: none !important;
}

@media(max-width:767px) {
	.fogetpass_popup #resetpassword-close {
		margin-top: 0;
	}
}

.page-login .fancybox-wrap .fancybox-close {
	top: 29px;
	right: 23px;
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-close {
		top: 15px;
		right: 15px;
	}
}

.page-login .fancybox-wrap .fancybox-outer {
	padding-top: 70px;
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer {
		padding: 50px 0 10px 0;
	}
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup {
		padding-bottom: 0;
	}
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner {
		padding-left: 20px;
		padding-right: 20px;
		font-size: 12px;
		line-height: 17px;
	}
}

.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner h2 {
	margin-bottom: 25px;
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner h2 {
		margin-bottom: 26px;
		padding-top: 3px;
	}
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner .fancybox_popup_content {
		margin-top: 17px;
		padding-bottom: 19px;
	}
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner .fancybox_popup_content .control-group {
		margin-right: 0;
	}
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner .fancybox_popup_content .control-label {
		margin-bottom: 3px;
	}
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner .fancybox_popup_content input.form-control {
		height: 30px;
		margin-top: 3px;
	}
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner .fancybox_popup_content .btn {
		margin-top: -5px;
		height: 30px;
		line-height: 15px;
	}
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner .fancybox_popup_content .help-block {
		margin-bottom: 0;
	}
}

.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner.forgotpassword_success h2 {
	margin-top: -16px;
	margin-bottom: 22px;
}

@media(max-width:767px) {
	.page-login .fancybox-wrap .fancybox-outer .fancybox_popup_inner.forgotpassword_success h2 {
		padding-top: 0;
	}
}

.centers .main-content {
	position: relative;
	min-height: 456px;
	overflow: visible;
}

@media(max-width:767px) {
	.centers .main-content {
		max-width: none;
	}
}

.centers__left {
	clear: both;
	position: relative;
	z-index: 20;
	padding-left: 80px;
}

@media(max-width:767px) {
	.centers__left {
		padding-left: 20px;
		padding-right: 20px;
		max-width: 320px;
		margin: auto;
	}
}

.centers__right {
	position: absolute;
	top: 0;
	right: 0;
}

@media(max-width:767px) {
	.centers__right {
		max-width: none;
		position: static;
		top: auto;
		right: auto;
		margin: 0 -10px;
	}

	.centers__right img {
		width: 100%;
	}
}

.centers__title {
	font-size: 50px;
	padding-top: 55px;
	padding-bottom: 4px;
	color: #ee2d42;
	font-weight: bold;
}

@media(max-width:767px) {
	.centers__title {
		font-size: 30px;
		padding-top: 20px;
		padding-bottom: 0;
		margin-bottom: 1px;
	}
}

.centers__description {
	font-size: 18px;
	font-weight: bold;
}

@media(max-width:767px) {
	.centers__description {
		font-size: 12px;
	}
}

.centers__location {
	padding-top: 17px;
}

.centers__location:before,
.centers__location:after {
	content: " ";
	display: table;
}

.centers__location:after {
	clear: both;
}

.centers__location:before,
.centers__location:after {
	content: " ";
	display: table;
}

.centers__location:after {
	clear: both;
}

@media(max-width:767px) {
	.centers__location {
		padding-top: 0;
		margin-top: -7px;
	}
}

.centers__select {
	float: left;
	width: 220px;
	margin-left: 20px;
	min-height: 45px;
}

.centers__select:first-child {
	margin-left: 0;
}

@media(max-width:767px) {
	.centers__select {
		min-height: 45px;
		float: none;
		width: 100%;
		margin-left: 0;
		margin-top: 8px;
	}
}

.centers__button {
	float: left;
	margin-left: 17px;
}

@media(max-width:767px) {
	.centers__button {
		margin: 5px 0 0 0;
		float: right;
		padding-bottom: 8px;
	}
}

.centers__button button {
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	width: 45px;
	height: 45px;
	background: #ee2d42;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	border: none;
	box-shadow: 0px 3px 5px 2px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 3px 5px 2px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 3px 5px 2px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 3px 5px 2px rgba(238, 45, 66, 0.48);
	text-transform: uppercase;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
}

@media(min-width:1024px) {
	.centers__button button:hover {
		background: #eb5e6c;
	}

	.centers__button button:active {
		background: #ee2d42;
		cursor: default;
	}
}

.centers__button button.disabled {
	background: #666666;
	box-shadow: 0px 3px 5px 2px rgba(102, 102, 102, 0.48);
	-moz-box-shadow: 0px 3px 5px 2px rgba(102, 102, 102, 0.48);
	-webkit-box-shadow: 0px 3px 5px 2px rgba(102, 102, 102, 0.48);
	-o-box-shadow: 0px 3px 5px 2px rgba(102, 102, 102, 0.48);
	color: #999;
}

@media(max-width:767px) {
	.centers__button button {
		width: 51px;
		height: 51px;
		font-size: 12px;
	}
}

.centers__prime {
	max-width: 350px;
	padding-top: 93px;
	padding-bottom: 75px;
}

@media(max-width:767px) {
	.centers__prime {
		padding-top: 25px;
		padding-bottom: 22px;
	}
}

.centers__prime p {
	margin: 0;
	line-height: 26px;
	font-size: 18px;
}

@media(max-width:767px) {
	.centers__prime p {
		font-size: 12px;
		line-height: 17px;
	}
}

.centers__prime p b,
.centers__prime p a {
	color: #043458;
	font-weight: bold;
}

.centers__prime p a {
	text-decoration: underline;
}

.centers__prime p a:hover {
	color: #0082a9;
}

@media(max-width:767px) {
	.centers__prime p a:hover {
		color: #043458;
	}
}

.centers__result {
	max-width: 1080px;
	padding: 0 0 51px 30px;
	margin: auto;
	margin-top: -67px;
}

@media(max-width:767px) {
	.centers__result {
		padding: 26px 30px 0;
		max-width: 320px;
		margin-top: -3px;
	}
}

.centers__result:before,
.centers__result:after {
	content: " ";
	display: table;
}

.centers__result:after {
	clear: both;
}

.centers__result:before,
.centers__result:after {
	content: " ";
	display: table;
}

.centers__result:after {
	clear: both;
}

.centers__result__left,
.centers__result__right {
	vertical-align: top;
}

@media(max-width:767px) {

	.centers__result__left,
	.centers__result__right {
		display: block;
	}
}

.centers__result__left {
	padding: 0 10px 0 0;
	width: 480px;
}

@media(max-width:767px) {
	.centers__result__left {
		width: 100%;
	}
}

.centers__result__right {
	padding: 157px 0 0 10px;
	width: 590px;
}

@media(max-width:767px) {
	.centers__result__right {
		padding-left: 0;
		padding-top: 6px;
		width: 100%;
	}
}

.centers__result p {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
}

@media(max-width:767px) {
	.centers__result p {
		font-size: 12px;
		line-height: 17px;
	}
}

.centers__result p.centers__result__title {
	font-weight: bold;
	margin-top: 28px;
}

@media(max-width:767px) {
	.centers__result p.centers__result__title {
		margin-top: 17px;
	}
}

.centers__result p.centers__result__title:first-child {
	margin-top: 0;
}

.centers__result p .js-get-number {
	cursor: default;
	color: #333;
}

.centers__result p.view-rating {
	margin-top: 40px;
}

@media(max-width:767px) {
	.centers__result p.view-rating {
		font-size: 12px;
		line-height: 32px;
		margin-top: 18px;
	}
}

.centers__result p.view-rating a {
	color: #ee2d42;
	border-bottom: 1px solid #ee2d42;
	font-weight: bold;
}

.centers__result p.view-rating a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.centers__result p.view-rating a:hover {
		color: #043458;
		border-color: #043458;
	}
}

.centers__result p.view-rating .icon-rating {
	vertical-align: middle;
	display: inline-block;
	margin-right: 15px;
}

@media(max-width:767px) {
	.centers__result p.view-rating .icon-rating {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/rating-small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 28px;
		height: 31px;
		vertical-align: top;
	}
}

.baidu-map {
	height: 550px;
	margin: 70px 0 101px 0;
	background: url(../_ui/responsive/theme-alpha/img/map.jpg) center center repeat-x;
}

.world {
	background: #f1f2f2;
	position: relative;
	margin-bottom: -43px;
	margin-top: 70px;
	padding-bottom: 120px;
}

.world:before {
	content: '';
	display: block;
	width: 100%;
	height: 43px;
	background: url('../_ui/responsive/theme-alpha/img/bg_footer_grey.png') center 0 no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -43px;
	left: 0;
}

@media(max-width:767px) {
	.world:before {
		height: 15px;
		top: -15px;
	}
}

@media(max-width:767px) {
	.world {
		margin-top: 36px;
		margin-bottom: -14px;
		padding-bottom: 77px;
	}
}

.world__container {
	max-width: 1080px;
	padding-left: 60px;
	padding-right: 60px;
	margin: auto;
}

@media(max-width:767px) {
	.world__container {
		padding: 0 30px;
	}
}

.world__map {
	background: url(../_ui/responsive/theme-alpha/img/world.png) 355px 5px no-repeat;
	min-height: 278px;
	margin-top: -30px;
}

@media(max-width:767px) {
	.world__map {
		background-position: 164px 19px;
		background-size: 145px auto;
		max-width: 320px;
		margin: 0 auto;
		min-height: 100px;
	}
}

.world__title {
	font-size: 30px;
	color: #ee2d42;
	font-weight: bold;
	padding-top: 80px;
	max-width: 320px;
}

@media(max-width:767px) {
	.world__title {
		max-width: 121px;
		font-size: 20px;
		line-height: 25px;
		padding-top: 44px;
	}
}

.world__description {
	font-size: 18px;
	padding-top: 10px;
	max-width: 320px;
}

@media(max-width:767px) {
	.world__description {
		font-size: 12px;
		padding-top: 0;
	}
}

@media(max-width:767px) {
	.world__nation {
		max-width: 320px;
		margin: -3px auto 0;
	}
}

.world__nation:before,
.world__nation:after {
	content: " ";
	display: table;
}

.world__nation:after {
	clear: both;
}

.world__nation:before,
.world__nation:after {
	content: " ";
	display: table;
}

.world__nation:after {
	clear: both;
}

.world__nation__col {
	width: 25%;
	float: left;
	margin-top: 5px;
	padding-right: 20px;
}

@media(max-width:767px) {
	.world__nation__col {
		width: 50%;
		margin-top: 18px;
		line-height: 17px;
	}

	.world__nation__col:nth-child(2n+1) {
		clear: both;
	}
}

.world__nation__col li {
	font-size: 18px;
	line-height: 28px;
	color: #333;
}

@media(max-width:767px) {
	.world__nation__col li {
		font-size: 12px;
		line-height: 100%;
	}
}

.world__nation__col li b {
	font-weight: bold;
}

.world__nation__col ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.store__finder--navigation {
	display: none;
}

.store__finder--details-openings * {
	font-weight: normal;
}

@media(max-width:767px) {
	.store__finder .store__finder--map {
		margin-top: 29px;
		height: 276px;
		margin-bottom: 64px;
	}
}

.details {
	margin-top: 40px;
	position: relative;
}

.details:before,
.details:after {
	content: " ";
	display: table;
}

.details:after {
	clear: both;
}

.details:before,
.details:after {
	content: " ";
	display: table;
}

.details:after {
	clear: both;
}

@media(max-width:767px) {
	.details {
		margin-top: 7px;
	}
}

.details .main-content {
	position: relative;
}

@media(max-width:767px) {
	.details .main-content {
		max-width: 320px;
	}
}

.details__left {
	position: absolute;
	top: 24px;
	left: 50%;
	margin-left: -700px;
	width: 323px;
	z-index: 10;
}

@media(min-width:768px) and (max-width:1365px) {
	.details__left {
		left: 0;
		margin-left: 0;
	}
}

@media(max-width:767px) {
	.details__left {
		position: static;
		width: 100%;
		margin: -2px 0 0 0;
	}

	.details__left:before,
	.details__left:after {
		content: " ";
		display: table;
	}

	.details__left:after {
		clear: both;
	}

	.details__left:before,
	.details__left:after {
		content: " ";
		display: table;
	}

	.details__left:after {
		clear: both;
	}

	.details__left .sidebar__nav li {
		padding-top: 13px;
	}
}

.details__left__news {
	padding: 38px 0 0 105px;
}

@media(min-width:768px) and (max-width:1365px) {
	.details__left__news {
		padding-left: 50px;
	}
}

.details__left__news__img {
	max-width: 134px;
}

@media(max-width:767px) {
	.details__left__news {
		display: none;
	}
}

.details__left__news__title {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	color: #043458;
	padding: 0 0 0 6px;
	max-width: 150px;
	margin-top: 14px;
}

body.language-zh .details__left__news__title {
	font-size: 16px;
	line-height: 24px;
}

@media(min-width:768px) and (max-width:1365px) {
	.details__left .sidebar__nav li a {
		padding-left: 50px;
	}

	.details__left .sidebar__nav li a.active:before {
		width: 45px;
	}
}

.details__block {
	clear: both;
	padding-right: 110px;
}

.details__block:before,
.details__block:after {
	content: " ";
	display: table;
}

.details__block:after {
	clear: both;
}

.details__block:before,
.details__block:after {
	content: " ";
	display: table;
}

.details__block:after {
	clear: both;
}

@media(max-width:767px) {
	.details__block {
		padding: 0 30px;
	}
}

.course {
	width: 100%;
	max-width: 970px;
	float: right;
}

@media(min-width:1025px) and (max-width:1365px) {
	.course {
		max-width: 900px;
	}
}

@media(max-width:767px) {
	.course {
		padding-top: 30px;
	}
}

.course__title {
	font-size: 50px;
	color: #043458;
	font-weight: bold;
}

@media(max-width:767px) {
	.course__title {
		font-size: 30px;
		line-height: 35px;
		margin-top: 11px;
	}
}

body.language-zh .course__title {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .course__title {
		font-size: 30px;
		line-height: 35px;
	}
}

.course__description {
	font-size: 18px;
	line-height: 30px;
	margin-top: 15px;
}

body.language-zh .course__description {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .course__description {
		font-size: 12px;
		line-height: 18px;
	}
}

@media(max-width:767px) {
	.course__description {
		font-size: 12px;
		line-height: 18px;
		margin-top: 9px;
		max-width: 213px;
		margin-bottom: 3px;
	}
}

.course__description b {
	font-weight: bold;
}

@media(max-width:767px) {
	body.language-zh .course__description b {
		margin-top: 6px;
		display: inline-block;
	}
}

.course__info {
	margin: 0 -40px;
}

@media(max-width:767px) {
	.course__info {
		margin: 0;
		padding-top: 1px;
	}
}

.course__info:before,
.course__info:after {
	content: " ";
	display: table;
}

.course__info:after {
	clear: both;
}

.course__info:before,
.course__info:after {
	content: " ";
	display: table;
}

.course__info:after {
	clear: both;
}

.course__info__item {
	float: left;
	width: 33.33%;
	padding: 0 40px;
	margin-top: 20px;
}

@media(max-width:767px) {
	.course__info__item {
		float: none;
		width: 100%;
		padding: 0 0 0 90px;
		position: relative;
		margin-top: 25px;
	}
}

.course__info__title {
	font-weight: bold;
	color: #043458;
	font-size: 30px;
	line-height: 40px;
	letter-spacing: -0.5px;
}

body.language-zh .course__info__title {
	line-height: 36px;
}

@media(max-width:767px) {
	body.language-zh .course__info__title {
		line-height: 25px;
	}
}

@media(max-width:767px) {
	.course__info__title {
		font-size: 20px;
		line-height: 25px;
	}

	body.language-zh .course__info__title {
		line-height: 26px;
	}
}

.course__info__title span {
	margin: auto;
	margin-bottom: 33px;
}

.course__info__title span.img-desktop {
	display: block;
}

@media(max-width:767px) {
	.course__info__title span {
		margin: 0;
		position: absolute;
		top: 2px;
		left: 18px;
	}

	.course__info__title span.img-desktop {
		display: none;
	}
}

.course__info__text {
	font-size: 18px;
	line-height: 28px;
	margin-top: 19px;
}

@media(max-width:767px) {
	.course__info__text {
		font-size: 12px;
		line-height: 17px;
		margin-top: 6px;
	}
}

body.language-zh .course__info__text {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .course__info__text {
		font-size: 12px;
		line-height: 17px;
	}
}

.how {
	float: right;
	margin: 150px -5px 0 0;
}

@media(min-width:1025px) and (max-width:1365px) {
	.how {
		padding-right: 60px;
	}
}

@media(max-width:767px) {
	.how {
		float: left;
		margin: 0 0 0 -60px;
		padding-top: 130px;
		height: 670px;
	}
}

.how__content {
	width: 648px;
	height: 648px;
	border: 3px solid #ee2d42;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	position: relative;
}

.ios11 .how__content {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='648' height='648'><path d='M2,324a322,322 0 1,0 644,0a322,322 0 1,0 -644,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.how__content {
		width: 532px;
		height: 532px;
		border-width: 2px;
	}

	.ios11 .how__content {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='532' height='532'><path d='M2,266a264,264 0 1,0 528,0a264,264 0 1,0 -528,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
	}
}

.how__top {
	width: 490px;
	height: 490px;
	position: absolute;
	top: -70px;
	left: -328px;
	color: #fff;
	z-index: 10;
	background: #ee2d42;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

@media(max-width:767px) {
	.how__top {
		width: 340px;
		height: 340px;
		top: -106px;
		left: -27px;
	}
}

.how__top__box {
	width: 100%;
	max-width: 385px;
	float: right;
}

@media(max-width:767px) {
	.how__top__box {
		max-width: 230px;
		float: left;
		margin-left: 86px;
	}
}

.how__img {
	position: absolute;
	bottom: -47px;
	left: -152px;
	z-index: 20;
	width: 100%;
	max-width: 344px;
}

@media(max-width:767px) {
	.how__img {
		max-width: 168px;
		bottom: 98px;
		left: 27px;
	}
}

.how__img img {
	width: 100%;
}

@media(max-width:767px) {
	.how__img img {
		width: auto;
		height: 168px;
	}
}

.how__title {
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
	padding-top: 58px;
	width: 280px;
}

@media(max-width:767px) {
	.how__title {
		font-size: 30px;
		line-height: 35px;
		padding-top: 38px;
		width: auto;
		margin-right: 30px;
	}

	body.language-zh .how__title {
		line-height: 34px;
	}
}

.how__description {
	font-size: 18px;
	line-height: 28px;
	padding: 0 0 0 31px;
	margin-top: 10px;
	width: 294px;
}

@media(max-width:767px) {
	.how__description {
		padding: 0 19px;
		font-size: 12px;
		line-height: 18px;
		width: 100%;
	}
}

body.language-zh .how__description {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .how__description {
		font-size: 12px;
		line-height: 18px;
	}
}

.how__slider {
	width: 100%;
	float: right;
	max-width: 300px;
	margin-right: 85px;
	padding-top: 143px;
	position: static;
}

@media(max-width:767px) {
	.how__slider {
		margin-left: 149px;
		padding-top: 291px;
		max-width: 167px;
		float: left;
	}
}

.how__slider__title {
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 12px;
	color: #ee2d42;
	font-weight: bold;
}

@media(max-width:767px) {
	.how__slider__title {
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 6px;
	}
}

body.language-zh .how__slider__title {
	line-height: 36px;
}

@media(max-width:767px) {
	body.language-zh .how__slider__title {
		line-height: 26px;
	}
}

.how__slider__description {
	font-size: 18px;
	line-height: 28px;
}

@media(max-width:767px) {
	.how__slider__description {
		font-size: 12px;
		line-height: 17px;
	}
}

body.language-zh .how__slider__description {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .how__slider__description {
		font-size: 12px;
		line-height: 17px;
	}
}

.how__slider .owl-nav {
	position: absolute;
	right: 27px;
	bottom: 30px;
	width: 136px;
	height: 136px;
	background: rgba(238, 45, 66, 0.58);
	box-shadow: 0 18px 25px 10px rgba(238, 45, 66, 0.58);
	-moz-box-shadow: 0 18px 25px 10px rgba(238, 45, 66, 0.58);
	-webkit-box-shadow: 0 18px 25px 10px rgba(238, 45, 66, 0.58);
	-o-box-shadow: 0 18px 25px 10px rgba(238, 45, 66, 0.58);
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

@media screen and (min-width:640px) and (max-width:767px) {
	.how__slider .owl-nav {
		width: 160px;
		height: 160px;
	}
}

@media(max-width:767px) {
	.how__slider .owl-nav {
		left: 251px;
		right: auto;
		width: 68px;
		height: 68px;
		bottom: -32px;
	}
}

.how__slider .owl-nav:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -1px;
	margin-top: -68px;
	width: 3px;
	height: 136px;
	background: #fff;
	z-index: 10;
}

@media screen and (min-width:640px) and (max-width:767px) {
	.how__slider .owl-nav:before {
		height: 150px;
	}
}

@media(max-width:767px) {
	.how__slider .owl-nav:before {
		height: 68px;
		width: 2px;
		margin-top: -34px;
	}
}

.how__slider .owl-nav .owl-prev,
.how__slider .owl-nav .owl-next {
	width: 50%;
	height: 100%;
	display: block;
	float: left;
	position: relative;
	font-size: 0;
	background: #ee2d42;
}

@media(min-width:1024px) {

	.how__slider .owl-nav .owl-prev:hover,
	.how__slider .owl-nav .owl-next:hover {
		background: #fff;
		transition: 0.3s;
		-moz-transition: 0.3s;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		-sm-transition: 0.3s;
	}

	.how__slider .owl-nav .owl-prev:hover.owl-next:before,
	.how__slider .owl-nav .owl-next:hover.owl-next:before {
		background-image: url(../picture/sprites_img.png);
		background-position: -1250px -776px;
		width: 18px;
		height: 31px;
	}

	.how__slider .owl-nav .owl-prev:hover.owl-prev:before,
	.how__slider .owl-nav .owl-next:hover.owl-prev:before {
		background-image: url(../picture/sprites_img.png);
		background-position: -1010px -776px;
		width: 18px;
		height: 31px;
	}
}

@media(min-width:1024px) and (max-width:767px) {

	.how__slider .owl-nav .owl-prev:hover.owl-next:before,
	.how__slider .owl-nav .owl-next:hover.owl-next:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-red-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

@media(min-width:1024px) and (max-width:767px) {

	.how__slider .owl-nav .owl-prev:hover.owl-prev:before,
	.how__slider .owl-nav .owl-next:hover.owl-prev:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-red-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.how__slider .owl-nav .owl-prev:before,
.how__slider .owl-nav .owl-next:before {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -9px;
	margin-top: -15px;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev:before,
	.how__slider .owl-nav .owl-next:before {
		margin-left: -6px;
		margin-top: -10px;
	}
}

.how__slider .owl-nav .owl-prev.owl-prev,
.how__slider .owl-nav .owl-next.owl-prev {
	border-radius: 200px 0 0 200px;
	-moz-border-radius: 200px 0 0 200px;
	-webkit-border-radius: 200px 0 0 200px;
	-o-border-radius: 200px 0 0 200px;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev.owl-prev,
	.how__slider .owl-nav .owl-next.owl-prev {
		border-radius: 68px 0 0 68px;
		-moz-border-radius: 68px 0 0 68px;
		-webkit-border-radius: 68px 0 0 68px;
		-o-border-radius: 68px 0 0 68px;
	}
}

.how__slider .owl-nav .owl-prev.owl-prev:before,
.how__slider .owl-nav .owl-next.owl-prev:before {
	content: '';
	background-image: url(../picture/sprites_img.png);
	background-position: -962px -776px;
	width: 18px;
	height: 31px;
	display: block;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev.owl-prev:before,
	.how__slider .owl-nav .owl-next.owl-prev:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.how__slider .owl-nav .owl-prev.owl-prev:active,
.how__slider .owl-nav .owl-next.owl-prev:active {
	margin-right: -2px;
	margin-left: 2px;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev.owl-prev:active,
	.how__slider .owl-nav .owl-next.owl-prev:active {
		background: #fff;
	}

	.how__slider .owl-nav .owl-prev.owl-prev:active:before,
	.how__slider .owl-nav .owl-next.owl-prev:active:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-red-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.how__slider .owl-nav .owl-prev.owl-next,
.how__slider .owl-nav .owl-next.owl-next {
	border-radius: 0 200px 200px 0;
	-moz-border-radius: 0 200px 200px 0;
	-webkit-border-radius: 0 200px 200px 0;
	-o-border-radius: 0 200px 200px 0;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev.owl-next,
	.how__slider .owl-nav .owl-next.owl-next {
		border-radius: 0 68px 68px 0;
		-moz-border-radius: 0 68px 68px 0;
		-webkit-border-radius: 0 68px 68px 0;
		-o-border-radius: 0 68px 68px 0;
	}
}

.how__slider .owl-nav .owl-prev.owl-next:before,
.how__slider .owl-nav .owl-next.owl-next:before {
	content: '';
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
	display: block;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev.owl-next:before,
	.how__slider .owl-nav .owl-next.owl-next:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.how__slider .owl-nav .owl-prev.owl-next:active,
.how__slider .owl-nav .owl-next.owl-next:active {
	margin-left: -2px;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev.owl-next:active,
	.how__slider .owl-nav .owl-next.owl-next:active {
		background: #fff;
	}

	.how__slider .owl-nav .owl-prev.owl-next:active:before,
	.how__slider .owl-nav .owl-next.owl-next:active:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-red-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.how__slider .owl-nav .owl-prev:active,
.how__slider .owl-nav .owl-next:active {
	cursor: default;
}

.how__slider .owl-nav .owl-prev:active:not(.disabled),
.how__slider .owl-nav .owl-next:active:not(.disabled) {
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
	transform: scale(0.95);
}

.how__slider .owl-nav .owl-prev.disabled,
.how__slider .owl-nav .owl-next.disabled {
	background: #666;
	cursor: default;
}

.how__slider .owl-nav .owl-prev.disabled.owl-next:before,
.how__slider .owl-nav .owl-next.disabled.owl-next:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -914px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev.disabled.owl-next:before,
	.how__slider .owl-nav .owl-next.disabled.owl-next:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-disable-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.how__slider .owl-nav .owl-prev.disabled.owl-prev:before,
.how__slider .owl-nav .owl-next.disabled.owl-prev:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -1058px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {

	.how__slider .owl-nav .owl-prev.disabled.owl-prev:before,
	.how__slider .owl-nav .owl-next.disabled.owl-prev:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-disable-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.how__slider .owl-nav .owl-prev.disabled:active,
.how__slider .owl-nav .owl-next.disabled:active {
	margin: 0;
}

.how__slider .owl-dots {
	counter-reset: dots;
	position: absolute;
	top: 100px;
	right: 0;
	width: 100%;
	max-width: 385px;
}

@media(max-width:767px) {
	.how__slider .owl-dots {
		top: auto;
		bottom: 238px;
		max-width: 378px;
	}
}

.how__slider .owl-dots .owl-dot {
	width: 33px;
	height: 33px;
	border: 3px solid #333;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	display: inline-block;
	margin-left: 10px;
	color: #333;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	float: left;
	line-height: 30px;
}

.how__slider .owl-dots .owl-dot span {
	height: 100%;
	display: inline-block;
	vertical-align: middle;
}

@media(max-width:767px) {
	.how__slider .owl-dots .owl-dot {
		border-width: 2px;
		margin-left: 15px;
	}
}

.how__slider .owl-dots .owl-dot:first-child {
	margin-left: 0;
}

.how__slider .owl-dots .owl-dot:hover {
	border-color: #0082a9;
	color: #0082a9;
}

@media(max-width:767px) {
	.how__slider .owl-dots .owl-dot:hover {
		border-color: #333;
	}

	.how__slider .owl-dots .owl-dot:hover:before {
		color: #333;
	}
}

.how__slider .owl-dots .owl-dot.active {
	border-color: #ee2d42;
	color: #ee2d42;
}

@media(max-width:767px) {
	.how__slider .owl-dots .owl-dot.active {
		border-color: #ee2d42;
	}

	.how__slider .owl-dots .owl-dot.active:before {
		color: #ee2d42 !important;
	}
}

.how__slider .owl-dots .owl-dot:before {
	counter-increment: dots;
	content: counter(dots);
}

.ie8 .how__slider .owl-dots .owl-dot:before {
	display: none;
}

.how__slider .owl-dots .owl-dot .owl-dot-number {
	font-style: normal;
}

.what {
	clear: both;
	width: 1327px;
	height: 1327px;
	border: 3px solid #043458;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	float: right;
	margin: 59px -135px 0 0;
	position: relative;
}

.ios11 .what {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1327' height='1327'><path d='M2,663.5a661.5,661.5 0 1,0 1323,0a661.5,661.5 0 1,0 -1323,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
}

@media(min-width:1025px) and (max-width:1365px) {
	.what {
		margin-right: -250px;
	}
}

@media(max-width:767px) {
	.what {
		width: 820px;
		height: 1075px;
		padding-top: 213px;
		border: none;
	}

	.ios11 .what {
		background: none;
	}

	.what:before {
		content: '';
		width: 820px;
		height: 820px;
		position: absolute;
		bottom: 46px;
		left: 0;
		border: 2px solid #043458;
		border-radius: 100%;
		-moz-border-radius: 100%;
		-webkit-border-radius: 100%;
		-o-border-radius: 100%;
	}

	.ios11 .what:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='820' height='820'><path d='M2,410a408,408 0 1,0 816,0a408,408 0 1,0 -816,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
	}
}

.what__content {
	width: 859px;
	height: 859px;
	background: #f2f1f1;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	position: relative;
	margin: 190px 0 0 90px;
}

@media(max-width:767px) {
	.what__content {
		width: 550px;
		height: 550px;
		margin: 12px 0 0 190px;
	}
}

.what__content__top {
	width: 491px;
	height: 491px;
	background: #043458;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	position: absolute;
	top: -107px;
	right: -109px;
	color: #fff;
}

@media(max-width:767px) {
	.what__content__top {
		width: 326px;
		height: 326px;
		top: -248px;
		right: 42px;
	}
}

.what__content__top .center-wrap {
	width: 100%;
	max-width: 360px;
	padding: 0 15px;
}

@media(max-width:767px) {
	.what__content__top .center-wrap {
		max-width: 222px;
	}
}

.what__content__title {
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
}

@media(max-width:767px) {
	.what__content__title {
		font-size: 30px;
		line-height: 35px;
		margin: 29px 0 10px 0;
	}

	body.language-zh .what__content__title {
		font-size: 24px;
		line-height: 30px;
	}
}

body.language-en .what__content__title {
	font-family: 'ProximaNova', Arial, sans-serif;
}

.what__content__description {
	font-size: 18px;
	line-height: 28px;
	padding-left: 30px;
}

@media(max-width:767px) {
	.what__content__description {
		font-size: 12px;
		line-height: 17px;
		padding-left: 24px;
	}
}

body.language-zh .what__content__description {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .what__content__description {
		font-size: 12px;
		line-height: 18px;
	}
}

.what__box {
	width: 100%;
	max-width: 660px;
	margin: auto;
	padding: 193px 15px 0 28px;
}

@media(max-width:767px) {
	.what__box {
		max-width: 300px;
		padding: 126px 0 0 53px;
	}
}

.what__box__title {
	font-size: 30px;
	color: #043458;
	font-weight: bold;
	max-width: 300px;
	line-height: 42px;
	height: 84px;
}

@media(max-width:767px) {
	.what__box__title {
		font-size: 20px;
		line-height: 25px;
		height: auto;
	}
}

body.language-zh .what__box__title {
	line-height: 36px;
}

@media(max-width:767px) {
	body.language-zh .what__box__title {
		line-height: 26px;
	}
}

.what__box__tabs {
	margin-top: 25px;
}

@media(max-width:767px) {
	.what__box__tabs {
		margin-top: 12px;
	}
}

.what__box__tabs .nav-tabs {
	border: none;
	padding: 0;
	margin: 0;
	font-size: 0;
	list-style: none;
}

.what__box__tabs .nav-tabs:before,
.what__box__tabs .nav-tabs:after {
	content: " ";
	display: table;
}

.what__box__tabs .nav-tabs:after {
	clear: both;
}

.what__box__tabs .nav-tabs:before,
.what__box__tabs .nav-tabs:after {
	content: " ";
	display: table;
}

.what__box__tabs .nav-tabs:after {
	clear: both;
}

.what__box__tabs .nav-tabs li {
	margin-left: 25px;
}

.what__box__tabs .nav-tabs li:first-child {
	margin-left: 0;
}

.what__box__tabs .nav-tabs li.active a {
	background: none;
	border-color: transparent !important;
	text-decoration: none;
	color: #043458 !important;
}

.what__box__tabs .nav-tabs li a {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	background: none;
	border-bottom: 1px solid #333;
	margin: 0;
}

@media(max-width:767px) {
	.what__box__tabs .nav-tabs li a {
		font-size: 12px;
		line-height: 14px;
	}
}

.what__box__tabs .nav-tabs li a:hover {
	background: none;
	text-decoration: none;
	color: #0082a9;
	border-bottom-color: #0082a9;
}

@media(max-width:767px) {
	.what__box__tabs .nav-tabs li a:hover {
		color: #333;
		border-bottom-color: #333;
	}
}

.what__box__tabs .levels {
	margin: 0 -10px;
	padding-top: 19px;
}

.what__box__tabs .levels:before,
.what__box__tabs .levels:after {
	content: " ";
	display: table;
}

.what__box__tabs .levels:after {
	clear: both;
}

.what__box__tabs .levels:before,
.what__box__tabs .levels:after {
	content: " ";
	display: table;
}

.what__box__tabs .levels:after {
	clear: both;
}

.what__box__tabs .levels__col {
	width: 50%;
	float: left;
	font-size: 18px;
	padding: 0 10px;
	margin-top: 23px;
}

@media(max-width:767px) {
	.what__box__tabs .levels__col {
		font-size: 12px;
		line-height: 17px;
		margin-top: 14px;
	}

	body.language-zh .what__box__tabs .levels__col {
		line-height: 18px;
	}
}

.what__box__tabs .levels__col:nth-child(2n+1) {
	clear: both;
}

.what__box__tabs .levels__title {
	color: #043458;
	font-weight: bold;
	margin-bottom: 0;
}

@media(max-width:767px) {
	.what__box__tabs .levels__description {
		overflow: hidden;
	}
}

body.language-zh .what__box__tabs .levels__description {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .what__box__tabs .levels__description {
		font-size: 12px;
		line-height: 17px;
	}
}

.what__box__tabs .levels__button {
	float: right;
	width: 50%;
	padding-left: 10px;
	clear: both;
}

@media(max-width:767px) {
	.what__box__tabs .levels__button {
		float: none;
		width: 100%;
		margin: 0;
		padding: 0;
		text-align: right;
	}
}

.what__box__tabs .levels__button a {
	font-size: 18px;
	color: #ee2d42;
	border-bottom: 1px solid #ee2d42;
	font-weight: bold;
}

@media(max-width:767px) {
	.what__box__tabs .levels__button a {
		font-size: 12px;
		margin-left: -4px;
	}
}

.what__box__tabs .levels__button a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.what__box__tabs .levels__button a:hover {
		color: #ee2d42;
		border-color: #ee2d42;
	}
}

.what__img {
	position: absolute;
	z-index: 20;
	width: 384px;
	height: 384px;
	bottom: -240px;
	left: 18px;
}

@media(max-width:767px) {
	.what__img {
		width: 192px;
		height: 192px;
		bottom: -114px;
		left: 148px;
	}
}

@media(max-width:767px) {
	.what__img img {
		width: auto;
		height: 192px;
	}
}

.what__test {
	position: absolute;
	bottom: 115px;
	right: 322px;
	width: 100%;
	max-width: 373px;
}

@media(max-width:767px) {
	.what__test {
		bottom: 66px;
		right: 170px;
		max-width: 245px;
	}
}

.what__test:before,
.what__test:after {
	content: " ";
	display: table;
}

.what__test:after {
	clear: both;
}

.what__test:before,
.what__test:after {
	content: " ";
	display: table;
}

.what__test:after {
	clear: both;
}

.what__test__title {
	font-size: 30px;
	line-height: 40px;
	font-weight: bold;
	color: #043458;
	width: 223px;
	float: left;
}

@media(max-width:767px) {
	.what__test__title {
		font-size: 20px;
		line-height: 25px;
		width: 160px;
	}
}

body.language-zh .what__test__title {
	line-height: 36px;
}

@media(max-width:767px) {
	body.language-zh .what__test__title {
		line-height: 26px;
	}
}

.what__test__button {
	float: right;
	margin-top: 10px;
	display: table;
	vertical-align: middle;
	position: relative;
}

.what__test__button:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ee2d42;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.what__test__button:hover a {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.what__test__button:hover a {
		background: #ee2d42;
	}
}

.what__test__button:focus,
.what__test__button:active {
	cursor: default;
}

.what__test__button:focus a,
.what__test__button:active a {
	background: #ee2d42;
	cursor: default;
}

.what__test__button a {
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	background: #ee2d42;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.what__test__button a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.what__test__button a:focus,
.what__test__button a:active {
	background: #ee2d42;
	cursor: default;
}

.what__test__button a span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.what__test__button a span {
		font-size: 12px;
	}
}

.what__test__button a span.glyphicon {
	font-size: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.what__test__button a span.glyphicon {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
		margin-bottom: 12px;
	}
}

.what__test__button a span.glyphicon:before {
	content: '';
}

@media(max-width:767px) {
	.what__test__button.content_item_more2 a {
		line-height: 14px;
	}
}

.what__test__button.more_style:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.what__test__button.more_style:hover a {
		background: #043458;
	}
}

.what__test__button.more_style:focus a,
.what__test__button.more_style:active a {
	background: #043458;
}

.what__test__button.more_style a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.what__test__button.more_style a:focus,
.what__test__button.more_style a:active {
	background: #043458;
	cursor: default;
}

.what__test__button.more_style .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.what__test__button.more_style .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.what__test__button.more_style .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.what__test__button.more_style .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.what__test__button.more_style:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

@media(max-width:767px) {
	.what__test__button {
		margin-top: 24px;
	}
}

.what__test__button a {
	width: 136px;
	height: 136px;
	font-size: 14px;
}

@media(max-width:767px) {
	.what__test__button a {
		font-size: 12px;
		height: 81px;
		width: 81px;
		padding: 0 15px;
		line-height: 14px;
	}
}

body.language-zh .what__test__button a {
	font-size: 16px;
	line-height: 20px;
}

@media(max-width:767px) {
	body.language-zh .what__test__button a {
		font-size: 12px;
		line-height: 14px;
	}
}

.what__test__button a span {
	margin: auto;
	margin-bottom: 5px;
}

.center-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.find {
	width: 100%;
	max-width: 550px;
	padding: 55px 5px 0 0;
	margin: auto;
	min-height: 180px;
}

@media(max-width:767px) {
	.find {
		padding: 0;
		min-height: 0;
		position: relative;
	}
}

.find:before,
.find:after {
	content: " ";
	display: table;
}

.find:after {
	clear: both;
}

.find:before,
.find:after {
	content: " ";
	display: table;
}

.find:after {
	clear: both;
}

.find__title {
	float: left;
	width: 335px;
	font-size: 50px;
	color: #ee2d42;
	font-weight: bold;
	margin: 0;
	line-height: 136px;
}

.find__title span {
	line-height: 60px;
	display: inline-block;
	vertical-align: middle;
}

@media(max-width:767px) {
	.find__title span {
		line-height: 30px;
	}
}

@media(max-width:767px) {
	.find__title {
		font-size: 25px;
		width: 100%;
		max-width: 200px;
		padding-left: 24px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
	}
}

body.language-zh .find__title {
	font-size: 40px;
}

body.language-zh .find__title span {
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .find__title {
		font-size: 25px;
	}
}

.find__button {
	float: right;
	display: table;
	vertical-align: middle;
	position: relative;
	margin-right: 8px;
}

.find__button:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ee2d42;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.find__button:hover a {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.find__button:hover a {
		background: #ee2d42;
	}
}

.find__button:focus,
.find__button:active {
	cursor: default;
}

.find__button:focus a,
.find__button:active a {
	background: #ee2d42;
	cursor: default;
}

.find__button a {
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	background: #ee2d42;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.find__button a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.find__button a:focus,
.find__button a:active {
	background: #ee2d42;
	cursor: default;
}

.find__button a span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.find__button a span {
		font-size: 12px;
	}
}

.find__button a span.glyphicon {
	font-size: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.find__button a span.glyphicon {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
		margin-bottom: 12px;
	}
}

.find__button a span.glyphicon:before {
	content: '';
}

@media(max-width:767px) {
	.find__button.content_item_more2 a {
		line-height: 14px;
	}
}

.find__button.more_style:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.find__button.more_style:hover a {
		background: #043458;
	}
}

.find__button.more_style:focus a,
.find__button.more_style:active a {
	background: #043458;
}

.find__button.more_style a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.find__button.more_style a:focus,
.find__button.more_style a:active {
	background: #043458;
	cursor: default;
}

.find__button.more_style .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.find__button.more_style .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.find__button.more_style .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.find__button.more_style .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.find__button.more_style:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

.find__button:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.find__button:hover a {
		background: #043458;
	}
}

.find__button:focus a,
.find__button:active a {
	background: #043458;
}

.find__button a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.find__button a:focus,
.find__button a:active {
	background: #043458;
	cursor: default;
}

.find__button .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.find__button .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.find__button .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.find__button .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.find__button:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

@media(max-width:767px) {
	.find__button {
		margin-right: 39px;
	}
}

.find__button a {
	width: 136px;
	height: 136px;
	font-size: 14px;
	line-height: 18px;
}

@media(max-width:767px) {
	.find__button a {
		width: 81px;
		height: 81px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.find__button a span {
	margin: auto;
	margin-bottom: 10px;
}

.service {
	clear: both;
	position: relative;
	margin-top: 74px;
	padding-left: 300px;
	min-height: 870px;
	padding-bottom: 50px;
}

@media(max-width:767px) {
	.service {
		padding-left: 35px;
		margin-top: 28px;
		min-height: 673px;
	}
}

.service:before {
	content: '';
	width: 1786px;
	height: 1786px;
	border: 3px solid #ee2d42;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	position: absolute;
	top: 0;
	left: -590px;
}

.ios11 .service:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1786' height='1786'><path d='M2,893a891,891 0 1,0 1782,0a891,891 0 1,0 -1782,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.service:before {
		width: 532px;
		height: 532px;
		left: -124px;
		border-width: 2px;
	}

	.ios11 .service:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='532' height='532'><path d='M2,266a264,264 0 1,0 528,0a264,264 0 1,0 -528,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
	}
}

.service__title {
	font-size: 50px;
	line-height: 60px;
	font-weight: bold;
	color: #043458;
	max-width: 397px;
	position: relative;
	z-index: 10;
	padding-top: 143px;
}

@media(max-width:767px) {
	.service__title {
		font-size: 30px;
		line-height: 35px;
		padding-top: 78px;
	}
}

.service__content {
	padding-left: 56px;
	max-width: 355px;
	font-size: 18px;
	line-height: 24px;
	position: relative;
	z-index: 10;
	color: #043458;
}

@media(max-width:767px) {
	.service__content {
		margin-top: -13px;
		padding-left: 24px;
	}
}

.service__row {
	padding-top: 42px;
}

@media(max-width:767px) {
	.service__row {
		padding-top: 6px;
	}
}

.service__row:first-child {
	padding-top: 7px;
}

.service__row__title {
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0;
}

@media(max-width:767px) {
	.service__row__title {
		font-size: 20px;
	}
}

body.language-zh .service__row__title {
	line-height: 36px;
}

@media(max-width:767px) {
	body.language-zh .service__row__title {
		line-height: 26px;
	}
}

.service__row__description {
	line-height: 28px;
	margin-bottom: 2px;
}

@media(max-width:767px) {
	.service__row__description {
		font-size: 12px;
		line-height: 17px;
		margin-bottom: -6px;
		max-width: 184px;
	}
}

body.language-zh .service__row__description {
	font-size: 16px;
	line-height: 24px;
	color: #333333;
}

@media(max-width:767px) {
	body.language-zh .service__row__description {
		font-size: 12px;
		line-height: 18px;
	}
}

.service__row__button {
	color: #ee2d42;
	border-bottom: 1px solid #ee2d42;
	font-weight: bold;
}

@media(max-width:767px) {
	.service__row__button {
		font-size: 12px;
	}
}

.service__row__button:hover {
	color: #ee2d42;
	border-color: #ee2d42;
}

@media(max-width:767px) {
	.service__row__button:hover {
		color: #ee2d42;
		border-bottom: 1px solid #ee2d42;
	}
}

.service__img {
	width: 560px;
	position: absolute;
	z-index: 10;
	top: 116px;
	right: 136px;
}

@media(min-width:768px) and (max-width:1365px) {
	.service__img {
		right: -70px;
	}
}

@media(max-width:767px) {
	.service__img {
		width: 208px;
		top: 393px;
		right: -36px;
		left: auto;
	}
}

.service__img img {
	width: 100%;
}

@media(max-width:767px) {
	.service__img img {
		width: auto;
		height: 208px;
	}
}

.product-main-info {
	padding: 0 0 137px 0;
	font-size: 0;
	text-align: center;
}

.product-main-info .main-content:before,
.product-main-info .main-content:after {
	content: " ";
	display: table;
}

.product-main-info .main-content:after {
	clear: both;
}

.product-main-info .main-content:before,
.product-main-info .main-content:after {
	content: " ";
	display: table;
}

.product-main-info .main-content:after {
	clear: both;
}

@media(max-width:767px) {
	.product-main-info {
		padding-bottom: 27px;
		margin-top: 3px;
	}
}

@media(max-width:767px) {
	.product-main-info:before {
		background: #f2f1f1;
	}
}

.product-main-info .product-title {
	font-size: 50px;
	line-height: 60px;
	font-weight: bold;
	color: #043458;
	text-align: center;
	margin-top: 13px;
	padding-bottom: 4px;
}

@media(max-width:767px) {
	.product-main-info .product-title {
		font-size: 30px;
		line-height: 35px;
		padding-top: 8px;
		padding-bottom: 0;
	}
}

body.language-zh .product-main-info .product-title {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .product-main-info .product-title {
		font-size: 24px;
		line-height: 30px;
	}
}

.product-main-info .product-details {
	width: 301px;
	height: 301px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	background: #043458;
	display: inline-block;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	margin: 0 25px;
	text-align: left;
	position: relative;
	margin-top: 38px;
	vertical-align: top;
}

@media(max-width:767px) {
	.product-main-info .product-details {
		width: 184px;
		height: 184px;
		display: block;
		margin: 10px 22px 0 9px;
	}

	.product-main-info .product-details:nth-child(odd) {
		float: left;
		margin-top: 5px;
		margin-bottom: 25px;
	}

	.product-main-info .product-details:nth-child(even) {
		float: right;
	}
}

.product-main-info .product-details .product-details-content {
	width: 178px;
	margin: auto;
}

@media(max-width:767px) {
	.product-main-info .product-details .product-details-content {
		width: 140px;
	}
}

.product-main-info .product-details .description {
	padding-top: 13px;
	line-height: 28px;
	padding-bottom: 8px;
	border: none;
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	.product-main-info .product-details .description {
		font-size: 12px;
		line-height: 14px;
		padding-top: 7px;
	}
}

@media(max-width:767px) {
	body.language-zh .product-main-info .product-details .description {
		font-size: 12px;
		line-height: 18px;
	}
}

.product-main-info .product-details .price {
	font-size: 30px;
	font-weight: bold;
}

@media(max-width:767px) {
	.product-main-info .product-details .price {
		font-size: 20px;
	}
}

.product-main-info .product-details .product-item-title {
	font-size: 30px;
	line-height: 40px;
	font-weight: bold;
	padding-top: 50px;
}

body.language-zh .product-main-info .product-details .product-item-title {
	line-height: 36px;
}

@media(max-width:767px) {
	.product-main-info .product-details .product-item-title {
		font-size: 20px;
		line-height: 20px;
		padding-top: 35px;
	}

	body.language-zh .product-main-info .product-details .product-item-title {
		line-height: 26px;
	}
}

.product-main-info .product-details .product-item-button {
	display: table;
	vertical-align: middle;
	position: relative;
	position: absolute;
	bottom: -76px;
	right: 13px;
}

.product-main-info .product-details .product-item-button:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ee2d42;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.product-main-info .product-details .product-item-button:hover a {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.product-main-info .product-details .product-item-button:hover a {
		background: #ee2d42;
	}
}

.product-main-info .product-details .product-item-button:focus,
.product-main-info .product-details .product-item-button:active {
	cursor: default;
}

.product-main-info .product-details .product-item-button:focus a,
.product-main-info .product-details .product-item-button:active a {
	background: #ee2d42;
	cursor: default;
}

.product-main-info .product-details .product-item-button a {
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	background: #ee2d42;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.product-main-info .product-details .product-item-button a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.product-main-info .product-details .product-item-button a:focus,
.product-main-info .product-details .product-item-button a:active {
	background: #ee2d42;
	cursor: default;
}

.product-main-info .product-details .product-item-button a span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.product-main-info .product-details .product-item-button a span {
		font-size: 12px;
	}
}

.product-main-info .product-details .product-item-button a span.glyphicon {
	font-size: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.product-main-info .product-details .product-item-button a span.glyphicon {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
		margin-bottom: 12px;
	}
}

.product-main-info .product-details .product-item-button a span.glyphicon:before {
	content: '';
}

@media(max-width:767px) {
	.product-main-info .product-details .product-item-button.content_item_more2 a {
		line-height: 14px;
	}
}

.product-main-info .product-details .product-item-button.more_style:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.product-main-info .product-details .product-item-button.more_style:hover a {
		background: #043458;
	}
}

.product-main-info .product-details .product-item-button.more_style:focus a,
.product-main-info .product-details .product-item-button.more_style:active a {
	background: #043458;
}

.product-main-info .product-details .product-item-button.more_style a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.product-main-info .product-details .product-item-button.more_style a:focus,
.product-main-info .product-details .product-item-button.more_style a:active {
	background: #043458;
	cursor: default;
}

.product-main-info .product-details .product-item-button.more_style .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.product-main-info .product-details .product-item-button.more_style .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.product-main-info .product-details .product-item-button.more_style .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.product-main-info .product-details .product-item-button.more_style .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.product-main-info .product-details .product-item-button.more_style:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

@media(max-width:767px) {
	.product-main-info .product-details .product-item-button {
		bottom: -38px;
		right: 4px;
	}
}

.product-main-info .product-details .product-item-button a {
	width: 136px;
	height: 136px;
	line-height: 24px;
}

@media(max-width:767px) {
	.product-main-info .product-details .product-item-button a {
		font-size: 12px;
		line-height: 14px;
		width: 81px;
		height: 81px;
	}
}

body.language-zh .product-main-info .product-details .product-item-button a b {
	font-size: 16px;
	line-height: 20px;
}

@media(max-width:767px) {
	body.language-zh .product-main-info .product-details .product-item-button a b {
		font-size: 12px;
		line-height: 14px;
	}
}

.product-main-info .product-details .product-item-button a span {
	margin: auto;
	margin-bottom: 12px;
}

@media(max-width:767px) {
	.product-main-info .product-details .product-item-button a span {
		margin-bottom: 8px;
	}
}

.product-main-info .product-offer {
	font-size: 18px;
	line-height: 26px;
	color: #333;
	padding-top: 126px;
}

@media(max-width:767px) {
	.product-main-info .product-offer {
		clear: both;
		font-size: 12px;
		line-height: 17px;
		padding: 56px 30px 0;
	}
}

body.language-zh .product-main-info .product-offer {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .product-main-info .product-offer {
		font-size: 12px;
		line-height: 18px;
	}
}

.product-main-info .product-offer a {
	color: #ee2d42;
	font-weight: bold;
	border-bottom: 1px solid #ee2d42;
}

.product-main-info .product-offer a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.product-main-info .product-offer a:hover {
		color: #ee2d42;
		border-color: #ee2d42;
	}
}

.news-mobile {
	display: none;
	position: relative;
	padding: 33px 26px 62px;
}

.news-mobile:before,
.news-mobile:after {
	content: " ";
	display: table;
}

.news-mobile:after {
	clear: both;
}

.news-mobile:before,
.news-mobile:after {
	content: " ";
	display: table;
}

.news-mobile:after {
	clear: both;
}

.news-mobile:before {
	content: '';
	width: 100%;
	height: 9px;
	background: url(../_ui/responsive/theme-alpha/img/bg-grey-small.png) center 0 no-repeat;
	background-size: 100% auto;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

@media(max-width:767px) {
	.news-mobile {
		display: block;
		padding-top: 61px;
	}
}

.news-mobile .news-mobile-content {
	max-width: 320px;
	margin: auto;
}

.news-mobile .news-mobile-img {
	width: 76px;
	float: left;
	margin-left: 5px;
}

.news-mobile .news-mobile-text {
	width: 170px;
	float: right;
	line-height: 76px;
}

.news-mobile .news-mobile-title {
	font-size: 20px;
	line-height: 25px;
	color: #043458;
	font-weight: bold;
	max-width: 150px;
}

@media(max-width:767px) {
	.news-mobile .news-mobile-title {
		font-size: 12px;
		max-width: 100%;
		margin: 0;
		display: inline-block;
		vertical-align: middle;
		line-height: 18px;
	}

	body.language-zh .news-mobile .news-mobile-title {
		line-height: 26px;
	}
}

.news-mobile .news-mobile-description {
	font-size: 12px;
	line-height: 17px;
}

#buy_now_popup {
	width: 1022px;
}

@media(max-width:767px) {
	#buy_now_popup {
		width: 260px;
	}
}

@media(max-width:767px) {
	#buy_now_popup .take-assessment-popup {
		padding: 0 20px;
	}
}

#buy_now_popup .take-assessment-popup h2 {
	margin-top: -4px;
}

@media(max-width:767px) {
	#buy_now_popup .take-assessment-popup h2 {
		font-size: 20px;
		line-height: 25px;
	}
}

#buy_now_popup .take-assessment-popup p {
	max-width: 580px;
	margin: 24px auto 0;
}

@media(max-width:767px) {
	#buy_now_popup .take-assessment-popup p {
		font-size: 12px;
		line-height: 17px;
		max-width: 198px;
		margin-top: 15px;
	}
}

#buy_now_popup .take-assessment-popup .assessment-buttons {
	text-align: center;
	padding-top: 35px;
	padding-bottom: 17px;
}

@media(max-width:767px) {
	#buy_now_popup .take-assessment-popup .assessment-buttons {
		padding-top: 15px;
		padding-bottom: 0;
	}
}

#buy_now_popup .take-assessment-popup .assessment-buttons a {
	height: 33px;
	line-height: 35px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	display: inline-block;
	text-align: center;
	margin: 0 17px;
}

@media(max-width:767px) {
	#buy_now_popup .take-assessment-popup .assessment-buttons a {
		margin: 0 0 10px 0;
		display: block;
		height: 30px;
		line-height: 32px;
		font-size: 12px;
	}
}

#buy_now_popup .take-assessment-popup .assessment-buttons .cancel-assessment {
	width: 140px;
	background: #333;
}

#buy_now_popup .take-assessment-popup .assessment-buttons .cancel-assessment:hover {
	background: #0082a9;
}

@media(max-width:767px) {
	#buy_now_popup .take-assessment-popup .assessment-buttons .cancel-assessment {
		width: 100%;
	}

	#buy_now_popup .take-assessment-popup .assessment-buttons .cancel-assessment:hover {
		background: #333;
	}
}

#buy_now_popup .take-assessment-popup .assessment-buttons .take-out-test {
	width: 263px;
	background: #043458;
}

#buy_now_popup .take-assessment-popup .assessment-buttons .take-out-test:hover {
	background: #0082a9;
}

@media(max-width:767px) {
	#buy_now_popup .take-assessment-popup .assessment-buttons .take-out-test {
		width: 100%;
	}

	#buy_now_popup .take-assessment-popup .assessment-buttons .take-out-test:hover {
		background: #043458;
	}
}

.page-productDetails #buy_now_popup {
	padding-top: 75px;
}

@media(max-width:767px) {
	.page-productDetails #buy_now_popup {
		padding-top: 47px;
	}
}

.page-productDetails .fancybox-outer {
	padding-top: 0;
}

@media(max-width:767px) {
	.page-productDetails .fancybox-wrap .fancybox-close {
		top: 15px;
		right: 15px;
	}
}

.page-productDetails .breadcrumb-section {
	margin-left: 0;
	margin-top: 12px;
}

.page-productDetails .wt_slideshow.banner_product .slideshow_content .slideshow_text h2 {
	margin-top: 0;
}

@media(max-width:767px) {
	.page-productDetails .wt_slideshow.banner_product .wrap-circle {
		bottom: 11px;
	}
}

@media(max-width:767px) {
	.page-productDetails .wt_slideshow.banner_product .wrap-circle .circle {
		margin: 0 8px;
	}
}

@media(max-width:767px) {
	.page-productDetails .sidebar__nav li {
		padding-top: 13px;
	}
}

.account {
	padding: 24px 0 138px;
	text-align: left;
}

.account:before,
.account:after {
	content: " ";
	display: table;
}

.account:after {
	clear: both;
}

.account:before,
.account:after {
	content: " ";
	display: table;
}

.account:after {
	clear: both;
}

@media(max-width:767px) {
	.account {
		padding-bottom: 40px;
	}

	.page-login .account,
	.page-register .account {
		padding-top: 0;
	}
}

.account__left {
	width: 59.5%;
	float: left;
	padding-left: 82px;
}

@media(max-width:767px) {
	.account__left {
		padding: 0;
		margin: 0 -10px;
		float: none;
		width: calc(100% + 20px);
	}
}

.account__left .wrap-button {
	padding-top: 33px;
}

@media(max-width:767px) {
	.account__left .wrap-button {
		max-width: 320px;
		padding: 27px 30px 0;
		margin: auto;
	}
}

.account__left .btn-qq {
	background: none;
	border: none;
	font-size: 18px;
	color: #043458;
	height: 50px;
	line-height: 25px;
	margin: 0;
	float: left;
	padding: 0;
	font-weight: normal;
	width: 200px;
	text-align: left;
}

@media(max-width:767px) {
	.account__left .btn-qq {
		font-size: 12px;
		line-height: 17px;
		width: auto;
	}
}

.account__left .btn-qq:hover {
	color: #0082a9;
}

@media(max-width:767px) {
	.account__left .btn-qq:hover {
		color: #043458;
	}
}

.account__left .btn-qq span {
	display: block;
	float: left;
	margin-right: 19px;
}

@media(max-width:767px) {
	.account__left .btn-qq span {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/qq_login_small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 35px;
		height: 35px;
		margin-right: 9px;
	}
}

.account__left .btn-qq b {
	font-weight: bold;
}

body.language-zh .account__left .btn-qq b {
	font-size: 16px;
}

.account__left .btn-register {
	float: right;
	font-size: 18px;
	color: #043458;
	font-weight: bold;
	vertical-align: top;
	margin-top: 26px;
	border-bottom: 1px solid #043458;
	line-height: 20px;
}

@media(max-width:767px) {
	.account__left .btn-register {
		font-size: 12px;
		margin-top: 25px;
		line-height: 14px;
	}
}

.account__left .btn-register:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.account__left .btn-register:hover {
		color: #043458;
		border-color: #043458;
	}
}

body.language-zh .account__left .btn-register {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .account__left .btn-register {
		font-size: 12px;
		line-height: 14px;
	}
}

.account__right {
	width: 40.5%;
	float: right;
	padding-left: 78px;
	margin-top: 26px;
}

@media(max-width:767px) {
	.account__right {
		padding: 0 20px;
		float: none;
		width: 100%;
		max-width: 320px;
		margin: auto;
	}
}

.account__right__title {
	font-size: 18px;
	font-weight: bold;
	color: #043458;
}

@media(max-width:767px) {
	.account__right__title {
		font-size: 20px;
		line-height: 20px;
		margin-top: 15px;
	}
}

body.language-zh .account__right__title {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .account__right__title {
		font-size: 20px;
		line-height: 18px;
	}
}

.account__right__content {
	padding-top: 2px;
	color: #043458;
	font-size: 18px;
}

@media(max-width:767px) {
	.account__right__content {
		position: relative;
		height: 86px;
		overflow: hidden;
		transition: 0.3s;
		-moz-transition: 0.3s;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		-sm-transition: 0.3s;
	}

	.page-register .account__right__content {
		height: auto;
	}

	.account__right__content:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		background: url(../_ui/responsive/theme-alpha/img/text-cover.png) 0 0 repeat-x;
	}

	.page-register .account__right__content:before {
		display: none;
	}

	.account__right__content.expand {
		height: auto;
		padding-bottom: 20px;
	}

	.account__right__content.expand:before {
		display: none;
	}
}

.account__right .mobile-button-expand {
	display: none;
}

@media(max-width:767px) {
	.account__right .mobile-button-expand {
		display: block;
		position: absolute;
		width: 18px;
		height: 18px;
		bottom: 0;
		left: 50%;
		margin-left: -9px;
		z-index: 20;
		transition: 0.3s;
		-moz-transition: 0.3s;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		-sm-transition: 0.3s;
	}

	.page-register .account__right .mobile-button-expand {
		display: none;
	}

	.account__right .mobile-button-expand:before,
	.account__right .mobile-button-expand:after {
		content: '';
		width: 17px;
		height: 3px;
		position: absolute;
		background: #043458;
		border-radius: 2px;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		-o-border-radius: 2px;
		top: 9px;
		left: 0;
	}

	.account__right .mobile-button-expand:before {
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-sm-transform: rotate(45deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1deg);
		margin-left: -5px;
	}

	.account__right .mobile-button-expand:after {
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-sm-transform: rotate(-45deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-1deg);
		margin-left: 5px;
	}

	.account__right .mobile-button-expand.rotate {
		-ms-transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		transform: rotate(180deg);
		-o-transform: rotate(180deg);
		-sm-transform: rotate(180deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2deg);
	}
}

.account__right__text {
	font-size: 18px;
	padding-left: 42px;
	position: relative;
	line-height: 28px;
	margin-top: 19px;
	padding-bottom: 10px;
}

@media(max-width:767px) {
	.account__right__text {
		font-size: 12px;
		line-height: 16px;
		padding-left: 30px;
		margin-top: 0;
		margin-bottom: 8px;
	}
}

.account__right__text b {
	font-weight: bold;
}

.account__right__text a {
	color: #043458;
	border-bottom: 1px solid #043458;
}

.account__right__text a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.account__right__text a:hover {
		color: #043458;
		border-color: #043458;
	}
}

.account__right__text:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background-image: url(../picture/sprites_img.png);
	background-position: -886px -680px;
	width: 30px;
	height: 28px;
}

@media(max-width:767px) {
	.account__right__text:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/valid_small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 18px;
		height: 17px;
	}
}

body.language-zh .account__right__text {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .account__right__text {
		font-size: 12px;
		line-height: 18px;
	}
}

.account__right__btn {
	margin-top: 14px;
}

.account__form {
	background: #d7dfe5;
	position: relative;
	padding-bottom: 35px;
	margin-bottom: 25px;
}

@media(max-width:767px) {
	.account__form {
		min-height: 0;
		padding: 0 10px 65px;
	}
}

.account__form:after {
	content: '';
	height: 25px;
	width: 100%;
	position: absolute;
	bottom: -24px;
	left: 0;
	background: url(../_ui/responsive/theme-alpha/img/bg-bottom-grey.png) center 0 no-repeat;
	background-size: 100% auto;
	z-index: -1;
}

.account__form__content {
	padding: 60px 20px 0;
	width: 500px;
	margin: 27px auto 0;
}

@media(max-width:767px) {
	.account__form__content {
		max-width: 320px;
		margin-top: 14px;
		padding-top: 26px;
		width: auto;
	}
}

.account__form .wrap-checkbox {
	padding-top: 26px;
}

@media(max-width:767px) {
	.account__form .wrap-checkbox {
		padding-top: 20px;
	}
}

.account__form .wrap-checkbox .form-group {
	padding-top: 0;
}

.account__form .wrap-checkbox .checkbox-text {
	line-height: 35px;
	padding-left: 15px;
	font-size: 14px;
	color: #043458;
}

@media(max-width:767px) {
	.account__form .wrap-checkbox .checkbox-text {
		float: right;
		width: calc(100% - 45px);
		padding: 0;
		font-size: 12px;
		line-height: 12px;
	}
}

.account__form .wrap-checkbox .checkbox-text b {
	font-weight: bold;
}

.account__form .wrap-checkbox .checkbox-text a {
	color: #043458;
	border-bottom: 1px solid #043458;
}

.account__form .wrap-checkbox .checkbox-text a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.account__form .wrap-checkbox .checkbox-text a:hover {
		color: #043458;
		border-color: #043458;
	}
}

.account__form .form-group {
	padding: 20px 0 0 0;
	margin: 0;
	clear: both;
}

.account__form .form-group:before,
.account__form .form-group:after {
	content: " ";
	display: table;
}

.account__form .form-group:after {
	clear: both;
}

.account__form .form-group:before,
.account__form .form-group:after {
	content: " ";
	display: table;
}

.account__form .form-group:after {
	clear: both;
}

@media(max-width:767px) {
	.account__form .form-group {
		padding: 0;
	}

	.account__form .form-group:first-child .control-label {
		margin-top: 0;
	}
}

.account__form .form-group .control-label {
	width: 50%;
	float: left;
	line-height: 37px;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0;
}

@media(max-width:767px) {
	.account__form .form-group .control-label {
		font-size: 12px;
		line-height: 30px;
		width: 100%;
		float: none;
		margin-top: 10px;
	}
}

body.language-zh .account__form .form-group .control-label {
	font-size: 16px;
}

@media(max-width:767px) {
	body.language-zh .account__form .form-group .control-label {
		font-size: 12px;
	}
}

.account__form .form-group .verification-code-valid {
	background: #ffffff url(../_ui/responsive/theme-alpha/img/valid-tick.png) right 0 no-repeat;
}

@media(max-width:767px) {
	.account__form .form-group .verification-code-valid {
		background-size: auto 30px;
	}
}

.account__form .form-group .form-control {
	width: 220px;
	float: right;
	border: none;
	background-color: #fff;
	font-size: 18px;
}

@media not all and (min-resolution:0.001dpcm) {
	.account__form .form-group .form-control {
		line-height: 26px;
	}
}

@media(max-width:767px) {
	.account__form .form-group .form-control {
		font-size: 12px;
		line-height: 17px;
		width: 100%;
		float: none;
		height: 30px;
		padding: 10px;
	}
}

body.language-zh .account__form .form-group .form-control {
	font-size: 16px;
}

@media(max-width:767px) {
	body.language-zh .account__form .form-group .form-control {
		font-size: 12px;
	}
}

.account__form .form-group .chosen-container {
	float: right;
}

.account__form .send-code-btn {
	width: 220px;
	float: right;
	margin-top: 8px;
	margin-bottom: 6px;
	font-size: 18px;
	color: #fff;
	background: #043458;
	border: none;
	min-height: 33px;
	letter-spacing: -1px;
	clear: both;
}

.account__form .send-code-btn:hover {
	background: #0082a9;
}

@media(max-width:767px) {
	.account__form .send-code-btn:hover {
		background: #043458;
	}
}

@media(max-width:767px) {
	.account__form .send-code-btn {
		font-size: 12px;
		width: 100%;
		float: none;
		margin-top: 10px;
		height: 30px;
		margin-bottom: 0;
	}
}

.account__form .send-code-btn.resend-verification-code {
	background: #333;
}

.account__form .send-code-btn.reached-quotation {
	background: #ee2d42;
}

body.language-zh .account__form .send-code-btn {
	font-size: 16px;
}

@media(max-width:767px) {
	body.language-zh .account__form .send-code-btn {
		font-size: 12px;
	}
}

.account__form .account--button {
	width: 136px;
	height: 136px;
	font-size: 14px;
	padding: 0 5px;
	vertical-align: middle;
	background: #ee2d42;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	border: 0;
	font-weight: bold;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	position: absolute;
	bottom: -93px;
	left: 50%;
	margin-left: -65px;
	display: block;
	z-index: 10;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
}

.account__form .account--button:hover {
	background: #eb5e6c;
}

@media(max-width:767px) {
	.account__form .account--button {
		width: 80px;
		height: 80px;
		font-size: 9px;
		margin-left: -40px;
		bottom: -49px;
	}
}

.account__form .account--button span {
	margin: 7px auto 0;
	display: block;
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
	margin-bottom: 11px;
}

@media(max-width:767px) {
	.account__form .account--button span {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/arrow_next_small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 13px;
		height: 23px;
		margin-bottom: 6px;
	}
}

.account__form .account--button.disabled {
	background: #666666;
	box-shadow: 0px 18px 25px 10px rgba(215, 223, 229, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(215, 223, 229, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(215, 223, 229, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(215, 223, 229, 0.48);
	cursor: default;
}

.account__form #mobileNumber+.help-block {
	padding-bottom: 14px;
}

.account__form #mobileNumber1+.help-block {
	padding-bottom: 14px;
}

.account__form .help-block {
	float: right;
	padding-left: 10px;
	width: 50%;
	line-height: 18px;
	padding-bottom: 0;
}

body.language-zh .account__form .help-block {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	.account__form .help-block {
		width: 100%;
		font-size: 14px;
		float: none;
		padding-left: 0;
	}

	body.language-zh .account__form .help-block {
		font-size: 12px;
		line-height: 14px;
	}
}

.account__form .forgotten-password {
	text-align: right;
	padding-top: 13px;
	clear: both;
}

@media(max-width:767px) {
	.account__form .forgotten-password {
		padding-top: 8px;
		margin-bottom: 0;
	}
}

.account__form .forgotten-password a {
	font-size: 18px;
	line-height: 20px;
	font-weight: bold;
	color: #043458;
	border-bottom: 1px solid #043458;
}

.account__form .forgotten-password a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.account__form .forgotten-password a:hover {
		color: #043458;
		border-color: #043458;
	}
}

@media(max-width:767px) {
	.account__form .forgotten-password a {
		font-size: 12px;
	}
}

body.language-zh .account__form .forgotten-password a {
	font-size: 16px;
}

@media(max-width:767px) {
	body.language-zh .account__form .forgotten-password a {
		font-size: 12px;
	}
}

.account__form__title {
	font-size: 30px;
	line-height: 40px;
	color: #043458;
	font-weight: bold;
}

body.language-zh .account__form__title {
	line-height: 36px;
}

@media(max-width:767px) {
	body.language-zh .account__form__title {
		line-height: 24px;
	}
}

.account__form__description {
	text-align: right;
	font-size: 18px;
	color: #043458;
}

body.language-zh .account__form__description {
	font-size: 16px;
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .account__form__description {
		font-size: 12px;
		line-height: 18px;
	}
}

.account .user-register__headline,
.account .login-page__headline {
	font-size: 50px;
	line-height: 60px;
	color: #043458;
	font-weight: bold;
	padding: 0;
	margin-top: 20px;
	margin-left: 82px;
}

@media(max-width:767px) {

	.account .user-register__headline,
	.account .login-page__headline {
		padding: 0 20px;
		max-width: 320px;
		margin: auto;
		font-size: 30px;
		line-height: 40px;
	}
}

body.language-zh .account .user-register__headline,
body.language-zh .account .login-page__headline {
	font-size: 60px;
	line-height: 70px;
}

@media(max-width:767px) {

	body.language-zh .account .user-register__headline,
	body.language-zh .account .login-page__headline {
		font-size: 30px;
		line-height: 36px;
	}
}

@media(max-width:767px) {
	.account .user-register__headline {
		margin-top: 15px;
		margin-bottom: 20px;
	}
}

@media(max-width:767px) {
	.account .user-register__headline .account__right__title_de .account__right__title_de_text {
		margin-bottom: 5px;
	}
}

@media(max-width:767px) {
	.account .user-register__headline .account__right__title_de {
		font-size: 12px;
		line-height: 18px;
		font-weight: normal;
		margin-top: 10px;
	}
}

@media(max-width:767px) {
	.account .user-register__headline .account__right__title_de .account_benefits_link {
		font-weight: bold;
		text-decoration: underline;
	}
}

.account .login-page__headline {
	margin-top: 24px;
}

@media(max-width:767px) {
	.account .login-page__headline {
		margin-top: 15px;
		margin-bottom: 20px;
	}
}

.account__description {
	font-size: 18px;
	line-height: 26px;
	margin-top: 5px;
	padding-left: 82px;
}

@media(max-width:767px) {
	.account__description {
		display: none;
	}
}

.account__description--mobile {
	display: none;
}

@media(max-width:767px) {
	.account__description--mobile {
		display: block;
		font-size: 12px;
		line-height: 18px;
	}
}

body.language-zh .account__description {
	font-size: 16px;
	line-height: 24px;
}

.account .tab-content {
	padding-top: 19px;
}

@media(max-width:767px) {
	.account .tab-content {
		padding-top: 9px;
	}
}

.account .tab-content .tab-pane#mobile-number {
	padding-bottom: 65px;
}

@media(max-width:767px) {
	.account .tab-content .tab-pane#mobile-number {
		padding-bottom: 0;
	}
}

.account__tabs {
	list-style: none;
	margin: 0;
	padding: 0;
}

.account__tabs:before,
.account__tabs:after {
	content: " ";
	display: table;
}

.account__tabs:after {
	clear: both;
}

.account__tabs:before,
.account__tabs:after {
	content: " ";
	display: table;
}

.account__tabs:after {
	clear: both;
}

@media(max-width:767px) {
	.account__tabs {
		padding-top: 4px;
	}
}

.account__tabs li {
	float: left;
	width: 50%;
}

.account__tabs li.active a {
	background: #043458;
	color: #fff;
}

.account__tabs li a {
	display: block;
	height: 33px;
	line-height: 35px;
	font-size: 18px;
	background: #fff;
	font-weight: bold;
	color: #043458;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
}

@media(max-width:767px) {
	.account__tabs li a {
		font-size: 12px;
		height: 30px;
		line-height: 32px;
	}
}

.account__tabs li a:hover {
	background: #043458;
	color: #fff;
}

body.language-zh .account__tabs li a {
	font-size: 16px;
}

@media(max-width:767px) {
	body.language-zh .account__tabs li a {
		font-size: 12px;
	}
}

@media(max-width:767px) {
	.account.register {
		padding-bottom: 37px;
	}
}

.account.register .wrap-mobile-input .help-block {
	padding-bottom: 12px;
}

@media(max-width:767px) {
	.account.register .wrap-mobile-input .help-block {
		padding-bottom: 8px;
	}
}

.account.register .account__form__content {
	margin-top: 60px;
	padding-top: 32px;
}

@media(max-width:767px) {
	.account.register .account__form__content {
		margin-top: 14px;
		padding-top: 6px;
	}
}

.account.register .account__form__title {
	max-width: 420px;
}

@media(max-width:767px) {
	.account.register .account__form__title {
		font-size: 20px;
		line-height: 24px;
	}
}

.account.register .account__form__description {
	margin-top: -15px;
}

@media(max-width:767px) {
	.account.register .account__form__description {
		font-size: 12px;
		text-align: left;
		margin-top: 15px;
	}
}

.account.register .wrap-name input[type="text"] {
	letter-spacing: -1px;
}

@media(max-width:767px) {
	.account.register .wrap-name input[type="text"] {
		letter-spacing: 0;
	}
}

.account.register .wrap-name .form-group .help-block {
	display: none;
}

.account.register .wrap-checkbox {
	padding-top: 20px;
}

.account.register .account__form .form-group {
	padding-top: 20px;
}

@media(max-width:767px) {
	.account.register .account__form .form-group {
		padding-top: 0;
		z-index: 20;
	}
}

.account.register .account__form .send-code-btn {
	margin-bottom: 7px;
}

@media(max-width:767px) {
	.account.register .account__form .send-code-btn {
		margin-bottom: -4px;
	}
}

.account.register .account__form .wrap-checkbox:before,
.account.register .account__form .wrap-checkbox:after {
	content: " ";
	display: table;
}

.account.register .account__form .wrap-checkbox:after {
	clear: both;
}

.account.register .account__form .wrap-checkbox:before,
.account.register .account__form .wrap-checkbox:after {
	content: " ";
	display: table;
}

.account.register .account__form .wrap-checkbox:after {
	clear: both;
}

.account.register .account__form .wrap-checkbox .form-group {
	padding-top: 0;
	float: left;
}

.account.register .account__form .wrap-checkbox .form-group label.control-label {
	width: 100%;
	float: none;
	font-weight: normal;
}

@media(max-width:767px) {
	.account.register .account__form .wrap-checkbox .form-group label.control-label {
		padding-left: 30px;
		line-height: 24px;
	}
}

.account.register .account__form .wrap-checkbox .form-group label.control-label:before {
	margin-right: 10px;
}

@media(max-width:767px) {
	.account.register .account__form .wrap-checkbox .form-group label.control-label:before {
		position: absolute;
		top: 0;
		left: 0;
	}
}

.account.register .account__form .wrap-checkbox .form-group label.control-label a {
	border-bottom: 1px solid #043458;
}

.account.register .account__form .wrap-checkbox .form-group label.control-label a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.account.register .account__form .wrap-checkbox .form-group label.control-label a:hover {
		color: #043458;
		border-color: #043458;
	}
}

.account.register .account__form .wrap-checkbox .form-group .help-block {
	width: 100%;
	padding-left: 46px;
	float: none;
	margin-top: 0;
}

.ie8 .account.register .account__form .wrap-checkbox .form-group .help-block {
	padding-left: 20px;
	margin-top: -13px;
}

@media(max-width:767px) {
	.account.register .account__form .wrap-checkbox .form-group .help-block {
		padding-left: 30px;
	}
}

.account.register .account__form {
	padding-bottom: 90px;
}

@media(max-width:767px) {
	.account.register .account__form {
		padding-bottom: 59px;
	}
}

.account.register .account__right {
	margin-top: 108px;
}

@media(max-width:767px) {
	.account.register .account__right {
		margin-top: 100px;
	}
}

.account.qq-login {
	padding-bottom: 190px;
}

@media(max-width:767px) {
	.account.qq-login {
		padding-bottom: 75px;
	}
}

.account.qq-login .account__form {
	min-height: 278px;
}

@media(max-width:767px) {
	.account.qq-login .account__form {
		min-height: 160px;
	}
}

.account.qq-login .user-register__headline {
	max-width: 557px;
}

.account.qq-login .account__form__description {
	text-align: left;
}

@media(max-width:767px) {
	.account.qq-login .account__form__description {
		font-size: 12px;
		margin-bottom: -11px;
	}
}

.account.qq-login .error-message {
	width: 220px;
	float: right;
	font-size: 18px;
	line-height: 18px;
	color: #ee2d42;
	margin-top: 10px;
}

@media(max-width:767px) {
	.account.qq-login .error-message {
		width: 100%;
		float: none;
		font-size: 12px;
		line-height: 17px;
		margin-top: 6px;
		display: block;
	}
}

.account.qq-login .error-message a {
	font-weight: bold;
	color: #ee2d42;
	border-bottom: 1px solid #ee2d42;
}

.account.qq-login .error-message a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.account.qq-login .error-message a:hover {
		color: #ee2d42;
		border-color: #ee2d42;
	}
}

.account.qq-login .form-control.error {
	border: 2px solid #ee2d42;
}

.account.qq-login .account__right {
	margin-top: 61px;
}

@media(max-width:767px) {
	.account.qq-login .account__right {
		margin-top: -3px;
	}
}

.account.qq-login .account__form__content {
	padding-top: 49px;
}

@media(max-width:767px) {
	.account.qq-login .account__form__content {
		padding-top: 8px;
	}
}

.account.qq-login .account__form .form-group {
	padding-top: 20px;
}

@media(max-width:767px) {
	.account.qq-login .account__form .form-group {
		padding-top: 0;
	}
}

.account.qq-login .tab-content {
	padding-top: 0;
}

.account.qq-login .account__form {
	padding-bottom: 35px;
}

@media(max-width:767px) {
	.account.qq-login .account__form {
		padding-bottom: 60px;
	}
}

@media(max-width:767px) {
	.account.qq-login .form-group .control-label {
		margin-top: 11px;
	}
}

@media(max-width:767px) {
	.account.qq-login .chosen-container .chosen-single {
		height: 30px;
		line-height: 25px;
	}
}

@media(max-width:767px) {
	.account.qq-login .account__form .forgotten-password {
		margin-top: -5px;
	}
}

.account .global-alerts {
	margin-top: -7px;
	padding-bottom: 7px;
}

.account #wsiRegistrationForm .disabled:before,
.account #verificationCodeForm .disabled:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	background-image: url(../picture/sprites_img.png);
	background-position: -722px -323px;
	width: 460px;
	height: 61px;
}

@media(max-width:767px) {

	.account #wsiRegistrationForm .disabled:before,
	.account #verificationCodeForm .disabled:before {
		width: 100%;
	}
}

.account #wsiRegistrationForm .disabled .span_disabled,
.account #verificationCodeForm .disabled .span_disabled {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	background-image: url(../picture/sprites_img.png);
	background-position: -722px -323px;
	width: 460px;
	height: 61px;
}

.ie8 .account #wsiRegistrationForm .wrap-name .form-group:first-child .control-label,
.ie9 .account #wsiRegistrationForm .wrap-name .form-group:first-child .control-label {
	margin-right: 10px;
}

.wrap-name {
	position: relative;
}

.wrap-name .form-group:first-child input[type="text"] {
	width: 100px;
	float: left;
	margin-left: 10px;
}

@media(max-width:767px) {
	.wrap-name .form-group:first-child input[type="text"] {
		margin-left: 0;
		width: calc(50% - 8px);
	}
}

.wrap-name .form-group.form-group-2 {
	width: 100px;
	position: absolute;
	top: 0;
	right: 0;
}

.wrap-name .form-group.form-group-2 .form-group {
	margin: 0;
	padding: 0;
}

@media(max-width:767px) {
	.wrap-name .form-group.form-group-2 {
		width: calc(50% - 8px);
		top: 30px;
	}
}

.wrap-name .form-group.form-group-2 input[type="text"] {
	width: 100%;
	margin-left: 0;
}

.wrap-name .form-group.form-group-2 .control-label {
	display: none;
}

.language-zh .btn-qq {
	line-height: 50px;
}

@media(max-width:767px) {
	.language-zh .btn-qq {
		line-height: 35px;
	}
}

.page-register .account__form .account--button span {
	background-image: url(../picture/sprites_img.png);
	background-position: -1690px -323px;
	width: 48px;
	height: 39px;
}

@media(max-width:767px) {
	.page-register .account__form .account--button span {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/register-small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 30px;
		height: 24px;
	}
}

.page-register .account__form .has-error .form-control {
	line-height: 27px\9;
}

.ie8 video,
.ie8 .learn__content__video,
.ie8 .video-container {
	cursor: default !important;
}

.ie8 .play-btn {
	display: none !important;
	cursor: default !important;
}

.ie8 .page-login .account .form-control {
	line-height: 33px !important;
}

@media(max-width:767px) {
	.ie8 .page-login .account .form-control {
		line-height: 30px !important;
	}
}

.page-register .phone-number-error,
.page-login .phone-number-error {
	padding-bottom: 12px;
}

@media(max-width:767px) {

	.page-register .phone-number-error,
	.page-login .phone-number-error {
		padding-bottom: 8px;
	}
}

.wrap-mobile-input .mobile-prefix {
	position: relative;
	float: right;
	display: inline-block;
}

.wrap-mobile-input .mobile-prefix:before,
.wrap-mobile-input .mobile-prefix:after {
	content: " ";
	display: table;
}

.wrap-mobile-input .mobile-prefix:after {
	clear: both;
}

.wrap-mobile-input .mobile-prefix:before,
.wrap-mobile-input .mobile-prefix:after {
	content: " ";
	display: table;
}

.wrap-mobile-input .mobile-prefix:after {
	clear: both;
}

@media(max-width:767px) {
	.wrap-mobile-input .mobile-prefix {
		width: 100%;
		float: none;
	}
}

.page-contactUs .wrap-mobile-input .mobile-prefix {
	float: none;
}

.wrap-mobile-input .mobile-prefix:before {
	content: '+86';
	position: absolute;
	top: 0px;
	left: 10px;
	line-height: 34px;
	color: #333333;
}

@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution:0.001dpcm) {
	.wrap-mobile-input .mobile-prefix:before {
		line-height: 33px;
	}
}

@media(max-width:767px) {
	.wrap-mobile-input .mobile-prefix:before {
		line-height: 30px;
		left: 7px;
	}
}

.invoice__content .form-group .form-control,
.account__form .form-group .form-control,
.edit-account__form__block .form-group .form-control {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 34px;
	color: #333;
	height: 34px;
}

@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution:0.001dpcm) {

	.invoice__content .form-group .form-control,
	.account__form .form-group .form-control,
	.edit-account__form__block .form-group .form-control {
		height: 33px;
	}
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {

	.invoice__content .form-group .form-control,
	.account__form .form-group .form-control,
	.edit-account__form__block .form-group .form-control {
		line-height: 1;
	}
}

@media(max-width:767px) {

	.invoice__content .form-group .form-control,
	.account__form .form-group .form-control,
	.edit-account__form__block .form-group .form-control {
		padding-top: 0;
		padding-bottom: 0;
		line-height: 30px !important;
		height: 30px;
	}
}

.ie10 .invoice__content .form-group .form-control,
.ie10 .account__form .form-group .form-control,
.ie10 .edit-account__form__block .form-group .form-control {
	line-height: normal;
	height: 33px;
}

.ie8 .invoice__content .form-group .form-control,
.ie8 .account__form .form-group .form-control,
.ie8 .edit-account__form__block .form-group .form-control {
	line-height: 30px;
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	body.language-zh .account .account__form .wrap-mobile-input .mobile-prefix:before {
		font-size: 16px;
	}

	body.language-zh .account .account__form .wrap-mobile-input .mobile-prefix .form-control {
		font-size: 16px;
		line-height: 33px;
	}

	body.language-zh .account .account__form .wrap-mobile-input .mobile-prefix.has-error .form-control {
		line-height: 30px;
	}

	body .register .account__form .account__form__content .wrap-mobile-input .mobile-prefix:before {
		line-height: 35px;
	}

	body .register .account__form .account__form__content .wrap-mobile-input .mobile-prefix .form-control {
		line-height: 30px;
	}

	.language-zh body .register .account__form .account__form__content .wrap-mobile-input .mobile-prefix .form-control {
		line-height: 29px;
	}

	body .register .account__form .account__form__content .wrap-mobile-input .mobile-prefix.has-error .form-control {
		line-height: 28px;
	}

	.language-zh body .register .account__form .account__form__content .wrap-mobile-input .mobile-prefix.has-error .form-control {
		line-height: 29px;
	}
}

@media all and (-ms-high-contrast:none) {

	*::-ms-backdrop,
	.qq-login .account__form .wrap-mobile-input .mobile-prefix .form-control.error {
		line-height: 30px;
	}

	*::-ms-backdrop,
	body.language-zh .qq-login .account__form .wrap-mobile-input .mobile-prefix .form-control.error {
		line-height: 30px;
	}
}

.boxaccount_button_mobile {
	background: #f2f1f1;
}

.boxaccount_button_mobile .content {
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	text-align: center;
}

.boxaccount_button_mobile .content .title {
	padding-bottom: 10px;
	font-size: 14px;
	line-height: 1;
	color: #043458;
}

.boxaccount_button_mobile .content .row_btn_boxaccount {
	margin-left: -10px;
	margin-right: -10px;
}

.boxaccount_button_mobile .content .row_btn_boxaccount .btn_boxaccount {
	padding: 0 10px;
	float: left;
	width: 50%;
	font-weight: bold;
}

.boxaccount_button_mobile .content .row_btn_boxaccount .btn_boxaccount a {
	color: #ffffff;
	background: #043458;
	width: 100%;
	display: block;
	line-height: 33px;
}

.btn-square {
	height: 35px;
	line-height: 35px;
	text-align: center;
	min-width: 150px;
	padding: 0 15px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background: #043458;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
	display: inline-block;
	margin-left: 2px;
}

.btn-square:hover {
	background: #0082a9;
	color: #fff;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.btn-square:hover {
		background: #043458;
	}
}

.wt_slideshow {
	z-index: 1;
}

.wt_slideshow img {
	width: 100%;
}

.wt_slideshow.banner_product .slideshow_content .slideshow_text {
	top: 46%;
}

.wt_slideshow.banner_product .slideshow_content .slideshow_text h2 {
	font-size: 60px;
	line-height: 70px;
	max-width: 650px;
	margin: auto;
	margin-top: 0px;
}

@media(max-width:767px) {
	.wt_slideshow.banner_product .slideshow_content .slideshow_text h2 {
		font-size: 24px;
		line-height: 30px;
		max-width: 260px;
		margin-top: 12px;
	}
}

.wt_slideshow.banner_product .slideshow_content .slideshow_text--big h2 {
	font-size: 90px;
	line-height: 100px;
}

@media(max-width:767px) {
	.wt_slideshow.banner_product .slideshow_content .slideshow_text--big h2 {
		font-size: 30px;
		line-height: 34px;
	}
}

.wt_slideshow.banner_product .wrap-circle {
	position: absolute;
	bottom: 14%;
	left: 0;
	text-align: center;
	width: 100%;
	font-size: 0;
}

@media(max-width:767px) {
	.wt_slideshow.banner_product .wrap-circle {
		bottom: 3px;
	}
}

.wt_slideshow.banner_product .wrap-circle .circle {
	width: 136px;
	height: 136px;
	border: 3px solid #fff;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	display: inline-block;
	margin: 0 11px;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
}

@media(min-width:1024px) {
	.wt_slideshow.banner_product .wrap-circle .circle:hover {
		background: #fff;
	}

	.wt_slideshow.banner_product .wrap-circle .circle:hover a {
		color: #313131;
	}
}

.wt_slideshow.banner_product .wrap-circle .circle:active {
	background: none;
}

.wt_slideshow.banner_product .wrap-circle .circle:active a {
	color: #fff;
	cursor: default;
}

@media(max-width:767px) {
	.wt_slideshow.banner_product .wrap-circle .circle {
		width: 80px;
		height: 80px;
		margin: 0 4px;
		border-width: 1px;
	}
}

.wt_slideshow.banner_product .wrap-circle .circle a {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	display: block;
	text-decoration: none;
	position: relative;
	width: 100%;
	height: 100%;
}

@media(max-width:767px) {
	.wt_slideshow.banner_product .wrap-circle .circle a {
		font-size: 12px;
	}
}

.wt_slideshow.banner_product .wrap-circle .circle a span {
	width: 100%;
	padding: 0 25px;
	display: block;
	line-height: 24px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	word-break: normal;
}

@media(max-width:767px) {
	.wt_slideshow.banner_product .wrap-circle .circle a span {
		line-height: 18px;
		padding: 0 10px;
	}
}

.wt_slideshow.banner_product .ason-circle {
	bottom: 28%;
}

.page-homepage .wt_slideshow.banner_product video {
	vertical-align: top;
}

@media(max-width:767px) {
	.page-homepage .wt_slideshow.banner_product .wrap-circle .circle {
		width: 55px;
		height: 55px;
		margin: 0 2px;
	}

	.page-homepage .wt_slideshow.banner_product .wrap-circle .circle a {
		font-size: 11px;
		font-weight: normal;
		text-transform: none;
	}
}

.product-list {
	max-width: 1400px;
	overflow: hidden;
	margin: auto;
}

.product-list .container {
	padding: 0 60px;
}

@media(max-width:767px) {
	.product-list .container {
		padding: 0 30px;
		max-width: 320px;
	}
}

.product-list__title {
	font-size: 60px;
	line-height: 70px;
	font-weight: bold;
	color: #043458;
	margin-top: 1px;
}

.product-list__title span {
	font-size: 50px;
}

@media(max-width:767px) {
	.product-list__title {
		font-size: 30px;
		line-height: 35px;
		padding-right: 112px;
		margin-top: 23px;
		min-height: 160px;
	}

	.product-list__title.multimethod {
		font-size: 26px;
	}

	.product-list__title span {
		font-size: 24px;
	}
}

.product-list__tabs {
	padding-top: 10px;
	position: relative;
	z-index: 100;
}

@media(max-width:767px) {
	.product-list__tabs {
		padding-top: 14px;
	}

	.product-list__tabs .container {
		padding: 0 30px;
	}
}

.product-list .nav-tabs {
	margin: auto;
	border: 0;
	padding: 0;
	font-size: 0;
	padding-top: 16px;
}

@media(max-width:767px) {
	.product-list .nav-tabs {
		padding-top: 1px;
	}
}

.product-list .nav-tabs li {
	display: inline-block;
	float: none;
	margin: 0 0 0 102px;
}

@media(max-width:767px) {
	.product-list .nav-tabs li {
		margin-left: 19px;
	}
}

.product-list .nav-tabs li:first-child {
	margin-left: 0;
}

.product-list .nav-tabs li a {
	display: block;
	margin: 0;
	color: #043458;
	font-size: 20px;
	text-align: center;
	border: none;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	line-height: 40px;
}

@media(max-width:767px) {
	.product-list .nav-tabs li a {
		font-size: 12px;
		line-height: 20px;
	}
}

.product-list .nav-tabs li a:hover {
	color: #0082a9;
}

@media(max-width:767px) {
	.product-list .nav-tabs li a:hover {
		color: #043458;
	}
}

.product-list .nav-tabs li a:before {
	content: '';
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: -6px;
	margin-left: -8px;
	border-bottom: 10px solid #ee2d42;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
}

@media(max-width:767px) {
	.product-list .nav-tabs li a:before {
		margin-top: 4px;
		margin-left: -5px;
		border-bottom: 5px solid #ee2d42;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
	}
}

.product-list .nav-tabs li a .span_awrrow_before {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: 4px;
	margin-left: -8px;
	background-image: url(../picture/sprites_img.png);
	background-position: -1846px -205px;
	width: 15px;
	height: 10px;
	display: none;
}

.product-list .nav-tabs li.active a {
	color: #ee2d42;
	border: none;
}

.product-list .nav-tabs li.active a:before {
	display: block;
}

.product-list .nav-tabs li.active a .span_awrrow_before {
	display: block;
}

.product-list__content .tab-pane {
	max-width: 1020px;
	margin: auto;
	padding-top: 20px;
}

@media(max-width:767px) {
	.product-list__content .tab-pane {
		padding-top: 19px;
	}
}

.product-list__content__title,
.product-list__content__subtitle {
	position: relative;
	z-index: 20;
	font-weight: bold;
	padding-top: 11px;
}

@media(max-width:767px) {

	.product-list__content__title,
	.product-list__content__subtitle {
		line-height: 28px;
		padding: 0;
		margin: 0;
	}
}

.product-list__content__title {
	font-size: 30px;
}

@media(max-width:767px) {
	.product-list__content__title {
		font-size: 20px;
	}
}

.product-list__content__subtitle {
	font-size: 16px;
}

@media(max-width:767px) {
	.product-list__content__subtitle {
		font-size: 12px;
	}
}

.product-list__status {
	position: relative;
	z-index: 20;
	padding-top: 26px;
}

@media(max-width:767px) {
	.product-list__status {
		padding-top: 12px;
	}
}

.product-list__status>span {
	padding-left: 40px;
	margin-left: 49px;
	display: inline-block;
	position: relative;
	font-size: 16px;
	line-height: 29px;
}

@media(max-width:767px) {
	.product-list__status>span {
		font-size: 12px;
		padding-left: 30px;
		margin-left: 22px;
		line-height: 18px;
	}
}

.product-list__status>span:first-child {
	margin-left: 0;
}

.product-list__status>span:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.product-list__status>span.popular:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -1650px -583px;
	width: 30px;
	height: 30px;
}

@media(max-width:767px) {
	.product-list__status>span.popular:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-heart-sm.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 22px;
		height: 22px;
	}
}

.product-list__status>span.star:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -1710px -583px;
	width: 30px;
	height: 30px;
}

@media(max-width:767px) {
	.product-list__status>span.star:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/star-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 22px;
		height: 22px;
	}
}

.product-list__status>span.student-count:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -1770px -583px;
	width: 30px;
	height: 30px;
}

@media(max-width:767px) {
	.product-list__status>span.student-count:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/icon-user-sm.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 22px;
		height: 22px;
	}
}

.product-list__subtitle {
	font-size: 40px;
	line-height: 50px;
	font-family: 'ProximaNova-Black', Arial, sans-serif;
	color: #043458;
	text-align: left;
}

@media(max-width:767px) {
	.product-list__subtitle {
		font-size: 24px;
		line-height: 30px;
		margin-top: 15px;
	}
}

body.language-en .product-list__subtitle {
	font-family: 'ProximaNova-Regular', Arial, sans-serif;
	font-weight: bold;
}

.product-list__wrapper {
	max-width: 1020px;
	padding-top: 37px;
	position: relative;
	z-index: 20;
}

@media(max-width:767px) {
	.product-list__wrapper {
		padding-top: 20px;
	}
}

.product-list__col {
	width: 301px;
	padding-right: 20px;
	float: left;
	line-height: 28px;
}

@media(max-width:767px) {
	.product-list__col {
		float: none;
		width: 100%;
		max-width: none;
		margin: auto;
		padding: 13px 0 0 0;
		line-height: 14px;
	}

	.product-list__col br {
		display: none;
	}
}

@media(max-width:767px) {
	.product-list__col:first-child {
		padding-top: 1px;
	}
}

.product-list__col p {
	font-size: 16px;
	position: relative;
	padding-left: 13px;
	margin: 0;
	line-height: 24px;
}

@media(max-width:767px) {
	.product-list__col p {
		font-size: 12px;
		line-height: 18px;
		padding-bottom: 15px;
		padding-left: 9px;
	}
}

.product-list__col p.list-icon:before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;
	width: 7px;
	height: 7px;
	background: #333;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

@media(max-width:767px) {
	.product-list__col p.list-icon:before {
		height: 5px;
		width: 5px;
		top: 6px;
		left: 1px;
	}
}

@media(max-width:767px) {
	.product-list__col p.list-icon {
		padding-bottom: 0;
	}
}

.product-list__col p.col-title {
	color: #ee2d42;
	font-weight: bold;
	padding-left: 0;
	margin-bottom: 18px;
}

@media(max-width:767px) {
	.product-list__col p.col-title {
		margin-bottom: 2px;
		padding-bottom: 0;
	}
}

.product-list__col p b {
	font-weight: bold;
}

.product-list__col__img {
	width: 100%;
	padding-bottom: calc(100% - 6px);
	position: relative;
	background: #fff;
	border: 3px solid #ee2d42;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	margin-top: -28px;
}

@media(max-width:767px) {
	.product-list__col__img {
		margin-top: 0;
		border-width: 2px;
	}

	.product-list__col__img img {
		max-width: 119px;
		display: block;
		margin: auto;
	}
}

.product-list__col__img2 {
	padding-bottom: 13px;
	padding-top: 4px;
}

@media(max-width:767px) {
	.product-list__col__img2 {
		max-width: 146px;
		padding-top: 15px;
		padding-bottom: 16px;
	}
}

.product-list__col__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	width: 100%;
	max-width: 210px;
	text-align: center;
}

@media(max-width:767px) {
	.product-list__col__content {
		max-width: 135px;
	}
}

.product-list__col__content p {
	color: #ee2d42;
	font-size: 30px;
	text-align: left;
}

@media(max-width:767px) {
	.product-list__col__content p {
		font-size: 20px;
		line-height: 24px;
		margin-top: 10px;
	}
}

.product-list__col__content p b {
	line-height: 36px;
}

@media(max-width:767px) {
	.product-list__col__content p b {
		line-height: 24px;
	}
}

.product-list__col__content p,
.product-list__col__content img {
	padding: 7px 0;
}

.product-list--prime .col-title {
	color: #ee2d42;
	margin-bottom: 16px;
}

@media(max-width:767px) {
	.product-list--prime .col-title {
		margin-bottom: 1px;
	}
}

.product-list--prime .product-list__col {
	width: 33.33%;
}

@media(max-width:767px) {
	.product-list--prime .product-list__col {
		width: 100%;
		padding: 0;
	}
}

.product-list__wrap-button {
	height: 67px;
	margin-top: 56px;
	margin-left: -33px;
	position: relative;
}

.product-list__wrap-button:before {
	content: '';
	position: absolute;
	bottom: -50px;
	margin-left: -1081px;
	left: 50%;
	width: 2317px;
	height: 2317px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	border: 3px solid #043458;
	z-index: -1;
}

.ios11 .product-list__wrap-button:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2317' height='2317'><path d='M2,1158.5a1156.5,1156.5 0 1,0 2313,0a1156.5,1156.5 0 1,0 -2313,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.product-list__wrap-button:before {
		content: '';
		width: 1168px;
		height: 1168px;
		border-width: 2px;
		top: auto;
		bottom: 3px;
		left: 50%;
		margin-left: -584px;
		z-index: 0;
	}

	.ios11 .product-list__wrap-button:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1168' height='1168'><path d='M2,584a582,582 0 1,0 1164,0a582,582 0 1,0 -1164,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
	}
}

@media(max-width:767px) {
	.product-list__wrap-button {
		margin-top: 39px;
		height: 52px;
		margin-left: 14px;
		text-align: center;
	}
}

.product-list__button {
	margin: 0 16px;
}

.product-list__button:before {
	left: 0;
	top: 0;
}

@media(max-width:767px) {
	.product-list__button {
		margin: 0 10px;
	}
}

.product-list__button--red {
	display: table;
	vertical-align: middle;
	position: relative;
	display: inline-block;
}

.product-list__button--red:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ee2d42;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.product-list__button--red:hover a {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.product-list__button--red:hover a {
		background: #ee2d42;
	}
}

.product-list__button--red:focus,
.product-list__button--red:active {
	cursor: default;
}

.product-list__button--red:focus a,
.product-list__button--red:active a {
	background: #ee2d42;
	cursor: default;
}

.product-list__button--red a {
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	background: #ee2d42;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.product-list__button--red a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.product-list__button--red a:focus,
.product-list__button--red a:active {
	background: #ee2d42;
	cursor: default;
}

.product-list__button--red a span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.product-list__button--red a span {
		font-size: 12px;
	}
}

.product-list__button--red a span.glyphicon {
	font-size: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.product-list__button--red a span.glyphicon {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
		margin-bottom: 12px;
	}
}

.product-list__button--red a span.glyphicon:before {
	content: '';
}

@media(max-width:767px) {
	.product-list__button--red.content_item_more2 a {
		line-height: 14px;
	}
}

.product-list__button--red.more_style:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.product-list__button--red.more_style:hover a {
		background: #043458;
	}
}

.product-list__button--red.more_style:focus a,
.product-list__button--red.more_style:active a {
	background: #043458;
}

.product-list__button--red.more_style a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.product-list__button--red.more_style a:focus,
.product-list__button--red.more_style a:active {
	background: #043458;
	cursor: default;
}

.product-list__button--red.more_style .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.product-list__button--red.more_style .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.product-list__button--red.more_style .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.product-list__button--red.more_style .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.product-list__button--red.more_style:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

.product-list__button--blue {
	display: table;
	vertical-align: middle;
	position: relative;
	display: inline-block;
}

.product-list__button--blue:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ee2d42;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.product-list__button--blue:hover a {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.product-list__button--blue:hover a {
		background: #ee2d42;
	}
}

.product-list__button--blue:focus,
.product-list__button--blue:active {
	cursor: default;
}

.product-list__button--blue:focus a,
.product-list__button--blue:active a {
	background: #ee2d42;
	cursor: default;
}

.product-list__button--blue a {
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	background: #ee2d42;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.product-list__button--blue a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.product-list__button--blue a:focus,
.product-list__button--blue a:active {
	background: #ee2d42;
	cursor: default;
}

.product-list__button--blue a span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.product-list__button--blue a span {
		font-size: 12px;
	}
}

.product-list__button--blue a span.glyphicon {
	font-size: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.product-list__button--blue a span.glyphicon {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
		margin-bottom: 12px;
	}
}

.product-list__button--blue a span.glyphicon:before {
	content: '';
}

@media(max-width:767px) {
	.product-list__button--blue.content_item_more2 a {
		line-height: 14px;
	}
}

.product-list__button--blue.more_style:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.product-list__button--blue.more_style:hover a {
		background: #043458;
	}
}

.product-list__button--blue.more_style:focus a,
.product-list__button--blue.more_style:active a {
	background: #043458;
}

.product-list__button--blue.more_style a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.product-list__button--blue.more_style a:focus,
.product-list__button--blue.more_style a:active {
	background: #043458;
	cursor: default;
}

.product-list__button--blue.more_style .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.product-list__button--blue.more_style .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.product-list__button--blue.more_style .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.product-list__button--blue.more_style .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.product-list__button--blue.more_style:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

.product-list__button--blue:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.product-list__button--blue:hover a {
		background: #043458;
	}
}

.product-list__button--blue:focus a,
.product-list__button--blue:active a {
	background: #043458;
}

.product-list__button--blue a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.product-list__button--blue a:focus,
.product-list__button--blue a:active {
	background: #043458;
	cursor: default;
}

.product-list__button--blue .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.product-list__button--blue .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.product-list__button--blue .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.product-list__button--blue .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.product-list__button--blue:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

.product-list__button a {
	width: 136px;
	height: 136px;
	font-size: 16px;
	padding: 0 25px;
	line-height: 20px;
	text-decoration: none;
}

@media screen and (min-width:640px) and (max-width:767px) {
	.product-list__button a {
		width: 160px;
		height: 160px;
		font-size: 24px;
		line-height: 26px;
	}
}

@media(max-width:767px) {
	.product-list__button a {
		width: 84px;
		height: 84px;
		font-size: 12px;
		line-height: 14px;
		padding: 0 10px;
	}
}

.product-list__button a span {
	margin: 10px auto;
}

@media(max-width:767px) {
	.product-list__button a span {
		margin: 7px auto;
	}
}

.product-list .new-container {
	padding: 0 0 0 498px;
	position: relative;
}

@media(max-width:767px) {
	.product-list .new-container {
		padding: 0 30px 2px;
	}
}

.product-list__img {
	position: absolute;
	top: 69px;
	left: -36px;
	max-width: 474px;
}

@media(max-width:767px) {
	.product-list__img {
		max-width: 142px;
		top: 0;
		right: 0;
		left: auto;
	}
}

.product-list__img img {
	width: 100%;
}

.breadcrumb-container {
	position: relative;
	z-index: 100;
}

.center {
	position: relative;
	overflow: hidden;
}

@media(max-width:767px) {
	.center {
		max-width: 320px;
		overflow: visible;
	}
}

.center:before {
	content: '';
	position: absolute;
	top: 347px;
	left: -556px;
	z-index: 0;
	width: 1491px;
	height: 1491px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	border: 3px solid #043458;
}

.ios11 .center:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1491' height='1491'><path d='M2,745.5a743.5,743.5 0 1,0 1487,0a743.5,743.5 0 1,0 -1487,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.center:before {
		width: 934px;
		height: 934px;
		top: 35px;
		left: -547px;
		border-width: 2px;
	}

	.ios11 .center:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='934' height='934'><path d='M2,467a465,465 0 1,0 930,0a465,465 0 1,0 -930,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
	}
}

.center>div {
	z-index: 10;
	position: relative;
}

.center__level {
	width: 100%;
	max-width: 451px;
	position: relative;
	margin-top: 189px;
	margin-left: 176px;
	float: left;
}

@media(max-width:767px) {
	.center__level {
		float: none;
		margin: 70px auto 0 auto;
		max-width: 265px;
	}
}

.center__level__box {
	width: 100%;
	padding-bottom: 100%;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	background: #ee2d42;
	position: relative;
}

.center__level__content {
	transform: translate(-50%, -51%);
	-webkit-transform: translate(-50%, -51%);
	-moz-transform: translate(-50%, -51%);
	-ms-transform: translate(-50%, -51%);
	-o-transform: translate(-50%, -51%);
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 300px;
	font-size: 18px;
	color: #fff;
}

@media(max-width:767px) {
	.center__level__content {
		max-width: 194px;
		font-size: 12px;
		line-height: 15px;
	}

	body.language-en .center__level__content.moveRight {
		padding-left: 18px;
	}
}

.center__level__content .center__link p:first-child {
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
}

@media(max-width:767px) {
	.center__level__content .center__link p:first-child {
		font-size: 12px;
		line-height: 18px;
	}
}

@media screen and (min-width:768px) {
	.center__level__content .center__link p:not(:first-child) {
		font-size: 16px;
		line-height: 24px;
	}
}

.center__level__content p {
	margin-top: 3px;
	padding-left: 30px;
}

@media(max-width:767px) {
	.center__level__content p {
		padding-left: 13px;
		margin-top: 7px;
	}
}

.center__level__content p a {
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	border-bottom: 1px solid #fff;
}

.center__level__content p a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.center__level__content p a:hover {
		color: #fff;
		border-color: #fff;
	}
}

.center__level__title {
	font-size: 30px;
	line-height: 36px;
	padding-bottom: 3px;
	font-weight: bold;
}

@media(max-width:767px) {
	.center__level__title {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 3px;
		font-weight: bold;
	}
}

.center__design {
	float: left;
	clear: both;
	width: 100%;
	max-width: 397px;
	margin-left: 87px;
	margin-top: 57px;
	padding-right: 15px;
	font-weight: bold;
}

@media(max-width:767px) {
	.center__design {
		float: none;
		margin: 62px auto 0 auto;
		max-width: 265px;
		padding-right: 0;
	}
}

body.language-zh .center__design h3+p {
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
}

@media(max-width:767px) {
	body.language-zh .center__design h3+p {
		font-size: 12px;
		line-height: 18px;
	}
}

.center__design__title {
	font-size: 40px;
	line-height: 50px;
	color: #043458;
	padding-bottom: 15px;
	font-weight: bold;
}

@media(max-width:767px) {
	.center__design__title {
		font-size: 24px;
		line-height: 30px;
		padding-bottom: 0;
		margin-bottom: 3px;
	}
}

.center__design p:first-child {
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
}

.center__design p {
	font-size: 16px;
	line-height: 24px;
	padding-left: 57px;
	padding-bottom: 18px;
	font-weight: normal;
}

@media(max-width:767px) {
	.center__design p {
		padding-left: 0;
		font-size: 12px;
		line-height: 18px;
		padding-bottom: 4px;
		font-weight: normal;
	}
}

.center__design p a {
	font-weight: bold;
	color: #ee2d42;
	border-bottom: 1px solid #ee2d42;
}

.center__design p a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.center__design p a:hover {
		color: #ee2d42;
		border-color: #ee2d42;
	}
}

.center__slide {
	float: right;
	width: 100%;
	max-width: 570px;
	margin-bottom: 190px;
	margin-top: -3px;
	position: relative;
	z-index: 10;
}

@media(max-width:767px) {
	.center__slide {
		float: none;
		max-width: 265px;
		margin: 24px auto 61px auto;
	}
}

.center__slide .owl-carousel {
	width: 100%;
}

.center__slide .button {
	position: absolute;
	left: 0;
	top: 100%;
	transform: translate(-43%, -39%);
	-webkit-transform: translate(-43%, -39%);
	-moz-transform: translate(-43%, -39%);
	-ms-transform: translate(-43%, -39%);
	-o-transform: translate(-43%, -39%);
	z-index: 10;
}

@media(max-width:767px) {
	.center__slide .button {
		transform: translate(0, 4%);
		-webkit-transform: translate(0, 4%);
		-moz-transform: translate(0, 4%);
		-ms-transform: translate(0, 4%);
		-o-transform: translate(0, 4%);
	}
}

.center__slide .button--red {
	display: table;
	vertical-align: middle;
	position: relative;
}

.center__slide .button--red:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ee2d42;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.center__slide .button--red:hover a {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.center__slide .button--red:hover a {
		background: #ee2d42;
	}
}

.center__slide .button--red:focus,
.center__slide .button--red:active {
	cursor: default;
}

.center__slide .button--red:focus a,
.center__slide .button--red:active a {
	background: #ee2d42;
	cursor: default;
}

.center__slide .button--red a {
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	background: #ee2d42;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.center__slide .button--red a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.center__slide .button--red a:focus,
.center__slide .button--red a:active {
	background: #ee2d42;
	cursor: default;
}

.center__slide .button--red a span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.center__slide .button--red a span {
		font-size: 12px;
	}
}

.center__slide .button--red a span.glyphicon {
	font-size: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.center__slide .button--red a span.glyphicon {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
		margin-bottom: 12px;
	}
}

.center__slide .button--red a span.glyphicon:before {
	content: '';
}

@media(max-width:767px) {
	.center__slide .button--red.content_item_more2 a {
		line-height: 14px;
	}
}

.center__slide .button--red.more_style:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.center__slide .button--red.more_style:hover a {
		background: #043458;
	}
}

.center__slide .button--red.more_style:focus a,
.center__slide .button--red.more_style:active a {
	background: #043458;
}

.center__slide .button--red.more_style a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.center__slide .button--red.more_style a:focus,
.center__slide .button--red.more_style a:active {
	background: #043458;
	cursor: default;
}

.center__slide .button--red.more_style .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.center__slide .button--red.more_style .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.center__slide .button--red.more_style .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.center__slide .button--red.more_style .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.center__slide .button--red.more_style:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

.center__slide .button a {
	width: 136px;
	height: 136px;
	font-size: 16px;
	padding: 0 25px;
	line-height: 20px;
	text-decoration: none;
}

@media screen and (min-width:640px) and (max-width:767px) {
	.center__slide .button a {
		width: 160px;
		height: 160px;
		font-size: 24px;
		line-height: 26px;
	}
}

@media(max-width:767px) {
	.center__slide .button a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0 10px;
	}
}

.center__slide .button a span {
	margin: 10px auto;
}

@media(max-width:767px) {
	.center__slide .button a span {
		margin: 7px auto;
	}
}

.center__slide .owl-nav,
.center__slide .center__slick__button {
	position: absolute;
	right: 0;
	top: 100%;
	transform: translate(-30%, -91%);
	-webkit-transform: translate(-30%, -91%);
	-moz-transform: translate(-30%, -91%);
	-ms-transform: translate(-30%, -91%);
	-o-transform: translate(-30%, -91%);
	width: 136px;
	height: 136px;
	background: rgba(4, 52, 88, 0.58);
	box-shadow: 0 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0 18px 25px 10px rgba(4, 52, 88, 0.58);
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

@media screen and (min-width:640px) and (max-width:767px) {

	.center__slide .owl-nav,
	.center__slide .center__slick__button {
		width: 160px;
		height: 160px;
		transform: translate(0, -92%);
		-webkit-transform: translate(0, -92%);
		-moz-transform: translate(0, -92%);
		-ms-transform: translate(0, -92%);
		-o-transform: translate(0, -92%);
	}
}

@media(max-width:767px) {

	.center__slide .owl-nav,
	.center__slide .center__slick__button {
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
		width: 80px;
		height: 80px;
		margin-top: -33px;
	}
}

.center__slide .owl-nav:before,
.center__slide .center__slick__button:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -1px;
	margin-top: -68px;
	width: 3px;
	height: 136px;
	background: #fff;
	z-index: 10;
}

@media screen and (min-width:640px) and (max-width:767px) {

	.center__slide .owl-nav:before,
	.center__slide .center__slick__button:before {
		height: 150px;
	}
}

@media(max-width:767px) {

	.center__slide .owl-nav:before,
	.center__slide .center__slick__button:before {
		height: 80px;
		width: 2px;
		margin-top: -40px;
	}
}

.center__slide .owl-nav .owl-prev,
.center__slide .center__slick__button .owl-prev,
.center__slide .owl-nav .owl-next,
.center__slide .center__slick__button .owl-next,
.center__slide .owl-nav .slick-arrow,
.center__slide .center__slick__button .slick-arrow {
	width: 50%;
	height: 100%;
	display: block;
	float: left;
	position: relative;
	font-size: 0;
	background: #043458;
}

.center__slide .owl-nav .owl-prev:before,
.center__slide .center__slick__button .owl-prev:before,
.center__slide .owl-nav .owl-next:before,
.center__slide .center__slick__button .owl-next:before,
.center__slide .owl-nav .slick-arrow:before,
.center__slide .center__slick__button .slick-arrow:before {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -9px;
	margin-top: -15px;
}

@media(max-width:767px) {

	.center__slide .owl-nav .owl-prev:before,
	.center__slide .center__slick__button .owl-prev:before,
	.center__slide .owl-nav .owl-next:before,
	.center__slide .center__slick__button .owl-next:before,
	.center__slide .owl-nav .slick-arrow:before,
	.center__slide .center__slick__button .slick-arrow:before {
		margin-left: -6px;
		margin-top: -10px;
	}
}

.center__slide .owl-nav .owl-prev.owl-prev,
.center__slide .center__slick__button .owl-prev.owl-prev,
.center__slide .owl-nav .owl-next.owl-prev,
.center__slide .center__slick__button .owl-next.owl-prev,
.center__slide .owl-nav .slick-arrow.owl-prev,
.center__slide .center__slick__button .slick-arrow.owl-prev,
.center__slide .owl-nav .owl-prev.slick-prev,
.center__slide .center__slick__button .owl-prev.slick-prev,
.center__slide .owl-nav .owl-next.slick-prev,
.center__slide .center__slick__button .owl-next.slick-prev,
.center__slide .owl-nav .slick-arrow.slick-prev,
.center__slide .center__slick__button .slick-arrow.slick-prev {
	border-radius: 200px 0 0 200px;
	-moz-border-radius: 200px 0 0 200px;
	-webkit-border-radius: 200px 0 0 200px;
	-o-border-radius: 200px 0 0 200px;
}

.center__slide .owl-nav .owl-prev.owl-prev:before,
.center__slide .center__slick__button .owl-prev.owl-prev:before,
.center__slide .owl-nav .owl-next.owl-prev:before,
.center__slide .center__slick__button .owl-next.owl-prev:before,
.center__slide .owl-nav .slick-arrow.owl-prev:before,
.center__slide .center__slick__button .slick-arrow.owl-prev:before,
.center__slide .owl-nav .owl-prev.slick-prev:before,
.center__slide .center__slick__button .owl-prev.slick-prev:before,
.center__slide .owl-nav .owl-next.slick-prev:before,
.center__slide .center__slick__button .owl-next.slick-prev:before,
.center__slide .owl-nav .slick-arrow.slick-prev:before,
.center__slide .center__slick__button .slick-arrow.slick-prev:before {
	content: '';
	background-image: url(../picture/sprites_img.png);
	background-position: -962px -776px;
	width: 18px;
	height: 31px;
	display: block;
}

@media(max-width:767px) {

	.center__slide .owl-nav .owl-prev.owl-prev:before,
	.center__slide .center__slick__button .owl-prev.owl-prev:before,
	.center__slide .owl-nav .owl-next.owl-prev:before,
	.center__slide .center__slick__button .owl-next.owl-prev:before,
	.center__slide .owl-nav .slick-arrow.owl-prev:before,
	.center__slide .center__slick__button .slick-arrow.owl-prev:before,
	.center__slide .owl-nav .owl-prev.slick-prev:before,
	.center__slide .center__slick__button .owl-prev.slick-prev:before,
	.center__slide .owl-nav .owl-next.slick-prev:before,
	.center__slide .center__slick__button .owl-next.slick-prev:before,
	.center__slide .owl-nav .slick-arrow.slick-prev:before,
	.center__slide .center__slick__button .slick-arrow.slick-prev:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.center__slide .owl-nav .owl-prev.owl-prev:active,
.center__slide .center__slick__button .owl-prev.owl-prev:active,
.center__slide .owl-nav .owl-next.owl-prev:active,
.center__slide .center__slick__button .owl-next.owl-prev:active,
.center__slide .owl-nav .slick-arrow.owl-prev:active,
.center__slide .center__slick__button .slick-arrow.owl-prev:active,
.center__slide .owl-nav .owl-prev.slick-prev:active,
.center__slide .center__slick__button .owl-prev.slick-prev:active,
.center__slide .owl-nav .owl-next.slick-prev:active,
.center__slide .center__slick__button .owl-next.slick-prev:active,
.center__slide .owl-nav .slick-arrow.slick-prev:active,
.center__slide .center__slick__button .slick-arrow.slick-prev:active {
	margin-right: -2px;
	margin-left: 2px;
}

@media(max-width:767px) {

	.center__slide .owl-nav .owl-prev.owl-prev:active,
	.center__slide .center__slick__button .owl-prev.owl-prev:active,
	.center__slide .owl-nav .owl-next.owl-prev:active,
	.center__slide .center__slick__button .owl-next.owl-prev:active,
	.center__slide .owl-nav .slick-arrow.owl-prev:active,
	.center__slide .center__slick__button .slick-arrow.owl-prev:active,
	.center__slide .owl-nav .owl-prev.slick-prev:active,
	.center__slide .center__slick__button .owl-prev.slick-prev:active,
	.center__slide .owl-nav .owl-next.slick-prev:active,
	.center__slide .center__slick__button .owl-next.slick-prev:active,
	.center__slide .owl-nav .slick-arrow.slick-prev:active,
	.center__slide .center__slick__button .slick-arrow.slick-prev:active {
		margin-right: -1px;
		margin-left: 1px;
		background: #fff;
	}

	.center__slide .owl-nav .owl-prev.owl-prev:active:before,
	.center__slide .center__slick__button .owl-prev.owl-prev:active:before,
	.center__slide .owl-nav .owl-next.owl-prev:active:before,
	.center__slide .center__slick__button .owl-next.owl-prev:active:before,
	.center__slide .owl-nav .slick-arrow.owl-prev:active:before,
	.center__slide .center__slick__button .slick-arrow.owl-prev:active:before,
	.center__slide .owl-nav .owl-prev.slick-prev:active:before,
	.center__slide .center__slick__button .owl-prev.slick-prev:active:before,
	.center__slide .owl-nav .owl-next.slick-prev:active:before,
	.center__slide .center__slick__button .owl-next.slick-prev:active:before,
	.center__slide .owl-nav .slick-arrow.slick-prev:active:before,
	.center__slide .center__slick__button .slick-arrow.slick-prev:active:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-blue-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.center__slide .owl-nav .owl-prev.owl-next,
.center__slide .center__slick__button .owl-prev.owl-next,
.center__slide .owl-nav .owl-next.owl-next,
.center__slide .center__slick__button .owl-next.owl-next,
.center__slide .owl-nav .slick-arrow.owl-next,
.center__slide .center__slick__button .slick-arrow.owl-next,
.center__slide .owl-nav .owl-prev.slick-next,
.center__slide .center__slick__button .owl-prev.slick-next,
.center__slide .owl-nav .owl-next.slick-next,
.center__slide .center__slick__button .owl-next.slick-next,
.center__slide .owl-nav .slick-arrow.slick-next,
.center__slide .center__slick__button .slick-arrow.slick-next {
	border-radius: 0 200px 200px 0;
	-moz-border-radius: 0 200px 200px 0;
	-webkit-border-radius: 0 200px 200px 0;
	-o-border-radius: 0 200px 200px 0;
}

.center__slide .owl-nav .owl-prev.owl-next:before,
.center__slide .center__slick__button .owl-prev.owl-next:before,
.center__slide .owl-nav .owl-next.owl-next:before,
.center__slide .center__slick__button .owl-next.owl-next:before,
.center__slide .owl-nav .slick-arrow.owl-next:before,
.center__slide .center__slick__button .slick-arrow.owl-next:before,
.center__slide .owl-nav .owl-prev.slick-next:before,
.center__slide .center__slick__button .owl-prev.slick-next:before,
.center__slide .owl-nav .owl-next.slick-next:before,
.center__slide .center__slick__button .owl-next.slick-next:before,
.center__slide .owl-nav .slick-arrow.slick-next:before,
.center__slide .center__slick__button .slick-arrow.slick-next:before {
	content: '';
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
	display: block;
}

@media(max-width:767px) {

	.center__slide .owl-nav .owl-prev.owl-next:before,
	.center__slide .center__slick__button .owl-prev.owl-next:before,
	.center__slide .owl-nav .owl-next.owl-next:before,
	.center__slide .center__slick__button .owl-next.owl-next:before,
	.center__slide .owl-nav .slick-arrow.owl-next:before,
	.center__slide .center__slick__button .slick-arrow.owl-next:before,
	.center__slide .owl-nav .owl-prev.slick-next:before,
	.center__slide .center__slick__button .owl-prev.slick-next:before,
	.center__slide .owl-nav .owl-next.slick-next:before,
	.center__slide .center__slick__button .owl-next.slick-next:before,
	.center__slide .owl-nav .slick-arrow.slick-next:before,
	.center__slide .center__slick__button .slick-arrow.slick-next:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.center__slide .owl-nav .owl-prev.owl-next:active,
.center__slide .center__slick__button .owl-prev.owl-next:active,
.center__slide .owl-nav .owl-next.owl-next:active,
.center__slide .center__slick__button .owl-next.owl-next:active,
.center__slide .owl-nav .slick-arrow.owl-next:active,
.center__slide .center__slick__button .slick-arrow.owl-next:active,
.center__slide .owl-nav .owl-prev.slick-next:active,
.center__slide .center__slick__button .owl-prev.slick-next:active,
.center__slide .owl-nav .owl-next.slick-next:active,
.center__slide .center__slick__button .owl-next.slick-next:active,
.center__slide .owl-nav .slick-arrow.slick-next:active,
.center__slide .center__slick__button .slick-arrow.slick-next:active {
	margin-left: -2px;
}

@media(max-width:767px) {

	.center__slide .owl-nav .owl-prev.owl-next:active,
	.center__slide .center__slick__button .owl-prev.owl-next:active,
	.center__slide .owl-nav .owl-next.owl-next:active,
	.center__slide .center__slick__button .owl-next.owl-next:active,
	.center__slide .owl-nav .slick-arrow.owl-next:active,
	.center__slide .center__slick__button .slick-arrow.owl-next:active,
	.center__slide .owl-nav .owl-prev.slick-next:active,
	.center__slide .center__slick__button .owl-prev.slick-next:active,
	.center__slide .owl-nav .owl-next.slick-next:active,
	.center__slide .center__slick__button .owl-next.slick-next:active,
	.center__slide .owl-nav .slick-arrow.slick-next:active,
	.center__slide .center__slick__button .slick-arrow.slick-next:active {
		margin-left: -1px;
		background: #fff;
	}

	.center__slide .owl-nav .owl-prev.owl-next:active:before,
	.center__slide .center__slick__button .owl-prev.owl-next:active:before,
	.center__slide .owl-nav .owl-next.owl-next:active:before,
	.center__slide .center__slick__button .owl-next.owl-next:active:before,
	.center__slide .owl-nav .slick-arrow.owl-next:active:before,
	.center__slide .center__slick__button .slick-arrow.owl-next:active:before,
	.center__slide .owl-nav .owl-prev.slick-next:active:before,
	.center__slide .center__slick__button .owl-prev.slick-next:active:before,
	.center__slide .owl-nav .owl-next.slick-next:active:before,
	.center__slide .center__slick__button .owl-next.slick-next:active:before,
	.center__slide .owl-nav .slick-arrow.slick-next:active:before,
	.center__slide .center__slick__button .slick-arrow.slick-next:active:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-blue-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

@media(min-width:1024px) {

	.center__slide .owl-nav .owl-prev:hover,
	.center__slide .center__slick__button .owl-prev:hover,
	.center__slide .owl-nav .owl-next:hover,
	.center__slide .center__slick__button .owl-next:hover,
	.center__slide .owl-nav .slick-arrow:hover,
	.center__slide .center__slick__button .slick-arrow:hover {
		background: #fff;
		transition: 0.3s;
		-moz-transition: 0.3s;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		-sm-transition: 0.3s;
	}

	.center__slide .owl-nav .owl-prev:hover.owl-next:before,
	.center__slide .center__slick__button .owl-prev:hover.owl-next:before,
	.center__slide .owl-nav .owl-next:hover.owl-next:before,
	.center__slide .center__slick__button .owl-next:hover.owl-next:before,
	.center__slide .owl-nav .slick-arrow:hover.owl-next:before,
	.center__slide .center__slick__button .slick-arrow:hover.owl-next:before {
		background-image: url(../picture/sprites_img.png);
		background-position: -1154px -776px;
		width: 18px;
		height: 31px;
	}

	.center__slide .owl-nav .owl-prev:hover.owl-prev:before,
	.center__slide .center__slick__button .owl-prev:hover.owl-prev:before,
	.center__slide .owl-nav .owl-next:hover.owl-prev:before,
	.center__slide .center__slick__button .owl-next:hover.owl-prev:before,
	.center__slide .owl-nav .slick-arrow:hover.owl-prev:before,
	.center__slide .center__slick__button .slick-arrow:hover.owl-prev:before {
		background-image: url(../picture/sprites_img.png);
		background-position: -1106px -776px;
		width: 18px;
		height: 31px;
	}
}

@media(min-width:1024px) and (max-width:767px) {

	.center__slide .owl-nav .owl-prev:hover.owl-next:before,
	.center__slide .center__slick__button .owl-prev:hover.owl-next:before,
	.center__slide .owl-nav .owl-next:hover.owl-next:before,
	.center__slide .center__slick__button .owl-next:hover.owl-next:before,
	.center__slide .owl-nav .slick-arrow:hover.owl-next:before,
	.center__slide .center__slick__button .slick-arrow:hover.owl-next:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-blue-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

@media(min-width:1024px) and (max-width:767px) {

	.center__slide .owl-nav .owl-prev:hover.owl-prev:before,
	.center__slide .center__slick__button .owl-prev:hover.owl-prev:before,
	.center__slide .owl-nav .owl-next:hover.owl-prev:before,
	.center__slide .center__slick__button .owl-next:hover.owl-prev:before,
	.center__slide .owl-nav .slick-arrow:hover.owl-prev:before,
	.center__slide .center__slick__button .slick-arrow:hover.owl-prev:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-blue-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.center__slide .owl-nav .owl-prev:active,
.center__slide .center__slick__button .owl-prev:active,
.center__slide .owl-nav .owl-next:active,
.center__slide .center__slick__button .owl-next:active,
.center__slide .owl-nav .slick-arrow:active,
.center__slide .center__slick__button .slick-arrow:active {
	cursor: default;
}

.center__slide .owl-nav .owl-prev:active:not(.disabled),
.center__slide .center__slick__button .owl-prev:active:not(.disabled),
.center__slide .owl-nav .owl-next:active:not(.disabled),
.center__slide .center__slick__button .owl-next:active:not(.disabled),
.center__slide .owl-nav .slick-arrow:active:not(.disabled),
.center__slide .center__slick__button .slick-arrow:active:not(.disabled) {
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
	transform: scale(0.95);
}

.center__slide .owl-nav .owl-prev.disabled,
.center__slide .center__slick__button .owl-prev.disabled,
.center__slide .owl-nav .owl-next.disabled,
.center__slide .center__slick__button .owl-next.disabled,
.center__slide .owl-nav .slick-arrow.disabled,
.center__slide .center__slick__button .slick-arrow.disabled {
	background: #666666;
	cursor: default;
}

.center__slide .owl-nav .owl-prev.disabled.owl-next:before,
.center__slide .center__slick__button .owl-prev.disabled.owl-next:before,
.center__slide .owl-nav .owl-next.disabled.owl-next:before,
.center__slide .center__slick__button .owl-next.disabled.owl-next:before,
.center__slide .owl-nav .slick-arrow.disabled.owl-next:before,
.center__slide .center__slick__button .slick-arrow.disabled.owl-next:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -914px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {

	.center__slide .owl-nav .owl-prev.disabled.owl-next:before,
	.center__slide .center__slick__button .owl-prev.disabled.owl-next:before,
	.center__slide .owl-nav .owl-next.disabled.owl-next:before,
	.center__slide .center__slick__button .owl-next.disabled.owl-next:before,
	.center__slide .owl-nav .slick-arrow.disabled.owl-next:before,
	.center__slide .center__slick__button .slick-arrow.disabled.owl-next:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-disable-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.center__slide .owl-nav .owl-prev.disabled.owl-prev:before,
.center__slide .center__slick__button .owl-prev.disabled.owl-prev:before,
.center__slide .owl-nav .owl-next.disabled.owl-prev:before,
.center__slide .center__slick__button .owl-next.disabled.owl-prev:before,
.center__slide .owl-nav .slick-arrow.disabled.owl-prev:before,
.center__slide .center__slick__button .slick-arrow.disabled.owl-prev:before {
	background-image: url(../picture/sprites_img.png);
	background-position: -1058px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {

	.center__slide .owl-nav .owl-prev.disabled.owl-prev:before,
	.center__slide .center__slick__button .owl-prev.disabled.owl-prev:before,
	.center__slide .owl-nav .owl-next.disabled.owl-prev:before,
	.center__slide .center__slick__button .owl-next.disabled.owl-prev:before,
	.center__slide .owl-nav .slick-arrow.disabled.owl-prev:before,
	.center__slide .center__slick__button .slick-arrow.disabled.owl-prev:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-prev-disable-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
	}
}

.center__slide .owl-nav .owl-prev.disabled:active,
.center__slide .center__slick__button .owl-prev.disabled:active,
.center__slide .owl-nav .owl-next.disabled:active,
.center__slide .center__slick__button .owl-next.disabled:active,
.center__slide .owl-nav .slick-arrow.disabled:active,
.center__slide .center__slick__button .slick-arrow.disabled:active {
	margin: 0;
}

.wrap-center-design {
	margin: auto;
	max-width: 1122px;
	clear: both;
	padding-bottom: 45px;
}

.wrap-center-design:before,
.wrap-center-design:after {
	content: " ";
	display: table;
}

.wrap-center-design:after {
	clear: both;
}

.wrap-center-design:before,
.wrap-center-design:after {
	content: " ";
	display: table;
}

.wrap-center-design:after {
	clear: both;
}

@media(max-width:767px) {
	.wrap-center-design {
		padding-bottom: 7px;
	}
}

.block-content {
	margin-top: 28px;
}

@media(max-width:767px) {
	.block-content {
		margin-top: 13px;
	}
}

.block-content:before {
	content: '';
	width: 100%;
	height: 43px;
	display: block;
}

@media(max-width:767px) {
	.block-content:before {
		height: 8px;
	}
}

.block-content__grey {
	background: #f2f1f1;
}

.block-content__grey:before {
	background: #ffffff url(../_ui/responsive/theme-alpha/img/bg_footer_grey.png) center bottom no-repeat;
	background-size: 100% 100%;
	background: none\0;
}

.edit-account {
	max-width: 1022px;
	margin: auto;
	clear: both;
}

.edit-account .main-content {
	overflow: visible;
}

@media(max-width:767px) {
	.edit-account .main-content {
		padding: 0 30px;
	}
}

.edit-account__form {
	background: #d7dfe5;
	margin-bottom: 241px;
	position: relative;
	padding: 52px 80px 40px;
	color: #043458;
	margin-top: 67px;
}

.edit-account__form:before,
.edit-account__form:after {
	content: " ";
	display: table;
}

.edit-account__form:after {
	clear: both;
}

.edit-account__form:before,
.edit-account__form:after {
	content: " ";
	display: table;
}

.edit-account__form:after {
	clear: both;
}

@media(max-width:767px) {
	.edit-account__form {
		padding: 25px 0 43px;
		margin-top: 29px;
		margin-bottom: 115px;
	}
}

.edit-account__form:before {
	content: '';
	width: 100%;
	height: 35px;
	background: url(../_ui/responsive/theme-alpha/img/bg-grey-big.png) center 0 no-repeat;
	background-size: 100% auto;
	display: block;
	position: absolute;
	bottom: -34px;
	left: 0;
}

.edit-account__form__block {
	float: left;
	width: 50%;
	max-width: 380px;
}

@media(max-width:767px) {
	.edit-account__form__block {
		float: none;
		width: 100%;
	}
}

.edit-account__form__block.odd {
	float: left;
}

@media(max-width:767px) {
	.edit-account__form__block.odd {
		float: none;
		margin-top: 21px;
	}
}

.edit-account__form__block.even {
	float: right;
}

@media(max-width:767px) {
	.edit-account__form__block.even .form-group {
		margin-bottom: 9px;
	}

	.edit-account__form__block.even .form-group .control-label {
		display: none;
	}

	.edit-account__form__block.even .form-group.wrap-radio .control-label,
	.edit-account__form__block.even .form-group:first-child .control-label,
	.edit-account__form__block.even .form-group:first-child .control-label,
	.edit-account__form__block.even .form-group:nth-child(2) .control-label {
		display: block;
	}
}

.edit-account__form__block .readonly-input {
	float: right;
	width: calc(100% - 160px);
	width: 220px\0;
	line-height: 28px;
	font-size: 18px;
	color: #043458;
	margin-top: 5px;
	word-break: break-all;
	font-weight: normal;
}

.edit-account__form__block .readonly-input.address-readonly {
	word-break: normal;
}

@media(max-width:767px) {
	.edit-account__form__block .readonly-input {
		width: 100%;
		font-size: 12px;
		margin-top: -5px;
		float: none;
		line-height: 18px;
		margin-bottom: -5px;
	}
}

.edit-account__form__block .form-group {
	clear: both;
}

.edit-account__form__block .form-group:before,
.edit-account__form__block .form-group:after {
	content: " ";
	display: table;
}

.edit-account__form__block .form-group:after {
	clear: both;
}

.edit-account__form__block .form-group:before,
.edit-account__form__block .form-group:after {
	content: " ";
	display: table;
}

.edit-account__form__block .form-group:after {
	clear: both;
}

@media(max-width:767px) {
	.edit-account__form__block .form-group {
		margin-bottom: 11px;
	}
}

.edit-account__form__block .form-group .control-label {
	float: left;
	width: 160px;
	line-height: 38px;
}

.edit-account__form__block .form-group .control-label span.label-description {
	line-height: 28px;
	display: inline-block;
	font-weight: normal;
	margin-top: -3px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-group .control-label span.label-description {
		display: block;
		margin-top: -10px;
	}
}

.edit-account__form__block .form-group .control-label span.label-description.label-description2 {
	display: block;
}

@media(max-width:767px) {
	.edit-account__form__block .form-group .control-label {
		width: 100%;
		float: none;
		font-size: 12px;
		line-height: 24px;
		margin-bottom: 2px;
	}
}

.edit-account__form__block .form-group .form-control {
	float: left;
	width: calc(100% - 160px);
	width: 220px\0;
	font-size: 18px;
	color: #333;
	font-weight: normal;
}

@media(max-width:767px) {
	.edit-account__form__block .form-group .form-control {
		height: 30px;
		font-size: 12px;
		padding: 10px;
		width: 100%;
		float: none;
	}
}

.edit-account__form__block .form-group .form-control[-moz-readonly],
.edit-account__form__block .form-group .form-control[readonly] {
	background: none;
	border: none;
	color: #043458;
	padding-left: 0;
	padding-right: 0;
	margin-top: 3px;
}

@media(max-width:767px) {

	.edit-account__form__block .form-group .form-control[-moz-readonly],
	.edit-account__form__block .form-group .form-control[readonly] {
		margin-top: -10px;
		margin-bottom: -15px;
	}
}

.edit-account__form__block .form-group .control {
	margin-top: -5px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-group .control {
		margin-top: 0;
	}
}

@media(max-width:767px) {
	.edit-account__form__block .form-group .control .chosen-single {
		height: 30px;
	}
}

.edit-account__form__block .form-group:first-child {
	margin-bottom: 5px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-group:first-child {
		margin-bottom: 7px;
	}
}

.edit-account__form__block .form-group:first-child .control {
	margin-top: 0;
}

.edit-account__form__block .form-group:last-child .control {
	margin-top: 0;
}

.edit-account__form__block .form-group.has-error .help-block {
	float: right;
	width: 220px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-group.has-error .help-block {
		float: none;
		width: 100%;
	}
}

@media(max-width:767px) {
	.edit-account__form__block .wrap-name .form-group {
		margin-bottom: 13px;
	}
}

.edit-account__form__block .wrap-name .form-group.form-group-2,
.edit-account__form__block .wrap-name .form-group input.form-control {
	width: 100px;
	margin-left: 0;
	letter-spacing: -1px;
	word-spacing: -1px;
}

@media(max-width:767px) {

	.edit-account__form__block .wrap-name .form-group.form-group-2,
	.edit-account__form__block .wrap-name .form-group input.form-control {
		width: 123px;
	}
}

.edit-account__form__block .wrap-name .form-group.form-group-2 {
	top: 0;
	right: 0;
}

@media(max-width:767px) {
	.edit-account__form__block .wrap-name .form-group.form-group-2 {
		top: 44px;
		height: 30px;
		margin: 0;
	}
}

.edit-account__form__block .wrap-name .help-block {
	margin-top: -70px;
	float: right;
	width: calc(100% - 160px);
	width: 220px\0;
	line-height: 18px;
	padding: 3px 0 17px;
}

@media(max-width:767px) {
	.edit-account__form__block .wrap-name .help-block {
		margin-top: -10px;
		float: none;
		width: 100%;
		padding-bottom: 0;
		margin-bottom: -7px;
	}
}

.edit-account__form__block .form-english-name {
	margin-top: -15px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-english-name {
		margin-top: 0;
	}
}

.edit-account__form__block .form-email-address {
	margin-top: -10px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-email-address {
		margin-top: 0;
		padding-top: 2px;
	}
}

@media(max-width:767px) {
	.edit-account__form__block .form-mobile-number {
		margin-top: -9px;
	}
}

.edit-account__form__block .form-id-number {
	margin-top: -6px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-id-number {
		margin-top: -12px;
	}

	.edit-account__form__block .form-id-number .form-group {
		margin-bottom: 7px;
	}
}

.edit-account__form__block .form-id-number .help-block {
	margin-top: 10px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-id-number .help-block {
		margin-top: 7px;
		margin-bottom: -8px;
	}
}

.edit-account__form__block .textarea {
	margin-top: -5px;
}

@media(max-width:767px) {
	.edit-account__form__block .textarea {
		margin-top: 0;
	}
}

.edit-account__form__block .textarea .form-group {
	margin: 0;
}

.edit-account__form__block .textarea .form-group label {
	display: none;
}

.edit-account__form__block .textarea .form-group textarea {
	padding: 5px 10px;
	background: #fff;
	resize: none;
	border: none;
	height: 70px;
	float: right;
	min-height: 0;
	margin-bottom: -5px;
	line-height: 28px;
}

@media(max-width:767px) {
	.edit-account__form__block .textarea .form-group textarea {
		margin-bottom: 0;
		height: 90px;
		line-height: 18px !important;
	}
}

.edit-account__form__block .wrap-radio {
	margin-top: 26px;
}

@media(max-width:767px) {
	.edit-account__form__block .wrap-radio {
		margin: 0;
		margin-bottom: 4px !important;
	}
}

.edit-account__form__block .wrap-radio .control-label {
	font-weight: bold;
}

@media(max-width:767px) {
	.edit-account__form__block .wrap-radio .control-label {
		width: 160px;
		float: left;
		margin-bottom: -3px;
	}
}

.edit-account__form__block .wrap-radio .readonly-input {
	margin-top: 3px;
}

@media(max-width:767px) {
	.edit-account__form__block .radio-buttons {
		float: right;
	}
}

.edit-account__form__block .name-description {
	float: left;
	clear: both;
	margin-top: -25px;
	width: 150px;
	padding-bottom: 16px;
	color: #043458;
	font-weight: normal;
	display: none;
}

@media(max-width:767px) {
	.edit-account__form__block .name-description {
		display: none;
		float: none;
		margin-top: -23px;
	}
}

.edit-account__form__block .form-row {
	margin-top: -9px;
	padding-bottom: 5px;
}

@media(max-width:767px) {
	.edit-account__form__block .form-row {
		margin-top: -3px;
	}
}

.edit-account__form .forgotten-password {
	float: left;
}

.edit-account__form .forgotten-password a {
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #043458;
	color: #043458;
}

@media(max-width:767px) {
	.edit-account__form .forgotten-password a {
		font-size: 12px;
	}
}

.edit-account__form .forgotten-password a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.edit-account__form .forgotten-password a:hover {
		color: #043458;
		border-color: #043458;
	}
}

.edit-account__form .mandatory_required {
	float: right;
}

@media(max-width:767px) {
	.edit-account__form .mandatory_required {
		font-size: 12px;
	}
}

.edit-account__form #wsiProfileForm {
	clear: both;
	margin-top: 82px;
}

.edit-account__form #wsiProfileForm:before,
.edit-account__form #wsiProfileForm:after {
	content: " ";
	display: table;
}

.edit-account__form #wsiProfileForm:after {
	clear: both;
}

.edit-account__form #wsiProfileForm:before,
.edit-account__form #wsiProfileForm:after {
	content: " ";
	display: table;
}

.edit-account__form #wsiProfileForm:after {
	clear: both;
}

@media(max-width:767px) {
	.edit-account__form #wsiProfileForm {
		margin-top: 8px;
		max-width: 320px;
		padding: 0 30px;
	}
}

.edit-account__title {
	font-size: 50px;
	line-height: 46px;
	font-weight: bold;
	color: #043458;
	padding: 40px 0 0 0;
}

@media(max-width:767px) {
	.edit-account__title {
		font-size: 30px;
		padding: 22px 0 0;
	}
}

.edit-account__message {
	color: #043458;
	display: none;
	margin: 2px 0 -31px;
}

@media(max-width:767px) {
	.edit-account__message {
		padding: 9px 0 2px;
		font-size: 12px;
	}
}

.edit-account__contact {
	clear: both;
	padding-top: 32px;
	margin-bottom: -50px;
}

@media(max-width:767px) {
	.edit-account__contact {
		font-size: 12px;
		line-height: 17px;
		padding-top: 15px;
		max-width: 200px;
		margin-bottom: -19px;
	}
}

.edit-account .accountActions {
	position: absolute;
	bottom: -19px;
	left: 50%;
	margin-left: 0;
}

@media(max-width:767px) {
	.edit-account .accountActions {
		margin-left: 20px;
		bottom: 30px;
	}
}

.edit-account .accountActions button {
	position: relative;
	z-index: 1;
	width: 136px;
	height: 136px;
	font-size: 14px;
	padding: 0 5px;
	vertical-align: middle;
	background: #ee2d42;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	border: 0;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	margin-top: 33px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -65px;
	bottom: -93px;
	padding: 0 20px;
	line-height: 18px;
}

@media(max-width:767px) {
	.edit-account .accountActions button {
		font-size: 12px;
		width: 80px;
		height: 80px;
		margin-top: 24px;
		box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-moz-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-webkit-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-o-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
	}
}

.edit-account .accountActions button:before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ee2d42;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.edit-account .accountActions button:hover:before {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.edit-account .accountActions button:hover:before {
		background: #ee2d42;
	}
}

.edit-account .accountActions button:focus {
	cursor: default;
}

.edit-account .accountActions button:focus:before {
	background: #ee2d42;
}

.edit-account .accountActions button.disabled:before {
	background: #666666;
}

.edit-account .accountActions button.disabled:hover:before {
	transform: scale(1);
}

.edit-account .accountActions button span {
	margin-bottom: 10px;
	display: block;
}

@media(max-width:767px) {
	.edit-account .accountActions button {
		padding: 0 10px;
		line-height: 100%;
		font-size: 9px;
	}
}

.edit-account .accountActions button span {
	margin: 0 auto 20px;
}

@media(max-width:767px) {
	.edit-account .accountActions button span {
		margin-bottom: 10px;
	}
}

.ie .edit-account .accountActions button:before,
.ie10 .edit-account .accountActions button:before {
	display: none;
}

.edit-account .accountActions button .button_hover_before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ee2d42;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.edit-account .accountActions button:hover .button_hover_before {
	background: #eb5e6c;
}

.edit-account .address-error-message {
	margin-top: 14px;
	margin-bottom: -8px;
}

@media(max-width:767px) {
	.edit-account .address-error-message {
		margin-top: 7px;
		margin-bottom: -11px;
	}
}

@media(max-width:767px) {
	.edit-account .form-zip-code {
		padding-bottom: 11px;
	}
}

.edit-account .form-zip-code .help-block {
	margin-bottom: -6px;
}

@media(max-width:767px) {
	.edit-account .form-zip-code .help-block {
		margin-top: 7px;
		margin-bottom: -5px;
	}
}

.my-account-bc.breadcrumb-section {
	margin-bottom: -4px;
	margin-top: 14px;
}

.language-zh .edit-account__title {
	line-height: 50px;
}

.ie9 .contract .contract__block .container,
.ie8 .contract .contract__block .container {
	width: 100%;
	max-width: none;
}

.ie8 .radio-buttons .custom-radio.custom-radio--squared {
	margin: 0 10px 0 0;
	float: left;
	line-height: 30px;
}

html:not(.ie8) .normalInvoice .custom-radio label {
	margin-right: 10px;
}

html:not(.ie8) .normalInvoice .custom-radio input[type="radio"]:checked+label:before {
	border: 6px solid #fff;
}

@media(max-width:767px) {
	.edit-account__form__block .chosen-container .chosen-single div b {
		right: 9px;
	}
}

@media(max-width:767px) {
	.mbmt7 {
		margin-top: 7px !important;
	}
}

@media(max-width:767px) {
	.edit-account .edit-account__form__block .form-group .control-label.block {
		display: block;
	}
}

@media(max-width:767px) {
	.edit-account .edit-account__form__block .readonly-input {
		padding-bottom: 0;
		clear: both;
	}
}

@media(max-width:767px) {

	.edit-account .edit-account__form__block .form-mobile-number .readonly-input,
	.edit-account .edit-account__form__block .form-email-address .readonly-input {
		padding-bottom: 15px;
	}
}

.edit-account .edit-account__form__block .form-id-number .readonly-input {
	padding-bottom: 7px;
}

@media(max-width:767px) {
	.edit-account .edit-account__form__block .form-learning-goal {
		margin-top: 8px;
	}
}

@media(max-width:767px) {
	.edit-account .address-block .readonly-input {
		line-height: 17px;
		padding-bottom: 10px;
	}
}

.page-update-profile .textarea .help-block {
	display: none;
}

.page-orders .wrapper-content {
	margin-left: 77px;
	margin-right: 62px;
}

@media(max-width:767px) {
	.page-orders .wrapper-content {
		margin-left: 0px;
		margin-right: 0px;
	}
}

.dashboard_page .breadcrumb-section {
	margin-top: 17px;
	margin-left: 5px;
}

.breadcrumb-section {
	margin-top: 17px;
	margin-left: 5px;
}

.wp_dashboard {
	font-size: 18px;
	line-height: 28px;
	color: #043458;
	margin-bottom: 75px;
}

@media(max-width:767px) {
	.wp_dashboard {
		font-size: 12px;
		line-height: 17px;
		margin-bottom: 22px;
	}
}

.wp_dashboard .dashboard_left {
	width: 21%;
	float: left;
	padding-top: 75px;
	padding-bottom: 45px;
	position: relative;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_left {
		width: 100%;
		padding-top: 16px;
		float: none;
		padding-bottom: 0;
	}
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_left .description {
		padding-right: 86px;
	}
}

.wp_dashboard .dashboard_left .description a {
	border-bottom: 1px solid #043458;
}

.wp_dashboard .dashboard_left .description a:hover {
	color: #0082a9;
	border-bottom: 1px solid #0082a9;
}

.wp_dashboard .dashboard_left.empty_order {
	padding-top: 89px;
	padding-bottom: 85px;
	width: 22%;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_left.empty_order {
		width: 100%;
		padding-top: 28px;
		padding-bottom: 47px;
	}
}

.wp_dashboard .dashboard_left.empty_order .dashboard_level {
	line-height: 40px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_left.empty_order .dashboard_level {
		line-height: 25px;
		padding-right: 50px;
		margin-bottom: 8px;
	}
}

.wp_dashboard .dashboard_left.empty_order .content_item_more {
	margin-top: 34px;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_left.empty_order .content_item_more {
		bottom: 7px;
		width: 80px;
		height: 80px;
	}
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_left.empty_order .link_account {
		margin-top: 0px;
	}
}

.wp_dashboard .dashboard_right {
	padding-bottom: 33px;
	margin-top: 14px;
	width: 800px;
	float: right;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_right {
		width: 100%;
		padding-bottom: 24px;
	}
}

.wp_dashboard .dashboard_right .empty_order {
	padding-bottom: 160px;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_right .empty_order {
		padding-bottom: 61px;
	}
}

.wp_dashboard .dashboard_right .empty_order:after {
	background-image: url(../picture/sprites_img.png);
	background-position: -722px -205px;
	width: 800px;
	height: 32px;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_right .empty_order:after {
		background: url('../_ui/responsive/theme-alpha/img/dashboard_list_after_mobile.png') no-repeat;
		height: 9px;
	}
}

.wp_dashboard .dashboard_right .empty_order .dashboard_list_content {
	padding-top: 0;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_right .empty_order .dashboard_list_content {
		padding-top: 7px;
	}
}

.wp_dashboard h1 {
	margin-top: 26px;
	margin-bottom: 0;
	line-height: 60px;
}

@media(max-width:767px) {
	.wp_dashboard h1 {
		margin-top: 40px;
		font-size: 30px;
		line-height: 35px;
	}
}

.wp_dashboard a {
	font-weight: bold;
	color: #043458;
}

.wp_dashboard h4 {
	font-size: 18px;
	line-height: 40px;
	margin-bottom: 5px;
	font-weight: bold;
}

@media(max-width:767px) {
	.wp_dashboard h4 {
		float: left;
		font-size: 15px;
		line-height: 25px;
	}
}

.wp_dashboard .dashboard_level {
	font-size: 30px;
	line-height: 38px;
	font-weight: bold;
	width: 80%;
	margin-bottom: 30px;
}

@media(max-width:767px) {
	.wp_dashboard .dashboard_level {
		float: right;
		font-size: 20px;
		line-height: 14px;
		margin-top: 0;
		margin-bottom: 20px;
		width: 100%;
	}
}

.wp_dashboard .description {
	padding-right: 10px;
}

.wp_dashboard .content_item_more {
	margin-top: 31px;
	margin-left: 5px;
}

@media(max-width:767px) {
	.wp_dashboard .content_item_more {
		position: absolute;
		right: -2px;
		bottom: 8px;
		margin-top: 0px;
	}
}

.wp_dashboard .content_item_more a {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 0;
	width: 120px;
	height: 120px;
	font-size: 14px;
	padding: 0 12px;
	line-height: 1.2;
}

@media(max-width:767px) {
	.wp_dashboard .content_item_more a {
		font-size: 12px;
		width: 80px;
		height: 80px;
	}
}

.wp_dashboard .content_item_more a span {
	margin-bottom: 5px;
}

@media(max-width:767px) {
	.wp_dashboard .content_item_more a span {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/chat-function-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}
}

.wp_dashboard .content_item_more a i {
	font-style: normal;
	font-size: 14px;
}

@media(max-width:767px) {
	.wp_dashboard .content_item_more a i {
		font-size: 12px;
	}
}

.wp_dashboard h2 {
	font-size: 30px;
	line-height: 28px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 18px;
}

@media(max-width:767px) {
	.wp_dashboard h2 {
		font-size: 20px;
		line-height: 35px;
		margin-bottom: 0;
		padding-top: 22px;
	}
}

.wp_dashboard .link_account {
	margin-bottom: 28px;
	text-align: right;
	line-height: 40px;
	margin-top: -26px;
}

@media(max-width:767px) {
	.wp_dashboard .link_account {
		margin-top: 7px;
		margin-bottom: 5px;
	}
}

.wp_dashboard .link_account a {
	border-bottom: 1px solid #043458;
}

.wp_dashboard .link_account a:hover {
	color: #0082a9;
	border-bottom: 1px solid #0082a9;
}

.dashboard_list {
	background: #d7dfe5;
	padding: 38px 52px 28px 39px;
	margin-bottom: 20px;
	position: relative;
}

@media(max-width:767px) {
	.dashboard_list {
		margin-left: -20px;
		margin-right: -20px;
		padding: 0px 0px 20px 0px;
		margin-bottom: 10px;
		padding-bottom: 21px;
	}
}

.dashboard_list:last-child {
	padding-bottom: 20px;
}

@media(max-width:767px) {
	.dashboard_list:last-child {
		padding-bottom: 22px;
	}
}

.dashboard_list:last-child .dashboard_list_content {
	padding-top: 10px;
}

@media(max-width:767px) {
	.dashboard_list:last-child .dashboard_list_content ul li {
		margin-top: 17px;
		margin-bottom: 0;
	}
}

@media(max-width:767px) {
	.dashboard_list:last-child .dashboard_list_content .col_btn .btn {
		margin-bottom: 0;
	}
}

@media(max-width:767px) {
	.dashboard_list:last-child .dashboard_list_content .col_left {
		margin-top: 0;
	}
}

@media(max-width:767px) {
	.dashboard_list:last-child .dashboard_list_content .col_right .col_btn {
		margin-top: 5px;
		margin-bottom: 6px;
	}
}

.dashboard_list:last-child:after {
	position: absolute;
	content: '';
	left: 0;
	top: 100%;
	background-image: url(../picture/sprites_img.png);
	background-position: -722px -267px;
	width: 800px;
	height: 26px;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.dashboard_list:last-child:after {
		margin-top: -2px;
	}
}

@media(max-width:767px) {
	.dashboard_list:last-child:after {
		background: url('../_ui/responsive/theme-alpha/img/dashboard_list_after_mobile.png') no-repeat;
		background-size: 100% 100%;
		height: 9px;
		left: 0;
		width: 100%;
		margin-top: -1px;
	}
}

.dashboard_list .dashboard_list_content .col_left {
	float: left;
	width: 70%;
	padding-left: 15px;
	padding-right: 15px;
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content .col_left {
		float: none;
		width: 100%;
		padding: 0;
		margin-top: 10px;
	}
}

.dashboard_list .dashboard_list_content .col_left .row_col_left {
	margin-left: -15px;
	margin-right: -15px;
}

.dashboard_list .dashboard_list_content .col_right {
	float: left;
	width: 25%;
	padding-left: 7px;
	padding-right: 10px;
	margin-top: 55px;
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content .col_right {
		float: none;
		width: 100%;
		padding: 0;
		margin-top: 0;
	}
}

.dashboard_list .dashboard_list_content .headline {
	font-weight: bold;
	margin-bottom: 27px;
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content .headline {
		font-size: 12px;
		line-height: 17px;
		margin-bottom: 17px;
	}
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content ul {
		width: 50%;
		float: left;
		margin-left: 0;
		padding: 0 10px;
	}
}

.dashboard_list .dashboard_list_content ul li {
	width: 30%;
	vertical-align: top;
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content ul li {
		width: 100%;
		margin-bottom: 15px;
	}
}

.dashboard_list .dashboard_list_content ul li:last-child {
	padding-left: 30px;
	width: 33%;
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content ul li:last-child {
		padding-left: 5px;
		margin-bottom: 0px;
		width: 100%;
	}
}

.dashboard_list .dashboard_list_content .erro {
	color: #ee2d42;
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content .row_btn {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content .col_btn {
		float: left;
		width: 50%;
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (max-width:567px) {
	.dashboard_list .dashboard_list_content .col_btn {
		width: 100%;
	}
}

.dashboard_list .dashboard_list_content .col_btn .btn {
	margin-bottom: 10px;
	display: block;
	color: #ffffff;
	width: 200px;
	height: 33px;
	padding-top: 2px;
	padding-bottom: 2px;
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content .col_btn .btn {
		width: 100%;
		height: auto;
		padding: 6px 0;
		font-size: 12px;
		line-height: 16px;
	}
}

.dashboard_list .dashboard_list_content .col_btn .btn a {
	color: #ffffff;
	line-height: 28px;
	display: block;
}

@media(max-width:767px) {
	.dashboard_list .dashboard_list_content .col_btn .btn a {
		line-height: 16px;
	}
}

@media(max-width:767px) {
	.dashboard_list:last-child .dashboard_list_content .col_btn {
		float: right;
		margin-top: 8px;
	}
}

.dashboard_list:last-child .dashboard_list_content .headline {
	margin-bottom: 28px;
}

@media(max-width:767px) {
	.dashboard_list:last-child .dashboard_list_content .headline {
		margin-bottom: 10px;
	}
}

.page-updatePassword .global-alerts {
	display: none;
}

@media(max-width:767px) {
	.page-updatePassword .fogetpass_popup .popup_content h2 {
		padding: 0;
	}
}

.account-section .updatePassword .account-section-content .account-section-form {
	margin-top: 30px;
}

@media(max-width:767px) {
	.account-section .updatePassword .account-section-content .account-section-form {
		margin-top: 26px;
		margin-bottom: 60px;
	}
}

.updatePassword .breadcrumb-section {
	margin-top: 10px;
	margin-bottom: 13px;
}

.updatePassword .updatePasswordCancel {
	float: right;
	margin-top: 36px;
	margin-right: 22px;
}

@media(max-width:767px) {
	.updatePassword .updatePasswordCancel {
		float: none;
		margin-top: 28px;
		margin-right: 0px;
	}
}

.updatePassword .updatePasswordCancel a {
	font-weight: bold;
	border-bottom: 1px solid #043458;
}

@media(max-width:767px) {
	.updatePassword .updatePasswordCancel a {
		font-size: 12px;
		line-height: 14px;
	}
}

.updatePassword .updatePasswordCancel a:hover {
	border-bottom: 1px solid #0082a9;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.updatePassword .updatePasswordCancel a:hover {
		border-bottom: 1px solid #043458;
		color: #043458;
	}
}

.updatePassword h1 {
	line-height: 80px;
	text-transform: capitalize;
	margin-top: 0;
	margin-bottom: 35px;
}

@media(max-width:767px) {
	.updatePassword h1 {
		font-size: 30px;
		line-height: 35px;
		width: 70%;
		margin-top: 22px;
		margin-bottom: 28px;
	}
}

.updatePassword .bg_color_list {
	margin-top: 0px;
	margin-bottom: 245px;
	padding-bottom: 58px;
}

@media(max-width:767px) {
	.updatePassword .bg_color_list {
		margin-top: 0;
		margin-bottom: 100px;
		padding-top: 30px;
		padding-bottom: 59px;
	}
}

@media(max-width:767px) {
	.updatePassword .bg_color_list:after {
		background: url('../_ui/responsive/theme-alpha/img/bg_color_list_mobile.png') no-repeat 0 0;
		width: 100%;
		background-size: 100%;
	}
}

@media(max-width:767px) {
	.updatePassword .bg_color_list .list_content {
		padding-top: 0;
	}
}

@media(max-width:767px) {
	.updatePassword .bg_color_list .list_content .control-label {
		margin-bottom: 5px;
	}
}

@media(max-width:767px) {
	.updatePassword .bg_color_list .list_content .form-group {
		margin-bottom: 22px;
	}
}

.updatePassword .bg_color_list .wt_button_update {
	position: absolute;
	z-index: 1000;
	margin-top: 61px;
	left: 50%;
	margin-left: 0;
}

@media(max-width:767px) {
	.updatePassword .bg_color_list .wt_button_update {
		margin-left: 0px;
		margin-top: -10px;
	}
}

.updatePassword .bg_color_list .wt_button_update .contact-us-btn {
	line-height: 20px;
}

@media(max-width:767px) {
	.updatePassword .bg_color_list .wt_button_update .contact-us-btn {
		position: absolute;
		left: 50%;
		margin-left: -40px;
		bottom: -110px;
	}
}

.updatePassword .bg_color_list .wt_button_update .contact-us-btn .icon {
	margin-top: 0px;
	margin-bottom: 8px;
}

@media(max-width:767px) {
	.updatePassword .bg_color_list .wt_button_update .contact-us-btn .icon {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/change-password-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 26px;
		height: 26px;
	}
}

@media(max-width:767px) {
	.updatePassword .has-error .help-block {
		margin-bottom: 0;
	}
}

.wrapper_about_page .about-main-content,
.page-careerPage .about-main-content {
	font-size: 16px;
	line-height: 24px;
	margin-top: -77px;
	padding-top: 77px;
}

@media(max-width:767px) {

	.wrapper_about_page .about-main-content,
	.page-careerPage .about-main-content {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0;
		padding-top: 0;
		font-size: 12px;
		line-height: 18px;
	}
}

@media(max-width:480px) {

	.wrapper_about_page .about-main-content,
	.page-careerPage .about-main-content {
		max-width: 100%;
	}
}

.wrapper_about_page h1,
.page-careerPage h1 {
	font-size: 60px;
	line-height: 70px;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

@media(max-width:767px) {

	.wrapper_about_page h1,
	.page-careerPage h1 {
		font-size: 30px;
		line-height: 36px;
		width: 70%;
		margin-top: 0px;
		margin-bottom: 40px;
		min-width: 240px;
	}
}

.wrapper_about_page h2,
.page-careerPage h2 {
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
}

@media(max-width:767px) {

	.wrapper_about_page h2,
	.page-careerPage h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

.wrapper_about_page .about_content,
.page-careerPage .about_content {
	position: relative;
}

.wrapper_about_page .about_content .bg_about,
.page-careerPage .about_content .bg_about {
	background-image: url(../picture/sprites_img.png);
	background-position: 0px 0px;
	width: 548px;
	height: 1150px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about,
	.page-careerPage .about_content .bg_about {
		background-image: url(../picture/sprites_img.png);
		background-position: -578px -205px;
		width: 114px;
		height: 348px;
		position: absolute;
		bottom: 0;
	}
}

.wrapper_about_page .about_content .bg_about:before,
.page-careerPage .about_content .bg_about:before {
	position: absolute;
	z-index: -1;
	content: '';
	background: #fff;
	width: 625px;
	height: 20%;
	top: -62%;
	left: 0;
}

.wrapper_about_page .about_content .bg_about:after,
.page-careerPage .about_content .bg_about:after {
	position: absolute;
	z-index: -2;
	content: '';
	border: 3px solid #ee2d42;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	width: 1660px;
	height: 1660px;
	top: -56%;
	left: 7%;
}

.ios11 .wrapper_about_page .about_content .bg_about:after,
.ios11 .page-careerPage .about_content .bg_about:after {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1660' height='1660'><path d='M2,830a828,828 0 1,0 1656,0a828,828 0 1,0 -1656,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about:after,
	.page-careerPage .about_content .bg_about:after {
		top: -62%;
		left: -100%;
		width: 625px;
		height: 540px;
		border: 2px solid #ee2d42;
	}

	.ios11 .wrapper_about_page .about_content .bg_about:after,
	.ios11 .page-careerPage .about_content .bg_about:after {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='625' height='625'><path d='M1,312.5 a1,1 0 0,0 623,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") center bottom no-repeat;
	}
}

.wrapper_about_page .about_content .bg_about_content,
.page-careerPage .about_content .bg_about_content {
	position: absolute;
	width: 75%;
	top: 0;
	left: 15%;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content,
	.page-careerPage .about_content .bg_about_content {
		position: relative;
		left: 0;
		width: 100%;
	}
}

.wrapper_about_page .about_content .bg_about_content .about_stories,
.page-careerPage .about_content .bg_about_content .about_stories {
	width: 70%;
	margin-left: 12%;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content .about_stories,
	.page-careerPage .about_content .bg_about_content .about_stories {
		width: 100%;
		margin-left: 0;
	}
}

.wrapper_about_page .about_content .bg_about_content .about_stories .content_item h2,
.page-careerPage .about_content .bg_about_content .about_stories .content_item h2 {
	color: #043458;
	margin-top: 50px;
	margin-bottom: 23px;
	text-align: center;
	margin-left: 0;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content .about_stories .content_item h2,
	.page-careerPage .about_content .bg_about_content .about_stories .content_item h2 {
		font-size: 24px;
		line-height: 30px;
		text-align: center;
		margin-top: 30px;
		margin-bottom: 15px;
	}
}

.wrapper_about_page .about_content .bg_about_content .about_stories .content_item .des,
.page-careerPage .about_content .bg_about_content .about_stories .content_item .des {
	margin-left: 0;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content .about_stories .content_item .des,
	.page-careerPage .about_content .bg_about_content .about_stories .content_item .des {
		padding-left: 0px;
		padding-right: 0px;
	}
}

.wrapper_about_page .about_content .bg_about_content .about_mission,
.page-careerPage .about_content .bg_about_content .about_mission {
	margin-left: 44%;
	padding-bottom: 50px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content .about_mission,
	.page-careerPage .about_content .bg_about_content .about_mission {
		width: 100%;
		margin-left: 0;
	}
}

.wrapper_about_page .about_content .bg_about_content .about_mission .content_item h2,
.page-careerPage .about_content .bg_about_content .about_mission .content_item h2 {
	color: #ee2d42;
	margin-top: 100px;
	margin-bottom: 22px;
	margin-left: 0;
	margin-right: 0;
	width: 50%;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content .about_mission .content_item h2,
	.page-careerPage .about_content .bg_about_content .about_mission .content_item h2 {
		font-size: 24px;
		line-height: 30px;
		margin-right: 70px;
		width: 100%;
	}
}

.wrapper_about_page .about_content .bg_about_content .about_mission .content_item h3,
.page-careerPage .about_content .bg_about_content .about_mission .content_item h3 {
	margin-left: 35px;
	font-weight: bold;
	color: #ee2d42;
	line-height: 36px;
	margin-top: 25px;
	margin-bottom: 4px;
	font-size: 30px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content .about_mission .content_item h3,
	.page-careerPage .about_content .bg_about_content .about_mission .content_item h3 {
		font-size: 12px;
		line-height: 18px;
		margin-left: 95px;
	}
}

.wrapper_about_page .about_content .bg_about_content .about_mission .content_item .des,
.page-careerPage .about_content .bg_about_content .about_mission .content_item .des {
	margin-left: 35px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content .about_mission .content_item .des,
	.page-careerPage .about_content .bg_about_content .about_mission .content_item .des {
		margin-left: 95px;
	}
}

@media(max-width:767px) {

	.wrapper_about_page .about_content .bg_about_content .about_mission.about_mission_mobile .content_item h2,
	.page-careerPage .about_content .bg_about_content .about_mission.about_mission_mobile .content_item h2 {
		margin-top: 50px;
		margin-bottom: 8px;
		margin-right: 75px;
	}
}

.wrapper_about_page .about_content .bg_about_content .about_mission.about_mission_mobile .content_item h3,
.page-careerPage .about_content .bg_about_content .about_mission.about_mission_mobile .content_item h3 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.wrapper_about_page .about_content .bg_about_content .about_mission.about_mission_mobile .content_item .des,
.page-careerPage .about_content .bg_about_content .about_mission.about_mission_mobile .content_item .des {
	margin-bottom: 18px;
}

.wrapper_about_page .about_content .bg_about_content .about_mission.about_mission_mobile .content_item .des:last-child,
.page-careerPage .about_content .bg_about_content .about_mission.about_mission_mobile .content_item .des:last-child {
	margin-bottom: 42px;
}

.wrapper_about_page .about_recognised,
.page-careerPage .about_recognised {
	position: relative;
	overflow: hidden;
	margin-top: -50px;
	margin-bottom: 25px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised,
	.page-careerPage .about_recognised {
		overflow: visible;
	}
}

@media(max-width:480px) {

	.wrapper_about_page .about_recognised,
	.page-careerPage .about_recognised {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

.wrapper_about_page .about_recognised:before,
.page-careerPage .about_recognised:before {
	position: absolute;
	z-index: -1;
	content: '';
	border: 3px solid #043458;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	width: 3210px;
	height: 3210px;
	top: 33%;
	left: -100%;
}

.ios11 .wrapper_about_page .about_recognised:before,
.ios11 .page-careerPage .about_recognised:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='3210' height='3210'><path d='M2,1605a1603,1603 0 1,0 3206,0a1603,1603 0 1,0 -3206,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised:before,
	.page-careerPage .about_recognised:before {
		display: none;
	}
}

.wrapper_about_page .about_recognised h2,
.page-careerPage .about_recognised h2 {
	color: #043458;
	margin-left: auto;
	margin-right: auto;
	width: 40%;
	padding-left: 10px;
	padding-right: 120px;
	margin-top: 30px;
	margin-bottom: 8px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised h2,
	.page-careerPage .about_recognised h2 {
		width: 80%;
		padding-left: 0;
		padding-right: 0px;
		margin: 0;
		margin-top: 78px;
	}
}

.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider,
.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider {
	width: 874px;
	height: 874px;
	float: left;
	position: relative;
	left: 383px;
	background: #043458;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider {
		background: transparent;
		float: none;
		left: 0px;
		width: 100%;
		height: 490px;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		margin-top: -55px;
		margin-bottom: 85px;
	}
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider:before,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider:before {
		content: '';
		background: #043458;
		position: absolute;
		z-index: -1;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		-o-border-radius: 50%;
		width: 599px;
		height: 599px;
		top: -11.5%;
		left: -46%;
	}
}

.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .owl-item,
.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .owl-item {
	margin-top: 60px;
}

.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .carousel_center,
.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .carousel_center {
	padding-left: 120px;
	padding-right: 120px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .carousel_center,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .carousel_center {
		padding-left: 0px;
		padding-right: 0px;
		display: block;
		padding-top: 50px;
	}
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .carousel_center .owl-nav,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .carousel_center .owl-nav {
		margin-top: -18px;
	}
}

.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle,
.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle {
	padding-right: 0px;
	vertical-align: top;
	width: 50%;
	float: left;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle {
		display: block;
		padding-left: 10px;
		padding-right: 15px;
		width: 100%;
	}
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle .icon-recognised,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle .icon-recognised {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/recognised-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 96px;
		height: 67px;
	}
}

.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle .description,
.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle .description {
	padding-left: 10px;
	padding-right: 10px;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle .description,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .item_content_middle .description {
		font-size: 12px;
		line-height: 17px;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 20px;
	}
}

.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider h3,
.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider h3 {
	font-size: 18px;
	line-height: 28px;
	margin-top: 30px;
	margin-bottom: 0;
	font-weight: bold;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider h3,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider h3 {
		font-size: 12px;
		line-height: 17px;
		margin-top: 15px;
	}
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .description,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .description {
		font-size: 12px;
		line-height: 17px;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 0px;
		width: 138px;
	}
}

.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .icon,
.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .icon {
	display: table;
	vertical-align: middle;
}

.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .title,
.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .title {
	vertical-align: middle;
	display: table-cell;
	font-weight: bold;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .about_recognised_content__slider .title,
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .title {
		font-size: 12px;
		line-height: 17px;
	}
}

.wrapper_about_page .about_recognised .about_recognised_content .img,
.page-careerPage .about_recognised .about_recognised_content .img {
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
}

@media(max-width:767px) {

	.wrapper_about_page .about_recognised .about_recognised_content .img,
	.page-careerPage .about_recognised .about_recognised_content .img {
		position: relative;
		margin-top: 25px;
		text-align: center;
		max-width: 261px;
		margin-left: auto;
		margin-right: auto;
	}
}

.wrapper_about_page .wt__center__slide,
.page-careerPage .wt__center__slide {
	padding-bottom: 75px;
}

.wrapper_about_page .wt__center__slide h2,
.page-careerPage .wt__center__slide h2 {
	margin-top: 0px;
	margin-bottom: 40px;
}

@media(max-width:767px) {

	.wrapper_about_page .wt__center__slide h2,
	.page-careerPage .wt__center__slide h2 {
		margin-bottom: 28px;
	}
}

.wrapper_about_page .wt__center__slide h3,
.page-careerPage .wt__center__slide h3 {
	max-height: 110px;
	overflow-y: hidden;
}

@media(max-width:767px) {

	.wrapper_about_page .wt__center__slide h3,
	.page-careerPage .wt__center__slide h3 {
		margin-top: 28px;
		width: 100%;
		margin-bottom: 0px;
		max-height: 100%;
	}
}

body.language-zh .wrapper_about_page .wt__center__slide h3,
body.language-zh .page-careerPage .wt__center__slide h3 {
	line-height: 36px;
}

@media(max-width:767px) {

	body.language-zh .wrapper_about_page .wt__center__slide h3,
	body.language-zh .page-careerPage .wt__center__slide h3 {
		line-height: 26px;
	}
}

@media(max-width:767px) {

	.wrapper_about_page .wt__center__slide .date,
	.page-careerPage .wt__center__slide .date {
		margin-bottom: 0;
		margin-top: -5px;
	}
}

.wrapper_about_page .wt__center__slide .des,
.page-careerPage .wt__center__slide .des {
	max-height: 140px;
	overflow-y: hidden;
}

@media(max-width:767px) {

	.wrapper_about_page .wt__center__slide .des,
	.page-careerPage .wt__center__slide .des {
		max-height: 100%;
	}
}

.wrapper_about_page .wt__center__slide.about_slider,
.page-careerPage .wt__center__slide.about_slider {
	overflow: hidden;
}

@media(max-width:767px) {

	.wrapper_about_page .wt__center__slide.about_slider,
	.page-careerPage .wt__center__slide.about_slider {
		padding-bottom: 0px;
		overflow: inherit;
	}
}

.wrapper_about_page .wt__center__slide.about_slider .center__slide,
.page-careerPage .wt__center__slide.about_slider .center__slide {
	max-width: 870px;
	float: none;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0px;
	padding-bottom: 0;
	margin-bottom: 0;
}

@media(max-width:767px) {

	.wrapper_about_page .wt__center__slide.about_slider .center__slide,
	.page-careerPage .wt__center__slide.about_slider .center__slide {
		margin-right: 0;
		padding-left: 0;
		margin-bottom: 85px;
	}
}

.wrapper_about_page .wt__center__slide.about_slider .center__slide a,
.page-careerPage .wt__center__slide.about_slider .center__slide a {
	color: #ee2d42;
}

.wrapper_about_page .wt__center__slide.about_slider .center__slide h3,
.page-careerPage .wt__center__slide.about_slider .center__slide h3 {
	margin-top: 20px;
}

@media(max-width:767px) {

	.wrapper_about_page .wt__center__slide.about_slider .center__slide h3,
	.page-careerPage .wt__center__slide.about_slider .center__slide h3 {
		margin-top: 25px;
	}
}

.wrapper_about_page .wt__center__slide.about_slider .center__slide .date,
.page-careerPage .wt__center__slide.about_slider .center__slide .date {
	line-height: 40px;
	margin-bottom: 10px;
}

@media(max-width:767px) {

	.wrapper_about_page .wt__center__slide.about_slider .center__slide .date,
	.page-careerPage .wt__center__slide.about_slider .center__slide .date {
		margin-bottom: 0px;
	}
}

@media(max-width:767px) and (max-width:767px) {

	.wrapper_about_page .wt__center__slide.about_slider .center__slide .owl-nav:before,
	.page-careerPage .wt__center__slide.about_slider .center__slide .owl-nav:before {
		height: 70px;
		margin-top: -35px;
	}
}

.wrapper_about_page .bg_full_nav .wt__center__slide,
.page-careerPage .bg_full_nav .wt__center__slide {
	padding-bottom: 0;
}

.wrapper_about_page .bg_full_nav h2,
.page-careerPage .bg_full_nav h2 {
	margin-top: 20px;
	margin-bottom: 40px;
}

@media(max-width:767px) {

	.wrapper_about_page .bg_full_nav h2,
	.page-careerPage .bg_full_nav h2 {
		font-size: 35px;
		line-height: 30px;
		margin-top: 25px;
		margin-bottom: 30px;
	}
}

@media(max-width:767px) {

	body.language-zh .wrapper_about_page .bg_full_nav h2,
	body.language-zh .page-careerPage .bg_full_nav h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

.wrapper_about_page .bg_full_nav .center__slide,
.page-careerPage .bg_full_nav .center__slide {
	padding-left: 0px;
	margin-bottom: 0px;
	max-width: 870px;
	margin-left: auto;
	margin-right: auto;
	float: none;
	padding-bottom: 0px;
}

@media(max-width:767px) {

	.wrapper_about_page .bg_full_nav .center__slide,
	.page-careerPage .bg_full_nav .center__slide {
		margin-right: 0;
		padding-left: 0;
		margin-bottom: 0px;
		padding-bottom: 90px;
	}
}

.wrapper_about_page .bg_full_nav .center__slide h3,
.page-careerPage .bg_full_nav .center__slide h3 {
	color: #ee2d42;
	margin-top: 20px;
	margin-bottom: 20px;
}

@media(max-width:767px) {

	body.language-zh .wrapper_about_page .bg_full_nav .center__slide h3,
	body.language-zh .page-careerPage .bg_full_nav .center__slide h3 {
		line-height: 26px;
	}
}

.wrapper_about_page .bg_full_nav .center__slide h3 a,
.page-careerPage .bg_full_nav .center__slide h3 a {
	color: #ee2d42;
}

.wrapper_about_page .bg_full_nav .center__slide .date,
.page-careerPage .bg_full_nav .center__slide .date {
	margin-bottom: 20px;
}

@media(max-width:767px) {

	.wrapper_about_page .bg_full_nav .center__slide .date,
	.page-careerPage .bg_full_nav .center__slide .date {
		margin-bottom: 3px;
	}
}

.wrapper_about_page .bg_full_nav .center__slide .des,
.page-careerPage .bg_full_nav .center__slide .des {
	max-height: 140px;
}

@media(max-width:767px) {

	.wrapper_about_page .bg_full_nav .center__slide .des,
	.page-careerPage .bg_full_nav .center__slide .des {
		max-height: 100%;
	}
}

@media(max-width:767px) {

	.wrapper_about_page .bg_full_nav .center__slide .owl-carousel img,
	.page-careerPage .bg_full_nav .center__slide .owl-carousel img {
		max-width: 200px;
	}
}

@media(max-width:767px) and (max-width:767px) {

	.wrapper_about_page .bg_full_nav .center__slide .owl-nav:before,
	.page-careerPage .bg_full_nav .center__slide .owl-nav:before {
		height: 70px;
	}
}

.wrapper_about_page .bg_full_nav .content_bottom,
.page-careerPage .bg_full_nav .content_bottom {
	margin-top: 50px;
	padding-bottom: 118px;
}

@media(max-width:767px) {

	.wrapper_about_page .bg_full_nav .content_bottom,
	.page-careerPage .bg_full_nav .content_bottom {
		padding-bottom: 0;
		margin-top: 0;
	}
}

@media(min-width:1025px) and (max-width:1365px) {

	.wrapper_about_page .bg_full_nav .content_bottom:before,
	.page-careerPage .bg_full_nav .content_bottom:before {
		top: -30px;
	}
}

@media(max-width:767px) {

	.wrapper_about_page .bg_full_nav .content_bottom:before,
	.page-careerPage .bg_full_nav .content_bottom:before {
		height: 10px;
		top: -9px;
	}
}

@media(max-width:767px) {
	.page-careerPage .about_recognised .about_recognised_content .about_recognised_content__slider .icon {
		background-image: url(../picture/sprites_img.png);
		background-position: -578px -583px;
		width: 67px;
		height: 67px;
	}
}

.page-careerPage .wt__center__slide.about_slider .center__slide h3 {
	margin-bottom: 20px;
}

@media(max-width:767px) {
	.page-careerPage .wt__center__slide.about_slider .center__slide h3 {
		margin-bottom: 10px;
	}
}

@media(max-width:767px) {
	.language-zh.page-careerPage .bg_full_nav h2.bold-color {
		font-size: 24px;
		line-height: 30px;
	}
}

.language-zh.page-careerPage .bg_full_nav .center__slide h3 {
	max-height: 120px;
}

@media(max-width:767px) {
	.language-zh.page-careerPage .bg_full_nav .center__slide h3 {
		max-height: 100%;
	}
}

.language-zh.page-careerPage .bg_full_nav .center__slide .des {
	max-height: 120px;
}

@media(max-width:767px) {
	.language-zh.page-careerPage .bg_full_nav .center__slide .des {
		max-height: 100%;
	}
}

.contract {
	clear: both;
	max-width: 1020px;
	margin: auto;
	padding-bottom: 166px;
}

.contract:before,
.contract:after {
	content: " ";
	display: table;
}

.contract:after {
	clear: both;
}

.contract:before,
.contract:after {
	content: " ";
	display: table;
}

.contract:after {
	clear: both;
}

@media(max-width:767px) {
	.contract {
		margin: 0 -10px;
		padding-bottom: 59px;
	}
}

.contract__title {
	font-size: 50px;
	font-weight: bold;
	line-height: 60px;
	display: inline-block;
	color: #043458;
	padding-top: 7px;
	padding-bottom: 24px;
}

@media(max-width:767px) {
	.contract__title {
		font-size: 30px;
		line-height: 30px;
		padding: 12px 30px 10px;
	}
}

.contract__back-btn {
	float: right;
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #043458;
	line-height: 20px;
	margin-top: 69px;
}

@media(max-width:767px) {
	.contract__back-btn {
		display: none;
	}
}

.contract__back-btn:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.contract__back-btn:hover {
		color: #043458;
		border-color: #043458;
	}
}

.contract__block {
	background: #d7dfe5;
	padding: 30px 78px;
	margin-top: 21px;
}

@media(max-width:767px) {
	.contract__block {
		padding: 30px 30px 20px;
		margin-top: 10px;
	}
}

.contract__block:first-child .contract__block__info__left {
	padding-left: 8px;
}

@media(max-width:767px) {
	.contract__block:first-child .contract__block__info__left {
		padding-left: 0;
	}
}

.contract__block:nth-child(2) {
	padding-bottom: 67px;
}

@media(max-width:767px) {
	.contract__block:nth-child(2) {
		padding-top: 33px;
		padding-bottom: 27px;
	}

	.contract__block:nth-child(2) .contract__block__title {
		padding-bottom: 5px;
	}
}

.contract__block:nth-child(3),
.contract__block:nth-child(4) {
	padding-top: 36px;
	padding-bottom: 58px;
}

@media(max-width:767px) {

	.contract__block:nth-child(3),
	.contract__block:nth-child(4) {
		padding-top: 33px;
		padding-bottom: 18px;
	}
}

.contract__block:nth-child(3) .contract__block__info,
.contract__block:nth-child(4) .contract__block__info {
	margin-top: 26px;
}

@media(max-width:767px) {

	.contract__block:nth-child(3) .contract__block__info,
	.contract__block:nth-child(4) .contract__block__info {
		margin-top: 15px;
	}
}

@media(max-width:767px) {
	.contract__block:nth-child(4) {
		padding-bottom: 26px;
	}
}

.contract__block:nth-child(5) {
	padding-top: 37px;
}

@media(max-width:767px) {
	.contract__block:nth-child(5) {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

.contract__block--bg {
	position: relative;
}

.contract__block--bg:after {
	content: '';
	height: 40px;
	width: 100%;
	position: absolute;
	bottom: -39px;
	left: 0;
	background: url(../_ui/responsive/theme-alpha/img/bg-colorbox-2.png) center 0 no-repeat;
	background-size: 100% 100%;
}

@media(max-width:767px) {
	.contract__block--bg:after {
		background-size: 100% 10px;
	}
}

.contract__block__title {
	font-size: 30px;
	font-weight: bold;
	color: #043458;
	padding-bottom: 10px;
}

@media(max-width:767px) {
	.contract__block__title {
		font-size: 20px;
		line-height: 14px;
		margin-top: 0;
		padding-bottom: 3px;
	}
}

.contract__block__info__row {
	font-size: 18px;
	line-height: 20px;
	color: #043458;
	margin-top: 20px;
	word-break: break-word;
}

.contract__block__info__row:before,
.contract__block__info__row:after {
	content: " ";
	display: table;
}

.contract__block__info__row:after {
	clear: both;
}

.contract__block__info__row:before,
.contract__block__info__row:after {
	content: " ";
	display: table;
}

.contract__block__info__row:after {
	clear: both;
}

@media(max-width:767px) {
	.contract__block__info__row {
		font-size: 12px;
		line-height: 14px;
		margin-top: 15px;
	}
}

.contract__block__info__left {
	float: left;
	padding-left: 3px;
	width: 248px;
	font-weight: bold;
}

@media(max-width:767px) {
	.contract__block__info__left {
		width: 52%;
		padding-left: 0;
	}
}

.contract__block__info__right {
	float: right;
	width: 616px;
}

@media(max-width:767px) {
	.contract__block__info__right {
		width: 48%;
	}
}

.contract__block__info__right .address {
	line-height: 28px;
}

@media(max-width:767px) {
	.contract__block__info__right .address {
		line-height: 20px;
	}
}

.contract__block__info__price {
	text-align: right;
	line-height: 28px;
	font-weight: bold;
}

@media(max-width:767px) {
	.contract__block__info__price {
		line-height: 24px;
	}
}

.contract__block__info__price span {
	font-size: 30px;
	padding-left: 8px;
}

@media(max-width:767px) {
	.contract__block__info__price span {
		font-size: 20px;
	}
}

.contract__block__content {
	max-height: 400px;
	background: #fff;
	border: 1px solid #c2c2c2;
	font-family: "Microsoft Yahei", Tahoma, Helvetica, Arial, "微软雅黑", STXihei, "华文细黑", sans-serif;
	font-weight: 300;
	margin-top: 33px;
	padding: 0 40px;
	overflow: hidden;
	position: relative;
}

.contract__block__content:before,
.contract__block__content:after {
	content: " ";
	display: table;
}

.contract__block__content:after {
	clear: both;
}

.contract__block__content:before,
.contract__block__content:after {
	content: " ";
	display: table;
}

.contract__block__content:after {
	clear: both;
}

@media(max-width:767px) {
	.contract__block__content {
		padding: 0 14px;
		font-size: 11px;
		line-height: 17px;
		margin-top: 17px;
		max-height: 200px;
	}
}

.contract__block__content:before {
	content: '';
	width: 100%;
	height: 32px;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 10;
}

@media(max-width:767px) {
	.contract__block__content:before {
		height: 14px;
	}
}

.contract__block__content.hide-blur:after {
	display: none;
}

.contract__block__content:after {
	content: '';
	width: 100%;
	height: 96px;
	background: url(../_ui/responsive/theme-alpha/img/text-cover.png) 0 center repeat-x;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
}

@media(max-width:767px) {
	.contract__block__content:after {
		height: 47px;
	}
}

.contract__block__content__title {
	float: left;
	width: calc(100% - 100px);
	font-weight: bold;
	color: #043458;
	padding-top: 32px;
}

@media(max-width:767px) {
	.contract__block__content__title {
		padding-top: 14px;
		width: calc(100% - 70px);
	}
}

.contract__block__content__version {
	float: right;
	color: #043458;
	margin: 1px 11px 0 0;
	padding-top: 32px;
}

@media(max-width:767px) {
	.contract__block__content__version {
		padding-top: 14px;
	}
}

.contract__block__content p {
	margin: 0;
}

.contract__block__content b {
	font-weight: bold;
	color: #043458;
}

.contract__block__content__text {
	clear: both;
	padding: 30px 5px 32px 0;
}

@media(max-width:767px) {
	.contract__block__content__text {
		padding-top: 17px;
		padding-bottom: 15px;
	}
}

.template-pages-corporate-corporatePage .link_tell {
	cursor: default;
}

.template-pages-corporate-corporatePage .nav_top .nav_top_left ul li:first-child {
	background: transparent;
}

.template-pages-corporate-corporatePage .nav_top .nav_top_left ul li:first-child:hover {
	background: #ffffff;
}

.template-pages-corporate-corporatePage .nav_top .nav_top_left ul li:first-child a {
	font-weight: normal;
}

.template-pages-corporate-corporatePage .nav_top .nav_top_left ul li.corporate {
	background: #ffffff;
}

.template-pages-corporate-corporatePage .nav_top .nav_top_left ul li.corporate a {
	font-weight: bold;
}

.template-pages-corporate-corporatePage .logo {
	margin-left: 5px;
}

.template-pages-corporate-corporatePage .navigation {
	margin-left: 26px;
}

.template-pages-corporate-corporatePage .navigation .navigation--bottom .nav__links--products li a {
	padding: 0 35px 0px 35px;
}

.template-pages-corporate-corporatePage .navigation .navigation--bottom .nav__links--products li:nth-child(2) a {
	padding-left: 0;
}

.template-pages-corporate-corporatePage .navigation .navigation--bottom .nav__links--products li:last-child a {
	padding-right: 0;
}

.template-pages-corporate-corporatePage .chat_box_fix {
	display: none;
}

.template-pages-corporate-corporatePage .mobile_top .mobile_top_menu ul li {
	display: none;
}

.template-pages-corporate-corporatePage .mobile_top .mobile_top_menu ul li.call_corporate {
	display: block;
}

.template-pages-corporate-corporatePage .mobile_menu_wrapper .mobile_menu_top ul li:first-child {
	background: #f2f1f1;
	color: #043458;
	font-weight: normal;
}

.template-pages-corporate-corporatePage .mobile_menu_wrapper .mobile_menu_top ul li:first-child a {
	color: #043458;
}

.template-pages-corporate-corporatePage .mobile_menu_wrapper .mobile_menu_top ul li:nth-child(2) {
	background: #043458;
	color: #ffffff;
	font-weight: bold;
}

.template-pages-corporate-corporatePage .mobile_menu_wrapper .mobile_menu_top ul li:nth-child(2) a {
	color: #ffffff;
	padding-right: 5px;
	padding-left: 5px;
}

.template-pages-corporate-corporatePage .mobile_menu_wrapper .mobile_menu {
	min-height: 400px;
}

.template-pages-corporate-corporatePage .mobile_menu_wrapper .mobile_menu ul li:first-child,
.template-pages-corporate-corporatePage .mobile_menu_wrapper .mobile_menu ul li:last-child {
	display: none;
}

.page-corporate .breadcrumb-top {
	top: 0;
}

.wrapper_corporate {}

.wrapper_corporate h2 {
	font-size: 50px;
	line-height: 60px;
	font-weight: bold;
}

@media(max-width:767px) {
	.wrapper_corporate h2 {
		font-size: 30px;
		line-height: 35px;
	}
}

body.language-zh .wrapper_corporate h2 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .wrapper_corporate h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

.wrapper_corporate .inform {
	color: #043458;
}

.wrapper_corporate .teach {
	color: #64cfe9;
}

.wrapper_corporate .enable {
	color: #ee2d42;
}

.wrapper_corporate .wt_slideshow.banner_product .slideshow_content .slideshow_text--big h1,
.wrapper_corporate .wt_slideshow.banner_product .slideshow_content .slideshow_text--big h2 {
	font-size: 70px;
	line-height: 80px;
	max-width: 650px;
	margin: auto;
	padding-bottom: 50px;
	text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
}

@media(max-width:767px) {

	.wrapper_corporate .wt_slideshow.banner_product .slideshow_content .slideshow_text--big h1,
	.wrapper_corporate .wt_slideshow.banner_product .slideshow_content .slideshow_text--big h2 {
		font-size: 35px;
		line-height: 40px;
		padding-bottom: 0px;
	}
}

body.language-zh .wrapper_corporate .wt_slideshow.banner_product .slideshow_content .slideshow_text--big h1,
body.language-zh .wrapper_corporate .wt_slideshow.banner_product .slideshow_content .slideshow_text--big h2 {
	font-size: 60px;
	line-height: 70px;
}

@media(max-width:767px) {

	body.language-zh .wrapper_corporate .wt_slideshow.banner_product .slideshow_content .slideshow_text--big h1,
	body.language-zh .wrapper_corporate .wt_slideshow.banner_product .slideshow_content .slideshow_text--big h2 {
		font-size: 30px;
		line-height: 36px;
	}
}

.wrapper_corporate .wt_slideshow.banner_product .wrap-circle {
	bottom: 14%;
}

@media(max-width:767px) {
	.wrapper_corporate .wt_slideshow.banner_product .wrap-circle {
		display: none;
	}
}

.wrapper_corporate .wt_slideshow.banner_product .wrap-circle .circle {
	margin: 0 20px 0 36px;
	width: 110px;
	height: 110px;
}

.wrapper_corporate .wt_slideshow.banner_product .wrap-circle .circle a {
	text-transform: none;
}

.wrapper_corporate .wt_slideshow.banner_product .wrap-circle .circle a span {
	line-height: 18px;
	padding: 6px 0 0;
}

.wrapper_corporate .corporate_two {
	text-align: center;
	margin-top: 33px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_two {
		margin-top: 15px;
	}
}

.wrapper_corporate .corporate_two h2 {
	color: #043458;
	font-size: 50px;
	line-height: 60px;
	margin-left: 150px;
	margin-right: 150px;
	margin-bottom: 25px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_two h2 {
		font-size: 35px;
		line-height: 40px;
		margin-left: -5px;
		margin-right: -5px;
		margin-bottom: 17px;
	}
}

body.language-zh .wrapper_corporate .corporate_two h2 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .wrapper_corporate .corporate_two h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

.wrapper_corporate .corporate_two .des {
	margin-left: 165px;
	margin-right: 165px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_two .des {
		margin-left: 0;
		margin-right: 0;
	}
}

.wrapper_corporate .corporate_three {
	margin-top: 60px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three {
		margin-top: 10px;
	}
}

.wrapper_corporate .corporate_three .wrapper-content {
	margin-right: 78px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .wrapper-content {
		margin-left: 0px;
		margin-right: 0px;
	}
}

.wrapper_corporate .corporate_three h2 {
	text-align: center;
	margin-bottom: 45px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three h2 {
		padding: 0;
		margin-bottom: 15px;
	}
}

.wrapper_corporate .corporate_three .corporate_row {
	margin-left: -50px;
	margin-right: -50px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_row {
		margin-left: 0px;
		margin-right: 0px;
	}
}

.wrapper_corporate .corporate_three .corporate_col {
	float: left;
	width: 50%;
	padding: 0 50px;
	margin-bottom: 120px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col {
		float: none;
		width: 100%;
		padding: 0;
		margin-bottom: 45px;
	}
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col img {
		padding: 0 15px;
	}
}

.wrapper_corporate .corporate_three .corporate_col h3 {
	font-size: 50px;
	line-height: 60px;
	color: #043458;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 25px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col h3 {
		font-size: 25px;
		line-height: 30px;
		margin-top: 15px;
		margin-bottom: 8px;
	}
}

body.language-zh .wrapper_corporate .corporate_three .corporate_col h3 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .wrapper_corporate .corporate_three .corporate_col h3 {
		font-size: 24px;
		line-height: 30px;
	}
}

.wrapper_corporate .corporate_three .corporate_col .des {
	padding-left: 38px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col .des {
		padding-left: 0px;
	}
}

.wrapper_corporate .corporate_three .corporate_col .content_item_more {
	margin-left: 44px;
	margin-top: 15px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col .content_item_more {
		margin-left: 0px;
	}
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col .content_item_more a {
		width: 80px;
		height: 80px;
		padding: 0 5px;
	}
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col:last-child {
		margin-bottom: 40px;
	}
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col:last-child img {
		padding-right: 0;
		padding-left: 30px;
		margin-bottom: 3px;
	}
}

.wrapper_corporate .corporate_three .corporate_col:last-child .content_item_more {
	margin-left: 40px;
	margin-top: 18px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_three .corporate_col:last-child .content_item_more {
		margin-left: 0;
		margin-top: 15px;
	}
}

.wrapper_corporate .corporate_four .wrapper_core_service {
	width: 500px;
	height: 500px;
	border: 5px solid #d9d9d9;
	position: relative;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	margin-left: 330px;
	display: table;
	vertical-align: middle;
	margin-top: 70px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service {
		width: 250px;
		height: 250px;
		border: 3px solid #d9d9d9;
		margin-top: 35px;
		margin-left: 0px;
	}
}

.wrapper_corporate .corporate_four .wrapper_core_service .core_service {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	text-align: center;
}

.wrapper_corporate .corporate_four .wrapper_core_service .core_service h2 {
	color: #333333;
	margin-top: 0;
	padding: 0 50px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .core_service h2 {
		font-size: 25px;
		line-height: 30px;
		margin-bottom: 20px;
		padding: 0;
	}
}

.wrapper_corporate .corporate_four .wrapper_core_service .service_icon {
	display: table;
	vertical-align: middle;
	position: absolute;
	left: 167px;
	top: -72px;
}

.wrapper_corporate .corporate_four .wrapper_core_service .service_icon .service_icon_content {
	position: relative;
	z-index: 1;
	width: 165px;
	height: 165px;
	font-size: 30px;
	line-height: 20px;
	padding: 0 5px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .service_icon .service_icon_content {
		width: 84px;
		height: 84px;
		font-size: 15px;
		line-height: 10px;
	}
}

.wrapper_corporate .corporate_four .wrapper_core_service .service_icon .service_icon_content .icon {
	display: block;
	margin-bottom: 15px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .service_icon .service_icon_content .icon {
		margin-bottom: 5px;
	}
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .service_icon .service_icon_content .icon.icon-core-service-inform {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/core-service-inform-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 33px;
		height: 33px;
	}
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .service_icon .service_icon_content .icon.icon-core-service-teach {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/core-service-teach-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 43px;
		height: 33px;
	}
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .service_icon .service_icon_content .icon.icon-core-service-enable {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/core-service-enable-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 33px;
		height: 33px;
	}
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .service_icon.inform {
		left: 84px;
		top: -38px;
	}
}

.wrapper_corporate .corporate_four .wrapper_core_service .service_icon.inform .service_icon_content {
	background: #043458;
}

.wrapper_corporate .corporate_four .wrapper_core_service .service_icon.teach {
	left: auto;
	top: auto;
	bottom: 41px;
	right: -83px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .service_icon.teach {
		right: -22px;
		bottom: 20px;
	}
}

.wrapper_corporate .corporate_four .wrapper_core_service .service_icon.teach .service_icon_content {
	background: #64cfe9;
}

.wrapper_corporate .corporate_four .wrapper_core_service .service_icon.enable {
	left: -72px;
	top: auto;
	bottom: 41px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .wrapper_core_service .service_icon.enable {
		left: -14px;
		bottom: 20px;
	}
}

.wrapper_corporate .corporate_four .wrapper_core_service .service_icon.enable .service_icon_content {
	background: #ee2d42;
}

.wrapper_corporate .corporate_four .slider_service {
	margin-left: auto;
	margin-right: auto;
	padding-left: 120px;
	padding-right: 120px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .slider_service {
		padding: 0;
		line-height: 17px;
		max-width: 185px;
	}
}

.wrapper_corporate .corporate_four .slider_service h3 {
	font-size: 30px;
	line-height: 28px;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 30px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .slider_service h3 {
		font-size: 20px;
		line-height: 17px;
		margin-top: 35px;
		margin-bottom: 20px;
	}
}

.wrapper_corporate .corporate_four .slider_service h3 .munber {
	font-size: 50px;
	line-height: 20px;
	display: block;
	margin-bottom: 20px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .slider_service h3 .munber {
		font-size: 35px;
		line-height: 10px;
	}
}

.wrapper_corporate .corporate_four .slider_service .item_content .content {
	margin-bottom: 30px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_four .slider_service .item_content .content {
		margin-bottom: 17px;
	}
}

.wrapper_corporate .corporate_four .slider_service .owl-nav {
	text-indent: -9999px;
	position: absolute;
	top: 50%;
	margin-top: -62px;
	width: 150%;
	left: -25%;
	padding-left: 10px;
	padding-right: 10px;
}

.wrapper_corporate .corporate_four .slider_service .owl-nav .owl-prev {
	float: left;
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/blue-arrow-prev-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 23px;
	height: 39px;
}

.wrapper_corporate .corporate_four .slider_service .owl-nav .owl-prev.disabled {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/blue-arrow-prev-mobile-disable.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 23px;
	height: 39px;
}

.wrapper_corporate .corporate_four .slider_service .owl-nav .owl-next {
	float: right;
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/blue-arrow-next-mobile.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 24px;
	height: 42px;
}

.wrapper_corporate .corporate_four .slider_service .owl-nav .owl-next.disabled {
	background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/blue-arrow-next-mobile-disable.png);
	background-size: 100% auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 24px;
	height: 42px;
}

.wrapper_corporate .corporate_five {
	padding-top: 50px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five {
		margin-top: -125px;
	}
}

.wrapper_corporate .corporate_five .corporate_five__content {
	position: relative;
	padding-top: 75px;
	padding-bottom: 100px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five__content {
		padding-bottom: 38px;
	}
}

.wrapper_corporate .corporate_five .corporate_five__content:before {
	content: '';
	position: absolute;
	z-index: -1;
	border: 3px solid #043458;
	width: 2700px;
	height: 2700px;
	left: -12%;
	top: 0%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

.ios11 .wrapper_corporate .corporate_five .corporate_five__content:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2700' height='2700'><path d='M2,1350a1348,1348 0 1,0 2696,0a1348,1348 0 1,0 -2696,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five__content:before {
		width: 1150px;
		height: 1150px;
		left: -28%;
		top: 8%;
		z-index: 1;
	}

	.ios11 .wrapper_corporate .corporate_five .corporate_five__content:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1150' height='1150'><path d='M2,575a573,573 0 1,0 1146,0a573,573 0 1,0 -1146,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
	}
}

.wrapper_corporate .corporate_five .corporate_five_left {
	float: left;
	margin-left: 58px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_left {
		margin-left: 0;
	}
}

.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content {
	position: relative;
	z-index: 1;
	width: 502px;
	height: 502px;
	background: #ee2d42;
	color: #ffffff;
	display: table;
	vertical-align: middle;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content {
		width: 260px;
		height: 260px;
	}
}

.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	padding-left: 72px;
	padding-right: 72px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content h2 {
	width: 82%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 15px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content h2 {
		margin-top: 10px;
	}
}

.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content h3 {
	font-size: 50px;
	line-height: 60px;
	font-weight: bold;
	margin-bottom: 15px;
}

.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content .des {
	margin-bottom: 20px;
	padding-left: 32px;
	padding-right: 12px;
	line-height: 26px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content .des {
		line-height: 17px;
	}
}

body.language-zh .wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content .des {
	line-height: 24px;
}

@media(max-width:767px) {
	body.language-zh .wrapper_corporate .corporate_five .corporate_five_left .corporate_five_content .content_content .des {
		line-height: 18px;
	}
}

.wrapper_corporate .corporate_five .corporate_five_right {
	float: left;
	width: 50%;
	margin-top: 87px;
	padding-left: 87px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_right {
		width: 100%;
		margin-top: 20px;
		padding-left: 0;
	}
}

.wrapper_corporate .corporate_five .corporate_five_right .row_corporate_logo {
	margin-left: -27px;
	margin-right: -27px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_right .row_corporate_logo {
		margin-bottom: 10px;
		margin-left: 0;
		margin-right: 0;
	}
}

.wrapper_corporate .corporate_five .corporate_five_right .corporate_logo {
	float: left;
	width: 33%;
	height: 100px;
	display: table;
	vertical-align: middle;
	padding-left: 27px;
	padding-right: 27px;
	margin-bottom: 20px;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_right .corporate_logo {
		height: 60px;
		margin-bottom: 10px;
	}
}

.wrapper_corporate .corporate_five .corporate_five_right .corporate_logo:first-child {
	text-align: center;
}

@media(max-width:767px) {
	.wrapper_corporate .corporate_five .corporate_five_right .corporate_logo.microsoft {
		padding-left: 5px;
		padding-right: 5px;
	}
}

.wrapper_corporate .corporate_five .corporate_five_right .corporate_logo .img {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.corporatelevel_page .main-content {
	position: relative;
}

.corporatelevel_page .content_item {
	width: 45%;
	padding-bottom: 49px;
}

@media(max-width:767px) {
	.corporatelevel_page .content_item {
		width: 90%;
		margin-top: 30px;
		padding-bottom: 16px;
	}
}

.corporatelevel_page .content_item h1 {
	padding-right: 130px;
	margin-bottom: 35px;
	margin-left: 75px;
}

@media(max-width:767px) {
	.corporatelevel_page .content_item h1 {
		font-size: 35px;
		line-height: 40px;
		margin-left: 0px;
		margin-bottom: 22px;
		padding-right: 74px;
	}
}

body.language-zh .corporatelevel_page .content_item h1 {
	font-size: 60px;
	line-height: 70px;
}

@media(max-width:767px) {
	body.language-zh .corporatelevel_page .content_item h1 {
		font-size: 30px;
		line-height: 36px;
	}
}

.corporatelevel_page .content_item .des {
	margin-left: 120px;
	min-height: 168px;
}

@media(max-width:767px) {
	.corporatelevel_page .content_item .des {
		margin-left: 0;
		margin-right: 75px;
		line-height: 17px;
		min-height: 0;
		margin-bottom: 40px;
	}

	body.language-zh .corporatelevel_page .content_item .des {
		line-height: 18px;
	}
}

.corporatelevel_page .img_corporatelevel {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 55%;
}

@media(max-width:767px) {
	.corporatelevel_page .img_corporatelevel {
		top: 69px;
		max-width: 115px;
	}
}

.corporatelevel_page .corporatelevel_content {
	position: relative;
	padding-top: 90px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content {
		padding-top: 20px;
	}
}

@media(max-width:480px) {
	.corporatelevel_page .corporatelevel_content {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

.corporatelevel_page .corporatelevel_content:before {
	content: '';
	position: absolute;
	border: 3px solid #043458;
	border-bottom: 3px solid transparent;
	border-right: 3px solid transparent;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	width: 2733px;
	height: 2733px;
	left: -75%;
	top: 0.5%;
	-webkit-transform: rotate(10deg);
	-moz-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	-o-transform: rotate(10deg);
	transform: rotate(10deg);
}

.ios11 .corporatelevel_page .corporatelevel_content:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2733' height='2733'><path d='M1,1366.5 a1,1 0 0,0 2731,0' fill='none' stroke-width='3' stroke='#043458'/></svg>") center bottom no-repeat;
}

.ios11 .corporatelevel_page .corporatelevel_content:before {
	-ms-transform: rotate(145deg);
	-webkit-transform: rotate(145deg);
	-moz-transform: rotate(145deg);
	transform: rotate(145deg);
	-o-transform: rotate(145deg);
	-sm-transform: rotate(145deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2deg);
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content:before {
		border: 2px solid #043458;
		width: 2100px;
		height: 2100px;
		left: auto;
		right: -245%;
		top: 0%;
		z-index: -1;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	.ios11 .corporatelevel_page .corporatelevel_content:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2100' height='2100'><path d='M2,1050a1048,1048 0 1,0 2096,0a1048,1048 0 1,0 -2096,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
	}

	.ios11 .corporatelevel_page .corporatelevel_content:before {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-sm-transform: rotate(0deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
	}
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		background: #ffffff;
		width: 100%;
		height: 50%;
		z-index: -1;
	}
}

.corporatelevel_page .corporatelevel_content .wrapper-content {
	margin-left: 140px;
	margin-right: 140px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .wrapper-content {
		margin-left: 0px;
		margin-right: 0px;
	}
}

.corporatelevel_page .corporatelevel_content h2 {
	font-size: 50px;
	line-height: 60px;
	font-weight: bold;
	margin-bottom: 25px;
	padding-right: 50px;
	margin-left: 20px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content h2 {
		font-size: 30px;
		line-height: 35px;
		margin-left: 0;
		margin-bottom: 15px;
		padding-right: 5px;
		margin-top: 15px;
	}
}

body.language-zh .corporatelevel_page .corporatelevel_content h2 {
	font-size: 40px;
	line-height: 50px;
}

@media(max-width:767px) {
	body.language-zh .corporatelevel_page .corporatelevel_content h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

.corporatelevel_page .corporatelevel_content .des {
	margin-left: 65px;
	padding-right: 10px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .des {
		margin-left: 0;
		margin-top: 15px;
		line-height: 17px;
	}
}

body.language-zh .corporatelevel_page .corporatelevel_content .des {
	font-size: 16px;
	line-height: 24px;
	color: #545454;
}

@media(max-width:767px) {
	body.language-zh .corporatelevel_page .corporatelevel_content .des {
		font-size: 12px;
		line-height: 18px;
	}
}

.corporatelevel_page .corporatelevel_content .des .a {
	color: #545454;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_img {
		text-align: center;
	}
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_img img {
		max-width: 200px;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel {
	margin-bottom: 100px;
	position: relative;
	min-height: 370px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel {
		margin-bottom: 0px;
		min-height: 0px;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel ul li {
	list-style: none;
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_left {
	float: left;
	width: 55%;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_left {
		width: 100%;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_left h2 {
	color: #043458;
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_left .box_img {
	position: absolute;
	right: 0;
	top: 10px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_left .box_img {
		position: relative;
		top: 0;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right {
	float: right;
	width: 57%;
	margin-top: 35px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right {
		width: 100%;
		margin-top: 0;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right .box_img {
	position: absolute;
	left: 0;
	top: 0;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right .box_img {
		position: relative;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right img {
	margin-top: 30px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right img {
		margin-top: 20px;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right h2 {
	color: #ee2d42;
	margin-top: 30px;
	margin-left: 40px;
	margin-bottom: 22px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right h2 {
		margin-left: 0;
		margin-bottom: 0px;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right .des {
	margin-left: 75px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel .box_right .des {
		margin-left: 0px;
		padding-right: 0;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_3 {
	padding-top: 65px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_3 {
		padding-top: 10px;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_3 .box_img {
	right: -5px;
	top: 63px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_3 .box_img {
		right: 0;
		top: 0;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_4 .box_right {
	margin-top: 8px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_4 .box_right {
		margin-top: 0px;
	}
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_4 .box_right h2 {
		margin-top: 20px;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_4 .box_img {
	top: 10px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_4 .box_img {
		top: 0;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_5 {
	margin-bottom: 115px;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_5 {
		margin-bottom: 53px;
	}
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_5 h2 {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_5 .box_img {
	right: -8px;
	top: 0;
}

@media(max-width:767px) {
	.corporatelevel_page .corporatelevel_content .box_corporatelevel.box_corporatelevel_5 .box_img {
		right: 0;
	}
}

.order-details {
	padding-top: 35px;
	padding-bottom: 68px;
}

@media(max-width:767px) {
	.order-details {
		padding-top: 26px;
		padding-bottom: 64px;
	}
}

.order-details .container {
	width: 100%;
	max-width: 1181px;
}

@media(max-width:767px) {
	.order-details .container {
		padding: 0 30px;
		max-width: 320px;
	}
}

.order-details .back-btn {
	margin-left: 23px;
	font-size: 18px;
	font-weight: bold;
	line-height: 16px;
	color: #043458;
	border-bottom: 1px solid #043458;
	display: inline-block;
}

.order-details .back-btn:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.order-details .back-btn {
		font-size: 12px;
		line-height: 17px;
		margin-left: 0;
	}

	.order-details .back-btn:hover {
		color: #043458;
		border-color: #043458;
	}
}

.order-details__steps {
	text-align: center;
	padding-top: 43px;
}

@media(max-width:767px) {
	.order-details__steps {
		padding-top: 26px;
		font-size: 0;
	}
}

.order-details__steps__item {
	margin: 0 8px;
	display: inline-block;
	width: 108px;
	height: 108px;
	border: 3px solid #043458;
	color: #043458;
	position: relative;
	font-size: 14px;
	line-height: 102px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

@media(max-width:767px) {
	.order-details__steps__item {
		width: 55px;
		height: 55px;
		border-width: 2px;
		font-size: 9px;
		line-height: 53px;
		margin: 0 6px;
	}
}

.order-details__steps__item:first-child:before {
	display: none;
}

.order-details__steps__item:before {
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -2px;
	left: -25px;
	width: 24px;
	height: 3px;
	background: #043458;
}

@media(max-width:767px) {
	.order-details__steps__item:before {
		height: 2px;
		margin-top: -1px;
		left: -14px;
		width: 12px;
	}
}

.order-details__steps__item.active {
	border-color: #ee2d42;
	color: #ee2d42;
}

.order-details__steps__item.active:after {
	content: '';
	position: absolute;
	bottom: 11px;
	left: 50%;
	margin-left: -8px;
	border-bottom: 10px solid #ee2d42;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
}

@media(max-width:767px) {
	.order-details__steps__item.active:after {
		margin-left: -5px;
		bottom: 5px;
		border-bottom: 6px solid #ee2d42;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
	}
}

.order-details__left {
	float: left;
	width: 700px;
}

@media(max-width:767px) {
	.order-details__left {
		float: none;
		width: 100%;
	}
}

.order-details__right {
	float: right;
	width: 300px;
	padding-top: 101px;
}

@media(max-width:767px) {
	.order-details__right {
		float: none;
		width: 100%;
	}
}

@media(max-width:767px) and (max-width:767px) {
	.order-details__right {
		padding-top: 15px;
	}
}

.order-details__title {
	font-size: 50px;
	line-height: 80px;
	font-weight: bold;
	color: #043458;
	margin-bottom: -14px;
}

@media(max-width:767px) {
	.order-details__title {
		font-size: 30px;
		line-height: 35px;
		margin-top: 7px;
		margin-bottom: -3px;
	}
}

.order-details__description {
	font-size: 18px;
	line-height: 28px;
	padding-top: 11px;
	width: 460px;
}

@media(max-width:767px) {
	.order-details__description {
		font-size: 12px;
		line-height: 17px;
		padding-top: 0;
		width: 100%;
	}
}

.order-details__info {
	font-size: 18px;
	line-height: 28px;
	margin-top: 12px;
}

.order-details__info:before,
.order-details__info:after {
	content: " ";
	display: table;
}

.order-details__info:after {
	clear: both;
}

.order-details__info:before,
.order-details__info:after {
	content: " ";
	display: table;
}

.order-details__info:after {
	clear: both;
}

@media(max-width:767px) {
	.order-details__info {
		font-size: 12px;
		line-height: 17px;
		margin-top: 6px;
	}
}

.order-details__info__left {
	width: 160px;
	float: left;
}

@media(max-width:767px) {
	.order-details__info__left {
		width: 100%;
		float: none;
	}
}

.order-details__info__right {
	width: calc(100% - 160px);
	float: left;
}

@media(max-width:767px) {
	.order-details__info__right {
		width: 100%;
		float: none;
	}
}

.order-details__price {
	font-size: 18px;
	line-height: 28px;
	text-align: right;
}

.order-details__price:before,
.order-details__price:after {
	content: " ";
	display: table;
}

.order-details__price:after {
	clear: both;
}

.order-details__price:before,
.order-details__price:after {
	content: " ";
	display: table;
}

.order-details__price:after {
	clear: both;
}

@media(max-width:767px) {
	.order-details__price {
		font-size: 12px;
		line-height: 17px;
		padding-right: 0;
	}
}

.order-details__price span {
	text-decoration: line-through;
}

.order-details__price b {
	font-size: 30px;
	color: #043458;
}

@media(max-width:767px) {
	.order-details__price b {
		font-size: 20px;
	}
}

.order-details__price .total-price-title {
	font-weight: bold;
	float: left;
	text-align: left;
}

.order-details__price .total-price {
	float: right;
	text-align: right;
}

.order-details__price.price-1 .total-price-title {
	width: 60px;
}

.order-details__price.price-1 .total-price {
	width: 240px;
}

@media(max-width:767px) {
	.order-details__price.price-1 .total-price {
		width: 200px;
	}
}

.order-details__price.price-2 .total-price-title {
	width: 80px;
	display: none;
}

.order-details__price.price-2 .total-price-title:first-child {
	display: block;
}

@media(max-width:767px) {
	.order-details__price.price-2 .total-price-title {
		width: 70px;
	}
}

.order-details__price.price-2 .total-price {
	width: 220px;
}

@media(max-width:767px) {
	.order-details__price.price-2 .total-price {
		width: 190px;
	}
}

.order-details__promo {
	margin-top: 20px;
}

.order-details__promo:before,
.order-details__promo:after {
	content: " ";
	display: table;
}

.order-details__promo:after {
	clear: both;
}

.order-details__promo:before,
.order-details__promo:after {
	content: " ";
	display: table;
}

.order-details__promo:after {
	clear: both;
}

@media(max-width:767px) {
	.order-details__promo {
		margin-top: 5px;
	}
}

.order-details__promo form {
	float: right;
}

@media(max-width:767px) {
	.order-details__promo form {
		float: left;
	}
}

.order-details__promo .form-group {
	width: 220px;
	margin: 0;
	float: left;
}

@media(max-width:767px) {
	.order-details__promo .form-group {
		width: 200px;
	}
}

.order-details__promo .form-control {
	width: 100%;
	border: 1px solid #333;
	font-size: 18px;
	color: #333;
	padding: 0 20px;
	margin-right: 0;
	float: left;
	height: 33px;
	line-height: 30px;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.order-details__promo .form-control {
		height: 34px;
		line-height: 34px;
	}
}

@media(max-width:767px) {
	.order-details__promo .form-control {
		height: 30px;
		font-size: 12px;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.order-details__promo .cart-voucher__btn {
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	width: 79px;
	height: 33px;
	line-height: 34px;
	background: #043458;
	border: none;
	float: right;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.order-details__promo .cart-voucher__btn {
		height: 34px;
		line-height: 33px;
		border: 1px solid #043458;
	}
}

@media(max-width:767px) {
	.order-details__promo .cart-voucher__btn {
		width: 60px;
		height: 30px;
		font-size: 12px;
	}
}

.order-details__promo .cart-voucher__btn:hover {
	background: #0082a9;
}

@media(max-width:767px),
(min-device-width:768px) and (max-device-width:1280px) {
	.order-details__promo .cart-voucher__btn:hover {
		background: #043458;
	}
}

.order-details__promo .global-alerts {
	clear: both;
	padding-top: 8px;
}

.order-details .appliedVouchers {
	margin-right: -10px;
	float: right;
}

.order-details .appliedVouchers:before,
.order-details .appliedVouchers:after {
	content: " ";
	display: table;
}

.order-details .appliedVouchers:after {
	clear: both;
}

.order-details .appliedVouchers:before,
.order-details .appliedVouchers:after {
	content: " ";
	display: table;
}

.order-details .appliedVouchers:after {
	clear: both;
}

.order-details .appliedVouchers form {
	float: right;
	margin-right: 10px;
}

.order-details .appliedVouchers .voucher-list__item-box {
	font-weight: normal;
	border: none;
	padding: 0 15px;
	font-style: italic;
}

@media(max-width:767px) {
	.order-details .appliedVouchers .voucher-list__item-box {
		padding: 2px 10px;
	}
}

.order-details .appliedVouchers .voucher-list__item-box span {
	color: #333;
}

.ie8 .order-details .appliedVouchers .voucher-list__item-box span,
.ie9 .order-details .appliedVouchers .voucher-list__item-box span {
	margin: 0;
	top: 0;
}

.order-details .appliedVouchers .voucher-list__item-box span:hover {
	color: #0082a9;
}

@media(max-width:767px) {
	.order-details .appliedVouchers .voucher-list__item-box span:hover {
		color: #333;
	}
}

.ie8 .order-details .appliedVouchers .voucher-list__item-box span:before,
.ie9 .order-details .appliedVouchers .voucher-list__item-box span:before {
	content: 'x';
}

.order-details__content {
	max-width: 1020px;
	margin: auto;
	padding-top: 16px;
}

.order-details__content:before,
.order-details__content:after {
	content: " ";
	display: table;
}

.order-details__content:after {
	clear: both;
}

.order-details__content:before,
.order-details__content:after {
	content: " ";
	display: table;
}

.order-details__content:after {
	clear: both;
}

.order-details .contract {
	padding-top: 5px;
}

@media(max-width:767px) {
	.order-details .contract {
		padding-top: 21px;
		padding-bottom: 41px;
	}
}

.order-details .contract__block {
	margin-top: 30px;
	padding-bottom: 28px;
}

.order-details .contract__block:before,
.order-details .contract__block:after {
	content: " ";
	display: table;
}

.order-details .contract__block:after {
	clear: both;
}

.order-details .contract__block:before,
.order-details .contract__block:after {
	content: " ";
	display: table;
}

.order-details .contract__block:after {
	clear: both;
}

@media(max-width:767px) {
	.order-details .contract__block {
		margin-top: 10px;
		padding-bottom: 22px;
	}
}

.order-details .contract__block:after {
	display: block;
}

.order-details .contract__block__content {
	max-height: none;
	margin-bottom: 36px;
}

@media(max-width:767px) {
	.order-details .contract__block__content {
		margin-bottom: -3px;
		margin-top: 15px;
	}
}

.order-details .contract__block__content:after {
	display: none;
}

.order-details .contract__block__title {
	padding-top: 0;
	padding-bottom: 25px;
}

.order-details .contract__block__title .required {
	font-weight: normal;
	font-size: 18px;
	float: right;
	line-height: 44px;
}

@media(max-width:767px) {
	.order-details .contract__block__title .required {
		padding-top: 11px;
		font-size: 12px;
	}
}

.order-details .contract__block__description {
	color: #043458;
	font-size: 18px;
	line-height: 27px;
	padding-bottom: 10px;
}

.order-details .contract__block__description.text-description {
	padding-bottom: 3px;
	margin-top: -30px;
}

@media(max-width:767px) {
	.order-details .contract__block__description.text-description {
		margin-top: -19px;
	}
}

@media(max-width:767px) {
	.order-details .contract__block__description {
		font-size: 12px;
		line-height: 17px;
		margin-top: -15px;
		padding-bottom: 4px;
	}
}

@media(max-width:767px) {
	.order-details .contract__block .container {
		padding-left: 0;
		padding-right: 0;
		max-width: 260px;
	}
}

@media(max-width:767px) {
	.order-details .contract__block--bg {
		padding-top: 0;
	}
}

.order-details .contract__block .custom-checkbox .help-block {
	margin-left: 53px;
	margin-top: -22px;
}

@media(max-width:767px) {
	.order-details .contract__block .custom-checkbox .help-block {
		margin-left: 45px;
		margin-top: -19px;
	}
}

.ie8 .order-details .contract__block .custom-checkbox .help-block {
	margin-left: 20px;
	margin-top: -17px;
}

.order-details .contract .checkbox {
	padding-top: 14px;
	padding-bottom: 20px;
}

@media(max-width:767px) {
	.order-details .contract .checkbox {
		padding-top: 15px;
		padding-bottom: 23px;
	}
}

.order-details .contract .checkbox a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.order-details .contract .checkbox a:hover {
		color: #043458;
		border-color: #043458;
	}
}

@media(max-width:767px) {
	.order-details .contract .checkbox .control-label {
		padding-left: 46px;
		line-height: 15px !important;
	}

	.order-details .contract .checkbox .control-label:before {
		position: absolute;
		top: 1px;
		left: 0;
		height: 30px;
		width: 30px;
	}
}

.order-details .edit-account__form {
	padding: 0;
}

.order-details .edit-account__form__block .wrap-radio {
	margin-top: 0;
}

.order-details .edit-account__form__block .wrap-radio .control-label {
	color: #043458;
}

.order-details .edit-account__form__block .wrap-radio .radio-buttons {
	margin-top: 3px;
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .wrap-radio .order-radio-buttons .readonly-input {
		padding-top: 3px;
	}
}

.order-details .edit-account__form__block .order-details .contract__block .radio label {
	line-height: 38px;
}

.order-details .wrap-radio.invoice .radio-buttons,
.order-details .wrap-radio.invoice .control-label {
	float: left;
}

.order-details .wrap-radio.invoice .control-label {
	font-weight: bold;
	color: #043458;
	line-height: 33px;
	width: 240px;
}

@media(max-width:767px) {
	.order-details .wrap-radio.invoice .control-label {
		font-size: 12px;
		line-height: 30px;
		width: 197px;
	}
}

.order-details .wrap-radio.invoice .radio-buttons {
	width: calc(100% - 240px);
	width: 100%\0;
}

@media(max-width:767px) {
	.order-details .wrap-radio.invoice .radio-buttons {
		width: 100%;
	}
}

.order-details .wrap-radio.invoice .radio-buttons .radio+.radio,
.order-details .wrap-radio.invoice .radio-buttons .checkbox+.checkbox {
	margin-top: 0;
}

.order-details .wrap-radio.invoice .radio-buttons .custom-radio {
	float: left\0;
	margin-top: 0\0 !important;
}

@media(max-width:767px) {

	.order-details .contract__block .invoice .radio label,
	.order-details .contract__block .invoice .checkbox label {
		line-height: 30px;
	}
}

.order-details .contract__block .radio label,
.order-details .contract__block .checkbox label {
	line-height: 33px;
}

@media(max-width:767px) {

	.order-details .contract__block .radio label,
	.order-details .contract__block .checkbox label {
		line-height: 26px;
	}
}

.order-details .contract__block .custom-checkbox input[type="checkbox"]+input[type="hidden"]+label:before {
	margin-right: 15px;
	background-clip: padding-box;
}

@media(max-width:767px) {
	.order-details .contract__block .checkbox .control-label {
		font-size: 12px;
		line-height: 26px;
	}
}

.order-details .tax-info {
	padding-bottom: 3px;
}

@media(max-width:767px) {
	.order-details .tax-info {
		padding-bottom: 0;
		margin-top: -16px;
		margin-bottom: -14px;
	}
}

.order-details .tax-info .radio-buttons>label {
	width: 219px;
	float: left;
	margin-right: 2px;
	font-size: 18px;
	font-weight: bold;
	text-transform: none;
	line-height: 34px;
}

@media(max-width:767px) {
	.order-details .tax-info .radio-buttons>label {
		font-size: 12px;
		line-height: 30px;
		width: 175px;
	}
}

.order-details .tax-info .contract__block__title {
	padding-top: 0;
	margin-top: 18px;
	padding-bottom: 7px;
}

.order-details .tax-info .form-row:before,
.order-details .tax-info .form-row:after {
	content: " ";
	display: table;
}

.order-details .tax-info .form-row:after {
	clear: both;
}

.order-details .tax-info .form-row:before,
.order-details .tax-info .form-row:after {
	content: " ";
	display: table;
}

.order-details .tax-info .form-row:after {
	clear: both;
}

.order-details .tax-info .normalInvoice {
	padding-top: 2px;
}

.order-details .tax-info .normalInvoice .custom-radio:first-child input[type="radio"]+label {
	margin-left: 0;
}

.order-details .tax-info .normalInvoice .custom-radio input[type="radio"]+label {
	font-size: 18px;
	line-height: 28px;
	text-transform: capitalize;
}

@media(max-width:767px) {
	.order-details .tax-info .normalInvoice .custom-radio input[type="radio"]+label {
		font-size: 12px;
		line-height: 17px;
		margin-left: 5px;
	}
}

.order-details .tax-info .normalInvoice .custom-radio input[type="radio"]+label:before {
	width: 26px;
	height: 26px;
	margin-right: 7px;
	background-clip: padding-box;
}

@media(max-width:767px) {
	.order-details .tax-info .normalInvoice .custom-radio input[type="radio"]+label:before {
		width: 30px;
		height: 30px;
	}
}

.order-details .tax-info .normalInvoice .custom-radio input[type="radio"]+label:after {
	width: 14px;
	height: 14px;
	top: 6px;
	left: 6px;
}

@media(max-width:767px) {
	.order-details .tax-info .normalInvoice .custom-radio input[type="radio"]+label:after {
		width: 15px;
		height: 15px;
		top: 8px;
		left: 8px;
	}
}

.order-details .tax-info .normalInvoice .radio-buttons {
	padding-top: 3px;
}

@media(max-width:767px) {
	.order-details .tax-info .normalInvoice .radio-buttons {
		padding-top: 0;
	}
}

.order-details .tax-info .evoice-specs {
	margin-top: -18px;
	margin-bottom: -14px;
}

@media(max-width:767px) {
	.order-details .tax-info .evoice-specs {
		margin-top: -12px;
	}
}

.order-details .tax-info .companyInvoice {
	padding-bottom: 20px;
}

.order-details .tax-info .companyInvoice .form-group {
	margin-bottom: 5px;
}

.order-details .submit-btn {
	position: relative;
	z-index: 1;
	width: 136px;
	height: 136px;
	font-size: 14px;
	padding: 0 5px;
	vertical-align: middle;
	background: #ee2d42;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	border: 0;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	margin-top: 33px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -65px;
	bottom: -93px;
	margin-bottom: -135px;
	bottom: 40px;
}

@media(max-width:767px) {
	.order-details .submit-btn {
		font-size: 12px;
		width: 80px;
		height: 80px;
		margin-top: 24px;
		box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-moz-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-webkit-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-o-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
	}
}

.order-details .submit-btn:before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ee2d42;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.order-details .submit-btn:hover:before {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.order-details .submit-btn:hover:before {
		background: #ee2d42;
	}
}

.order-details .submit-btn:focus {
	cursor: default;
}

.order-details .submit-btn:focus:before {
	background: #ee2d42;
}

.order-details .submit-btn.disabled:before {
	background: #666666;
}

.order-details .submit-btn.disabled:hover:before {
	transform: scale(1);
}

.order-details .submit-btn span {
	margin-bottom: 10px;
	display: block;
}

@media(max-width:767px) {
	.order-details .submit-btn {
		margin-top: -25px;
		margin-bottom: -78px;
		margin-left: -40px;
	}
}

.order-details .submit-btn span {
	margin: 16px auto 12px;
}

@media(max-width:767px) {
	.order-details .submit-btn span {
		margin: 0 auto 5px;
	}
}

.ie .order-details .submit-btn:before,
.ie10 .order-details .submit-btn:before {
	display: none;
}

.order-details .submit-btn .button_hover_before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ee2d42;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.order-details .submit-btn:hover .button_hover_before {
	background: #eb5e6c;
}

@media(max-width:767px) {
	.order-details .edit-account__form__block:nth-child(even) .form-group {
		margin-bottom: 7px;
	}
}

.order-details .edit-account__form__block .wrap-name .has-error .help-block {
	display: none;
}

.order-details .edit-account__form__block .wrap-name .form-group .control-label {
	position: relative;
}

.order-details .edit-account__form__block .wrap-name .form-group .control-label .required-indicator {
	display: none;
}

.order-details .edit-account__form__block .checkout-address-1 .form-group .control-label .required-indicator {
	margin-left: -5px;
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .form-group .control-label span.label-description {
		padding-bottom: 3px;
		margin-top: -9px;
	}
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .form-group {
		margin-bottom: 17px;
		margin-top: 10px;
	}

	.order-details .edit-account__form__block .form-group:first-child {
		margin-top: 0;
	}
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .form-group .control-label.block {
		display: block;
		margin-top: 9px;
	}
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .wrap-radio {
		margin-bottom: 13px;
		margin-top: -17px;
		padding-bottom: 6px;
	}
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .wrap-radio .control-label {
		padding-top: 8px;
		line-height: 18px;
	}
}

.order-details .edit-account__form__block .textarea .form-group label {
	display: none !important;
}

.order-details .edit-account__form__block .textarea .help-block {
	text-align: left;
	font-size: 18px;
	margin-top: 1px;
	padding-bottom: 24px;
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .textarea .help-block {
		padding-bottom: 16px;
		font-size: 12px;
		clear: both;
		padding-top: 6px;
	}
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .textarea {
		margin-top: 7px;
	}
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .textarea .form-group textarea {
		height: 90px;
		margin-bottom: 2px;
	}
}

@media(max-width:767px) {
	.order-details .address-block .form-group:first-child {
		margin-bottom: 5px;
	}
}

.invoice__content {
	padding-top: 2px;
}

@media(max-width:767px) {
	.invoice__content .chosen-container .chosen-single {
		height: 30px;
	}
}

@media(max-width:767px) {
	.invoice__content {
		padding-top: 4px;
	}
}

.invoice__content .form-group:before,
.invoice__content .form-group:after {
	content: " ";
	display: table;
}

.invoice__content .form-group:after {
	clear: both;
}

.invoice__content .form-group:before,
.invoice__content .form-group:after {
	content: " ";
	display: table;
}

.invoice__content .form-group:after {
	clear: both;
}

.invoice__content .control-label {
	width: 242px;
	float: left;
	line-height: 33px;
	font-weight: bold;
	color: #043458;
}

@media(max-width:767px) {
	.invoice__content .control-label {
		font-size: 12px;
		line-height: 17px;
		float: none;
		width: 100%;
	}
}

@media(max-width:767px) {
	.invoice__content .readonly-input {
		padding-top: 5px;
	}
}

.invoice__content input.form-control,
.invoice__content .readonly-input,
.invoice__content .radio-buttons,
.invoice__content .control {
	width: calc(100% - 242px);
	float: left;
	max-width: 301px;
	width: 301px\0;
}

.invoice__content input.form-control:before,
.invoice__content .readonly-input:before,
.invoice__content .radio-buttons:before,
.invoice__content .control:before,
.invoice__content input.form-control:after,
.invoice__content .readonly-input:after,
.invoice__content .radio-buttons:after,
.invoice__content .control:after {
	content: " ";
	display: table;
}

.invoice__content input.form-control:after,
.invoice__content .readonly-input:after,
.invoice__content .radio-buttons:after,
.invoice__content .control:after {
	clear: both;
}

.invoice__content input.form-control:before,
.invoice__content .readonly-input:before,
.invoice__content .radio-buttons:before,
.invoice__content .control:before,
.invoice__content input.form-control:after,
.invoice__content .readonly-input:after,
.invoice__content .radio-buttons:after,
.invoice__content .control:after {
	content: " ";
	display: table;
}

.invoice__content input.form-control:after,
.invoice__content .readonly-input:after,
.invoice__content .radio-buttons:after,
.invoice__content .control:after {
	clear: both;
}

@media(max-width:767px) {

	.invoice__content input.form-control,
	.invoice__content .readonly-input,
	.invoice__content .radio-buttons,
	.invoice__content .control {
		width: 100%;
		float: none;
	}
}

.invoice__content input.form-control {
	height: 33px;
}

@media(max-width:767px) {
	.invoice__content input.form-control {
		height: 30px;
	}
}

.invoice__content .radio {
	float: left;
	margin-left: 15px;
	margin-top: 0;
}

@media(max-width:767px) {
	.invoice__content .radio {
		width: 50%;
		margin-left: 0;
	}
}

.invoice__content .radio:first-child {
	margin-left: 0;
}

.invoice__content .radio label {
	text-transform: none;
}

@media(max-width:767px) {
	.invoice__content .radio label {
		font-size: 12px;
		line-height: 26px !important;
	}
}

.invoice__content .wrap-name {
	max-width: 460px;
}

.invoice__content .wrap-name .form-group input[type="text"] {
	font-size: 18px;
	color: #333;
	letter-spacing: -1px;
	padding: 0 10px;
}

@media(max-width:767px) {
	.invoice__content .wrap-name .form-group input[type="text"] {
		font-size: 12px;
		line-height: 17px;
		height: 30px;
	}
}

.invoice__content .wrap-name .form-group:first-child input[type="text"] {
	margin-left: 0;
}

@media(max-width:767px) {
	.invoice__content .wrap-name .form-group:nth-child(2) {
		top: 23px;
	}
}

.invoice__content input.form-control,
.invoice__content .readonly-input {
	font-size: 18px;
	line-height: 28px;
	color: #043458;
}

@media(max-width:767px) {

	.invoice__content input.form-control,
	.invoice__content .readonly-input {
		font-size: 12px;
		line-height: 17px;
	}
}

.invoice__text {
	margin-top: -4px;
	margin-bottom: 4px;
	color: #043458;
	max-width: 450px;
}

.invoice__text a {
	border-bottom: 1px solid #043458;
}

.invoice__text a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

@media(max-width:767px) {
	.invoice__text a:hover {
		color: #043458;
		border-color: #043458;
	}
}

@media(max-width:767px) {
	.invoice__text br {
		display: none;
	}
}

.payment .main-content {
	overflow: visible;
}

.payment .back-btn {
	font-weight: bold;
	border-bottom: 1px solid #043458;
	line-height: 18px;
	margin-top: 38px;
	display: inline-block;
	margin-left: 20px;
}

@media(max-width:767px) {
	.payment .back-btn {
		line-height: 15px;
		margin-top: 28px;
		margin-left: 30px;
	}
}

.payment .back-btn:hover {
	color: #0082a9;
	border-color: #0082a9;
}

.payment .checkout-headline {
	font-size: 50px;
	font-weight: bold;
	line-height: 80px;
	padding: 42px 0 0 0;
}

@media(max-width:767px) {
	.payment .checkout-headline {
		font-size: 30px;
		line-height: 35px;
		padding: 28px 30px 0;
	}
}

.payment .order-details__steps {
	padding-top: 29px;
}

@media(max-width:767px) {
	.payment .order-details__steps {
		padding-top: 25px;
	}
}

.payment.contract {
	padding-bottom: 231px;
}

@media(max-width:767px) {
	.payment.contract {
		padding-bottom: 105px;
	}
}

.payment .contract__block {
	padding: 61px 60px 0;
	margin-top: 35px;
	left: -4px;
}

@media(max-width:767px) {
	.payment .contract__block {
		padding: 10px 0 57px;
		left: 0;
	}
}

.payment .contract__block .checkout-next {
	position: relative;
	z-index: 1;
	width: 136px;
	height: 136px;
	font-size: 14px;
	padding: 0 5px;
	vertical-align: middle;
	background: #ee2d42;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	border: 0;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	margin-top: 33px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	left: 50%;
	margin-left: -65px;
	bottom: -93px;
	position: absolute;
	bottom: -108px;
	left: 50.5%;
	margin-left: -73px;
}

@media(max-width:767px) {
	.payment .contract__block .checkout-next {
		font-size: 12px;
		width: 80px;
		height: 80px;
		margin-top: 24px;
		box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-moz-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-webkit-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
		-o-box-shadow: 0px 9px 12px 5px rgba(238, 45, 66, 0.48);
	}
}

.payment .contract__block .checkout-next:before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ee2d42;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.payment .contract__block .checkout-next:hover:before {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.payment .contract__block .checkout-next:hover:before {
		background: #ee2d42;
	}
}

.payment .contract__block .checkout-next:focus {
	cursor: default;
}

.payment .contract__block .checkout-next:focus:before {
	background: #ee2d42;
}

.payment .contract__block .checkout-next.disabled:before {
	background: #666666;
}

.payment .contract__block .checkout-next.disabled:hover:before {
	transform: scale(1);
}

.payment .contract__block .checkout-next span {
	margin-bottom: 10px;
	display: block;
}

@media(max-width:767px) {
	.payment .contract__block .checkout-next {
		bottom: -58px;
		margin-left: -44px;
	}
}

.payment .contract__block .checkout-next span {
	margin: 8px auto 6px;
}

@media(max-width:767px) {
	.payment .contract__block .checkout-next span {
		margin: -3px auto 5px;
	}
}

.ie .payment .contract__block .checkout-next:before {
	display: none;
}

.payment .contract__block .checkout-next .button_hover_before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ee2d42;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.payment .contract__block .checkout-next:hover .button_hover_before {
	background: #eb5e6c;
}

.payment__option {
	margin: 0 -10px;
	padding: 0 0 39px 0;
}

.payment__option:before,
.payment__option:after {
	content: " ";
	display: table;
}

.payment__option:after {
	clear: both;
}

.payment__option:before,
.payment__option:after {
	content: " ";
	display: table;
}

.payment__option:after {
	clear: both;
}

@media(max-width:767px) {
	.payment__option {
		margin: 0;
		padding-bottom: 4px;
	}
}

.payment__option__border {
	border: 3px solid #fff;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
	position: relative;
	cursor: pointer;
	height: 150px;
	width: 210px;
}

@media(max-width:767px) {
	.payment__option__border {
		width: 100%;
		height: auto;
		padding: 22px 0 17px;
		border-width: 2px;
	}

	.payment__option__border.antpay,
	.payment__option__border.antmobilepay,
	.payment__option__border.baiduloan {
		padding: 9px 0 8px;
	}
}

.payment__option__border:after {
	content: "";
	position: absolute;
	bottom: 7px;
	left: 50%;
	margin-left: -5px;
	background: url(../_ui/responsive/theme-alpha/img/valid-tick.png) 0 0 no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 25px;
	display: none;
}

@media(max-width:767px) {
	.payment__option__border:after {
		background-size: 23px auto;
		right: 3px;
		left: auto;
		top: 50%;
		margin-top: -10px;
		margin-left: 0;
	}
}

.payment__option__border .payment__img__text {
	text-align: center;
	font-size: 14px;
	color: #043458;
	position: absolute;
	left: 0;
	bottom: 29px;
	margin: 0;
	width: 100%;
}

.payment__option__border .payment__img__text.error {
	color: #ff0000;
}

@media(max-width:767px) {
	.payment__option__border .payment__img__text {
		font-size: 12px;
		position: static;
		margin-top: 4px;
	}
}

.payment__option__item {
	float: left;
	width: 210px;
	margin: 0 10px;
	text-align: center;
	position: relative;
}

@media(max-width:767px) {
	.payment__option__item {
		width: 260px;
	}
}

.payment__option__item label {
	vertical-align: top;
}

@media(max-width:767px) {
	.payment__option__item label {
		position: static;
		vertical-align: top;
		margin-bottom: 0;
		display: block;
	}
}

.payment__option__item label input[type="radio"].paymentMethod {
	opacity: 0;
	filter: alpha(opacity=0);
	width: 100%;
	height: 100%;
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}

@media(max-width:767px) {
	.payment__option__item label input[type="radio"].paymentMethod {
		display: none;
	}
}

.payment__option__item label img {
	max-width: 139px;
	z-index: 0;
	display: inline-block;
	vertical-align: middle;
}

@media(max-width:767px) {
	.payment__option__item label img {
		display: block;
		margin: auto;
		left: 0;
	}
}

.payment__option__item label .helper {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

@media(max-width:767px) {
	.payment__option__item label .helper {
		display: none;
	}
}

.payment__option__item:hover .payment__option__border {
	border-color: #436781;
}

@media(max-width:767px) {
	.payment__option__item {
		margin: 13px auto 0;
		height: auto;
		float: none;
	}

	.payment__option__item:first-child {
		margin-top: 0;
	}

	.payment__option__item img {
		max-height: 32px;
	}
}

.payment__option__item.active .payment__option__border {
	background: #fff;
	border-color: #fff;
}

.payment__option__item.active .payment__option__border:after {
	display: block;
}

.ie8 .payment__option__item.active .payment__option__border:after {
	display: none;
}

.payment__option__item:before {
	content: "";
	height: 100%;
	vertical-align: middle;
	display: inline-block;
}

@media(max-width:767px) {
	.payment__option__item:before {
		display: none;
	}
}

.payment__option__item img {
	max-width: 100%;
	vertical-align: middle;
}

.payment__option__text {
	margin-top: 15px;
}

@media(max-width:767px) {
	.payment__option__text {
		position: static;
		padding-left: 0;
		padding-right: 0;
		margin: auto;
		color: #043458;
		font-size: 12px;
		line-height: 17px;
		margin-top: 12px;
		padding-bottom: 3px;
		font-weight: normal;
		text-transform: none;
	}

	.payment__option__text b {
		font-weight: bold;
	}
}

.payment__option__text ul {
	list-style: none;
}

@media(max-width:767px) {
	.payment__option #antpay {
		display: none;
	}
}

.payment__option #antmobilepay {
	display: none;
}

@media(max-width:767px) {
	.payment__option #antmobilepay {
		display: block;
	}
}

.payment .antpay-option {
	padding: 0;
	display: none;
}

.payment .antpay-option .antpay__title {
	font-weight: bold;
	font-size: 13px;
	margin: -7px 0 0 0;
	padding-bottom: 9px;
	color: #043458;
}

@media(max-width:767px) {
	.payment .antpay-option .antpay__title {
		margin-top: -3px;
		padding-bottom: 13px;
	}
}

.payment .antpay-option ul {
	list-style: none;
	padding: 0;
}

.payment .antpay-option ul li {
	width: 100%;
	border: 2px solid #fff;
	margin-top: -2px;
	position: relative;
	z-index: 0;
	cursor: pointer;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
}

.payment .antpay-option ul li:hover {
	border-color: #043458;
	z-index: 10;
}

.payment .antpay-option ul li.active {
	background: #fff;
	border-color: #fff;
}

.payment .antpay-option ul li span {
	padding: 15px 10px 16px;
	color: #043458;
	text-align: center;
	display: block;
	font-weight: bold;
}

@media(max-width:767px) {
	.payment .antpay-option ul li span {
		font-size: 20px;
		padding: 18px 10px 21px;
	}
}

.payment .antpay-option ul li input[type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
	margin: 0;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}

.confirmation {
	color: #043458;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	padding-top: 44px;
}

@media(max-width:767px) {
	.confirmation {
		font-size: 12px;
		line-height: 17px;
		padding-top: 7px;
	}
}

.confirmation .container {
	width: 100%;
}

@media(max-width:767px) {
	.confirmation .container {
		max-width: 260px;
		padding: 0;
	}
}

.confirmation .contract__block {
	margin-top: 34px;
	padding-top: 33px;
}

@media(max-width:767px) {
	.confirmation .contract__block {
		padding-top: 0;
		margin-top: 28px;
	}
}

.confirmation .checkout-headline {
	font-size: 50px;
	font-weight: bold;
	line-height: 80px;
	padding: 42px 0 0 0;
	text-align: left;
}

@media(max-width:767px) {
	.confirmation .checkout-headline {
		font-size: 30px;
		line-height: 35px;
		padding: 28px 30px 0;
	}
}

.confirmation__title {
	font-size: 30px;
	line-height: 40px;
	font-weight: bold;
	padding-top: 4px;
}

@media(max-width:767px) {
	.confirmation__title {
		font-size: 20px;
		line-height: 25px;
	}
}

.confirmation__number {
	line-height: 32px;
}

@media(max-width:767px) {
	.confirmation__number {
		line-height: 22px;
	}
}

.confirmation__number span {
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
}

@media(max-width:767px) {
	.confirmation__number span {
		font-size: 20px;
		line-height: 25px;
	}
}

.confirmation__description {
	padding-top: 26px;
}

@media(max-width:767px) {
	.confirmation__description {
		padding-top: 14px;
	}
}

.confirmation__description a {
	border-bottom: 1px solid #043458;
}

.confirmation__description a:hover {
	border-color: #0082a9;
}

.confirmation__text {
	color: #043458;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	max-width: 695px;
	margin: 0 auto;
	padding: 78px 30px 0;
	margin-bottom: -64px;
}

@media(max-width:767px) {
	.confirmation__text {
		padding-top: 38px;
		font-size: 12px;
		line-height: 17px;
		margin-bottom: -21px;
	}
}

.confirmation__text__title {
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
}

@media(max-width:767px) {
	.confirmation__text__title {
		font-size: 20px;
		line-height: 25px;
		max-width: 200px;
		margin: auto;
	}
}

@media(max-width:767px) {
	.confirmation__text__description {
		padding-top: 5px;
		max-width: 250px;
		margin: auto;
	}
}

.confirmation__text__checkout {
	padding-top: 19px;
}

@media(max-width:767px) {
	.confirmation__text__checkout {
		padding-top: 13px;
	}
}

.confirmation__text__checkout a {
	color: #ee2d42;
	border-bottom: 1px solid #ee2d42;
	font-weight: bold;
}

.confirmation__text__checkout a:hover {
	color: #0082a9;
	border-color: #0082a9;
}

.confirmation__email {
	text-align: center;
	padding-top: 2px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.confirmation__email {
		padding-top: 4px;
		margin-bottom: 3px;
	}
}

.confirmation__email #guestForm .form-group {
	width: 305px;
	margin: 0 -5px;
	display: inline-block;
	vertical-align: top;
}

.ie8 .confirmation__email #guestForm .form-group .form-control {
	line-height: 34px;
}

@media(max-width:767px) {
	.confirmation__email #guestForm .form-group {
		width: 203px;
	}
}

.confirmation__email #guestForm .form-group .control-label {
	display: none;
}

.confirmation__email input#email {
	height: 33px;
	background: #fff;
	border: none;
	width: 100%;
	padding: 0 12px;
}

@media(max-width:767px) {
	.confirmation__email input#email {
		height: 30px;
	}
}

.confirmation__email input#sendEmail {
	height: 33px;
	width: 74px;
	border: none;
	background: #043458;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
	vertical-align: top;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
}

@media(min-width:1024px) {
	.confirmation__email input#sendEmail:hover {
		background: #0082a9;
	}
}

@media(max-width:767px) {
	.confirmation__email input#sendEmail {
		height: 30px;
		width: 57px;
		font-size: 12px;
	}
}

.confirmation__email .success-message {
	color: #043458;
	margin-bottom: -20px;
}

.confirmation__email .error-message {
	color: #ff0000;
	margin: 8px auto 0;
	max-width: 384px;
	text-align: left;
}

@media(max-width:767px) {
	.confirmation__email .error-message {
		margin-top: 5px;
	}
}

@media(max-width:767px) {
	.delivery_method-list #alipay {
		display: none;
	}
}

.delivery_method-list #alipaymobilepay {
	display: none;
}

@media(max-width:767px) {
	.delivery_method-list #alipaymobilepay {
		display: block;
	}
}

.page-multiStepCheckoutSummaryPage .fancybox-skin:after {
	height: 83px;
	background: url(../_ui/responsive/theme-alpha/img/bg-popup-payment.png) center bottom no-repeat;
}

@media(max-width:767px) {
	.page-multiStepCheckoutSummaryPage .fancybox-skin:after {
		height: 41px;
		background-size: auto 41px;
	}
}

.page-multiStepCheckoutSummaryPage .fancybox-outer {
	padding-top: 0;
	padding-bottom: 0;
}

@media(max-width:767px) {
	.page-multiStepCheckoutSummaryPage .fancybox-outer {
		padding-top: 0;
	}
}

@media(max-width:767px) {
	.page-multiStepCheckoutSummaryPage .fancybox-close {
		top: 15px;
		right: 12px;
	}
}

.QRCode {
	width: 1022px;
	padding-top: 65px;
}

@media(max-width:767px) {
	.QRCode {
		padding-top: 57px;
		width: 260px;
	}
}

.QRCode .qr-box {
	width: 330px;
	margin: auto;
	background: #fff;
	padding-top: 21px;
	padding-bottom: 39px;
}

@media(max-width:767px) {
	.QRCode .qr-box {
		width: 200px;
		padding-top: 13px;
		padding-bottom: 11px;
	}
}

.QRCode .qr-border {
	background: #f4f4f4;
	border: 1px solid #d4d4d4;
	width: 250px;
	margin: 20px auto 0;
}

@media(max-width:767px) {
	.QRCode .qr-border {
		width: 178px;
	}
}

.QRCode .qr-border img {
	width: 100%;
}

.QRCode .qr-title {
	font-size: 18px;
	color: #043458;
	font-weight: bold;
}

@media(max-width:767px) {
	.QRCode .qr-title {
		font-size: 12px;
		line-height: 17px;
	}
}

.QRCode .qr-bot {
	font-size: 12px;
	position: relative;
	margin-left: 19px;
	padding: 9px 0 5px 15px;
}

@media(max-width:767px) {
	.QRCode .qr-bot {
		font-size: 9px;
		margin-left: 12px;
		padding: 8px 0 0 12px;
		line-height: 22px;
	}
}

.QRCode .qr-bot:before {
	content: '';
	background-image: url(../picture/sprites_img.png);
	background-position: -1833px -267px;
	width: 12px;
	height: 12px;
	display: block;
	position: absolute;
	top: 17px;
	left: 0;
}

@media(max-width:767px) {
	.QRCode .qr-bot:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/qr-clock-small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 10px;
		height: 11px;
		top: 13px;
	}
}

.popup-hide {
	display: none;
}

.blockUI.blockOverlay,
.blockUI.blockMsg.blockElement {
	opacity: 0 !important;
}

.create_update_payment_form {
	position: static !important;
}

@media(max-width:767px) {
	#wechatqr {
		display: none;
	}
}

@media(max-width:767px) {
	html:not(.ie8) .order-details .contract .checkbox .control-label {
		padding-left: 44px;
	}

	html:not(.ie8) .order-details .contract .checkbox .control-label:before {
		position: absolute !important;
		top: 50%;
		margin-top: -16px;
		left: 0;
		height: 30px !important;
		width: 30px !important;
	}
}

.ie8 .pageLabel-multiStepCheckoutSummary .contract__block--bg:after,
.ie8 #wsiCheckoutForm .contract__block--bg:after {
	height: 55px;
	bottom: -55px;
}

.ie8 .order-details .contract .checkbox {
	padding-bottom: 5px;
}

.ie8 .order-details .normalInvoice .custom-radio label {
	white-space: nowrap;
}

.ie8 .order-details .tax-info .radio-buttons .custom-radio {
	margin-right: 10px;
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .wrap-radio .readonly-input {
		clear: both;
	}
}

.order-details .edit-account__form__block .textarea textarea {
	height: 69px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.order-details .edit-account__form__block .name-description {
		padding-bottom: 3px;
	}
}

@media(max-width:767px) {
	.order-details .checkout-chinese-name {
		margin-top: -8px;
	}
}

.order-details .checkout-chinese-name .help-block {
	padding-top: 5px;
}

@media(max-width:767px) {
	.order-details .checkout-chinese-name .help-block {
		padding-top: 0;
		padding-bottom: 10px;
	}
}

@media(max-width:767px) {
	.order-details .checkout-chinese-name .wrap-name .form-group {
		top: 51px;
	}
}

.order-details .checkout-chinese-name .readonly-input {
	float: left;
	margin: 0;
	padding-bottom: 28px;
}

@media(max-width:767px) {
	.order-details .checkout-chinese-name .readonly-input {
		padding-bottom: 18px;
	}
}

@media(max-width:767px) {
	.order-details .checkout-english-name {
		margin-top: -4px;
	}
}

@media(max-width:767px) {
	.order-details .checkout-english-name .help-block {
		margin-bottom: -8px;
		margin-top: 7px;
	}
}

@media(max-width:767px) {
	.order-details .checkout-english-name .label-description {
		padding-bottom: 2px !important;
	}
}

.order-details .checkout-email-address {
	padding-top: 10px;
}

@media(max-width:767px) {
	.order-details .checkout-email-address {
		padding-top: 1px;
	}
}

@media(max-width:767px) {
	.order-details .checkout-email-address .readonly-input {
		padding-top: 3px;
	}
}

.order-details .checkout-mobile-number {
	padding-top: 3px;
}

.order-details .checkout-mobile-number .help-block {
	padding-bottom: 14px;
	margin-top: 8px;
}

.order-details .checkout-id-number {
	margin-top: -8px;
}

.order-details .checkout-id-number .help-block {
	padding-bottom: 10px;
}

@media(max-width:767px) {
	.order-details .checkout-id-number .help-block {
		padding-bottom: 3px;
		margin-top: 7px;
	}
}

@media(max-width:767px) {
	.order-details .checkout-id-number .readonly-input {
		padding-bottom: 10px;
	}
}

@media(max-width:767px) {
	.order-details .wrap-radio .radio-buttons.hasOrders {
		width: 100%;
		float: none;
	}
}

@media(max-width:767px) {
	.order-details .wrap-radio .radio-buttons .readonly-input {
		padding-top: 6px;
	}
}

.order-details .wrap-radio .radio-buttons.has-error .custom-radio label {
	border: 2px solid #ff0000;
}

.ie8 .order-details .wrap-radio .radio-buttons.has-error .custom-radio label {
	border: none;
}

.order-details .wrap-radio .help-block {
	width: 220px;
	float: right;
	margin-top: -2px;
}

@media(max-width:767px) {
	.order-details .wrap-radio .help-block {
		width: 100%;
		float: none;
		margin-top: 0;
		padding-top: 5px;
		clear: both;
		padding-bottom: 0;
		margin-bottom: -4px;
	}
}

.order-details .checkout-learning-goal {
	margin-top: -6px;
}

@media(max-width:767px) {
	.order-details .checkout-learning-goal {
		margin-top: 0;
	}
}

.order-details .personalInvoice .wrap-name .help-block {
	display: none;
}

.order-details .personalInvoice .invoice-name-error-message {
	padding-left: 241px;
	margin-top: -33px;
	padding-bottom: 28px;
}

@media(max-width:767px) {
	.order-details .personalInvoice .invoice-name-error-message {
		padding-left: 0;
		margin-top: -22px;
		padding-bottom: 25px;
	}
}

.order-details .companyInvoice .help-block {
	clear: both;
	padding: 3px 0 12px 241px;
}

@media(max-width:767px) {
	.order-details .companyInvoice .help-block {
		margin-top: 5px;
		margin-bottom: -10px;
		padding-left: 0;
	}
}

.order-details .companyInvoice .tax-code .help-block {
	padding-bottom: 2px;
}

.order-details .help-block:before {
	display: none;
}

.order-details .checkout-address-2 {
	margin-top: -15px;
}

@media(max-width:767px) {
	.order-details .checkout-address-2 {
		margin-top: 6px;
	}
}

.order-details .checkout-address-3 {
	margin-top: 10px;
}

@media(max-width:767px) {
	.order-details .checkout-address-3 {
		margin-top: 6px;
	}
}

.order-details .checkout-address-4 {
	margin-top: 10px;
}

@media(max-width:767px) {
	.order-details .checkout-address-4 {
		margin-top: 8px !important;
	}
}

.order-details .checkout-address-5 .help-block {
	margin-bottom: -19px;
}

@media(max-width:767px) {
	.order-details .checkout-address-5 .help-block {
		margin-bottom: -9px;
		margin-top: 8px;
	}
}

.order-details .address-error-message {
	margin-top: -2px;
	padding-bottom: 7px;
}

@media(max-width:767px) {
	.order-details .address-error-message {
		margin-top: -6px;
		padding-bottom: 4px;
		margin-bottom: 0;
	}
}

.success-coupon,
.error-coupon {
	font-size: 15px;
	font-style: italic;
}

@media(max-width:767px) {

	.success-coupon,
	.error-coupon {
		font-size: 11px;
	}
}

.error-coupon {
	color: #ff0000;
}

.success-coupon {
	color: #023356;
}

@media(min-device-width:768px) and (max-device-width:1280px) {
	.order-details__promo #applyVoucherForm .form-group .control-label {
		display: none;
	}
}

.order-details__promo #applyVoucherForm #js-voucher-code-text.error {
	border: 2px solid #ee2d42;
}

#continueBtnStep2.disabled {
	background: #333;
	box-shadow: 0px 18px 25px 10px rgba(102, 102, 102, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(102, 102, 102, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(102, 102, 102, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(102, 102, 102, 0.48);
}

@media(max-width:767px) {
	#continueBtnStep2.disabled {
		box-shadow: 0px 9px 12px 5px rgba(102, 102, 102, 0.48);
		-moz-box-shadow: 0px 9px 12px 5px rgba(102, 102, 102, 0.48);
		-webkit-box-shadow: 0px 9px 12px 5px rgba(102, 102, 102, 0.48);
		-o-box-shadow: 0px 9px 12px 5px rgba(102, 102, 102, 0.48);
	}
}

#continueBtnStep2.disabled .button_hover_before {
	background: #333;
	box-shadow: 0px 18px 25px 10px rgba(102, 102, 102, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(102, 102, 102, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(102, 102, 102, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(102, 102, 102, 0.48);
}

@media(max-width:767px) {
	#continueBtnStep2.disabled .button_hover_before {
		box-shadow: 0px 9px 12px 5px rgba(102, 102, 102, 0.48);
		-moz-box-shadow: 0px 9px 12px 5px rgba(102, 102, 102, 0.48);
		-webkit-box-shadow: 0px 9px 12px 5px rgba(102, 102, 102, 0.48);
		-o-box-shadow: 0px 9px 12px 5px rgba(102, 102, 102, 0.48);
	}
}

.learn {
	position: relative;
}

@media(max-width:767px) {
	.learn .container {
		padding: 0;
	}
}

@media(max-width:767px) {
	.learn .main-content {
		overflow: visible;
	}
}

.learn__img {
	position: absolute;
	top: 0;
	right: 6px;
	width: 100%;
	max-width: 695px;
}

@media(min-width:768px) and (max-width:1365px) {
	.learn__img {
		max-width: 600px;
	}
}

@media(max-width:767px) {
	.learn__img {
		max-width: 149px;
		right: 0;
	}
}

.learn__img img {
	width: 100%;
}

.learn__top {
	clear: both;
	max-width: 940px;
	margin: auto;
	min-height: 350px;
	padding-top: 40px;
}

@media(max-width:767px) {
	.learn__top {
		padding-top: 18px;
	}
}

.learn__top__title {
	font-weight: bold;
	color: #043458;
	max-width: 415px;
	font-size: 50px;
	line-height: 60px;
	margin-left: 35px;
}

@media(max-width:767px) {
	.learn__top__title {
		margin-left: 30px;
		max-width: 150px;
		font-size: 30px;
		line-height: 35px;
	}
}

.learn__top__description {
	max-width: 459px;
	line-height: 28px;
	margin-left: 35px;
}

@media(max-width:767px) {
	.learn__top__description {
		max-width: 150px;
		font-size: 12px;
		line-height: 17px;
		margin-left: 30px;
		padding-top: 10px;
		margin-bottom: 0;
	}
}

.learn__content {
	padding-bottom: 36px;
	margin: 143px auto 0;
	max-width: 940px;
	position: relative;
	left: -9px;
}

@media(max-width:767px) {
	.learn__content {
		left: 0;
		max-width: 320px;
		padding-left: 75px;
		padding-right: 30px;
		margin-top: 0;
	}
}

.learn__content__line {
	width: 190px;
	height: 100%;
	background: url(../_ui/responsive/theme-alpha/img/line.png) center 0 no-repeat;
	position: absolute;
	z-index: 0;
	top: 50px;
	left: 50%;
	margin-left: -85px;
}

@media(max-width:767px) {
	.learn__content__line {
		width: 5px;
		background: #c5c5c5;
		margin-left: 0;
		left: 38px;
		top: 0;
		overflow: hidden;
	}
}

.learn__content__line--active {
	position: absolute;
	top: 0;
	left: 0;
	width: 190px;
	height: 0;
	background: url(../_ui/responsive/theme-alpha/img/line-active.png) center 0 no-repeat;
}

@media(max-width:767px) {
	.learn__content__line--active {
		width: 5px;
		background: #ee2d42;
	}
}

.learn__content__dot {
	width: 34px;
	height: 34px;
	background: #c5c5c5;
	position: absolute;
	z-index: 10;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

@media(max-width:767px) {
	.learn__content__dot {
		display: none;
	}
}

.learn__content__dot:before {
	content: "";
	width: 18px;
	height: 18px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -9px 0 0 -9px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	display: none;
}

.learn__content__dot.active {
	background: #ee2d42;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
}

.learn__content__dot.active:before {
	display: block;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-sm-transition: 0.3s;
}

.learn__content__dot.odd .learn__content__number {
	background: #ee2d42;
	left: 100%;
	margin-left: 20px;
}

.learn__content__dot.odd .learn__content__number:before {
	right: 100%;
	margin-right: -1px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 10px solid #ee2d42;
}

.learn__content__dot.even .learn__content__number {
	background: #043458;
	right: 100%;
	margin-right: 20px;
}

.learn__content__dot.even .learn__content__number:before {
	left: 100%;
	margin-left: -1px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 10px solid #043458;
}

.learn__content__dot.item-1 {
	top: -5px;
	left: -12px;
}

.learn__content__dot.item-2 {
	top: 558px;
	right: 8px;
}

.learn__content__dot.item-3 {
	top: 1088px;
	left: 39px;
}

.learn__content__dot.item-4 {
	top: 1541px;
	left: 21px;
}

.learn__content__dot.item-5 {
	top: 1879px;
	right: 2px;
}

.learn__content__dot.item-6 {
	top: 2455px;
	left: 13px;
}

.learn__content__dot.item-7 {
	top: 2842px;
	left: 24px;
}

.learn__content__dot.item-8 {
	top: 3305px;
	right: -13px;
}

.learn__content__number {
	position: absolute;
	top: 50%;
	margin-top: -38px;
	width: 75px;
	height: 75px;
	text-align: center;
	font-size: 40px;
	color: #fff;
	line-height: 75px;
	font-weight: bold;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

.learn__content__number:before {
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -8px;
}

.learn__content__block {
	margin-top: -50px;
	margin-left: 42px;
	width: 100%;
	position: relative;
	z-index: 10;
}

@media(max-width:767px) {
	.learn__content__block {
		margin: 0;
	}
}

.learn__content__item:before,
.learn__content__item:after {
	content: " ";
	display: table;
}

.learn__content__item:after {
	clear: both;
}

.learn__content__item:before,
.learn__content__item:after {
	content: " ";
	display: table;
}

.learn__content__item:after {
	clear: both;
}

@media(max-width:767px) {
	.learn__content__item {
		height: auto !important;
	}
}

.learn__content__item.odd .learn__content__text {
	float: right;
}

@media(max-width:767px) {
	.learn__content__item.odd .learn__content__text {
		float: none;
	}
}

.learn__content__item.odd .learn__content__text .learn__content__title,
.learn__content__item.odd .learn__content__text .learn__content__subtitle {
	color: #ee2d42;
}

.learn__content__item.odd .learn__content__video,
.learn__content__item.odd .learn__content__img {
	float: left;
}

@media(max-width:767px) {

	.learn__content__item.odd .learn__content__video,
	.learn__content__item.odd .learn__content__img {
		float: none;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

.learn__content__item.odd .learn__content__title__count {
	background: #ee2d42;
}

.learn__content__item.odd .learn__content__title__count:before {
	border-left: 7px solid #ee2d42;
}

.learn__content__item.even .learn__content__text {
	float: left;
}

@media(max-width:767px) {
	.learn__content__item.even .learn__content__text {
		float: none;
	}
}

.learn__content__item.even .learn__content__text .learn__content__title,
.learn__content__item.even .learn__content__text .learn__content__subtitle {
	color: #043458;
}

.learn__content__item.even .learn__content__video,
.learn__content__item.even .learn__content__img {
	float: right;
}

@media(max-width:767px) {

	.learn__content__item.even .learn__content__video,
	.learn__content__item.even .learn__content__img {
		float: none;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

.learn__content__item.even .learn__content__title__count {
	background: #043458;
}

.learn__content__item.even .learn__content__title__count:before {
	border-left: 7px solid #043458;
}

.learn__content__item.item-1 {
	height: 560px;
}

.learn__content__item.item-1 .learn__content__img {
	margin-top: 134px;
}

.learn__content__item.item-2 {
	height: 534px;
}

.learn__content__item.item-2 .learn__content__img {
	margin-top: 52px;
	margin-right: 76px;
}

.learn__content__item.item-3 {
	height: 456px;
}

.learn__content__item.item-4 {
	height: 333px;
}

.learn__content__item.item-4 .learn__content__title {
	max-width: 223px;
}

.learn__content__item.item-4 .learn__content__img {
	margin-top: 13px;
	margin-right: 76px;
}

.learn__content__item.item-5 {
	height: 564px;
}

.learn__content__item.item-5 .learn__content__title {
	padding-left: 75px;
}

@media(max-width:767px) {
	.learn__content__item.item-5 .learn__content__title {
		padding-left: 0;
	}
}

.learn__content__item.item-6 {
	height: 421px;
}

.learn__content__item.item-6 .learn__content__text {
	max-width: 300px;
}

.learn__content__item.item-6 .learn__content__title {
	max-width: 250px;
}

.learn__content__item.item-6 .learn__content__img {
	margin-top: 46px;
	margin-right: 74px;
}

.learn__content__item.item-7 {
	height: 440px;
}

.learn__content__item.item-7 .learn__content__video {
	margin-top: 101px;
}

.learn__content__item.item-8 .learn__content__title {
	max-width: 380px;
}

@media(max-width:767px) {
	.learn__content__item:first-child .learn__content__title {
		margin-top: 0;
	}
}

.learn__content__item.item-8 {
	position: relative;
}

@media(max-width:767px) {
	.learn__content__item.item-8 {
		margin-bottom: -4px;
		padding-bottom: 4px;
	}

	.learn__content__item.item-8:before {
		content: '';
		position: absolute;
		top: 32px;
		left: -38px;
		width: 7px;
		height: 100%;
		background: #fff;
		display: block;
	}
}

.learn__content__video {
	width: 100%;
	max-width: 461px;
	margin-top: 128px;
}

@media(max-width:767px) {
	.learn__content__video {
		margin-top: 16px !important;
	}
}

.learn__content__video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.learn__content__img {
	width: 100%;
	max-width: 300px;
}

@media(max-width:767px) {
	.learn__content__img {
		max-width: 152px;
		margin: 21px auto 0 !important;
	}
}

.learn__content__img img {
	width: 100%;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

.learn__content__text {
	max-width: 380px;
	font-size: 18px;
	line-height: 28px;
}

@media(max-width:767px) {
	.learn__content__text {
		font-size: 12px;
		line-height: 17px;
	}
}

.learn__content__title {
	font-size: 30px;
	font-weight: bold;
	line-height: 40px;
	margin-bottom: 1px;
	max-width: 300px;
	position: relative;
}

@media(max-width:767px) {
	.learn__content__title {
		font-size: 20px;
		line-height: 25px;
		margin-top: 28px;
	}
}

.learn__content__title__count {
	display: none;
	width: 41px;
	height: 41px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	position: absolute;
	top: 50%;
	left: -55px;
	margin-top: -21px;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	line-height: 41px;
	text-align: center;
}

.learn__content__title__count:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	left: 100%;
	margin-left: -1px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

@media(max-width:767px) {
	.learn__content__title__count {
		display: block;
	}
}

.learn__content__subtitle {
	font-weight: bold;
	letter-spacing: -1px;
	padding-top: 18px;
}

@media(max-width:767px) {
	.learn__content__subtitle {
		letter-spacing: 0;
		padding-top: 9px;
	}
}

.learn__content__description {
	margin-top: -11px;
}

.learn__bottom {
	float: right;
	margin-top: -454px;
	margin-right: -13px;
	margin-bottom: -78px;
}

@media(max-width:767px) {
	.learn__bottom {
		margin: -40px 0 -60px 0;
	}
}

.language-zh .learn__content__item.item-3 {
	height: 475px;
}

.language-zh .learn__content__item.item-5 {
	height: 578px;
}

.language-zh .learn__content__item.item-6 {
	height: 388px;
}

video {
	width: 100%;
	cursor: pointer;
}

.video-container {
	position: relative;
}

.video-container .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	width: 62px;
	height: 62px;
	background: url(../_ui/responsive/theme-alpha/img/play-btn.png) 0 0 no-repeat;
	z-index: 10;
	opacity: 1;
}

@media(max-width:767px) {
	.video-container .play-btn {
		width: 36px;
		height: 36px;
		background-size: 100% 100%;
	}
}

.ie10 .video-container:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 10px;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: #fff;
}

.persona {
	position: relative;
}

.persona .slideshow_content {
	cursor: pointer;
	cursor: default\0;
}

.persona .slideshow_content .slideshow_text p {
	padding-top: 20px;
}

.persona .slideshow_content .video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}

.persona .slideshow_content .video-container .play-btn {
	top: 70%;
}

@media(max-width:767px) {
	.persona .slideshow_content .video-container .play-btn {
		top: 75%;
	}
}

.persona .slideshow_content .video-container video {
	background: #fff;
	vertical-align: top;
}

.persona .slideshow_content .container {
	position: relative;
	z-index: 10;
}

@media(min-width:1024px) {
	.persona .slideshow_content:hover .play-btn {
		opacity: 1;
		filter: alpha(opacity=100);
	}
}

.persona__story {
	max-width: 1036px;
	margin: auto;
	padding-top: 84px;
}

.persona__story:before,
.persona__story:after {
	content: " ";
	display: table;
}

.persona__story:after {
	clear: both;
}

.persona__story:before,
.persona__story:after {
	content: " ";
	display: table;
}

.persona__story:after {
	clear: both;
}

@media(max-width:767px) {
	.persona__story {
		padding-top: 18px;
	}
}

.persona__story__left {
	float: left;
	width: 57.5%;
	padding-left: 56px;
}

@media(max-width:767px) {
	.persona__story__left {
		padding-left: 30px;
		width: 196px;
	}
}

.persona__story__right {
	float: right;
	width: 42.5%;
	margin-top: -4px;
}

@media(max-width:767px) {
	.persona__story__right {
		width: 121px;
		margin-top: 72px;
	}
}

.persona__story__right img {
	max-width: 420px;
}

@media(max-width:767px) {
	.persona__story__right img {
		max-width: none;
		width: 123px;
	}
}

.persona__story__title {
	font-size: 70px;
	line-height: 80px;
	font-weight: bold;
	color: #043458;
}

.language-zh .persona__story__title {
	font-size: 60px;
	line-height: 70px;
}

@media(max-width:767px) {
	.persona__story__title {
		font-size: 24px;
		line-height: 40px;
		white-space: nowrap;
	}

	.language-zh .persona__story__title {
		font-size: 24px;
		line-height: 40px;
	}
}

.persona__story__description {
	padding-left: 43px;
	max-width: 460px;
	font-size: 16px;
	line-height: 24px;
	padding-top: 15px;
}

@media(max-width:767px) {
	.persona__story__description {
		font-size: 12px;
		line-height: 18px;
		padding-left: 0;
		padding-top: 4px;
	}
}

.persona__story__description p {
	margin: 0;
}

.persona__story__text {
	padding-top: 28px;
}

@media(max-width:767px) {
	.persona__story__text {
		padding-top: 23px;
	}
}

.persona__quote {
	padding-top: 70px;
}

.persona__quote:before,
.persona__quote:after {
	content: " ";
	display: table;
}

.persona__quote:after {
	clear: both;
}

.persona__quote:before,
.persona__quote:after {
	content: " ";
	display: table;
}

.persona__quote:after {
	clear: both;
}

@media(max-width:767px) {
	.persona__quote {
		padding-top: 116px;
	}
}

.persona__quote__left {
	width: 47%;
	float: right;
	padding-top: 11px;
}

@media(max-width:767px) {
	.persona__quote__left {
		display: none;
	}
}

.persona__quote__left img {
	max-width: 100%;
}

.persona__quote__right {
	width: 53%;
	float: right;
	padding-left: 110px;
	padding-right: 30px;
}

@media(max-width:767px) {
	.persona__quote__right {
		width: 100%;
		float: none;
		padding: 0;
	}

	.persona__quote__right img {
		width: 100%;
	}
}

.persona__quote__title {
	font-size: 40px;
	line-height: 50px;
	position: relative;
	font-weight: bold;
	text-align: center;
	color: #ee2d42;
	max-width: 470px;
	margin-top: 3px;
}

@media(max-width:767px) {
	.persona__quote__title {
		max-width: 232px;
		margin: auto;
		font-size: 20px;
		line-height: 25px;
		padding-bottom: 33px;
	}

	body.language-zh .persona__quote__title {
		font-size: 24px;
		line-height: 30px;
	}
}

.persona__quote__title:before {
	content: '';
	position: absolute;
	top: -51px;
	left: -75px;
	background-image: url(../picture/sprites_img.png);
	background-position: -1212px -414px;
	width: 73px;
	height: 62px;
}

@media(max-width:767px) {
	.persona__quote__title:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/quote-top-mb.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 37px;
		height: 31px;
		top: -27px;
		left: -36px;
	}
}

.persona__quote__title:after {
	content: '';
	position: absolute;
	bottom: -47px;
	right: -64px;
	background-image: url(../picture/sprites_img.png);
	background-position: -1727px -414px;
	width: 73px;
	height: 62px;
}

@media(max-width:767px) {
	.persona__quote__title:after {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/quote-bot-mb.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 37px;
		height: 31px;
		bottom: 10px;
		right: -37px;
	}
}

.persona__quote__description {
	max-width: 460px;
	padding-left: 15px;
	padding-top: 75px;
}

@media(min-width:1024px) {
	.language-en .persona__quote__description {
		font-size: 16px;
		line-height: 24px;
	}
}

@media(max-width:767px) {
	.persona__quote__description {
		max-width: 260px;
		margin: auto;
		padding-left: 0;
		padding-top: 16px;
	}
}

.persona__quote__description p {
	margin: 0;
}

.persona__program {
	max-width: 1127px;
	margin: auto;
	padding-top: 73px;
}

.persona__program:before,
.persona__program:after {
	content: " ";
	display: table;
}

.persona__program:after {
	clear: both;
}

.persona__program:before,
.persona__program:after {
	content: " ";
	display: table;
}

.persona__program:after {
	clear: both;
}

@media(max-width:767px) {
	.persona__program {
		padding-top: 13px;
	}
}

.persona__program__left {
	float: right;
	width: 53.5%;
	padding-left: 93px;
	padding-right: 30px;
}

@media(max-width:767px) {
	.persona__program__left {
		width: 100%;
		max-width: 260px;
		margin: auto;
		padding: 0;
		float: none;
		clear: both;
	}
}

.persona__program__right {
	float: right;
	width: 46.5%;
}

@media(max-width:767px) {
	.persona__program__right {
		padding-top: 104px;
		float: right;
		width: 214px;
	}
}

.persona__program__right img {
	max-width: 420px;
}

@media(max-width:767px) {
	.persona__program__right img {
		width: 215px;
		max-width: none;
	}
}

.persona__program__title {
	font-size: 50px;
	line-height: 60px;
	font-weight: bold;
	color: #043458;
	max-width: 350px;
	margin-top: 2px;
}

@media(max-width:767px) {
	.persona__program__title {
		max-width: 170px;
		font-size: 25px;
		line-height: 30px;
		padding-top: 16px;
	}
}

.persona__program__description {
	max-width: 420px;
	padding-top: 28px;
}

@media(min-width:1024px) {
	.language-en .persona__program__description {
		font-size: 16px;
		line-height: 24px;
	}
}

@media(max-width:767px) {
	.persona__program__description {
		padding-top: 8px;
	}
}

.persona__program__description p {
	margin: 0;
}

.persona__comment {
	margin-top: 79px;
	position: relative;
}

.persona__comment:before,
.persona__comment:after {
	content: " ";
	display: table;
}

.persona__comment:after {
	clear: both;
}

.persona__comment:before,
.persona__comment:after {
	content: " ";
	display: table;
}

.persona__comment:after {
	clear: both;
}

@media(max-width:767px) {
	.persona__comment {
		margin-top: 224px;
	}
}

.persona__comment__block {
	width: 740px;
	height: 740px;
	float: right;
	margin-right: 21px;
	border: 3px solid #ee2d42;
	position: relative;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
}

.ios11 .persona__comment__block {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='740' height='740'><path d='M2,370a368,368 0 1,0 736,0a368,368 0 1,0 -736,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.persona__comment__block {
		width: 720px;
		height: 720px;
		position: absolute;
		left: -50%;
		margin-left: 61px;
		border-width: 2px;
	}

	.ios11 .persona__comment__block {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='720' height='720'><path d='M2,360a358,358 0 1,0 716,0a358,358 0 1,0 -716,0' fill='none' stroke-width='2' stroke='#ee2d42'/></svg>") no-repeat;
	}
}

@media(max-width:480px) {
	.persona__comment__block {
		left: -40%;
	}
}

@media(max-width:320px) {
	.persona__comment__block {
		left: -50%;
	}
}

@media(max-width:767px) {
	.persona__comment__block .persona__comment__text {
		max-width: 172px;
		margin-left: -69px;
		margin-top: 61px;
	}
}

.persona__comment__text {
	width: 100%;
	max-width: 375px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	font-size: 16px;
	line-height: 24px;
	margin-left: 37px;
	margin-top: 6px;
}

@media(max-width:767px) {
	.persona__comment__text {
		font-size: 12px;
		line-height: 18px;
	}
}

.persona__comment__text p {
	margin: 0;
}

.persona__comment__left {
	width: 600px;
	height: 600px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	background: #ee2d42;
	position: absolute;
	top: -83px;
	left: -458px;
	color: #fff;
	z-index: 10;
}

@media(max-width:767px) {
	.persona__comment__left {
		width: 342px;
		height: 342px;
		top: -107px;
		left: 46px;
	}
}

.persona__comment__left .persona__comment__text {
	max-width: 407px;
	margin-left: 20px;
	margin-top: -14px;
}

@media(max-width:767px) {
	.persona__comment__left .persona__comment__text {
		max-width: 209px;
	}
}

.persona__comment__img {
	position: absolute;
	bottom: 51px;
	left: -184px;
	z-index: 20;
}

@media(max-width:767px) {
	.persona__comment__img {
		width: 109px;
		top: 178px;
		left: 87px;
	}

	.persona__comment__img.img-jenny {
		width: 185px;
		left: 12px;
	}
}

.persona__comment__title {
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
	margin: 0;
	padding-bottom: 20px;
}

@media(max-width:767px) {
	.persona__comment__title {
		font-size: 24px;
		line-height: 30px;
		margin-top: 18px;
		padding-bottom: 13px;
	}
}

.persona__comment__description {
	padding-left: 46px;
	line-height: 24px;
}

@media(max-width:767px) {
	.persona__comment__description {
		line-height: 18px;
		padding-left: 20px;
	}
}

.persona__bottom {
	position: relative;
	padding-top: 126px;
}

@media(max-width:767px) {
	.persona__bottom {
		padding-top: 779px;
	}
}

.persona__bottom:before {
	content: '';
	width: 1785px;
	height: 1785px;
	border: 3px solid #043458;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	position: absolute;
	top: 19px;
	right: 77px;
	z-index: -1;
}

.ios11 .persona__bottom:before {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1785' height='1785'><path d='M2,892.5a890.5,890.5 0 1,0 1781,0a890.5,890.5 0 1,0 -1781,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") no-repeat;
}

@media(max-width:767px) {
	.persona__bottom:before {
		display: none;
	}
}

.persona__bottom__left {
	width: 56%;
	float: right;
	padding-left: 30px;
	padding-right: 140px;
	max-width: 518px;
}

@media(max-width:767px) {
	.persona__bottom__left {
		width: 100%;
		padding: 0;
		float: none;
		max-width: 256px;
		margin: auto;
	}
}

.persona__bottom__right {
	width: 44%;
	float: right;
}

@media(max-width:767px) {
	.persona__bottom__right {
		width: 100%;
		padding: 0;
		float: none;
	}
}

.persona__bottom__right img {
	max-width: 100%;
}

.persona__bottom__title {
	font-size: 50px;
	line-height: 60px;
	font-weight: bold;
	color: #043458;
	text-align: center;
	padding-top: 3px;
	position: relative;
	z-index: 10;
}

@media(min-width:1024px) {
	body.language-zh .persona__bottom__title {
		font-size: 40px;
		line-height: 50px;
	}
}

@media(max-width:767px) {
	.persona__bottom__title {
		font-size: 24px;
		line-height: 30px;
		max-width: 168px;
		margin: 46px auto 0;
	}
}

.persona__bottom__title:before {
	content: '';
	position: absolute;
	top: -53px;
	left: -101px;
	background-image: url(../picture/sprites_img.png);
	background-position: -1315px -414px;
	width: 73px;
	height: 62px;
}

@media(max-width:767px) {
	.persona__bottom__title:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/quote-top-blue-mb.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 37px;
		height: 31px;
		top: -25px;
		left: -39px;
	}
}

.persona__bottom__title:after {
	content: '';
	position: absolute;
	bottom: -50px;
	right: -56px;
	background-image: url(../picture/sprites_img.png);
	background-position: -1418px -414px;
	width: 73px;
	height: 62px;
}

@media(max-width:767px) {
	.persona__bottom__title:after {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/quote-bot-blue-mb.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 37px;
		height: 31px;
		bottom: -9px;
		right: -39px;
	}
}

.persona__bottom__description {
	padding-top: 72px;
}

@media(min-width:1024px) {
	.language-en .persona__bottom__description {
		font-size: 16px;
		line-height: 24px;
	}
}

@media(max-width:767px) {
	.persona__bottom__description {
		padding-top: 27px;
		padding-bottom: 110px;
		position: relative;
		z-index: 0;
	}

	.persona__bottom__description:before {
		content: '';
		width: 502px;
		height: 502px;
		border-radius: 100%;
		-moz-border-radius: 100%;
		-webkit-border-radius: 100%;
		-o-border-radius: 100%;
		border: 2px solid #043458;
		border-top: 2px solid transparent;
		position: absolute;
		bottom: 0;
		left: 50%;
		margin-left: -251px;
	}

	.ios11 .persona__bottom__description:before {
		border: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-o-border-radius: 0;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='502' height='502'><path d='M1,251 a1,1 0 0,0 500,0' fill='none' stroke-width='2' stroke='#043458'/></svg>") center bottom no-repeat;
	}
}

.persona__bottom__description p {
	margin: 0;
}

.persona__bottom__others {
	padding: 75px 128px 112px;
}

.persona__bottom__others:before,
.persona__bottom__others:after {
	content: " ";
	display: table;
}

.persona__bottom__others:after {
	clear: both;
}

.persona__bottom__others:before,
.persona__bottom__others:after {
	content: " ";
	display: table;
}

.persona__bottom__others:after {
	clear: both;
}

@media(max-width:767px) {
	.persona__bottom__others {
		padding: 28px 22px 56px;
	}
}

.persona__bottom__others__item {
	text-align: center;
}

.persona__bottom__others__item.item-1 {
	float: left;
}

.persona__bottom__others__item.item-1 p a {
	padding-left: 31px;
}

@media(max-width:767px) {
	.persona__bottom__others__item.item-1 p a {
		padding-left: 14px;
	}
}

@media(min-width:1024px) {
	.persona__bottom__others__item.item-1 p a:hover:before {
		background-image: url(../picture/sprites_img.png);
		background-position: -1697px -267px;
		width: 15px;
		height: 24px;
	}
}

.persona__bottom__others__item.item-1 p a:before {
	left: 0;
	background-image: url(../picture/sprites_img.png);
	background-position: -1742px -267px;
	width: 15px;
	height: 24px;
}

@media(max-width:767px) {
	.persona__bottom__others__item.item-1 p a:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/story-prev-small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 9px;
		height: 14px;
	}
}

.persona__bottom__others__item.item-2 {
	float: right;
}

.persona__bottom__others__item.item-2 p a {
	padding-right: 31px;
}

@media(max-width:767px) {
	.persona__bottom__others__item.item-2 p a {
		padding-right: 14px;
	}
}

@media(min-width:1024px) {
	.persona__bottom__others__item.item-2 p a:hover:before {
		background-image: url(../picture/sprites_img.png);
		background-position: -1652px -267px;
		width: 15px;
		height: 24px;
	}
}

.persona__bottom__others__item.item-2 p a:before {
	right: 0;
	background-image: url(../picture/sprites_img.png);
	background-position: -1607px -267px;
	width: 15px;
	height: 24px;
}

@media(max-width:767px) {
	.persona__bottom__others__item.item-2 p a:before {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/story-next-small.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 9px;
		height: 14px;
	}
}

.persona__bottom__others__item p a {
	font-size: 30px;
	line-height: 30px;
	color: #666;
	font-weight: bold;
	position: relative;
}

@media(max-width:767px) {
	.persona__bottom__others__item p a {
		font-size: 15px;
		line-height: 15px;
	}
}

.persona__bottom__others__item p a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -12px;
}

@media(max-width:767px) {
	.persona__bottom__others__item p a:before {
		margin-top: -7px;
	}
}

@media(min-width:1024px) {
	.persona__bottom__others__item p a:hover {
		color: #0082a9;
	}
}

.persona__bottom__others__img {
	padding-bottom: 21px;
}

@media(max-width:767px) {
	.persona__bottom__others__img {
		padding-bottom: 14px;
	}
}

.persona__bottom__others__img img {
	max-width: 100%;
}

@media(max-width:767px) {
	.persona__bottom__others__img img {
		max-width: 93px;
	}
}

.persona .product-main-info {
	padding-bottom: 0;
}

@media(max-width:767px) {
	.persona .product-main-info {
		margin-bottom: -16px;
	}
}

@media(max-width:767px) {
	.persona .product-main-info:before {
		background: url('../_ui/responsive/theme-alpha/img/bg_footer_grey.png') center 0 no-repeat;
		background-size: 100% 100%;
	}
}

.persona .product-main-info .product-details {
	margin-bottom: 237px;
}

@media(max-width:767px) {
	.persona .product-main-info .product-details {
		margin-bottom: 0;
	}

	.persona .product-main-info .product-details.odd {
		margin-bottom: 25px;
	}

	.persona .product-main-info .product-details.last {
		margin-bottom: 100px;
	}
}

.persona .product-main-info .product-details .product-item-button b {
	display: inline-block;
}

.persona .product-main-info .product-details .product-item-button b,
.persona .product-main-info .product-details .product-item-button span {
	margin-bottom: 0;
	margin-top: 12px;
}

@media(max-width:767px) {

	.persona .product-main-info .product-details .product-item-button b,
	.persona .product-main-info .product-details .product-item-button span {
		margin-top: 6px;
	}
}

@media(max-width:767px) {
	.persona .product-main-info .product-title {
		padding-top: 7px;
		padding-bottom: 17px;
	}
}

@media(min-width:1024px) {
	.persona .video-container {
		padding-top: 50.78%;
		position: relative;
	}

	.persona .video-container video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
}

.template-pages-persona-personaPage .wt_slideshow.banner_product .slideshow_content .slideshow_text h2 {
	max-width: none;
	padding: 0 30px;
}

.template-pages-persona-personaPage .tp-video-play-button {
	display: none !important;
}

@-moz-document url-prefix() {
	.template-pages-persona-personaPage .video-container video {
		height: auto;
	}
}

.simple-page {
	max-width: 1022px;
	margin: auto;
	padding: 15px 0 231px;
}

@media(max-width:767px) {
	.simple-page {
		padding: 6px 0 101px;
	}
}

.simple-page__title {
	font-size: 50px;
	line-height: 80px;
	font-weight: bold;
	color: #043458;
	text-align: left;
}

@media(max-width:767px) {
	.simple-page__title {
		font-size: 30px;
		line-height: 35px;
		max-width: 320px;
		padding: 0 30px;
		margin-left: auto;
		margin-right: auto;
	}
}

.simple-page__content {
	background: #d7dfe5;
	position: relative;
	color: #043458;
	padding: 34px 0 70px;
	margin-top: 36px;
}

@media(max-width:767px) {
	.simple-page__content {
		margin-top: 27px;
		padding: 7px 30px 51px;
	}
}

.simple-page__content:before {
	content: '';
	height: 40px;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	background: url(../_ui/responsive/theme-alpha/img/bg-colorbox.png) center 0 no-repeat;
	background-size: 100% 100%;
}

@media(max-width:767px) {
	.simple-page__content:before {
		background-size: 100% 10px;
		margin-top: -1px;
	}
}

.simple-page__content__title {
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
}

@media(max-width:767px) {
	.simple-page__content__title {
		font-size: 20px;
		line-height: 25px;
		max-width: 320px;
		padding: 0 30px;
		margin-left: auto;
		margin-right: auto;
	}
}

.simple-page__content__description {
	font-size: 18px;
	line-height: 28px;
	padding-top: 13px;
}

@media(max-width:767px) {
	.simple-page__content__description {
		font-size: 12px;
		line-height: 17px;
		max-width: 320px;
		padding: 0 30px;
		margin-left: auto;
		margin-right: auto;
	}
}

.simple-page__content .back-btn {
	display: table;
	vertical-align: middle;
	position: relative;
	position: absolute;
	bottom: -109px;
	left: 50%;
	margin-left: -68px;
}

.simple-page__content .back-btn:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ee2d42;
	box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-moz-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	-o-box-shadow: 0px 18px 25px 10px rgba(238, 45, 66, 0.48);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	content: '';
	transform: scale(1);
	transition: transform 0.3s linear;
	-moz-transition: transform 0.3s linear;
	-webkit-transition: transform 0.3s linear;
	-o-transition: transform 0.3s linear;
	-sm-transition: transform 0.3s linear;
}

.simple-page__content .back-btn:hover a {
	background: #eb5e6c;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.simple-page__content .back-btn:hover a {
		background: #ee2d42;
	}
}

.simple-page__content .back-btn:focus,
.simple-page__content .back-btn:active {
	cursor: default;
}

.simple-page__content .back-btn:focus a,
.simple-page__content .back-btn:active a {
	background: #ee2d42;
	cursor: default;
}

.simple-page__content .back-btn a {
	position: relative;
	z-index: 1;
	width: 120px;
	height: 120px;
	background: #ee2d42;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
}

@media(max-width:767px) {
	.simple-page__content .back-btn a {
		width: 80px;
		height: 80px;
		font-size: 12px;
		line-height: 14px;
		padding: 0;
	}
}

.simple-page__content .back-btn a:focus,
.simple-page__content .back-btn a:active {
	background: #ee2d42;
	cursor: default;
}

.simple-page__content .back-btn a span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

@media(max-width:767px) {
	.simple-page__content .back-btn a span {
		font-size: 12px;
	}
}

.simple-page__content .back-btn a span.glyphicon {
	font-size: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../picture/sprites_img.png);
	background-position: -1202px -776px;
	width: 18px;
	height: 31px;
}

@media(max-width:767px) {
	.simple-page__content .back-btn a span.glyphicon {
		background-image: url(../../../_ui/responsive/theme-alpha/images/sprites-small/glyphicon-more-mobile.png);
		background-size: 100% auto;
		background-position: 0 0;
		background-repeat: no-repeat;
		width: 12px;
		height: 21px;
		margin-bottom: 12px;
	}
}

.simple-page__content .back-btn a span.glyphicon:before {
	content: '';
}

@media(max-width:767px) {
	.simple-page__content .back-btn.content_item_more2 a {
		line-height: 14px;
	}
}

.simple-page__content .back-btn.more_style:hover a {
	background: #406682;
}

@media(min-device-width:768px) and (max-device-width:1280px),
(max-width:767px) {
	.simple-page__content .back-btn.more_style:hover a {
		background: #043458;
	}
}

.simple-page__content .back-btn.more_style:focus a,
.simple-page__content .back-btn.more_style:active a {
	background: #043458;
}

.simple-page__content .back-btn.more_style a {
	width: 140px;
	height: 140px;
	padding: 0 20px;
	background: #043458;
}

.simple-page__content .back-btn.more_style a:focus,
.simple-page__content .back-btn.more_style a:active {
	background: #043458;
	cursor: default;
}

.simple-page__content .back-btn.more_style .arrow-explore:before {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.simple-page__content .back-btn.more_style .arrow-explore:before {
		width: 140px;
		height: 140px;
	}
}

.simple-page__content .back-btn.more_style .arrow-explore:after {
	border: 1px solid rgba(4, 52, 88, 0.15);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.simple-page__content .back-btn.more_style .arrow-explore:after {
		width: 140px;
		height: 140px;
	}
}

.simple-page__content .back-btn.more_style:before {
	background: #043458;
	box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-moz-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-webkit-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
	-o-box-shadow: 0px 18px 25px 10px rgba(4, 52, 88, 0.58);
}

@media(max-width:767px) {
	.simple-page__content .back-btn {
		margin-left: -40px;
		bottom: -50px;
	}
}

.simple-page__content .back-btn a {
	width: 136px;
	height: 136px;
	font-size: 14px;
	line-height: 100%;
}

@media(max-width:767px) {
	.simple-page__content .back-btn a {
		font-size: 9px;
		width: 80px;
		height: 80px;
		line-height: 12px;
	}
}

.simple-page__content .back-btn span {
	margin: 0 auto 12px;
}

@media(max-width:767px) {
	.simple-page__content .back-btn span {
		margin-bottom: 8px;
	}
}

.ie .container {
	width: 1181px;
}

.ie .hidden-ie {
	display: none;
}

.ie {}

.ie .navigation--top .navigation .navigation--bottom .nav__links--products li a {
	padding-left: 22px;
	padding-right: 22px;
}

.ie .navigation--top .navigation .navigation--bottom .nav__links--products li.nav__links--primary-has__sub a {
	border-left: 0;
}

.ie .navigation--top .navigation .navigation--bottom .nav__links--products li:last-child {
	padding-right: 0;
}

.ie .navigation--top .navigation .navigation--bottom .nav__links--products li:last-child .FreeTrialNavNode a {
	padding-right: 0;
	color: #ee2d42;
}

.ie .navigation--top .navigation .navigation--bottom .nav__links--products li.nav_li_last {
	padding-right: 0;
}

.ie .navigation--top .navigation .navigation--bottom .nav__links--products li.nav_li_last a {
	color: #ee2d42;
}

.ie .navigation--top .navigation .navigation--bottom .nav__links--products li.nav_li_last .FreeTrialNavNode a {
	padding-right: 0;
	color: #ee2d42;
}

.ie .navigation--top .navigation .navigation--bottom .nav__links--products li.CorporateClient a {
	border-left: 0;
}

.ie .wrapper_social_item .container {
	width: auto;
}

.ie .about_recognised_content__slider .about_owl_carousel .owl-stage-outer {
	padding-top: 40%;
}

.ie .page-corporate .wt_slideshow .slideshow_content {
	padding-top: 300px;
}

.ie .page-corporate .wrapper_corporate .corporate_three .corporate_col {
	padding-right: 0;
}

.ie .page-corporate .wrapper_corporate .corporate_three .corporate_col .des {
	padding-right: 50px;
}

.ie .page-corporate .wrapper_corporate .corporate_three .corporate_col .content_item_more a .glyphicon {
	position: relative;
	top: 0;
}

.ie .wrapper_about_page .about_content .bg_about:before {
	display: none;
}

.ie .wrapper_about_page .about_recognised h2 {
	width: 45%;
}

.ie .page-careerPage .about_content .bg_about:before {
	display: none;
}

.ie .page-careerPage .about_recognised h2 {
	width: 45%;
}

.ie .account__form .wrap-mobile-input .form-group:after {
	right: 190px;
}

.ie .account__form .wrap-mobile-input .mobile-prefix.has-error .form-control {
	line-height: 28px !important;
}

.ie .simple-page__content:before {
	zoom: 1;
	margin-top: 0;
	padding-top: 0;
	height: 60px;
}

.ie .wrap-name .form-group .col_name {
	margin-left: 0 !important;
}

.ie .chat_box_fix .chat_box:hover .dots span {
	opacity: 1;
}

.ie .page-login .account .form-control {
	line-height: 33px;
}

@media(max-width:767px) {
	.ie .page-login .account .form-control {
		line-height: 30px;
	}
}

.ie .product-list .nav-tabs li.active a:before {
	display: none;
}

.ie .payment__option__item .payment__option__border:after {
	dislay: none;
}

.ie .payment__option__item .payment__option__border .valid-tick {
	content: "";
	position: absolute;
	bottom: 18px;
	left: 50%;
	margin-left: -10px;
	background: url(../_ui/responsive/theme-alpha/img/valid-tick.png) 0 0 no-repeat;
	width: 24px;
	height: 25px;
	display: none;
}

.ie .payment__option__item.active .payment__option__border:after {
	dislay: none;
}

.ie .payment__option__item.active .payment__option__border .valid-tick {
	display: block;
}

.ie8 {}

.ie8 body.language-en {
	font-family: Arial;
}

.ie8 .hidden-ie8 {
	display: none;
}

.ie8 .breadcrumb-section {
	float: none;
}

.ie8 .wrapper_footer .col_last {
	width: 16%;
	padding-right: 0;
}

.ie8 .wrapper_footer:before {
	display: none;
}

.ie8 .wt_slideshow.banner_product .wrap-circle {
	z-index: 20;
}

.ie8 .wt_slideshow.banner_product .wrap-circle .circle .spinner {
	display: none;
}

.ie8 .wt_slideshow.banner_product .wrap-circle .circle a span {
	top: 30%;
}

.ie8 .wt_slideshow .slideshow_content .slideshow_text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
}

.ie8 .persona .wt_slideshow .slideshow_content .container {
	position: static;
}

.ie8 .persona .persona__comment__block {
	display: table;
	vertical-align: middle;
}

.ie8 .persona .persona__comment__block .persona__comment__text {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	top: 0;
	left: 0;
	position: relative;
}

.ie8 .persona .persona__comment__block .persona__comment__left .persona__comment__text .pesona_table {
	width: 375px;
	margin-left: auto;
	margin-right: auto;
}

.ie8 .product-list__col__img {
	padding-bottom: 100%;
}

.ie8 .product-list__col__content {
	top: 15%;
	left: 20%;
}

.ie8 .center__level__content {
	top: 10%;
	left: 20%;
}

.ie8 .block-content__grey:before {
	display: none;
}

.ie8 .learn__img {
	width: 695px;
}

.ie8 .what__content__top .center-wrap {
	top: 20%;
	left: 10%;
}

.ie8 .what__content__top .center-wrap .what__content__title {
	font-weight: 600;
}

.ie8 .what__content__top .center-wrap .levels__description {
	color: #333333 !important;
}

.ie8 .details .details__right .what__test {
	width: auto;
}

.ie8 .details .details__right .what__test .what__test__title {
	font-weight: 600;
}

.ie8 .bg-curve-grey:before {
	display: none;
}

.ie8 .page-productDetails .how__slider .owl-nav {
	bottom: auto;
}

.ie8 .how__slider .owl-dots {
	right: auto;
}

.ie8 .bg_contact:before {
	display: none;
}

.ie8 .bg_contact .bg_contact_content .form-control {
	line-height: 33px;
}

.ie8 .bg_contact .wrap-mobile-input .mobile-prefix:before {
	line-height: 33px;
	color: #333333;
}

.ie8 .bg_contact .wrap-mobile-input .mobile-prefix .form-control {
	line-height: 33px;
	height: 33px;
}

.ie8 .bg_contact .wrap-mobile-input .has-error .mobile-prefix .form-control {
	line-height: 28px;
}

.ie8 .wrap-name .form-group .col_name {
	width: 23%;
}

.ie8 .wrap-name .form-group:first-child .col_name {
	margin-left: 0;
}

.ie8 .wrap-name .form-group .col_firstName {
	position: absolute;
	top: 20px;
	right: 0;
}

.ie8 .account.register .account__form .wrap-checkbox .form-group {
	float: none;
}

.ie8 .account.register .account__form .account__form__content .form-control {
	line-height: 33px !important;
}

.ie8 .account__form .account__form__content .wrap-mobile-input .mobile-prefix.has-error .form-control {
	line-height: 28px !important;
}

.ie8 .page-register .register .account__form .wrap-mobile-input .has-error .mobile-prefix .form-control {
	line-height: 28px !important;
}

.ie8 .student_login .qrcode_student {
	max-width: 80px !ipmortant;
	width: 80px;
}

.ie8 .student_login .content_bottom:before {
	display: none;
}

.ie8 .bg_full_nav .content_bottom:before {
	display: none !important;
	background: none !important;
}

.ie8 .page-homepage .wt_slideshow.banner_product .wrap-circle .circle a {
	background: url("../_ui/responsive/theme-alpha/img/transparent.png") no-repeat 0 0;
}

.ie8 .page-homepage .wt_slideshow.banner_product .wrap-circle .circle a span {
	padding: 0 10px;
}

.ie8 .wt_team_item .owl-carousel .active .img_big {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00FFFFFF", endColorstr="#00FFFFFF");
}

.ie8 .world:before {
	display: none !important;
}

.ie8 .has-error .checkbox input[type='checkbox'],
.ie8 .has-error .checkbox input[type='radio'] {
	border: 0 !important;
}

.ie9 {}

.ie9 .page-homepage .wt_slideshow.banner_product .wrap-circle .circle a {
	background: url("../_ui/responsive/theme-alpha/img/transparent.png") no-repeat 0 0;
}

.ie9 .wt_slideshow .slideshow_content .slideshow_text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	text-align: center;
}

.ie9 .persona .wt_slideshow .slideshow_content .container {
	position: static;
}

.ie9 .account__form .wrap-mobile-input .mobile-prefix .form-control {
	line-height: 27px !important;
}

.ie9 .account__form .wrap-mobile-input .mobile-prefix.has-error .form-control {
	line-height: 27px !important;
}

.ie10 .bgvideoie10:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 10px;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: #fff;
}

.glasslayer {
	position: fixed;
	width: 100%;
	height: 100%;
	filter: alpha(opacity=80);
	opacity: 0.8;
	background: #000;
	top: 0px;
	left: 0px;
	z-index: 9998;
}

.account-section-content {
	padding-bottom: 100px;
}

.bg_color_list {
	padding: 60px 52px 58px 30px;
}

.bg_color_list .list_content .ason-code-input {
	width: 160px;
}

.ason-code-btn {
	width: 130px;
	margin-left: 10px;
	text-align: center;
	height: 35px;
	line-height: 35px;
	font-size: 12px;
	float: right;
	background: #023359;
	color: #fff;
}

.ason-code-btn:hover {
	color: #fff;
}

.ason-code-btn:focus {
	color: #fff;
}

.icon-arrow_next {
	margin: 35px auto 0;
	width: 18px;
	height: 31px;
	background-position: -1202px -776px;
}

.contact-us-btn {
	position: absolute;
	left: 50%;
	margin-left: -65px;
	bottom: -93px;
}

.ason-number {
	padding-left: 30px;
	background: url(../_ui/responsive/theme-alpha/img/password-iphone.png) 10px center no-repeat #ffffff;
}

.ason-key {
	padding-left: 32px;
	background: url(../_ui/responsive/theme-alpha/img/password-key.png) 8px center no-repeat #ffffff;
}

.ason-lock span {
	background: url(../_ui/responsive/theme-alpha/img/password-lock.png) no-repeat;
	width: 31px;
	height: 37px;
}

.success-div {
	font-size: 18px;
	padding: 50px;
	text-align: center;
	width: 450px;
	top: 200px;
	left: 50%;
	margin-left: -225px;
	position: fixed;
	z-index: 9999;
	background: #fff;
	color: #333;
}

.success-div p {
	margin-bottom: 50px;
}

.success-div a {
	background: #EE2D42;
	color: #fff;
	height: 50px;
	line-height: 50px;
	padding: 0 80px;
	display: inline-block;
}

.success-div:after {
	left: 0;
	bottom: -14px;
	height: 14px;
	width: 450px;
	position: absolute;
	content: '';
	background: url(../_ui/responsive/theme-alpha/img/white-div-bg.png) center / 450px 14px no-repeat;
}

.has-error input.ason-number {
	background: url(../_ui/responsive/theme-alpha/img/password-iphone.png) 10px center no-repeat #ffffff;
}

.has-error input.ason-code-input {
	background: #fff;
}

.has-error input.ason-key {
	background: url(../_ui/responsive/theme-alpha/img/password-key.png) 8px center no-repeat #ffffff;
}

@media(max-width:767px) {
	.account-section-content {
		padding-bottom: 60px;
	}

	.container {
		padding-left: 0;
		padding-right: 0;
	}

	.bg_color_list {
		width: 100%;
		margin-top: 29px;
		padding: 10px 0px 36px 0px;
	}

	.bg_color_list .list_content .ason-code-input {
		width: 120px;
	}

	.ason-code-btn {
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}

	.contact-us-btn {
		position: absolute;
		left: 50%;
		margin-left: -40px;
		bottom: -49px;
	}

	.icon-arrow_next {
		margin: 15px auto;
		width: 13px;
		height: 23px;
		background-image: url(../_ui/responsive/theme-alpha/img/arrow_next_small.png);
		background-size: 100% auto;
		background-position: 0 0;
	}

	.ason-lock span {
		background: url(../_ui/responsive/theme-alpha/img/password-lock.png) center / 18px 21px no-repeat;
		width: 18px;
		height: 21px;
	}

	.success-div {
		color: #333;
		font-size: 14px;
		padding: 30px 20px;
		width: 260px;
		top: 100px;
		margin-left: -130px;
		position: fixed;
		z-index: 9999;
	}

	.success-div p {
		margin-bottom: 30px;
		line-height: 30px;
	}

	.success-div a {
		height: 36px;
		line-height: 36px;
		padding: 0 50px;
	}

	.success-div:after {
		bottom: -7px;
		height: 7px;
		width: 260px;
		background: url(../_ui/responsive/theme-alpha/img/white-div-bg.png) center no-repeat;
	}
}

.flickerplate {
	position: relative;
	width: 100%;
	height: 500px;
	background-color: #e6e6e6;
	overflow: hidden;
}

.flickerplate ul.flicks {
	width: 10000%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	list-style: none;
}

.flickerplate ul.flicks>li {
	float: left;
	width: 1%;
	height: 100%;
	background-position: center;
	background-size: cover;
	display: table;
}

.flickerplate ul.flicks>li .flick-inner {
	height: 100%;
	padding: 10px;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
	cursor: pointer;
}

.flickerplate ul.flicks>li .flick-inner .flick-content {
	max-width: 68.75em;
	margin-left: auto;
	margin-right: auto;
}

.flickerplate ul.flicks>li .flick-title {
	padding: 0px 0px;
	font-size: 2.778em;
	line-height: 1.995em;
	text-align: center;
}

@media only screen and (max-width:43.813em) {
	.flickerplate ul.flicks>li .flick-title {
		font-size: 1.667em;
	}
}

.flickerplate ul.flicks>li .flick-sub-text {
	padding: 5px;
	font-weight: 300;
	line-height: 2.5em;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
}

.flickerplate ul.flicks>li .flick-title span.flick-block-text,
.flickerplate ul.flicks>li .flick-sub-text span.flick-block-text {
	padding: 12px 18px;
	background-color: rgba(0, 0, 0, 0.6);
}

.flickerplate .arrow-navigation {
	position: absolute;
	height: 80%;
	width: 10%;
	top: 10%;
	z-index: 100;
	overflow: hidden;
}

.flickerplate .arrow-navigation .arrow {
	display: block;
	height: 100%;
	width: 90%;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.flickerplate .arrow-navigation:hover,
.flickerplate .arrow-navigation .arrow:hover {
	cursor: pointer;
}

.flickerplate .arrow-navigation.left {
	left: 0%;
}

.flickerplate .arrow-navigation.left .arrow {
	opacity: 0;
	margin: 0px 0px 0px 50%;
	background-repeat: no-repeat;
	background-position: left;
}

.flickerplate .arrow-navigation.right {
	right: 0%;
}

.flickerplate .arrow-navigation.right .arrow {
	opacity: 0;
	margin: 0px 0px 0px -50%;
	background-repeat: no-repeat;
	background-position: right;
}

.flickerplate .arrow-navigation.left.hover .arrow {
	opacity: 1;
	margin: 0px 0px 0px 20%;
}

.flickerplate .arrow-navigation.right.hover .arrow {
	opacity: 1;
	margin: 0px 0px 0px -20%;
}

.flickerplate .dot-navigation {
	position: absolute;
	bottom: 15px;
	width: 100%;
	text-align: center;
	z-index: 100;
}

.flickerplate .dot-navigation ul {
	text-align: center;
	list-style: none;
	padding: 0px 15px;
}

.flickerplate .dot-navigation ul li {
	display: inline-block;
	float: none;
}

.flickerplate .dot-navigation .dot {
	width: 14px;
	height: 14px;
	margin: 0px 6px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-webkit-transition: background-color 0.2s ease-out;
	-moz-transition: background-color 0.2s ease-out;
	-o-transition: background-color 0.2s ease-out;
	-ms-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
}

.flickerplate .dot-navigation .dot:hover {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.6);
}

.flickerplate .dot-navigation .dot.active {
	background-color: #ffffff;
}

.flickerplate .dot-navigation.left,
.flickerplate .dot-navigation.left ul {
	text-align: left;
}

.flickerplate .dot-navigation.right,
.flickerplate .dot-navigation.right ul {
	text-align: right;
}

.flickerplate.flicker-theme-dark .dot-navigation .dot {
	background-color: rgba(0, 0, 0, 0.12);
}

.flickerplate.flicker-theme-dark .dot-navigation .dot:hover {
	background-color: rgba(0, 0, 0, 0.6);
}

.flickerplate.flicker-theme-dark .dot-navigation .dot.active {
	background-color: #000000;
}

.flickerplate.flicker-theme-dark ul.flicks li .flick-inner {
	color: rgba(0, 0, 0, 0.9);
}

.flickerplate.flicker-theme-dark ul.flicks li .flick-inner .flick-content .flick-sub-text {
	color: rgba(0, 0, 0, 0.9);
}

.flickerplate.flicker-theme-dark ul.flicks li .flick-inner .flick-content .flick-title span.flick-block-text,
.flickerplate.flicker-theme-dark ul.flicks li .flick-inner .flick-content .flick-sub-text span.flick-block-text {
	background-color: rgba(255, 255, 255, 0.5);
}

.flickerplate ul.flicks li.flick-theme-dark .flick-inner {
	color: rgba(0, 0, 0, 0.9);
}

.flickerplate ul.flicks li.flick-theme-dark .flick-inner .flick-content .flick-sub-text {
	color: rgba(0, 0, 0, 0.9);
}

.flickerplate ul.flicks li.flick-theme-dark .flick-inner .flick-content .flick-title span.flick-block-text,
.flickerplate ul.flicks li.flick-theme-dark .flick-inner .flick-content .flick-sub-text span.flick-block-text {
	background-color: rgba(255, 255, 255, 0.5);
}

.flickerplate.animate-transform-slide ul.flicks {
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0%, 0px, 0px);
	-webkit-transform: translate3d(0%, 0px, 0px);
	-webkit-transition: -webkit-transform 0.6s;
	-o-transition: -o-transform 0.6s;
	-moz-transition: -moz-transform 0.6s;
	transition: transform 0.6s;
}

.flickerplate.animate-transition-slide ul.flicks {
	position: relative;
	left: 0%;
	-webkit-transition: left 0.4s ease-out;
	-moz-transition: left 0.4s ease-out;
	-o-transition: left 0.4s ease-out;
	-ms-transition: left 0.4s ease-out;
	transition: left 0.4s ease-out;
}

.flickerplate.animate-jquery-slide ul.flicks {
	position: relative;
	left: 0%;
}

.flickerplate.animate-scroller-slide {
	padding-bottom: 0px;
	overflow: auto;
}

.flickerplate.animate-scroller-slide ul.flicks {
	position: auto;
}

.ason-mobile {
	display: none;
}

@media screen and (max-width:800px) {
	.ason-pc {
		display: none;
	}

	.ason-mobile {
		display: block;
	}

	.flickerplate {
		height: 190px;
	}

	.flickerplate .dot-navigation .dot {
		width: 10px;
		height: 10px;
	}
}

.mask {
	background: #000;
	opacity: 0.6;
	filter: alpha(opacity=60);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 500;
}

.payPop {
	background: #fff;
	position: absolute;
	display: none;
	z-index: 600;
	top: 0;
}

.payPop p {
	padding: 30px;
	line-height: 18px;
}

.payPopBtn {
	padding-left: 20%;
	padding-right: 20%;
}

.payment-logo {
	margin-top: -13px;
}

.payment-action {
	color: white;
	text-decoration: underline;
}

.payment-action:visited {
	color: white;
}

.payment-action:hover {
	color: #ff973b
}

ul.delivery_method-list>li {
	list-style-type: none;
}

.hop-payment-border {
	border: none;
}

ul.delivery_method-list #wechatpay {
	display: none;
}

.well-headline-taxinvoice {
	border: none;
	padding-bottom: 5px;
}

#nav_main {
	border: 1px dotted #a5a5a5;
	border-width: 1px 0;
	position: relative;
	z-index: 100;
	clear: both;
}

#nav_main li.La {
	float: left;
	text-align: center;
}

#nav_main li.La>a {
	display: block;
	line-height: 2.750em;
	padding: 0 12px;
}

#nav_main li.La:hover {}

#nav_main li.parent:hover>a {
	background: #eee;
	margin: 0 0 -1px 0;
	padding-bottom: 1px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
}

#nav_main li.parent:hover>a {
	border-left: 1px dotted #a5a5a5;
	border-right: 1px dotted #a5a5a5;
	padding-left: 11px;
	padding-right: 11px;
}

#nav_main ul.Lb {
	display: none;
}

#nav_main li.La:hover ul.Lb,
#nav_main li.La a:focus+ul.Lb {
	display: block;
}

#nav_main ul.Lb {
	position: absolute;
	background: #eee;
	left: 0;
	right: 0;
	text-align: left;
	padding: 20px;
	border: 1px dotted #a5a5a5;
	z-index: 99;
	border-top: 0;
	width: 908px;
	top: 34px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
}

#nav_main ul.Lb li.Lb {
	float: left;
}

#nav_main ul.Lb li.Lb span.nav-submenu-title {
	display: block;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.167em;
	margin: 0 0 10px 0;
}

#nav_main ul.Lb li.Lb .Lc {
	float: left;
	width: 181px;
}

.sortable {
	min-height: 30px;
	height: auto !important;
}

#nav_main .La.special_offer {
	background: #eee;
}

.button-SYNC_OK,
.button-SYNC_OK:hover {
	background: url(../_ui/addons/liveeditaddon/shared/common/images/contextmenu_icons/SYNC_OK.gif) no-repeat !important;
}

.button-SYNC_NOT_OK,
.button-SYNC_NOT_OK:hover {
	background: url(n/shared/common/images/contextmenu_icons/SYNC_NOT_OK.gif) no-repeat !important;
}

a {
	text-decoration: none !important;
}

../_ui/addons/liveeditaddo
