@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
}

@-webkit-keyframes bounce {
	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

@keyframes bounce {
	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce
}

@-webkit-keyframes flash {
	0%,
	100%,
	50% {
		opacity: 1
	}
	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {
	0%,
	100%,
	50% {
		opacity: 1
	}
	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1)
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	50% {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1)
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	30% {
		-webkit-transform: scaleX(1.25) scaleY(.75);
		transform: scaleX(1.25) scaleY(.75)
	}
	40% {
		-webkit-transform: scaleX(.75) scaleY(1.25);
		transform: scaleX(.75) scaleY(1.25)
	}
	60% {
		-webkit-transform: scaleX(1.15) scaleY(.85);
		transform: scaleX(1.15) scaleY(.85)
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	30% {
		-webkit-transform: scaleX(1.25) scaleY(.75);
		-ms-transform: scaleX(1.25) scaleY(.75);
		transform: scaleX(1.25) scaleY(.75)
	}
	40% {
		-webkit-transform: scaleX(.75) scaleY(1.25);
		-ms-transform: scaleX(.75) scaleY(1.25);
		transform: scaleX(.75) scaleY(1.25)
	}
	60% {
		-webkit-transform: scaleX(1.15) scaleY(.85);
		-ms-transform: scaleX(1.15) scaleY(.85);
		transform: scaleX(1.15) scaleY(.85)
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {
	0%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px)
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px)
	}
}

@keyframes shake {
	0%,
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px)
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		transform: rotate(15deg)
	}
	40% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	60% {
		-webkit-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		transform: rotate(5deg)
	}
	80% {
		-webkit-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
	100% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0)
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10%,
	20% {
		-webkit-transform: scale(.9) rotate(-3deg);
		transform: scale(.9) rotate(-3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg)
	}
	100% {
		-webkit-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	10%,
	20% {
		-webkit-transform: scale(.9) rotate(-3deg);
		-ms-transform: scale(.9) rotate(-3deg);
		transform: scale(.9) rotate(-3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		-ms-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		-ms-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg)
	}
	100% {
		-webkit-transform: scale(1) rotate(0);
		-ms-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg)
	}
	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg)
	}
	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg)
	}
	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg)
	}
	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		-ms-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg)
	}
	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		-ms-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg)
	}
	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		-ms-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg)
	}
	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		-ms-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg)
	}
	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		-ms-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3)
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	70% {
		-webkit-transform: scale(.9);
		transform: scale(.9)
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3)
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05)
	}
	70% {
		-webkit-transform: scale(.9);
		-ms-transform: scale(.9);
		transform: scale(.9)
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		transform: translateY(30px)
	}
	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px)
	}
	80% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px)
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		transform: translateX(30px)
	}
	80% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		-ms-transform: translateX(30px);
		transform: translateX(30px)
	}
	80% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px)
	}
	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		-ms-transform: translateX(-30px);
		transform: translateX(-30px)
	}
	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}
	80% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px)
	}
	80% {
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px)
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	25% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		transform: scale(1.1)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3)
	}
}

@keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	25% {
		-webkit-transform: scale(.95);
		-ms-transform: scale(.95);
		transform: scale(.95)
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

@keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

@keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

@keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

@keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(.95);
		-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-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
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg)
	}
	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg)
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(0);
		transform: perspective(400px) rotateX(0);
		opacity: 1
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		-ms-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg)
	}
	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		-ms-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg)
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(0);
		-ms-transform: perspective(400px) rotateX(0);
		transform: perspective(400px) rotateX(0);
		opacity: 1
	}
}

.flipInX {
	-webkit-backface-visibility: visible!important;
	-ms-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg)
	}
	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg)
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(0);
		transform: perspective(400px) rotateY(0);
		opacity: 1
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		-ms-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg)
	}
	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		-ms-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg)
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(0);
		-ms-transform: perspective(400px) rotateY(0);
		transform: perspective(400px) rotateY(0);
		opacity: 1
	}
}

.flipInY {
	-webkit-backface-visibility: visible!important;
	-ms-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0);
		transform: perspective(400px) rotateX(0);
		opacity: 1
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0);
		-ms-transform: perspective(400px) rotateX(0);
		transform: perspective(400px) rotateX(0);
		opacity: 1
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible!important;
	-ms-backface-visibility: visible!important;
	backface-visibility: visible!important
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0);
		transform: perspective(400px) rotateY(0);
		opacity: 1
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0);
		-ms-transform: perspective(400px) rotateY(0);
		transform: perspective(400px) rotateY(0);
		opacity: 1
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(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-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1
	}
	80% {
		-webkit-transform: translateX(0) skewX(-15deg);
		transform: translateX(0) skewX(-15deg);
		opacity: 1
	}
	100% {
		-webkit-transform: translateX(0) skewX(0);
		transform: translateX(0) skewX(0);
		opacity: 1
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		-ms-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1
	}
	80% {

		-webkit-transform: translateX(0) skewX(-15deg);
		-ms-transform: translateX(0) skewX(-15deg);
		transform: translateX(0) skewX(-15deg);
		opacity: 1
	}
	100% {
		-webkit-transform: translateX(0) skewX(0);
		-ms-transform: translateX(0) skewX(0);
		transform: translateX(0) skewX(0);
		opacity: 1
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0) skewX(0);
		transform: translateX(0) skewX(0);
		opacity: 1
	}
	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0
	}
}

@keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0) skewX(0);
		-ms-transform: translateX(0) skewX(0);
		transform: translateX(0) skewX(0);
		opacity: 1
	}
	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		-ms-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		-ms-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

@-webkit-keyframes slideInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	40% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		-webkit-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: translateY(700px);
		transform: translateY(700px);
		opacity: 0
	}
}

@keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(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: rotate(80deg);
		-ms-transform: rotate(80deg);
		transform: rotate(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% {
		-webkit-transform: rotate(60deg);
		-ms-transform: rotate(60deg);
		transform: rotate(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
	}
	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		-ms-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(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;
		opacity: 1
	}
	100% {
		-webkit-transform: translateY(700px);
		-ms-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0) rotate(0);
		transform: translateX(0) rotate(0)
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		-ms-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0) rotate(0);
		-ms-transform: translateX(0) rotate(0);
		transform: translateX(0) rotate(0)
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0) rotate(0);
		transform: translateX(0) rotate(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0) rotate(0);
		-ms-transform: translateX(0) rotate(0);
		transform: translateX(0) rotate(0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		-ms-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3)
	}
	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3)
	}
	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) translateY(-2000px);
		transform: scale(.1) translateY(-2000px);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	60% {
		opacity: 1;
		-webkit-transform: scale(.475) translateY(60px);
		transform: scale(.475) translateY(60px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) translateY(-2000px);
		-ms-transform: scale(.1) translateY(-2000px);
		transform: scale(.1) translateY(-2000px);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	60% {
		opacity: 1;
		-webkit-transform: scale(.475) translateY(60px);
		-ms-transform: scale(.475) translateY(60px);
		transform: scale(.475) translateY(60px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) translateX(-2000px);
		transform: scale(.1) translateX(-2000px);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	60% {
		opacity: 1;
		-webkit-transform: scale(.475) translateX(48px);
		transform: scale(.475) translateX(48px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) translateX(-2000px);
		-ms-transform: scale(.1) translateX(-2000px);
		transform: scale(.1) translateX(-2000px);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	60% {
		opacity: 1;
		-webkit-transform: scale(.475) translateX(48px);
		-ms-transform: scale(.475) translateX(48px);
		transform: scale(.475) translateX(48px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) translateX(2000px);
		transform: scale(.1) translateX(2000px);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	60% {
		opacity: 1;
		-webkit-transform: scale(.475) translateX(-48px);
		transform: scale(.475) translateX(-48px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) translateX(2000px);
		-ms-transform: scale(.1) translateX(2000px);
		transform: scale(.1) translateX(2000px);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	60% {
		opacity: 1;
		-webkit-transform: scale(.475) translateX(-48px);
		-ms-transform: scale(.475) translateX(-48px);
		transform: scale(.475) translateX(-48px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) translateY(2000px);
		transform: scale(.1) translateY(2000px);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	60% {
		opacity: 1;
		-webkit-transform: scale(.475) translateY(-60px);
		transform: scale(.475) translateY(-60px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) translateY(2000px);
		-ms-transform: scale(.1) translateY(2000px);
		transform: scale(.1) translateY(2000px);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	60% {
		opacity: 1;
		-webkit-transform: scale(.475) translateY(-60px);
		-ms-transform: scale(.475) translateY(-60px);
		transform: scale(.475) translateY(-60px);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	50% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3)
	}
	100% {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	50% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3)
	}
	100% {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale(.475) translateY(-60px);
		transform: scale(.475) translateY(-60px);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translateY(2000px);
		transform: scale(.1) translateY(2000px);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale(.475) translateY(-60px);
		-ms-transform: scale(.475) translateY(-60px);
		transform: scale(.475) translateY(-60px);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translateY(2000px);
		-ms-transform: scale(.1) translateY(2000px);
		transform: scale(.1) translateY(2000px);
		-webkit-transform-origin: center bottom;
		-ms-transform-origin: center bottom;
		transform-origin: center bottom
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale(.475) translateX(42px);
		transform: scale(.475) translateX(42px);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translateX(-2000px);
		transform: scale(.1) translateX(-2000px);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale(.475) translateX(42px);
		-ms-transform: scale(.475) translateX(42px);
		transform: scale(.475) translateX(42px);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translateX(-2000px);
		-ms-transform: scale(.1) translateX(-2000px);
		transform: scale(.1) translateX(-2000px);
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale(.475) translateX(-42px);
		transform: scale(.475) translateX(-42px);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translateX(2000px);
		transform: scale(.1) translateX(2000px);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale(.475) translateX(-42px);
		-ms-transform: scale(.475) translateX(-42px);
		transform: scale(.475) translateX(-42px);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translateX(2000px);
		-ms-transform: scale(.1) translateX(2000px);
		transform: scale(.1) translateX(2000px);
		-webkit-transform-origin: right center;
		-ms-transform-origin: right center;
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale(.475) translateY(60px);
		transform: scale(.475) translateY(60px);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translateY(-2000px);
		transform: scale(.1) translateY(-2000px);
		-webkit-transform-origin: center top;
		transform-origin: center top
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale(.475) translateY(60px);
		-ms-transform: scale(.475) translateY(60px);
		transform: scale(.475) translateY(60px);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translateY(-2000px);
		-ms-transform: scale(.1) translateY(-2000px);
		transform: scale(.1) translateY(-2000px);
		-webkit-transform-origin: center top;
		-ms-transform-origin: center top;
		transform-origin: center top
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

@-webkit-keyframes videoplay-anim {
	0% {
		-webkit-transform: scale(.7);
		transform: scale(.7)
	}
	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 0
	}
}

@keyframes videoplay-anim {
	0% {
		-webkit-transform: scale(.7);
		transform: scale(.7)
	}
	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 0
	}
}

.owl-carousel .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
	z-index: 0
}

.owl-carousel .owl-animated-out {
	z-index: 1
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

.owl-height {
	-webkit-transition: height .5s ease-in-out;
	-moz-transition: height .5s ease-in-out;
	-ms-transition: height .5s ease-in-out;
	-o-transition: height .5s ease-in-out;
	transition: height .5s ease-in-out
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y
}

.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-controls .owl-dot,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .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-loaded {
	display: block
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block
}

.owl-carousel.owl-hidden {
	opacity: 0
}

.owl-carousel .owl-refresh .owl-item {
	display: none
}

.owl-carousel .owl-item {
	padding: 0 15px;
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel .owl-item img {
	display: inline-block;
	-webkit-transform-style: preserve-3d
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab
}

.owl-carousel.owl-rtl {
	direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
	float: right

}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity .4s ease;
	-moz-transition: opacity .4s ease;
	-ms-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
	transition: opacity .4s ease
}

.owl-carousel .owl-item img {
	transform-style: preserve-3d
}

.owl-theme .owl-dots {
	display: none;
	text-align: left;
	padding-top: 20px;
	padding-left: 4px
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	background-color: transparent;
	border: 1px solid #ebebeb;
	border-radius: 50%;
	margin: 4px 1px 4px 6px;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity .2s ease;
	-moz-transition: opacity .2s ease;
	-ms-transition: opacity .2s ease;
	-o-transition: opacity .2s ease
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	border: 1px solid #0f3661
}

.owl-theme .owl-controls .owl-nav div {
	background: #ff5e14;
	text-align: center;
	display: block;
	outline: 0;
	width: 34px;
	text-align: center;
	line-height: 34px;
	height: 34px;
	color: #fff;
	top: 50%;
	font-size: 0;
	margin-top: -20px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out
}

.owl-theme .owl-controls .owl-nav div:hover {
	background: #333
}

.owl-theme .owl-controls .owl-nav div.owl-prev {
	position: absolute;
	top: 165px;
	right: 59px;
	display: block
}

.owl-theme .owl-controls .owl-nav div.owl-next:before,
.owl-theme .owl-controls .owl-nav div.owl-prev:before {
	font-family: FontAwesome;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	display: block;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out
}

.owl-theme .owl-controls .owl-nav div.owl-prev:before {
	content: "\f104"
}

.owl-theme .owl-controls .owl-nav div.owl-next:hover:before,
.owl-theme .owl-controls .owl-nav div.owl-prev:hover:before {
	color: #fff
}

.owl-theme .owl-controls .owl-nav div.owl-next {
	position: absolute;
	top: 165px;
	right: 20px;
	display: block
}

.owl-theme .owl-controls .owl-nav div.owl-next:before {
	content: "\f105"
}

@media (max-width:768px) {
	.owl-theme .owl-controls .owl-nav div.owl-prev {
		display: none!important
	}
	.owl-theme .owl-controls .owl-nav div.owl-next {
		display: none!important
	}
}

.portfolio-slide.owl-carousel .owl-item {
	padding: 0
}

.post-img-slide {
	position: relative
}

.post-img-slide.owl-carousel .owl-item {
	padding: 0
}

.post-img-slide.owl-carousel.owl-theme .owl-controls .owl-dots {
	width: 100%;
	position: absolute;
	bottom: 15px;
	text-align: center
}

.post-img-slide.owl-carousel.owl-theme .owl-dots {
	display: none;
	text-align: left;
	padding-top: 0;
	padding-left: 4px;
	margin-top: -20px
}

.post-img-slide.owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.post-img-slide.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #fff;
	border-color: #fff
}

@font-face {
	font-family: FontAwesome;
	src: url(../fonts/fontawesome-webfont3e6e3e6e.eot?v=4.7.0);
	src: url(../fonts/fontawesome-webfontd41dd41d.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(../fonts/fontawesome-webfont3e6e3e6e.woff2?v=4.7.0) format('woff2'), url(../fonts/fontawesome-webfont3e6e3e6e.woff?v=4.7.0) format('woff'), url(../fonts/fontawesome-webfont3e6e3e6e.ttf?v=4.7.0) format('truetype'), url(../fonts/fontawesome-webfont3e6e3e6e.svg?v=4.7.0#fontawesomeregular) format('svg');
	font-weight: 400;
	font-style: normal
}

.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.fa-lg {
	font-size: 1.33333333em;
	line-height: .75em;
	vertical-align: -15%
}

.fa-2x {
	font-size: 2em
}

.fa-3x {
	font-size: 3em
}

.fa-4x {
	font-size: 4em
}

.fa-5x {
	font-size: 5em
}

.fa-fw {
	width: 1.28571429em;
	text-align: center
}

.fa-ul {
	padding-left: 0;
	margin-left: 2.14285714em;
	list-style-type: none
}

.fa-ul>li {
	position: relative
}

.fa-li {
	position: absolute;
	left: -2.14285714em;
	width: 2.14285714em;
	top: .14285714em;
	text-align: center
}

.fa-li.fa-lg {
	left: -1.85714286em
}

.fa-border {
	padding: .2em .25em .15em;
	border: solid .08em #eee;
	border-radius: .1em
}

.fa-pull-left {
	float: left
}

.fa-pull-right {
	float: right
}

.fa.fa-pull-left {
	margin-right: .3em
}

.fa.fa-pull-right {
	margin-left: .3em
}

.pull-right {
	float: right
}

.pull-left {
	float: left
}

.fa.pull-left {
	margin-right: .3em
}

.fa.pull-right {
	margin-left: .3em
}

.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear
}

.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

.fa-rotate-90 {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

.fa-rotate-180 {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}

.fa-rotate-270 {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg)
}

.fa-flip-horizontal {
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1)
}

.fa-flip-vertical {
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1)
}

:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
	filter: none
}

.fa-stack {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center
}

.fa-stack-1x {
	line-height: inherit
}

.fa-stack-2x {
	font-size: 2em
}

.fa-inverse {
	color: #fff
}

.fa-glass:before {
	content: "\f000"
}

.fa-music:before {
	content: "\f001"
}

.fa-search:before {
	content: "\f002"
}

.fa-envelope-o:before {
	content: "\f003"
}

.fa-heart:before {
	content: "\f004"
}

.fa-star:before {
	content: "\f005"
}

.fa-star-o:before {
	content: "\f006"
}

.fa-user:before {
	content: "\f007"
}

.fa-film:before {
	content: "\f008"
}

.fa-th-large:before {
	content: "\f009"
}

.fa-th:before {
	content: "\f00a"
}

.fa-th-list:before {
	content: "\f00b"
}

.fa-check:before {
	content: "\f00c"
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
	content: "\f00d"
}

.fa-search-plus:before {
	content: "\f00e"
}

.fa-search-minus:before {
	content: "\f010"
}

.fa-power-off:before {
	content: "\f011"
}

.fa-signal:before {
	content: "\f012"
}

.fa-cog:before,
.fa-gear:before {
	content: "\f013"
}

.fa-trash-o:before {
	content: "\f014"
}

.fa-home:before {
	content: "\f015"
}

.fa-file-o:before {
	content: "\f016"
}

.fa-clock-o:before {
	content: "\f017"
}

.fa-road:before {
	content: "\f018"
}

.fa-download:before {
	content: "\f019"
}

.fa-arrow-circle-o-down:before {
	content: "\f01a"
}

.fa-arrow-circle-o-up:before {
	content: "\f01b"
}

.fa-inbox:before {
	content: "\f01c"
}

.fa-play-circle-o:before {
	content: "\f01d"
}

.fa-repeat:before,
.fa-rotate-right:before {
	content: "\f01e"
}

.fa-refresh:before {
	content: "\f021"
}

.fa-list-alt:before {
	content: "\f022"
}

.fa-lock:before {
	content: "\f023"
}

.fa-flag:before {
	content: "\f024"
}

.fa-headphones:before {
	content: "\f025"
}

.fa-volume-off:before {
	content: "\f026"
}

.fa-volume-down:before {
	content: "\f027"
}

.fa-volume-up:before {
	content: "\f028"
}

.fa-qrcode:before {
	content: "\f029"
}

.fa-barcode:before {
	content: "\f02a"
}

.fa-tag:before {
	content: "\f02b"
}

.fa-tags:before {
	content: "\f02c"
}

.fa-book:before {
	content: "\f02d"
}

.fa-bookmark:before {
	content: "\f02e"
}

.fa-print:before {
	content: "\f02f"
}

.fa-camera:before {
	content: "\f030"
}

.fa-font:before {
	content: "\f031"
}

.fa-bold:before {
	content: "\f032"
}

.fa-italic:before {
	content: "\f033"
}

.fa-text-height:before {
	content: "\f034"
}

.fa-text-width:before {
	content: "\f035"
}

.fa-align-left:before {
	content: "\f036"
}

.fa-align-center:before {
	content: "\f037"
}

.fa-align-right:before {
	content: "\f038"
}

.fa-align-justify:before {
	content: "\f039"
}

.fa-list:before {
	content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
	content: "\f03b"
}

.fa-indent:before {
	content: "\f03c"
}

.fa-video-camera:before {
	content: "\f03d"
}

.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
	content: "\f03e"
}

.fa-pencil:before {
	content: "\f040"
}

.fa-map-marker:before {
	content: "\f041"
}

.fa-adjust:before {
	content: "\f042"
}

.fa-tint:before {
	content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
	content: "\f044"
}

.fa-share-square-o:before {
	content: "\f045"
}

.fa-check-square-o:before {
	content: "\f046"
}

.fa-arrows:before {
	content: "\f047"
}

.fa-step-backward:before {
	content: "\f048"
}

.fa-fast-backward:before {
	content: "\f049"
}

.fa-backward:before {
	content: "\f04a"
}

.fa-play:before {
	content: "\f04b"
}

.fa-pause:before {
	content: "\f04c"
}

.fa-stop:before {
	content: "\f04d"
}

.fa-forward:before {
	content: "\f04e"
}

.fa-fast-forward:before {
	content: "\f050"
}

.fa-step-forward:before {
	content: "\f051"
}

.fa-eject:before {
	content: "\f052"
}

.fa-chevron-left:before {
	content: "\f053"
}

.fa-chevron-right:before {
	content: "\f054"
}

.fa-plus-circle:before {
	content: "\f055"
}

.fa-minus-circle:before {
	content: "\f056"
}

.fa-times-circle:before {
	content: "\f057"
}

.fa-check-circle:before {
	content: "\f058"
}

.fa-question-circle:before {
	content: "\f059"
}

.fa-info-circle:before {
	content: "\f05a"
}

.fa-crosshairs:before {
	content: "\f05b"
}

.fa-times-circle-o:before {
	content: "\f05c"
}

.fa-check-circle-o:before {
	content: "\f05d"
}

.fa-ban:before {
	content: "\f05e"
}

.fa-arrow-left:before {
	content: "\f060"
}

.fa-arrow-right:before {
	content: "\f061"
}

.fa-arrow-up:before {
	content: "\f062"
}

.fa-arrow-down:before {
	content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
	content: "\f064"
}

.fa-expand:before {
	content: "\f065"
}

.fa-compress:before {
	content: "\f066"
}

.fa-plus:before {
	content: "\f067"
}

.fa-minus:before {
	content: "\f068"
}

.fa-asterisk:before {
	content: "\f069"
}

.fa-exclamation-circle:before {
	content: "\f06a"
}

.fa-gift:before {
	content: "\f06b"
}

.fa-leaf:before {
	content: "\f06c"
}

.fa-fire:before {
	content: "\f06d"
}

.fa-eye:before {
	content: "\f06e"
}

.fa-eye-slash:before {
	content: "\f070"
}

.fa-exclamation-triangle:before,
.fa-warning:before {
	content: "\f071"
}

.fa-plane:before {
	content: "\f072"
}

.fa-calendar:before {
	content: "\f073"
}

.fa-random:before {
	content: "\f074"
}

.fa-comment:before {
	content: "\f075"
}

.fa-magnet:before {
	content: "\f076"
}

.fa-chevron-up:before {
	content: "\f077"

}

.fa-chevron-down:before {
	content: "\f078"
}

.fa-retweet:before {
	content: "\f079"
}

.fa-shopping-cart:before {
	content: "\f07a"
}

.fa-folder:before {
	content: "\f07b"
}

.fa-folder-open:before {
	content: "\f07c"
}

.fa-arrows-v:before {
	content: "\f07d"
}

.fa-arrows-h:before {
	content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
	content: "\f080"
}

.fa-twitter-square:before {
	content: "\f081"
}

.fa-facebook-square:before {
	content: "\f082"
}

.fa-camera-retro:before {
	content: "\f083"
}

.fa-key:before {
	content: "\f084"
}

.fa-cogs:before,
.fa-gears:before {
	content: "\f085"
}

.fa-comments:before {
	content: "\f086"
}

.fa-thumbs-o-up:before {
	content: "\f087"
}

.fa-thumbs-o-down:before {
	content: "\f088"
}

.fa-star-half:before {
	content: "\f089"
}

.fa-heart-o:before {
	content: "\f08a"
}

.fa-sign-out:before {
	content: "\f08b"
}

.fa-linkedin-square:before {
	content: "\f08c"
}

.fa-thumb-tack:before {
	content: "\f08d"
}

.fa-external-link:before {
	content: "\f08e"
}

.fa-sign-in:before {
	content: "\f090"
}

.fa-trophy:before {
	content: "\f091"
}

.fa-github-square:before {
	content: "\f092"
}

.fa-upload:before {
	content: "\f093"
}

.fa-lemon-o:before {
	content: "\f094"
}

.fa-phone:before {
	content: "\f095"
}

.fa-square-o:before {
	content: "\f096"
}

.fa-bookmark-o:before {
	content: "\f097"
}

.fa-phone-square:before {
	content: "\f098"
}

.fa-twitter:before {
	content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
	content: "\f09a"
}

.fa-github:before {
	content: "\f09b"
}

.fa-unlock:before {
	content: "\f09c"
}

.fa-credit-card:before {
	content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
	content: "\f09e"
}

.fa-hdd-o:before {
	content: "\f0a0"
}

.fa-bullhorn:before {
	content: "\f0a1"
}

.fa-bell:before {
	content: "\f0f3"
}

.fa-certificate:before {
	content: "\f0a3"
}

.fa-hand-o-right:before {
	content: "\f0a4"
}

.fa-hand-o-left:before {
	content: "\f0a5"
}

.fa-hand-o-up:before {
	content: "\f0a6"
}

.fa-hand-o-down:before {
	content: "\f0a7"
}

.fa-arrow-circle-left:before {
	content: "\f0a8"
}

.fa-arrow-circle-right:before {
	content: "\f0a9"
}

.fa-arrow-circle-up:before {
	content: "\f0aa"
}

.fa-arrow-circle-down:before {
	content: "\f0ab"
}

.fa-globe:before {
	content: "\f0ac"
}

.fa-wrench:before {
	content: "\f0ad"
}

.fa-tasks:before {
	content: "\f0ae"
}

.fa-filter:before {
	content: "\f0b0"
}

.fa-briefcase:before {
	content: "\f0b1"
}

.fa-arrows-alt:before {
	content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
	content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
	content: "\f0c1"
}

.fa-cloud:before {
	content: "\f0c2"
}

.fa-flask:before {
	content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
	content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
	content: "\f0c5"
}

.fa-paperclip:before {
	content: "\f0c6"
}

.fa-floppy-o:before,
.fa-save:before {
	content: "\f0c7"
}

.fa-square:before {
	content: "\f0c8"
}

.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
	content: "\f0c9"
}

.fa-list-ul:before {
	content: "\f0ca"
}

.fa-list-ol:before {
	content: "\f0cb"
}

.fa-strikethrough:before {
	content: "\f0cc"
}

.fa-underline:before {
	content: "\f0cd"
}

.fa-table:before {
	content: "\f0ce"
}

.fa-magic:before {
	content: "\f0d0"
}

.fa-truck:before {
	content: "\f0d1"
}

.fa-pinterest:before {
	content: "\f0d2"
}

.fa-pinterest-square:before {
	content: "\f0d3"
}

.fa-google-plus-square:before {
	content: "\f0d4"
}

.fa-google-plus:before {
	content: "\f0d5"
}

.fa-money:before {
	content: "\f0d6"
}

.fa-caret-down:before {
	content: "\f0d7"
}

.fa-caret-up:before {
	content: "\f0d8"
}

.fa-caret-left:before {
	content: "\f0d9"
}

.fa-caret-right:before {
	content: "\f0da"
}

.fa-columns:before {
	content: "\f0db"
}

.fa-sort:before,
.fa-unsorted:before {
	content: "\f0dc"
}

.fa-sort-desc:before,
.fa-sort-down:before {
	content: "\f0dd"
}

.fa-sort-asc:before,
.fa-sort-up:before {
	content: "\f0de"
}

.fa-envelope:before {
	content: "\f0e0"
}

.fa-linkedin:before {
	content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
	content: "\f0e2"
}

.fa-gavel:before,
.fa-legal:before {
	content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
	content: "\f0e4"
}

.fa-comment-o:before {
	content: "\f0e5"
}

.fa-comments-o:before {
	content: "\f0e6"
}

.fa-bolt:before,
.fa-flash:before {
	content: "\f0e7"
}

.fa-sitemap:before {
	content: "\f0e8"
}

.fa-umbrella:before {
	content: "\f0e9"
}

.fa-clipboard:before,
.fa-paste:before {
	content: "\f0ea"
}

.fa-lightbulb-o:before {
	content: "\f0eb"
}

.fa-exchange:before {
	content: "\f0ec"
}

.fa-cloud-download:before {
	content: "\f0ed"
}

.fa-cloud-upload:before {
	content: "\f0ee"
}

.fa-user-md:before {
	content: "\f0f0"
}

.fa-stethoscope:before {
	content: "\f0f1"
}

.fa-suitcase:before {
	content: "\f0f2"
}

.fa-bell-o:before {
	content: "\f0a2"
}

.fa-coffee:before {
	content: "\f0f4"
}

.fa-cutlery:before {
	content: "\f0f5"
}

.fa-file-text-o:before {
	content: "\f0f6"
}

.fa-building-o:before {
	content: "\f0f7"
}

.fa-hospital-o:before {
	content: "\f0f8"
}

.fa-ambulance:before {
	content: "\f0f9"
}

.fa-medkit:before {
	content: "\f0fa"
}

.fa-fighter-jet:before {
	content: "\f0fb"
}

.fa-beer:before {
	content: "\f0fc"
}

.fa-h-square:before {
	content: "\f0fd"
}

.fa-plus-square:before {
	content: "\f0fe"
}

.fa-angle-double-left:before {
	content: "\f100"
}

.fa-angle-double-right:before {
	content: "\f101"
}

.fa-angle-double-up:before {
	content: "\f102"
}

.fa-angle-double-down:before {
	content: "\f103"
}

.fa-angle-left:before {
	content: "\f104"
}

.fa-angle-right:before {
	content: "\f105"
}

.fa-angle-up:before {
	content: "\f106"
}

.fa-angle-down:before {
	content: "\f107"
}

.fa-desktop:before {
	content: "\f108"
}

.fa-laptop:before {
	content: "\f109"
}

.fa-tablet:before {
	content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
	content: "\f10b"
}

.fa-circle-o:before {
	content: "\f10c"
}

.fa-quote-left:before {
	content: "\f10d"
}

.fa-quote-right:before {
	content: "\f10e"
}

.fa-spinner:before {
	content: "\f110"
}

.fa-circle:before {
	content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
	content: "\f112"
}

.fa-github-alt:before {
	content: "\f113"
}

.fa-folder-o:before {
	content: "\f114"
}

.fa-folder-open-o:before {
	content: "\f115"
}

.fa-smile-o:before {
	content: "\f118"
}

.fa-frown-o:before {
	content: "\f119"
}

.fa-meh-o:before {
	content: "\f11a"
}

.fa-gamepad:before {
	content: "\f11b"
}

.fa-keyboard-o:before {
	content: "\f11c"
}

.fa-flag-o:before {
	content: "\f11d"
}

.fa-flag-checkered:before {
	content: "\f11e"
}

.fa-terminal:before {
	content: "\f120"
}

.fa-code:before {
	content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
	content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
	content: "\f123"
}

.fa-location-arrow:before {
	content: "\f124"
}

.fa-crop:before {
	content: "\f125"
}

.fa-code-fork:before {
	content: "\f126"
}

.fa-chain-broken:before,
.fa-unlink:before {
	content: "\f127"
}

.fa-question:before {
	content: "\f128"
}

.fa-info:before {
	content: "\f129"
}

.fa-exclamation:before {
	content: "\f12a"
}

.fa-superscript:before {
	content: "\f12b"
}

.fa-subscript:before {
	content: "\f12c"
}

.fa-eraser:before {
	content: "\f12d"
}

.fa-puzzle-piece:before {
	content: "\f12e"
}

.fa-microphone:before {
	content: "\f130"
}

.fa-microphone-slash:before {
	content: "\f131"
}

.fa-shield:before {
	content: "\f132"
}

.fa-calendar-o:before {
	content: "\f133"
}

.fa-fire-extinguisher:before {
	content: "\f134"
}

.fa-rocket:before {
	content: "\f135"
}

.fa-maxcdn:before {
	content: "\f136"
}

.fa-chevron-circle-left:before {
	content: "\f137"
}

.fa-chevron-circle-right:before {
	content: "\f138"
}

.fa-chevron-circle-up:before {
	content: "\f139"
}

.fa-chevron-circle-down:before {
	content: "\f13a"
}

.fa-html5:before {
	content: "\f13b"
}

.fa-css3:before {
	content: "\f13c"
}

.fa-anchor:before {
	content: "\f13d"
}

.fa-unlock-alt:before {
	content: "\f13e"
}

.fa-bullseye:before {
	content: "\f140"
}

.fa-ellipsis-h:before {
	content: "\f141"
}

.fa-ellipsis-v:before {
	content: "\f142"
}

.fa-rss-square:before {
	content: "\f143"
}

.fa-play-circle:before {
	content: "\f144"
}

.fa-ticket:before {
	content: "\f145"
}

.fa-minus-square:before {
	content: "\f146"
}

.fa-minus-square-o:before {
	content: "\f147"
}

.fa-level-up:before {
	content: "\f148"
}

.fa-level-down:before {
	content: "\f149"
}

.fa-check-square:before {
	content: "\f14a"
}

.fa-pencil-square:before {
	content: "\f14b"
}

.fa-external-link-square:before {
	content: "\f14c"
}

.fa-share-square:before {
	content: "\f14d"
}

.fa-compass:before {
	content: "\f14e"
}

.fa-caret-square-o-down:before,
.fa-toggle-down:before {
	content: "\f150"
}

.fa-caret-square-o-up:before,
.fa-toggle-up:before {
	content: "\f151"
}

.fa-caret-square-o-right:before,
.fa-toggle-right:before {
	content: "\f152"
}

.fa-eur:before,
.fa-euro:before {
	content: "\f153"
}

.fa-gbp:before {
	content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
	content: "\f155"
}

.fa-inr:before,
.fa-rupee:before {
	content: "\f156"
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
	content: "\f157"
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
	content: "\f158"
}

.fa-krw:before,
.fa-won:before {
	content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
	content: "\f15a"
}

.fa-file:before {
	content: "\f15b"
}

.fa-file-text:before {
	content: "\f15c"
}

.fa-sort-alpha-asc:before {
	content: "\f15d"
}

.fa-sort-alpha-desc:before {
	content: "\f15e"
}

.fa-sort-amount-asc:before {
	content: "\f160"
}

.fa-sort-amount-desc:before {
	content: "\f161"
}

.fa-sort-numeric-asc:before {
	content: "\f162"
}

.fa-sort-numeric-desc:before {
	content: "\f163"
}

.fa-thumbs-up:before {
	content: "\f164"
}

.fa-thumbs-down:before {
	content: "\f165"
}

.fa-youtube-square:before {
	content: "\f166"
}

.fa-youtube:before {
	content: "\f167"
}

.fa-xing:before {
	content: "\f168"
}

.fa-xing-square:before {
	content: "\f169"
}

.fa-youtube-play:before {
	content: "\f16a"
}

.fa-dropbox:before {
	content: "\f16b"
}

.fa-stack-overflow:before {
	content: "\f16c"
}

.fa-instagram:before {
	content: "\f16d"
}

.fa-flickr:before {
	content: "\f16e"
}

.fa-adn:before {
	content: "\f170"
}

.fa-bitbucket:before {
	content: "\f171"
}

.fa-bitbucket-square:before {
	content: "\f172"
}

.fa-tumblr:before {
	content: "\f173"
}

.fa-tumblr-square:before {
	content: "\f174"
}

.fa-long-arrow-down:before {
	content: "\f175"
}

.fa-long-arrow-up:before {
	content: "\f176"
}

.fa-long-arrow-left:before {
	content: "\f177"
}

.fa-long-arrow-right:before {
	content: "\f178"
}

.fa-apple:before {
	content: "\f179"
}

.fa-windows:before {
	content: "\f17a"
}

.fa-android:before {
	content: "\f17b"
}

.fa-linux:before {
	content: "\f17c"
}

.fa-dribbble:before {
	content: "\f17d"
}

.fa-skype:before {
	content: "\f17e"
}

.fa-foursquare:before {
	content: "\f180"
}

.fa-trello:before {
	content: "\f181"
}

.fa-female:before {
	content: "\f182"
}

.fa-male:before {
	content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
	content: "\f184"
}

.fa-sun-o:before {
	content: "\f185"
}

.fa-moon-o:before {
	content: "\f186"
}

.fa-archive:before {
	content: "\f187"
}

.fa-bug:before {
	content: "\f188"
}

.fa-vk:before {
	content: "\f189"
}

.fa-weibo:before {
	content: "\f18a"
}

.fa-renren:before {
	content: "\f18b"
}

.fa-pagelines:before {
	content: "\f18c"
}

.fa-stack-exchange:before {
	content: "\f18d"
}

.fa-arrow-circle-o-right:before {
	content: "\f18e"
}

.fa-arrow-circle-o-left:before {
	content: "\f190"
}

.fa-caret-square-o-left:before,
.fa-toggle-left:before {
	content: "\f191"
}

.fa-dot-circle-o:before {
	content: "\f192"
}

.fa-wheelchair:before {
	content: "\f193"
}

.fa-vimeo-square:before {
	content: "\f194"
}

.fa-try:before,
.fa-turkish-lira:before {
	content: "\f195"
}

.fa-plus-square-o:before {
	content: "\f196"
}

.fa-space-shuttle:before {
	content: "\f197"
}

.fa-slack:before {
	content: "\f198"
}

.fa-envelope-square:before {
	content: "\f199"
}

.fa-wordpress:before {
	content: "\f19a"
}

.fa-openid:before {
	content: "\f19b"
}

.fa-bank:before,
.fa-institution:before,
.fa-university:before {
	content: "\f19c"
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
	content: "\f19d"
}

.fa-yahoo:before {
	content: "\f19e"
}

.fa-google:before {
	content: "\f1a0"
}

.fa-reddit:before {
	content: "\f1a1"
}

.fa-reddit-square:before {
	content: "\f1a2"
}

.fa-stumbleupon-circle:before {
	content: "\f1a3"
}

.fa-stumbleupon:before {
	content: "\f1a4"
}

.fa-delicious:before {
	content: "\f1a5"
}

.fa-digg:before {
	content: "\f1a6"
}

.fa-pied-piper-pp:before {
	content: "\f1a7"
}

.fa-pied-piper-alt:before {
	content: "\f1a8"
}

.fa-drupal:before {
	content: "\f1a9"
}

.fa-joomla:before {
	content: "\f1aa"
}

.fa-language:before {
	content: "\f1ab"
}

.fa-fax:before {
	content: "\f1ac"
}

.fa-building:before {
	content: "\f1ad"
}

.fa-child:before {
	content: "\f1ae"
}

.fa-paw:before {
	content: "\f1b0"
}

.fa-spoon:before {
	content: "\f1b1"
}

.fa-cube:before {
	content: "\f1b2"
}

.fa-cubes:before {
	content: "\f1b3"
}

.fa-behance:before {
	content: "\f1b4"
}

.fa-behance-square:before {
	content: "\f1b5"
}

.fa-steam:before {
	content: "\f1b6"
}

.fa-steam-square:before {
	content: "\f1b7"
}

.fa-recycle:before {
	content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
	content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
	content: "\f1ba"
}

.fa-tree:before {
	content: "\f1bb"
}

.fa-spotify:before {
	content: "\f1bc"
}

.fa-deviantart:before {
	content: "\f1bd"
}

.fa-soundcloud:before {
	content: "\f1be"
}

.fa-database:before {
	content: "\f1c0"
}

.fa-file-pdf-o:before {
	content: "\f1c1"
}

.fa-file-word-o:before {
	content: "\f1c2"
}

.fa-file-excel-o:before {
	content: "\f1c3"
}

.fa-file-powerpoint-o:before {
	content: "\f1c4"
}

.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
	content: "\f1c5"
}

.fa-file-archive-o:before,
.fa-file-zip-o:before {
	content: "\f1c6"
}

.fa-file-audio-o:before,
.fa-file-sound-o:before {
	content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
	content: "\f1c8"
}

.fa-file-code-o:before {
	content: "\f1c9"
}

.fa-vine:before {
	content: "\f1ca"
}

.fa-codepen:before {
	content: "\f1cb"
}

.fa-jsfiddle:before {
	content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
	content: "\f1cd"
}

.fa-circle-o-notch:before {
	content: "\f1ce"
}

.fa-ra:before,
.fa-rebel:before,
.fa-resistance:before {
	content: "\f1d0"
}

.fa-empire:before,
.fa-ge:before {
	content: "\f1d1"
}

.fa-git-square:before {
	content: "\f1d2"
}

.fa-git:before {
	content: "\f1d3"
}

.fa-hacker-news:before,
.fa-y-combinator-square:before,
.fa-yc-square:before {
	content: "\f1d4"
}

.fa-tencent-weibo:before {
	content: "\f1d5"
}

.fa-qq:before {
	content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
	content: "\f1d7"
}

.fa-paper-plane:before,
.fa-send:before {
	content: "\f1d8"
}

.fa-paper-plane-o:before,
.fa-send-o:before {
	content: "\f1d9"
}

.fa-history:before {
	content: "\f1da"
}

.fa-circle-thin:before {
	content: "\f1db"
}

.fa-header:before {
	content: "\f1dc"
}

.fa-paragraph:before {
	content: "\f1dd"
}

.fa-sliders:before {
	content: "\f1de"
}

.fa-share-alt:before {
	content: "\f1e0"
}

.fa-share-alt-square:before {
	content: "\f1e1"
}

.fa-bomb:before {
	content: "\f1e2"
}

.fa-futbol-o:before,
.fa-soccer-ball-o:before {
	content: "\f1e3"
}

.fa-tty:before {
	content: "\f1e4"
}

.fa-binoculars:before {
	content: "\f1e5"
}

.fa-plug:before {
	content: "\f1e6"
}

.fa-slideshare:before {
	content: "\f1e7"
}

.fa-twitch:before {
	content: "\f1e8"
}

.fa-yelp:before {
	content: "\f1e9"
}

.fa-newspaper-o:before {
	content: "\f1ea"
}

.fa-wifi:before {
	content: "\f1eb"
}

.fa-calculator:before {
	content: "\f1ec"
}

.fa-paypal:before {
	content: "\f1ed"
}

.fa-google-wallet:before {
	content: "\f1ee"
}

.fa-cc-visa:before {
	content: "\f1f0"
}

.fa-cc-mastercard:before {
	content: "\f1f1"
}

.fa-cc-discover:before {
	content: "\f1f2"
}

.fa-cc-amex:before {
	content: "\f1f3"
}

.fa-cc-paypal:before {
	content: "\f1f4"
}

.fa-cc-stripe:before {
	content: "\f1f5"
}

.fa-bell-slash:before {
	content: "\f1f6"
}

.fa-bell-slash-o:before {
	content: "\f1f7"
}

.fa-trash:before {
	content: "\f1f8"
}

.fa-copyright:before {
	content: "\f1f9"
}

.fa-at:before {
	content: "\f1fa"
}

.fa-eyedropper:before {
	content: "\f1fb"
}

.fa-paint-brush:before {
	content: "\f1fc"
}

.fa-birthday-cake:before {
	content: "\f1fd"
}

.fa-area-chart:before {
	content: "\f1fe"
}

.fa-pie-chart:before {
	content: "\f200"
}

.fa-line-chart:before {
	content: "\f201"
}

.fa-lastfm:before {
	content: "\f202"
}

.fa-lastfm-square:before {
	content: "\f203"
}

.fa-toggle-off:before {
	content: "\f204"
}

.fa-toggle-on:before {
	content: "\f205"
}

.fa-bicycle:before {
	content: "\f206"
}

.fa-bus:before {
	content: "\f207"
}

.fa-ioxhost:before {
	content: "\f208"
}

.fa-angellist:before {
	content: "\f209"
}

.fa-cc:before {
	content: "\f20a"
}

.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
	content: "\f20b"
}

.fa-meanpath:before {
	content: "\f20c"
}

.fa-buysellads:before {
	content: "\f20d"
}

.fa-connectdevelop:before {
	content: "\f20e"
}

.fa-dashcube:before {
	content: "\f210"
}

.fa-forumbee:before {
	content: "\f211"
}

.fa-leanpub:before {
	content: "\f212"
}

.fa-sellsy:before {
	content: "\f213"
}

.fa-shirtsinbulk:before {
	content: "\f214"
}

.fa-simplybuilt:before {
	content: "\f215"
}

.fa-skyatlas:before {
	content: "\f216"
}

.fa-cart-plus:before {
	content: "\f217"
}

.fa-cart-arrow-down:before {
	content: "\f218"
}

.fa-diamond:before {
	content: "\f219"
}

.fa-ship:before {
	content: "\f21a"
}

.fa-user-secret:before {
	content: "\f21b"
}

.fa-motorcycle:before {
	content: "\f21c"
}

.fa-street-view:before {
	content: "\f21d"
}

.fa-heartbeat:before {
	content: "\f21e"
}

.fa-venus:before {
	content: "\f221"
}

.fa-mars:before {
	content: "\f222"
}

.fa-mercury:before {
	content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
	content: "\f224"
}

.fa-transgender-alt:before {
	content: "\f225"
}

.fa-venus-double:before {
	content: "\f226"
}

.fa-mars-double:before {
	content: "\f227"
}

.fa-venus-mars:before {
	content: "\f228"
}

.fa-mars-stroke:before {
	content: "\f229"
}

.fa-mars-stroke-v:before {
	content: "\f22a"
}

.fa-mars-stroke-h:before {
	content: "\f22b"
}

.fa-neuter:before {
	content: "\f22c"
}

.fa-genderless:before {
	content: "\f22d"
}

.fa-facebook-official:before {
	content: "\f230"
}

.fa-pinterest-p:before {
	content: "\f231"
}

.fa-whatsapp:before {
	content: "\f232"
}

.fa-server:before {
	content: "\f233"
}

.fa-user-plus:before {
	content: "\f234"
}

.fa-user-times:before {
	content: "\f235"
}

.fa-bed:before,
.fa-hotel:before {
	content: "\f236"
}

.fa-viacoin:before {
	content: "\f237"
}

.fa-train:before {
	content: "\f238"
}

.fa-subway:before {
	content: "\f239"
}

.fa-medium:before {
	content: "\f23a"
}

.fa-y-combinator:before,
.fa-yc:before {
	content: "\f23b"
}

.fa-optin-monster:before {
	content: "\f23c"
}

.fa-opencart:before {
	content: "\f23d"
}

.fa-expeditedssl:before {
	content: "\f23e"
}

.fa-battery-4:before,
.fa-battery-full:before,
.fa-battery:before {
	content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
	content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
	content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
	content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
	content: "\f244"
}

.fa-mouse-pointer:before {
	content: "\f245"
}

.fa-i-cursor:before {
	content: "\f246"
}

.fa-object-group:before {
	content: "\f247"
}

.fa-object-ungroup:before {
	content: "\f248"
}

.fa-sticky-note:before {
	content: "\f249"
}

.fa-sticky-note-o:before {
	content: "\f24a"
}

.fa-cc-jcb:before {
	content: "\f24b"
}

.fa-cc-diners-club:before {
	content: "\f24c"
}

.fa-clone:before {
	content: "\f24d"
}

.fa-balance-scale:before {
	content: "\f24e"
}

.fa-hourglass-o:before {
	content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
	content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
	content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
	content: "\f253"
}

.fa-hourglass:before {
	content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
	content: "\f255"
}

.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
	content: "\f256"
}

.fa-hand-scissors-o:before {
	content: "\f257"
}

.fa-hand-lizard-o:before {
	content: "\f258"
}

.fa-hand-spock-o:before {
	content: "\f259"
}

.fa-hand-pointer-o:before {
	content: "\f25a"
}

.fa-hand-peace-o:before {
	content: "\f25b"
}

.fa-trademark:before {
	content: "\f25c"
}

.fa-registered:before {
	content: "\f25d"
}

.fa-creative-commons:before {
	content: "\f25e"
}

.fa-gg:before {
	content: "\f260"
}

.fa-gg-circle:before {
	content: "\f261"
}

.fa-tripadvisor:before {
	content: "\f262"
}

.fa-odnoklassniki:before {
	content: "\f263"
}

.fa-odnoklassniki-square:before {
	content: "\f264"
}

.fa-get-pocket:before {
	content: "\f265"
}

.fa-wikipedia-w:before {
	content: "\f266"
}

.fa-safari:before {
	content: "\f267"
}

.fa-chrome:before {
	content: "\f268"
}

.fa-firefox:before {
	content: "\f269"
}

.fa-opera:before {
	content: "\f26a"
}

.fa-internet-explorer:before {
	content: "\f26b"
}

.fa-television:before,
.fa-tv:before {
	content: "\f26c"
}

.fa-contao:before {
	content: "\f26d"
}

.fa-500px:before {
	content: "\f26e"
}

.fa-amazon:before {
	content: "\f270"
}

.fa-calendar-plus-o:before {
	content: "\f271"
}

.fa-calendar-minus-o:before {
	content: "\f272"
}

.fa-calendar-times-o:before {
	content: "\f273"
}

.fa-calendar-check-o:before {
	content: "\f274"
}

.fa-industry:before {
	content: "\f275"
}

.fa-map-pin:before {
	content: "\f276"
}

.fa-map-signs:before {
	content: "\f277"
}

.fa-map-o:before {
	content: "\f278"
}

.fa-map:before {
	content: "\f279"
}

.fa-commenting:before {
	content: "\f27a"
}

.fa-commenting-o:before {
	content: "\f27b"
}

.fa-houzz:before {
	content: "\f27c"
}

.fa-vimeo:before {
	content: "\f27d"
}

.fa-black-tie:before {
	content: "\f27e"
}

.fa-fonticons:before {
	content: "\f280"
}

.fa-reddit-alien:before {
	content: "\f281"
}

.fa-edge:before {
	content: "\f282"
}

.fa-credit-card-alt:before {
	content: "\f283"
}

.fa-codiepie:before {
	content: "\f284"
}

.fa-modx:before {
	content: "\f285"
}

.fa-fort-awesome:before {
	content: "\f286"
}

.fa-usb:before {
	content: "\f287"
}

.fa-product-hunt:before {
	content: "\f288"
}

.fa-mixcloud:before {
	content: "\f289"
}

.fa-scribd:before {
	content: "\f28a"
}

.fa-pause-circle:before {
	content: "\f28b"
}

.fa-pause-circle-o:before {
	content: "\f28c"
}

.fa-stop-circle:before {
	content: "\f28d"
}

.fa-stop-circle-o:before {
	content: "\f28e"
}

.fa-shopping-bag:before {
	content: "\f290"
}

.fa-shopping-basket:before {
	content: "\f291"
}

.fa-hashtag:before {
	content: "\f292"
}

.fa-bluetooth:before {
	content: "\f293"
}

.fa-bluetooth-b:before {
	content: "\f294"
}

.fa-percent:before {
	content: "\f295"
}

.fa-gitlab:before {
	content: "\f296"
}

.fa-wpbeginner:before {
	content: "\f297"
}

.fa-wpforms:before {
	content: "\f298"
}

.fa-envira:before {
	content: "\f299"
}

.fa-universal-access:before {
	content: "\f29a"
}

.fa-wheelchair-alt:before {
	content: "\f29b"
}

.fa-question-circle-o:before {
	content: "\f29c"
}

.fa-blind:before {
	content: "\f29d"
}

.fa-audio-description:before {
	content: "\f29e"
}

.fa-volume-control-phone:before {
	content: "\f2a0"
}

.fa-braille:before {
	content: "\f2a1"
}

.fa-assistive-listening-systems:before {
	content: "\f2a2"
}

.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before {
	content: "\f2a3"
}

.fa-deaf:before,
.fa-deafness:before,
.fa-hard-of-hearing:before {
	content: "\f2a4"
}

.fa-glide:before {
	content: "\f2a5"
}

.fa-glide-g:before {
	content: "\f2a6"
}

.fa-sign-language:before,
.fa-signing:before {
	content: "\f2a7"
}

.fa-low-vision:before {
	content: "\f2a8"
}

.fa-viadeo:before {
	content: "\f2a9"
}

.fa-viadeo-square:before {
	content: "\f2aa"
}

.fa-snapchat:before {
	content: "\f2ab"
}

.fa-snapchat-ghost:before {
	content: "\f2ac"
}

.fa-snapchat-square:before {
	content: "\f2ad"
}

.fa-pied-piper:before {
	content: "\f2ae"
}

.fa-first-order:before {
	content: "\f2b0"
}

.fa-yoast:before {
	content: "\f2b1"
}

.fa-themeisle:before {
	content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
	content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
	content: "\f2b4"
}

.fa-handshake-o:before {
	content: "\f2b5"
}

.fa-envelope-open:before {
	content: "\f2b6"
}

.fa-envelope-open-o:before {
	content: "\f2b7"
}

.fa-linode:before {
	content: "\f2b8"
}

.fa-address-book:before {
	content: "\f2b9"
}

.fa-address-book-o:before {
	content: "\f2ba"
}

.fa-address-card:before,
.fa-vcard:before {
	content: "\f2bb"
}

.fa-address-card-o:before,
.fa-vcard-o:before {
	content: "\f2bc"
}

.fa-user-circle:before {
	content: "\f2bd"
}

.fa-user-circle-o:before {
	content: "\f2be"
}

.fa-user-o:before {
	content: "\f2c0"
}

.fa-id-badge:before {
	content: "\f2c1"
}

.fa-drivers-license:before,
.fa-id-card:before {
	content: "\f2c2"
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
	content: "\f2c3"
}

.fa-quora:before {
	content: "\f2c4"
}

.fa-free-code-camp:before {
	content: "\f2c5"
}

.fa-telegram:before {
	content: "\f2c6"
}

.fa-thermometer-4:before,
.fa-thermometer-full:before,
.fa-thermometer:before {
	content: "\f2c7"
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
	content: "\f2c8"
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
	content: "\f2c9"
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
	content: "\f2ca"
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
	content: "\f2cb"
}

.fa-shower:before {
	content: "\f2cc"
}

.fa-bath:before,
.fa-bathtub:before,
.fa-s15:before {
	content: "\f2cd"
}

.fa-podcast:before {
	content: "\f2ce"
}

.fa-window-maximize:before {
	content: "\f2d0"
}

.fa-window-minimize:before {
	content: "\f2d1"
}

.fa-window-restore:before {
	content: "\f2d2"
}

.fa-times-rectangle:before,
.fa-window-close:before {
	content: "\f2d3"
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
	content: "\f2d4"
}

.fa-bandcamp:before {
	content: "\f2d5"
}

.fa-grav:before {
	content: "\f2d6"
}

.fa-etsy:before {
	content: "\f2d7"
}

.fa-imdb:before {
	content: "\f2d8"
}

.fa-ravelry:before {
	content: "\f2d9"
}

.fa-eercast:before {
	content: "\f2da"
}

.fa-microchip:before {
	content: "\f2db"
}

.fa-snowflake-o:before {
	content: "\f2dc"
}

.fa-superpowers:before {
	content: "\f2dd"
}

.fa-wpexplorer:before {
	content: "\f2de"
}

.fa-meetup:before {
	content: "\f2e0"
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	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
}

@font-face {
	font-family: themify;
	src: url(../fonts/themify9f249f24.eot?-fvbane);
	src: url(../fonts/themifyd41dd41d.eot?#iefix-fvbane) format('embedded-opentype'), url(../fonts/themify9f249f24.woff?-fvbane) format('woff'), url(../fonts/themify9f249f24.ttf?-fvbane) format('truetype'), url(../fonts/themify9f249f24.svg?-fvbane#themify) format('svg');
	font-weight: 400;
	font-style: normal
}

[class*=" ti-"],
[class^=ti-] {
	font-family: themify;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.ti-wand:before {
	content: "\e600"
}

.ti-volume:before {
	content: "\e601"
}

.ti-user:before {
	content: "\e602"
}

.ti-unlock:before {
	content: "\e603"
}

.ti-unlink:before {
	content: "\e604"
}

.ti-trash:before {
	content: "\e605"
}

.ti-thought:before {
	content: "\e606"
}

.ti-target:before {
	content: "\e607"
}

.ti-tag:before {
	content: "\e608"
}

.ti-tablet:before {
	content: "\e609"
}

.ti-star:before {
	content: "\e60a"
}

.ti-spray:before {
	content: "\e60b"
}

.ti-signal:before {
	content: "\e60c"
}

.ti-shopping-cart:before {
	content: "\e60d"
}

.ti-shopping-cart-full:before {
	content: "\e60e"
}

.ti-settings:before {
	content: "\e60f"
}

.ti-search:before {
	content: "\e610"
}

.ti-zoom-in:before {
	content: "\e611"
}

.ti-zoom-out:before {
	content: "\e612"
}

.ti-cut:before {
	content: "\e613"
}

.ti-ruler:before {
	content: "\e614"
}

.ti-ruler-pencil:before {
	content: "\e615"
}

.ti-ruler-alt:before {
	content: "\e616"
}

.ti-bookmark:before {
	content: "\e617"
}

.ti-bookmark-alt:before {
	content: "\e618"
}

.ti-reload:before {
	content: "\e619"
}

.ti-plus:before {
	content: "\e61a"
}

.ti-pin:before {
	content: "\e61b"
}

.ti-pencil:before {
	content: "\e61c"
}

.ti-pencil-alt:before {
	content: "\e61d"
}

.ti-paint-roller:before {
	content: "\e61e"
}

.ti-paint-bucket:before {
	content: "\e61f"
}

.ti-na:before {
	content: "\e620"
}

.ti-mobile:before {
	content: "\e621"
}

.ti-minus:before {
	content: "\e622"
}

.ti-medall:before {
	content: "\e623"
}

.ti-medall-alt:before {
	content: "\e624"
}

.ti-marker:before {
	content: "\e625"
}

.ti-marker-alt:before {
	content: "\e626"
}

.ti-arrow-up:before {
	content: "\e627"
}

.ti-arrow-right:before {
	content: "\e628"
}

.ti-arrow-left:before {
	content: "\e629"
}

.ti-arrow-down:before {
	content: "\e62a"
}

.ti-lock:before {
	content: "\e62b"
}

.ti-location-arrow:before {
	content: "\e62c"
}

.ti-link:before {
	content: "\e62d"
}

.ti-layout:before {
	content: "\e62e"
}

.ti-layers:before {
	content: "\e62f"
}

.ti-layers-alt:before {
	content: "\e630"
}

.ti-key:before {
	content: "\e631"
}

.ti-import:before {
	content: "\e632"
}

.ti-image:before {
	content: "\e633"
}

.ti-heart:before {
	content: "\e634"
}

.ti-heart-broken:before {
	content: "\e635"
}

.ti-hand-stop:before {
	content: "\e636"
}

.ti-hand-open:before {
	content: "\e637"
}

.ti-hand-drag:before {
	content: "\e638"
}

.ti-folder:before {
	content: "\e639"
}

.ti-flag:before {
	content: "\e63a"
}

.ti-flag-alt:before {
	content: "\e63b"
}

.ti-flag-alt-2:before {
	content: "\e63c"
}

.ti-eye:before {
	content: "\e63d"
}

.ti-export:before {
	content: "\e63e"
}

.ti-exchange-vertical:before {
	content: "\e63f"
}

.ti-desktop:before {
	content: "\e640"
}

.ti-cup:before {
	content: "\e641"
}

.ti-crown:before {
	content: "\e642"
}

.ti-comments:before {
	content: "\e643"
}

.ti-comment:before {
	content: "\e644"
}

.ti-comment-alt:before {
	content: "\e645"
}

.ti-close:before {
	content: "\e646"
}

.ti-clip:before {
	content: "\e647"
}

.ti-angle-up:before {
	content: "\e648"
}

.ti-angle-right:before {
	content: "\e649"
}

.ti-angle-left:before {
	content: "\e64a"
}

.ti-angle-down:before {
	content: "\e64b"
}

.ti-check:before {
	content: "\e64c"
}

.ti-check-box:before {
	content: "\e64d"
}

.ti-camera:before {
	content: "\e64e"
}

.ti-announcement:before {
	content: "\e64f"
}

.ti-brush:before {
	content: "\e650"
}

.ti-briefcase:before {
	content: "\e651"
}

.ti-bolt:before {
	content: "\e652"
}

.ti-bolt-alt:before {
	content: "\e653"
}

.ti-blackboard:before {
	content: "\e654"
}

.ti-bag:before {
	content: "\e655"
}

.ti-move:before {
	content: "\e656"
}

.ti-arrows-vertical:before {
	content: "\e657"
}

.ti-arrows-horizontal:before {
	content: "\e658"
}

.ti-fullscreen:before {
	content: "\e659"
}

.ti-arrow-top-right:before {
	content: "\e65a"
}

.ti-arrow-top-left:before {
	content: "\e65b"
}

.ti-arrow-circle-up:before {
	content: "\e65c"
}

.ti-arrow-circle-right:before {
	content: "\e65d"
}

.ti-arrow-circle-left:before {
	content: "\e65e"
}

.ti-arrow-circle-down:before {
	content: "\e65f"
}

.ti-angle-double-up:before {
	content: "\e660"
}

.ti-angle-double-right:before {
	content: "\e661"
}

.ti-angle-double-left:before {
	content: "\e662"
}

.ti-angle-double-down:before {
	content: "\e663"
}

.ti-zip:before {
	content: "\e664"
}

.ti-world:before {
	content: "\e665"
}

.ti-wheelchair:before {
	content: "\e666"
}

.ti-view-list:before {
	content: "\e667"
}

.ti-view-list-alt:before {
	content: "\e668"
}

.ti-view-grid:before {
	content: "\e669"
}

.ti-uppercase:before {
	content: "\e66a"
}

.ti-upload:before {
	content: "\e66b"
}

.ti-underline:before {
	content: "\e66c"
}

.ti-truck:before {
	content: "\e66d"
}

.ti-timer:before {
	content: "\e66e"
}

.ti-ticket:before {
	content: "\e66f"
}

.ti-thumb-up:before {
	content: "\e670"
}

.ti-thumb-down:before {
	content: "\e671"
}

.ti-text:before {
	content: "\e672"
}

.ti-stats-up:before {
	content: "\e673"
}

.ti-stats-down:before {
	content: "\e674"
}

.ti-split-v:before {
	content: "\e675"
}

.ti-split-h:before {
	content: "\e676"
}

.ti-smallcap:before {
	content: "\e677"
}

.ti-shine:before {
	content: "\e678"
}

.ti-shift-right:before {
	content: "\e679"
}

.ti-shift-left:before {
	content: "\e67a"
}

.ti-shield:before {
	content: "\e67b"
}

.ti-notepad:before {
	content: "\e67c"
}

.ti-server:before {
	content: "\e67d"
}

.ti-quote-right:before {
	content: "\e67e"
}

.ti-quote-left:before {
	content: "\e67f"
}

.ti-pulse:before {
	content: "\e680"
}

.ti-printer:before {
	content: "\e681"
}

.ti-power-off:before {
	content: "\e682"
}

.ti-plug:before {
	content: "\e683"
}

.ti-pie-chart:before {
	content: "\e684"
}

.ti-paragraph:before {
	content: "\e685"
}

.ti-panel:before {
	content: "\e686"
}

.ti-package:before {
	content: "\e687"
}

.ti-music:before {
	content: "\e688"
}

.ti-music-alt:before {
	content: "\e689"
}

.ti-mouse:before {
	content: "\e68a"
}

.ti-mouse-alt:before {
	content: "\e68b"
}

.ti-money:before {
	content: "\e68c"
}

.ti-microphone:before {
	content: "\e68d"
}

.ti-menu:before {
	content: "\e68e"
}

.ti-menu-alt:before {
	content: "\e68f"
}

.ti-map:before {
	content: "\e690"
}

.ti-map-alt:before {
	content: "\e691"
}

.ti-loop:before {
	content: "\e692"
}

.ti-location-pin:before {
	content: "\e693"
}

.ti-list:before {
	content: "\e694"
}

.ti-light-bulb:before {
	content: "\e695"
}

.ti-Italic:before {
	content: "\e696"
}

.ti-info:before {
	content: "\e697"
}

.ti-infinite:before {
	content: "\e698"
}

.ti-id-badge:before {
	content: "\e699"
}

.ti-hummer:before {
	content: "\e69a"
}

.ti-home:before {
	content: "\e69b"
}

.ti-help:before {
	content: "\e69c"
}

.ti-headphone:before {
	content: "\e69d"
}

.ti-harddrives:before {
	content: "\e69e"
}

.ti-harddrive:before {
	content: "\e69f"
}

.ti-gift:before {
	content: "\e6a0"
}

.ti-game:before {
	content: "\e6a1"
}

.ti-filter:before {
	content: "\e6a2"
}

.ti-files:before {
	content: "\e6a3"
}

.ti-file:before {
	content: "\e6a4"
}

.ti-eraser:before {
	content: "\e6a5"
}

.ti-envelope:before {
	content: "\e6a6"
}

.ti-download:before {
	content: "\e6a7"
}

.ti-direction:before {
	content: "\e6a8"
}

.ti-direction-alt:before {
	content: "\e6a9"
}

.ti-dashboard:before {
	content: "\e6aa"
}

.ti-control-stop:before {
	content: "\e6ab"
}

.ti-control-shuffle:before {
	content: "\e6ac"
}

.ti-control-play:before {
	content: "\e6ad"
}

.ti-control-pause:before {
	content: "\e6ae"
}

.ti-control-forward:before {
	content: "\e6af"
}

.ti-control-backward:before {
	content: "\e6b0"
}

.ti-cloud:before {
	content: "\e6b1"
}

.ti-cloud-up:before {
	content: "\e6b2"
}

.ti-cloud-down:before {
	content: "\e6b3"
}

.ti-clipboard:before {
	content: "\e6b4"
}

.ti-car:before {
	content: "\e6b5"
}

.ti-calendar:before {
	content: "\e6b6"
}

.ti-book:before {
	content: "\e6b7"
}

.ti-bell:before {
	content: "\e6b8"
}

.ti-basketball:before {
	content: "\e6b9"
}

.ti-bar-chart:before {
	content: "\e6ba"
}

.ti-bar-chart-alt:before {
	content: "\e6bb"
}

.ti-back-right:before {
	content: "\e6bc"
}

.ti-back-left:before {
	content: "\e6bd"
}

.ti-arrows-corner:before {
	content: "\e6be"
}

.ti-archive:before {
	content: "\e6bf"
}

.ti-anchor:before {
	content: "\e6c0"
}

.ti-align-right:before {
	content: "\e6c1"
}

.ti-align-left:before {
	content: "\e6c2"
}

.ti-align-justify:before {
	content: "\e6c3"
}

.ti-align-center:before {
	content: "\e6c4"
}

.ti-alert:before {
	content: "\e6c5"
}

.ti-alarm-clock:before {
	content: "\e6c6"
}

.ti-agenda:before {
	content: "\e6c7"
}

.ti-write:before {
	content: "\e6c8"
}

.ti-window:before {
	content: "\e6c9"
}

.ti-widgetized:before {
	content: "\e6ca"
}

.ti-widget:before {
	content: "\e6cb"
}

.ti-widget-alt:before {
	content: "\e6cc"
}

.ti-wallet:before {
	content: "\e6cd"
}

.ti-video-clapper:before {
	content: "\e6ce"
}

.ti-video-camera:before {
	content: "\e6cf"
}

.ti-vector:before {
	content: "\e6d0"
}

.ti-themify-logo:before {
	content: "\e6d1"
}

.ti-themify-favicon:before {
	content: "\e6d2"
}

.ti-themify-favicon-alt:before {
	content: "\e6d3"
}

.ti-support:before {
	content: "\e6d4"
}

.ti-stamp:before {
	content: "\e6d5"
}

.ti-split-v-alt:before {
	content: "\e6d6"
}

.ti-slice:before {
	content: "\e6d7"
}

.ti-shortcode:before {
	content: "\e6d8"
}

.ti-shift-right-alt:before {
	content: "\e6d9"
}

.ti-shift-left-alt:before {
	content: "\e6da"
}

.ti-ruler-alt-2:before {
	content: "\e6db"
}

.ti-receipt:before {
	content: "\e6dc"
}

.ti-pin2:before {
	content: "\e6dd"
}

.ti-pin-alt:before {
	content: "\e6de"
}

.ti-pencil-alt2:before {
	content: "\e6df"
}

.ti-palette:before {
	content: "\e6e0"
}

.ti-more:before {
	content: "\e6e1"
}

.ti-more-alt:before {
	content: "\e6e2"
}

.ti-microphone-alt:before {
	content: "\e6e3"
}

.ti-magnet:before {
	content: "\e6e4"
}

.ti-line-double:before {
	content: "\e6e5"
}

.ti-line-dotted:before {
	content: "\e6e6"
}

.ti-line-dashed:before {
	content: "\e6e7"
}

.ti-layout-width-full:before {
	content: "\e6e8"
}

.ti-layout-width-default:before {
	content: "\e6e9"
}

.ti-layout-width-default-alt:before {
	content: "\e6ea"
}

.ti-layout-tab:before {
	content: "\e6eb"
}

.ti-layout-tab-window:before {
	content: "\e6ec"
}

.ti-layout-tab-v:before {
	content: "\e6ed"
}

.ti-layout-tab-min:before {
	content: "\e6ee"
}

.ti-layout-slider:before {
	content: "\e6ef"
}

.ti-layout-slider-alt:before {
	content: "\e6f0"
}

.ti-layout-sidebar-right:before {
	content: "\e6f1"
}

.ti-layout-sidebar-none:before {
	content: "\e6f2"
}

.ti-layout-sidebar-left:before {
	content: "\e6f3"
}

.ti-layout-placeholder:before {
	content: "\e6f4"
}

.ti-layout-menu:before {
	content: "\e6f5"
}

.ti-layout-menu-v:before {
	content: "\e6f6"
}

.ti-layout-menu-separated:before {
	content: "\e6f7"
}

.ti-layout-menu-full:before {
	content: "\e6f8"
}

.ti-layout-media-right-alt:before {
	content: "\e6f9"
}

.ti-layout-media-right:before {
	content: "\e6fa"
}

.ti-layout-media-overlay:before {
	content: "\e6fb"
}

.ti-layout-media-overlay-alt:before {
	content: "\e6fc"
}

.ti-layout-media-overlay-alt-2:before {
	content: "\e6fd"
}

.ti-layout-media-left-alt:before {
	content: "\e6fe"
}

.ti-layout-media-left:before {
	content: "\e6ff"
}

.ti-layout-media-center-alt:before {
	content: "\e700"
}

.ti-layout-media-center:before {
	content: "\e701"
}

.ti-layout-list-thumb:before {
	content: "\e702"
}

.ti-layout-list-thumb-alt:before {
	content: "\e703"
}

.ti-layout-list-post:before {
	content: "\e704"
}

.ti-layout-list-large-image:before {
	content: "\e705"
}

.ti-layout-line-solid:before {
	content: "\e706"
}

.ti-layout-grid4:before {
	content: "\e707"
}

.ti-layout-grid3:before {
	content: "\e708"
}

.ti-layout-grid2:before {
	content: "\e709"
}

.ti-layout-grid2-thumb:before {
	content: "\e70a"
}

.ti-layout-cta-right:before {
	content: "\e70b"
}

.ti-layout-cta-left:before {
	content: "\e70c"
}

.ti-layout-cta-center:before {
	content: "\e70d"
}

.ti-layout-cta-btn-right:before {
	content: "\e70e"
}

.ti-layout-cta-btn-left:before {
	content: "\e70f"
}

.ti-layout-column4:before {
	content: "\e710"
}

.ti-layout-column3:before {
	content: "\e711"
}

.ti-layout-column2:before {
	content: "\e712"
}

.ti-layout-accordion-separated:before {
	content: "\e713"
}

.ti-layout-accordion-merged:before {
	content: "\e714"
}

.ti-layout-accordion-list:before {
	content: "\e715"
}

.ti-ink-pen:before {
	content: "\e716"
}

.ti-info-alt:before {
	content: "\e717"
}

.ti-help-alt:before {
	content: "\e718"
}

.ti-headphone-alt:before {
	content: "\e719"
}

.ti-hand-point-up:before {
	content: "\e71a"
}

.ti-hand-point-right:before {
	content: "\e71b"
}

.ti-hand-point-left:before {
	content: "\e71c"
}

.ti-hand-point-down:before {
	content: "\e71d"
}

.ti-gallery:before {
	content: "\e71e"
}

.ti-face-smile:before {
	content: "\e71f"
}

.ti-face-sad:before {
	content: "\e720"
}

.ti-credit-card:before {
	content: "\e721"
}

.ti-control-skip-forward:before {
	content: "\e722"
}

.ti-control-skip-backward:before {
	content: "\e723"
}

.ti-control-record:before {
	content: "\e724"
}

.ti-control-eject:before {
	content: "\e725"
}

.ti-comments-smiley:before {
	content: "\e726"
}

.ti-brush-alt:before {
	content: "\e727"
}

.ti-youtube:before {
	content: "\e728"
}

.ti-vimeo:before {
	content: "\e729"
}

.ti-twitter:before {
	content: "\e72a"
}

.ti-time:before {
	content: "\e72b"
}

.ti-tumblr:before {
	content: "\e72c"
}

.ti-skype:before {
	content: "\e72d"
}

.ti-share:before {
	content: "\e72e"
}

.ti-share-alt:before {
	content: "\e72f"
}

.ti-rocket:before {
	content: "\e730"
}

.ti-pinterest:before {
	content: "\e731"
}

.ti-new-window:before {
	content: "\e732"
}

.ti-microsoft:before {
	content: "\e733"
}

.ti-list-ol:before {
	content: "\e734"
}

.ti-linkedin:before {
	content: "\e735"
}

.ti-layout-sidebar-2:before {
	content: "\e736"
}

.ti-layout-grid4-alt:before {
	content: "\e737"
}

.ti-layout-grid3-alt:before {
	content: "\e738"
}

.ti-layout-grid2-alt:before {
	content: "\e739"
}

.ti-layout-column4-alt:before {
	content: "\e73a"
}

.ti-layout-column3-alt:before {
	content: "\e73b"
}

.ti-layout-column2-alt:before {
	content: "\e73c"
}

.ti-instagram:before {
	content: "\e73d"
}

.ti-google:before {
	content: "\e73e"
}

.ti-github:before {
	content: "\e73f"
}

.ti-flickr:before {
	content: "\e740"
}

.ti-facebook:before {
	content: "\e741"
}

.ti-dropbox:before {
	content: "\e742"
}

.ti-dribbble:before {
	content: "\e743"
}

.ti-apple:before {
	content: "\e744"
}

.ti-android:before {
	content: "\e745"
}

.ti-save:before {
	content: "\e746"
}

.ti-save-alt:before {
	content: "\e747"
}

.ti-yahoo:before {
	content: "\e748"
}

.ti-wordpress:before {
	content: "\e749"
}

.ti-vimeo-alt:before {
	content: "\e74a"
}

.ti-twitter-alt:before {
	content: "\e74b"
}

.ti-tumblr-alt:before {
	content: "\e74c"
}

.ti-trello:before {
	content: "\e74d"
}

.ti-stack-overflow:before {
	content: "\e74e"
}

.ti-soundcloud:before {
	content: "\e74f"
}

.ti-sharethis:before {
	content: "\e750"
}

.ti-sharethis-alt:before {
	content: "\e751"
}

.ti-reddit:before {
	content: "\e752"
}

.ti-pinterest-alt:before {
	content: "\e753"
}

.ti-microsoft-alt:before {
	content: "\e754"
}

.ti-linux:before {
	content: "\e755"
}

.ti-jsfiddle:before {
	content: "\e756"
}

.ti-joomla:before {
	content: "\e757"
}

.ti-html5:before {
	content: "\e758"
}

.ti-flickr-alt:before {
	content: "\e759"
}

.ti-email:before {
	content: "\e75a"
}

.ti-drupal:before {
	content: "\e75b"
}

.ti-dropbox-alt:before {
	content: "\e75c"
}

.ti-css3:before {
	content: "\e75d"
}

.ti-rss:before {
	content: "\e75e"
}

.ti-rss-alt:before {
	content: "\e75f"
}

@font-face {
	font-family: Flaticon;
	src: url(../fonts/Flaticon.eot);
	src: url(../fonts/Flaticond41dd41d.eot?#iefix) format("embedded-opentype"), url(../fonts/Flaticon.woff) format("woff"), url(../fonts/Flaticon.ttf) format("truetype"), url(../fonts/Flaticon.svg#Flaticon) format("svg");
	font-weight: 400;
	font-style: normal
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family: Flaticon;
		src: url(Flaticon.html#Flaticon) format("svg")
	}
}

[class*=" flaticon-"]:after,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class^=flaticon-]:before {
	font-family: Flaticon;
	font-size: inherit;
	font-style: normal
}

.flaticon-nature-1:before {
	content: "\f100"
}

.flaticon-nature:before {
	content: "\f101"
}

.flaticon-fuel:before {
	content: "\f102"
}

.flaticon-security:before {
	content: "\f103"
}

.flaticon-technology-1:before {
	content: "\f104"
}

.flaticon-energy:before {
	content: "\f105"
}

.flaticon-factory-5:before {
	content: "\f106"
}

.flaticon-technology:before {
	content: "\f107"
}

.flaticon-process:before {
	content: "\f108"
}

.flaticon-container:before {
	content: "\f109"
}

.flaticon-drilling:before {
	content: "\f10a"
}

.flaticon-conveyor-1:before {
	content: "\f10b"
}

.flaticon-loader:before {
	content: "\f10c"
}

.flaticon-gears:before {
	content: "\f10d"
}

.flaticon-robot-arm-1:before {
	content: "\f10e"
}

.flaticon-gas:before {
	content: "\f10f"
}

.flaticon-factory-4:before {
	content: "\f110"
}

.flaticon-oil-platform:before {
	content: "\f111"
}

.flaticon-assembly-line:before {
	content: "\f112"
}

.flaticon-refinery:before {
	content: "\f113"
}

.flaticon-worker-1:before {
	content: "\f114"
}

.flaticon-cargo-ship:before {
	content: "\f115"
}

.flaticon-factory-3:before {
	content: "\f116"
}

.flaticon-oil:before {
	content: "\f117"
}

.flaticon-stock:before {
	content: "\f118"
}

.flaticon-robot-arm:before {
	content: "\f119"
}

.flaticon-factory-2:before {
	content: "\f11a"
}

.flaticon-industrial-robot:before {
	content: "\f11b"
}

.flaticon-worker:before {
	content: "\f11c"
}

.flaticon-conveyor:before {
	content: "\f11d"
}

.flaticon-factory-1:before {
	content: "\f11e"
}

.flaticon-industry:before {
	content: "\f11f"
}

.flaticon-interface:before {
	content: "\f120"
}

.flaticon-computer:before {
	content: "\f121"
}

div.pp_default .pp_bottom,
div.pp_default .pp_bottom .pp_left,
div.pp_default .pp_bottom .pp_middle,
div.pp_default .pp_bottom .pp_right,
div.pp_default .pp_top,
div.pp_default .pp_top .pp_left,
div.pp_default .pp_top .pp_middle,
div.pp_default .pp_top .pp_right {
	height: 13px
}

div.pp_default .pp_top .pp_left {
	background: url(../images/prettyPhoto/default/sprite.html) -78px -93px no-repeat
}

div.pp_default .pp_top .pp_middle {
	background: url(../images/prettyPhoto/default/sprite_x.html) top left repeat-x
}

div.pp_default .pp_top .pp_right {
	background: url(../images/prettyPhoto/default/sprite.html) -112px -93px no-repeat
}

div.pp_default .pp_content .ppt {
	color: #f8f8f8
}

div.pp_default .pp_content_container .pp_left {
	background: url(../images/prettyPhoto/default/sprite_y.html) -7px 0 repeat-y;
	padding-left: 13px
}

div.pp_default .pp_content_container .pp_right {
	background: url(../images/prettyPhoto/default/sprite_y.html) top right repeat-y;
	padding-right: 13px
}

div.pp_default .pp_next:hover {
	background: url(../images/prettyPhoto/default/sprite_next.html) center right no-repeat;
	cursor: pointer
}

div.pp_default .pp_previous:hover {
	background: url(../images/prettyPhoto/default/sprite_prev.html) center left no-repeat;
	cursor: pointer
}

div.pp_default .pp_expand {
	background: url(../images/prettyPhoto/default/sprite.html) 0 -29px no-repeat;
	cursor: pointer;
	width: 28px;
	height: 28px
}

div.pp_default .pp_expand:hover {
	background: url(../images/prettyPhoto/default/sprite.html) 0 -56px no-repeat;
	cursor: pointer
}

div.pp_default .pp_contract {
	background: url(../images/prettyPhoto/default/sprite.html) 0 -84px no-repeat;
	cursor: pointer;
	width: 28px;
	height: 28px
}

div.pp_default .pp_contract:hover {
	background: url(../images/prettyPhoto/default/sprite.html) 0 -113px no-repeat;
	cursor: pointer
}

div.pp_default .pp_close {
	width: 30px;
	height: 30px;
	background: url(../images/prettyPhoto/default/sprite.html) 2px 1px no-repeat;
	cursor: pointer
}

div.pp_default .pp_gallery ul li a {
	background: url(../images/prettyPhoto/default/default_thumb.html) center center #f8f8f8;
	border: 1px solid #aaa
}

div.pp_default .pp_social {
	margin-top: 7px
}

div.pp_default .pp_gallery a.pp_arrow_next,
div.pp_default .pp_gallery a.pp_arrow_previous {
	position: static;
	left: auto
}

div.pp_default .pp_nav .pp_pause,
div.pp_default .pp_nav .pp_play {
	background: url(../images/prettyPhoto/default/sprite.html) -51px 1px no-repeat;
	height: 30px;
	width: 30px
}

div.pp_default .pp_nav .pp_pause {
	background-position: -51px -29px
}

div.pp_default a.pp_arrow_next,
div.pp_default a.pp_arrow_previous {
	background: url(../images/prettyPhoto/default/sprite.html) -31px -3px no-repeat;
	height: 20px;
	width: 20px;
	margin: 4px 0 0
}

div.pp_default a.pp_arrow_next {
	left: 52px;
	background-position: -82px -3px
}

div.pp_default .pp_content_container .pp_details {
	margin-top: 5px
}

div.pp_default .pp_nav {
	clear: none;
	height: 30px;
	width: 110px;
	position: relative
}

div.pp_default .pp_nav .currentTextHolder {
	font-family: Georgia;
	font-style: italic;
	color: #999;
	font-size: 11px;
	left: 75px;
	line-height: 25px;
	position: absolute;
	top: 2px;
	margin: 0;
	padding: 0 0 0 10px
}

div.pp_default .pp_arrow_next:hover,
div.pp_default .pp_arrow_previous:hover,
div.pp_default .pp_close:hover,
div.pp_default .pp_nav .pp_pause:hover,
div.pp_default .pp_nav .pp_play:hover {
	opacity: .7
}

div.pp_default .pp_description {
	font-size: 11px;
	font-weight: 700;
	line-height: 14px;
	margin: 5px 50px 5px 0
}

div.pp_default .pp_bottom .pp_left {
	background: url(../images/prettyPhoto/default/sprite.html) -78px -127px no-repeat
}

div.pp_default .pp_bottom .pp_middle {
	background: url(../images/prettyPhoto/default/sprite_x.html) bottom left repeat-x
}

div.pp_default .pp_bottom .pp_right {
	background: url(../images/prettyPhoto/default/sprite.html) -112px -127px no-repeat
}

div.pp_default .pp_loaderIcon {
	background: url(../images/prettyPhoto/default/loader.html) center center no-repeat
}

div.light_rounded .pp_top .pp_left {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -88px -53px no-repeat
}

div.light_rounded .pp_top .pp_right {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -110px -53px no-repeat
}

div.light_rounded .pp_next:hover {
	background: url(../images/prettyPhoto/light_rounded/btnNext.html) center right no-repeat;
	cursor: pointer
}

div.light_rounded .pp_previous:hover {
	background: url(../images/prettyPhoto/light_rounded/btnPrevious.html) center left no-repeat;
	cursor: pointer
}

div.light_rounded .pp_expand {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -31px -26px no-repeat;
	cursor: pointer
}

div.light_rounded .pp_expand:hover {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -31px -47px no-repeat;
	cursor: pointer
}

div.light_rounded .pp_contract {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) 0 -26px no-repeat;
	cursor: pointer
}

div.light_rounded .pp_contract:hover {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) 0 -47px no-repeat;
	cursor: pointer
}

div.light_rounded .pp_close {
	width: 75px;
	height: 22px;
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -1px -1px no-repeat;
	cursor: pointer
}

div.light_rounded .pp_nav .pp_play {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -1px -100px no-repeat;
	height: 15px;
	width: 14px
}

div.light_rounded .pp_nav .pp_pause {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -24px -100px no-repeat;
	height: 15px;
	width: 14px
}

div.light_rounded .pp_arrow_previous {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) 0 -71px no-repeat
}

div.light_rounded .pp_arrow_next {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -22px -71px no-repeat
}

div.light_rounded .pp_bottom .pp_left {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -88px -80px no-repeat
}

div.light_rounded .pp_bottom .pp_right {
	background: url(../images/prettyPhoto/light_rounded/sprite.html) -110px -80px no-repeat
}

div.dark_rounded .pp_top .pp_left {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -88px -53px no-repeat
}

div.dark_rounded .pp_top .pp_right {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -110px -53px no-repeat
}

div.dark_rounded .pp_content_container .pp_left {
	background: url(../images/prettyPhoto/dark_rounded/contentPattern.html) top left repeat-y
}

div.dark_rounded .pp_content_container .pp_right {
	background: url(../images/prettyPhoto/dark_rounded/contentPattern.html) top right repeat-y
}

div.dark_rounded .pp_next:hover {
	background: url(../images/prettyPhoto/dark_rounded/btnNext.html) center right no-repeat;
	cursor: pointer
}

div.dark_rounded .pp_previous:hover {
	background: url(../images/prettyPhoto/dark_rounded/btnPrevious.html) center left no-repeat;
	cursor: pointer
}

div.dark_rounded .pp_expand {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -31px -26px no-repeat;
	cursor: pointer
}

div.dark_rounded .pp_expand:hover {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -31px -47px no-repeat;
	cursor: pointer
}

div.dark_rounded .pp_contract {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) 0 -26px no-repeat;
	cursor: pointer
}

div.dark_rounded .pp_contract:hover {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) 0 -47px no-repeat;
	cursor: pointer
}

div.dark_rounded .pp_close {
	width: 75px;
	height: 22px;
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -1px -1px no-repeat;
	cursor: pointer
}

div.dark_rounded .pp_description {
	margin-right: 85px;
	color: #fff
}

div.dark_rounded .pp_nav .pp_play {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -1px -100px no-repeat;
	height: 15px;
	width: 14px
}

div.dark_rounded .pp_nav .pp_pause {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -24px -100px no-repeat;
	height: 15px;
	width: 14px
}

div.dark_rounded .pp_arrow_previous {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) 0 -71px no-repeat
}

div.dark_rounded .pp_arrow_next {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -22px -71px no-repeat
}

div.dark_rounded .pp_bottom .pp_left {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -88px -80px no-repeat
}

div.dark_rounded .pp_bottom .pp_right {
	background: url(../images/prettyPhoto/dark_rounded/sprite.html) -110px -80px no-repeat
}

div.dark_rounded .pp_loaderIcon {
	background: url(../images/prettyPhoto/dark_rounded/loader.html) center center no-repeat
}

div.dark_square .pp_content,
div.dark_square .pp_left,
div.dark_square .pp_middle,
div.dark_square .pp_right {
	background: #000
}

div.dark_square .pp_description {
	color: #fff;
	margin: 0 85px 0 0
}

div.dark_square .pp_loaderIcon {
	background: url(../images/prettyPhoto/dark_square/loader.html) center center no-repeat
}

div.dark_square .pp_expand {
	background: url(../images/prettyPhoto/dark_square/sprite.html) -31px -26px no-repeat;
	cursor: pointer
}

div.dark_square .pp_expand:hover {
	background: url(../images/prettyPhoto/dark_square/sprite.html) -31px -47px no-repeat;
	cursor: pointer
}

div.dark_square .pp_contract {
	background: url(../images/prettyPhoto/dark_square/sprite.html) 0 -26px no-repeat;
	cursor: pointer
}

div.dark_square .pp_contract:hover {
	background: url(../images/prettyPhoto/dark_square/sprite.html) 0 -47px no-repeat;
	cursor: pointer
}

div.dark_square .pp_close {
	width: 75px;
	height: 22px;
	background: url(../images/prettyPhoto/dark_square/sprite.html) -1px -1px no-repeat;
	cursor: pointer
}

div.dark_square .pp_nav {
	clear: none
}

div.dark_square .pp_nav .pp_play {
	background: url(../images/prettyPhoto/dark_square/sprite.html) -1px -100px no-repeat;
	height: 15px;
	width: 14px
}

div.dark_square .pp_nav .pp_pause {
	background: url(../images/prettyPhoto/dark_square/sprite.html) -24px -100px no-repeat;
	height: 15px;
	width: 14px
}

div.dark_square .pp_arrow_previous {
	background: url(../images/prettyPhoto/dark_square/sprite.html) 0 -71px no-repeat
}

div.dark_square .pp_arrow_next {
	background: url(../images/prettyPhoto/dark_square/sprite.html) -22px -71px no-repeat
}

div.dark_square .pp_next:hover {
	background: url(../images/prettyPhoto/dark_square/btnNext.html) center right no-repeat;
	cursor: pointer
}

div.dark_square .pp_previous:hover {
	background: url(../images/prettyPhoto/dark_square/btnPrevious.html) center left no-repeat;
	cursor: pointer
}

div.light_square .pp_expand {
	background: url(../images/prettyPhoto/light_square/sprite.html) -31px -26px no-repeat;
	cursor: pointer
}

div.light_square .pp_expand:hover {
	background: url(../images/prettyPhoto/light_square/sprite.html) -31px -47px no-repeat;
	cursor: pointer
}

div.light_square .pp_contract {
	background: url(../images/prettyPhoto/light_square/sprite.html) 0 -26px no-repeat;
	cursor: pointer
}

div.light_square .pp_contract:hover {
	background: url(../images/prettyPhoto/light_square/sprite.html) 0 -47px no-repeat;
	cursor: pointer
}

div.light_square .pp_close {
	width: 75px;
	height: 22px;
	background: url(../images/prettyPhoto/light_square/sprite.html) -1px -1px no-repeat;
	cursor: pointer
}

div.light_square .pp_nav .pp_play {
	background: url(../images/prettyPhoto/light_square/sprite.html) -1px -100px no-repeat;
	height: 15px;
	width: 14px
}

div.light_square .pp_nav .pp_pause {
	background: url(../images/prettyPhoto/light_square/sprite.html) -24px -100px no-repeat;
	height: 15px;
	width: 14px
}

div.light_square .pp_arrow_previous {
	background: url(../images/prettyPhoto/light_square/sprite.html) 0 -71px no-repeat
}

div.light_square .pp_arrow_next {
	background: url(../images/prettyPhoto/light_square/sprite.html) -22px -71px no-repeat
}

div.light_square .pp_next:hover {
	background: url(../images/prettyPhoto/light_square/btnNext.html) center right no-repeat;
	cursor: pointer
}

div.light_square .pp_previous:hover {
	background: url(../images/prettyPhoto/light_square/btnPrevious.html) center left no-repeat;
	cursor: pointer
}

div.facebook .pp_top .pp_left {
	background: url(../images/prettyPhoto/facebook/sprite.html) -88px -53px no-repeat
}

div.facebook .pp_top .pp_middle {
	background: url(../images/prettyPhoto/facebook/contentPatternTop.html) top left repeat-x
}

div.facebook .pp_top .pp_right {
	background: url(../images/prettyPhoto/facebook/sprite.html) -110px -53px no-repeat
}

div.facebook .pp_content_container .pp_left {
	background: url(../images/prettyPhoto/facebook/contentPatternLeft.html) top left repeat-y
}

div.facebook .pp_content_container .pp_right {
	background: url(../images/prettyPhoto/facebook/contentPatternRight.html) top right repeat-y
}

div.facebook .pp_expand {
	background: url(../images/prettyPhoto/facebook/sprite.html) -31px -26px no-repeat;
	cursor: pointer
}

div.facebook .pp_expand:hover {
	background: url(../images/prettyPhoto/facebook/sprite.html) -31px -47px no-repeat;
	cursor: pointer
}

div.facebook .pp_contract {
	background: url(../images/prettyPhoto/facebook/sprite.html) 0 -26px no-repeat;
	cursor: pointer
}

div.facebook .pp_contract:hover {
	background: url(../images/prettyPhoto/facebook/sprite.html) 0 -47px no-repeat;
	cursor: pointer
}

div.facebook .pp_close {
	width: 22px;
	height: 22px;
	background: url(../images/prettyPhoto/facebook/sprite.html) -1px -1px no-repeat;
	cursor: pointer
}

div.facebook .pp_description {
	margin: 0 37px 0 0
}

div.facebook .pp_loaderIcon {
	background: url(../images/prettyPhoto/facebook/loader.html) center center no-repeat
}

div.facebook .pp_arrow_previous {
	background: url(../images/prettyPhoto/facebook/sprite.html) 0 -71px no-repeat;
	height: 22px;
	margin-top: 0;
	width: 22px
}

div.facebook .pp_arrow_previous.disabled {
	background-position: 0 -96px;
	cursor: default
}

div.facebook .pp_arrow_next {
	background: url(../images/prettyPhoto/facebook/sprite.html) -32px -71px no-repeat;
	height: 22px;
	margin-top: 0;
	width: 22px
}

div.facebook .pp_arrow_next.disabled {
	background-position: -32px -96px;
	cursor: default
}

div.facebook .pp_nav {
	margin-top: 0
}

div.facebook .pp_nav p {
	font-size: 15px;
	padding: 0 3px 0 4px
}

div.facebook .pp_nav .pp_play {
	background: url(../images/prettyPhoto/facebook/sprite.html) -1px -123px no-repeat;
	height: 22px;
	width: 22px
}

div.facebook .pp_nav .pp_pause {
	background: url(../images/prettyPhoto/facebook/sprite.html) -32px -123px no-repeat;
	height: 22px;
	width: 22px
}

div.facebook .pp_next:hover {
	background: url(../images/prettyPhoto/facebook/btnNext.html) center right no-repeat;
	cursor: pointer
}

div.facebook .pp_previous:hover {
	background: url(../images/prettyPhoto/facebook/btnPrevious.html) center left no-repeat;
	cursor: pointer
}

div.facebook .pp_bottom .pp_left {
	background: url(../images/prettyPhoto/facebook/sprite.html) -88px -80px no-repeat
}

div.facebook .pp_bottom .pp_middle {
	background: url(../images/prettyPhoto/facebook/contentPatternBottom.html) top left repeat-x
}

div.facebook .pp_bottom .pp_right {
	background: url(../images/prettyPhoto/facebook/sprite.html) -110px -80px no-repeat
}

div.pp_pic_holder a:focus {
	outline: 0
}

div.pp_overlay {
	background: #000;
	display: none;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9500
}

div.pp_pic_holder {
	display: none;
	position: absolute;
	width: 100px;
	z-index: 10000
}

.pp_content {
	height: 40px;
	min-width: 40px
}

* html .pp_content {
	width: 40px
}

.pp_content_container {
	position: relative;
	text-align: left;
	width: 100%
}

.pp_content_container .pp_left {
	padding-left: 20px
}

.pp_content_container .pp_right {
	padding-right: 20px
}

.pp_content_container .pp_details {
	float: left;
	margin: 10px 0 2px
}

.pp_description {
	display: none;
	margin: 0
}

.pp_social {
	float: left;
	margin: 0
}

.pp_social .facebook {
	float: left;
	margin-left: 5px;
	width: 55px;
	overflow: hidden
}

.pp_social .twitter {
	float: left
}

.pp_nav {
	clear: right;
	float: left;
	margin: 3px 10px 0 0
}

.pp_nav p {
	float: left;
	white-space: nowrap;
	margin: 2px 4px
}

.pp_nav .pp_pause,
.pp_nav .pp_play {
	float: left;
	margin-right: 4px;
	text-indent: -10000px
}

a.pp_arrow_next,
a.pp_arrow_previous {
	display: block;
	float: left;
	height: 15px;
	margin-top: 3px;
	overflow: hidden;
	text-indent: -10000px;
	width: 14px
}

.pp_hoverContainer {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2000
}

.pp_gallery {
	display: none;
	left: 50%;
	margin-top: -50px;
	position: absolute;
	z-index: 10000
}

.pp_gallery div {
	float: left;
	overflow: hidden;
	position: relative
}

.pp_gallery ul {
	float: left;
	height: 35px;
	position: relative;
	white-space: nowrap;
	margin: 0 0 0 5px;
	padding: 0
}

.pp_gallery ul a {
	border: 1px rgba(0, 0, 0, .5) solid;
	display: block;
	float: left;
	height: 33px;
	overflow: hidden
}

.pp_gallery ul a img {
	border: 0
}

.pp_gallery li {
	display: block;
	float: left;
	margin: 0 5px 0 0;
	padding: 0
}

.pp_gallery li.default a {
	background: url(../images/prettyPhoto/facebook/default_thumbnail.html) 0 0 no-repeat;
	display: block;
	height: 33px;
	width: 50px
}

.pp_gallery .pp_arrow_next,
.pp_gallery .pp_arrow_previous {
	margin-top: 7px!important
}

a.pp_next {
	background: url(../images/prettyPhoto/light_rounded/btnNext.html) 10000px 10000px no-repeat;
	display: block;
	float: right;
	height: 100%;
	text-indent: -10000px;
	width: 49%
}

a.pp_previous {
	background: url(../images/prettyPhoto/light_rounded/btnNext.html) 10000px 10000px no-repeat;
	display: block;
	float: left;
	height: 100%;
	text-indent: -10000px;
	width: 49%
}

a.pp_contract,
a.pp_expand {
	cursor: pointer;
	display: none;
	height: 20px;
	position: absolute;
	right: 30px;
	text-indent: -10000px;
	top: 10px;
	width: 20px;
	z-index: 20000
}

a.pp_close {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	line-height: 22px;
	text-indent: -10000px
}

.pp_loaderIcon {
	display: block;
	height: 24px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 24px;
	margin: -12px 0 0 -12px
}

#pp_full_res {
	line-height: 1!important
}

#pp_full_res .pp_inline {
	text-align: left
}

#pp_full_res .pp_inline p {
	margin: 0 0 15px
}

div.ppt {
	color: #fff;
	display: none;
	font-size: 17px;
	z-index: 9999;
	margin: 0 0 5px 15px
}

div.light_rounded .pp_content,
div.pp_default .pp_content {
	background-color: #fff
}

div.facebook #pp_full_res .pp_inline,
div.facebook .pp_content .ppt,
div.light_rounded #pp_full_res .pp_inline,
div.light_rounded .pp_content .ppt,
div.light_square #pp_full_res .pp_inline,
div.light_square .pp_content .ppt,
div.pp_default #pp_full_res .pp_inline {
	color: #000
}

.pp_gallery li.selected a,
.pp_gallery ul a:hover,
div.pp_default .pp_gallery ul li a:hover,
div.pp_default .pp_gallery ul li.selected a {
	border-color: #fff
}

div.dark_rounded .pp_details,
div.dark_square .pp_details,
div.facebook .pp_details,
div.light_rounded .pp_details,
div.light_square .pp_details,
div.pp_default .pp_details {
	position: relative
}

div.facebook .pp_content,
div.light_rounded .pp_bottom .pp_middle,
div.light_rounded .pp_content_container .pp_left,
div.light_rounded .pp_content_container .pp_right,
div.light_rounded .pp_top .pp_middle,
div.light_square .pp_content,
div.light_square .pp_left,
div.light_square .pp_middle,
div.light_square .pp_right {
	background: #fff
}

div.light_rounded .pp_description,
div.light_square .pp_description {
	margin-right: 85px
}

div.dark_rounded .pp_gallery a.pp_arrow_next,
div.dark_rounded .pp_gallery a.pp_arrow_previous,
div.dark_square .pp_gallery a.pp_arrow_next,
div.dark_square .pp_gallery a.pp_arrow_previous,
div.light_rounded .pp_gallery a.pp_arrow_next,
div.light_rounded .pp_gallery a.pp_arrow_previous,
div.light_square .pp_gallery a.pp_arrow_next,
div.light_square .pp_gallery a.pp_arrow_previous {
	margin-top: 12px!important
}

div.dark_rounded .pp_arrow_previous.disabled,
div.dark_square .pp_arrow_previous.disabled,
div.light_rounded .pp_arrow_previous.disabled,
div.light_square .pp_arrow_previous.disabled {
	background-position: 0 -87px;
	cursor: default
}

div.dark_rounded .pp_arrow_next.disabled,
div.dark_square .pp_arrow_next.disabled,
div.light_rounded .pp_arrow_next.disabled,
div.light_square .pp_arrow_next.disabled {
	background-position: -22px -87px;
	cursor: default
}

div.light_rounded .pp_loaderIcon,
div.light_square .pp_loaderIcon {
	background: url(../images/prettyPhoto/light_rounded/loader.html) center center no-repeat
}

div.dark_rounded .pp_bottom .pp_middle,
div.dark_rounded .pp_content,
div.dark_rounded .pp_top .pp_middle {
	background: url(../images/prettyPhoto/dark_rounded/contentPattern.html) top left repeat
}

div.dark_rounded .currentTextHolder,
div.dark_square .currentTextHolder {
	color: #c4c4c4
}

div.dark_rounded #pp_full_res .pp_inline,
div.dark_square #pp_full_res .pp_inline {
	color: #fff
}

.pp_bottom,
.pp_top {
	height: 20px;
	position: relative
}

* html .pp_bottom,
* html .pp_top {
	padding: 0 20px
}

.pp_bottom .pp_left,
.pp_top .pp_left {
	height: 20px;
	left: 0;
	position: absolute;
	width: 20px
}

.pp_bottom .pp_middle,
.pp_top .pp_middle {
	height: 20px;
	left: 20px;
	position: absolute;
	right: 20px
}

* html .pp_bottom .pp_middle,
* html .pp_top .pp_middle {
	left: 0;
	position: static
}

.pp_bottom .pp_right,
.pp_top .pp_right {
	height: 20px;
	left: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px
}

.pp_fade,
.pp_gallery li.default a img {
	display: none
}

body .page .site-main>.ttm-row:not(.intro-section):first-child {
	margin-top: -92px
}

.ttm-row {
	padding: 90px 0
}

.ttm-row.welcome-section {
	padding: 90px 0 0
}

.ttm-row.intro-section {
	padding: 0 0
}

.ttm-row.intro-section.style2 {
	padding: 100px 0 90px;
	margin-top: -92px
}

.ttm-row.intro-section.style3 {
	padding: 0 0 90px
}

.ttm-row.about-section {
	padding: 0 0
}

.ttm-row.intro-section .intro-content {
	margin-top: -116px;
	padding: 40px 15px 34px 15px
}

.ttm-row.intro-section.style2 .intro-content {
	margin-top: 0;
	padding: 0
}

.ttm-row.about-fectory-section {
	padding: 80px 0 0
}

.ttm-row.service-section.style2 {
	padding: 115px 0 90px
}

.ttm-row.skill-section {
	padding: 0 0 80px
}

.ttm-row.blog-section {
	padding: 90px 0 62px
}

.ttm-row.blog-section2 {
	padding: 0 0
}

.ttm-row.blog-section3 {
	padding: 0 0 80px
}

.ttm-row.testimonial-section {
	padding: 0 0
}

.ttm-row.testimonial-section2 {
	padding: 170px 0 95px;
	z-index: -1
}

.ttm-row.fid-section.bg-img5 {
	padding: 50px 0
}

.ttm-row.client-section {
	padding: 140px 0 0
}

.ttm-row.client-section.style2 {
	padding: 80px 0 0
}

.ttm-row.company-template-section {
	padding: 0 0
}

.ttm-row.tab-text-section {
	padding: 100px 0 107px
}

.ttm-row.bg-layer-section {
	padding: 0 0
}

.ttm-row.accordion-section {
	padding: 195px 0 142px
}

.ttm-row.team-section {
	padding: 10px 0 80px
}

.ttm-row.bg-img5 {
	padding: 108px 0 87px
}

.ttm-row.features-section {
	padding: 0 0
}

.ttm-row.empty-section {
	padding: 150px 0 130px;
	position: relative
}

.ttm-row.empty-section2 {
	padding: 100px 0
}

.ttm-row.empty-section3 {
	padding: 100px 0 150px
}

.ttm-row.portfolio-section {
	padding: 0 0 0
}

.ttm-row.portfolio-title-section {
	padding: 100px 0 140px
}

.ttm-row.img-box-section {
	padding: 0 0 80px
}

.ttm-row.blog-title-section {
	padding: 87px 0 180px
}

.row-equal-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.row-equal-height>[class*=col-] {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.ttm-bg {
	position: relative
}

.bg-layer-equal-height .ttm-col-bgcolor-yes,
.ttm-col-bgimage-yes {
	height: 100%
}

.ttm-bg-layer,
.ttm-titlebar-wrapper .ttm-titlebar-wrapper-bg-layer {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0
}

.ttm-left-span .ttm-col-wrapper-bg-layer {
	width: auto;
	margin-left: -100px;
	right: 0
}

.ttm-right-span .ttm-col-wrapper-bg-layer {
	width: auto;
	margin-right: -100px;
	right: 0
}

.ttm-bg.ttm-bgimage-yes>.ttm-bg-layer {
	opacity: .9
}

.layer-content {
	position: relative;
	z-index: 9;
	height: 100%
}

.bg-layer>.container>.row {
	margin: 0
}

.bg-layer>.container-fluid>.row>[class*=col-],
.bg-layer>.container>.row>[class*=col-] {
	padding: 0
}

.bg-img1 {
	background-image: url(../images/fasteners.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-img2 {
	background-image: url(../images/bg-image/row-bgimage-2.html);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-img3 {
	background-image: url(../images/bg-image/row-bgimage-3.html);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-img4 {
	background-image: url(../images/bg-image/row-bgimage-4.html);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-img5 {
	background-image: url(../images/bg-image/row-bgimage-5.html);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-img6 {
	background-image: url(../images/bg-image/row-bgimage-6.html);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-img7 {
	background-image: url(../images/bg-image/row-bgimage-7.html);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-img8 {
	background-image: url(../images/bg-image/row-bgimage-8.html);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-img9 {
	background-image: url(../images/bg-image/row-bgimage-9.html);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.bg-map {
	background-image: url(../images/map.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.ttm-equal-height-image {
	display: none
}

.col-bg-img-one.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/fasteners.jpg)!important;
	background-position: left center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-two.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-2.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-three.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-3.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-four.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-4.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-five.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-5.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-six.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-6.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-seven.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-7.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-eight.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-8.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-nine.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimg-001.html)!important;
	background-position: top right!important;
	background-repeat: no-repeat!important
}

.col-bg-img-ten.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-10.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-eleven.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-11.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-twell.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-12.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-thirteen.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/cutting-process.jpg)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-fourteen.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-14.html)!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-fifteen.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-15.html)!important;
	background-position: bottom!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-sixteen.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-16.html)!important;
	background-position: bottom!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.col-bg-img-seventeen.ttm-col-bgimage-yes .ttm-col-wrapper-bg-layer {
	background-image: url(../images/bg-image/col-bgimage-17.html)!important;
	background-position: bottom!important;
	background-repeat: no-repeat!important;
	background-size: cover!important
}

.image-overlay-content {
	display: block
}

.image-overlay-content span {
	font-size: 45px;
	line-height: 50px;
	margin-bottom: 5px;
	display: block
}

.image-overlay-content .circle-shape p {
	font-size: 16px;
	line-height: 20px
}

.image-overlay-content .circle-shape {
	display: block;
	height: 133px;
	width: 133px;
	border-radius: 50%;
	padding: 20px 12px 12px;
	text-align: center
}

.image-overlay-content .circle-shape.ttm-top-view-overlay {
	position: absolute;
	top: 65px;
	left: 0
}

.image-overlay-content .shakeimage.ttm-top-view-overlay {
	position: absolute;
	top: 260px;
	right: -60px
}

.image-overlay-content .shakeimage {
	-webkit-animation: shake 24s linear infinite;
	-moz-animation: shake 24s linear infinite;
	-o-animation: shake 24s linear infinite;
	animation: shake 24s linear infinite
}

.image-overlay-content .rectangle-shape {
	padding: 20px 30px
}

.image-overlay-content .rectangle-shape span {
	margin-bottom: 5px;
	font-size: 22px;
	font-weight: 600
}

.image-overlay-content .rectangle-shape.ttm-bottom-view-overlay {
	position: absolute;
	bottom: 140px;
	right: 90px;
	opacity: .9
}

.section-title {
	margin-bottom: 24px;
	position: relative
}

.section-title.style2 {
	margin-bottom: 60px
}

.section-title.style2.with-seprator {
	margin-bottom: 35px
}

.section-title.style2 h3.title {
	padding-bottom: 0;
	margin-bottom: 15px
}

.section-title.style2:after {
	content: "";
	right: 1%;
	height: 82%;
	position: absolute;
	top: 10%;
	width: 1px;
	border-right: 1px solid rgba(122, 122, 122, .34)
}

.ttm-bgcolor-skincolor .section-title.style2:after {
	border-right: 1px solid rgba(255, 255, 255, .16)
}

.section-title.style2 h3 {
	display: table-cell;
	width: 25%;
	padding: 0 40px 0 0
}

.section-title.style2 p {
	display: table-cell
}

.section-title h5 {
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 28px;
	color: #818a8f;
	margin-top: -5px;
	margin-bottom: 6px
}

.section-title h1.title {
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 45px;
	line-height: 50px;
	padding-bottom: 51px;
	margin-bottom: 0;
	text-transform: capitalize
}

.section-title h2.title {
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 45px;
	line-height: 50px;
	padding-bottom: 51px;
	margin-bottom: 0
}

.section-title h3.title {
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 40px;
	line-height: 42px;
	padding-bottom: 51px;
	margin-bottom: 0
}

.section-title h3.title1 {
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 40px;
	line-height: 42px;
	padding-bottom: 51px;
	margin-bottom: 0;
	color: #fff
}

.section-title h4.title {
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 35px;
	line-height: 42px;
	padding-bottom: 51px;
	margin-bottom: 0;
	text-transform: capitalize;
	color: #fff
}

.section-title h4 {
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 25px;
	color: #818a8f;
	padding-bottom: 15px
}

.without-seprator h2.title {
	font-size: 36px;
	line-height: 40px;
	padding-bottom: 20px;
	margin-bottom: 0
}

h2.title strong {
	font-weight: 600!important;
	width: 100%;
	display: block
}

.row-title h2.title {
	font-size: 64px;
	line-height: 67px;
	color: #020d26;
	font-weight: 600!important;
	margin-bottom: 0;
	padding: 0
}

.ttm-bgcolor-darkgrey .row-title h2.title {
	color: #fff
}

.row-title h2.title strong {
	font-weight: 400!important;
	width: 100%;
	display: inline
}

.row-title p {
	font-size: 17px;
	line-height: 28px;
	margin-top: 20px;
	margin-bottom: 15px;
	padding-bottom: 31px
}

.row-title p.style2 {
	text-align: left;
	font-size: 20px;
	line-height: 32px;
	margin-bottom: 15px
}

.col-title .title-icon {
	font-size: 54px;
	color: #ff5e14;
	line-height: 50px
}

.ttm-bgcolor-skincolor .col-title .title-icon {
	color: #fff
}

.col-title h2.title {
	text-align: center;
	font-size: 50px;
	line-height: 64px;
	font-family: 'Titillium Web', Arial, Helvetica;
	font-weight: 400;
	margin: 10px 0 15px 0;
	padding-bottom: 0
}

.col-title h2.sub-title {
	text-align: center;
	font-size: 28px;
	line-height: 30px;
	font-family: 'Titillium Web', Arial, Helvetica;
	font-weight: 600;
	color: #fff;
	margin: 35px 0 15px 0
}

.col-title h2.title strong {
	font-weight: 600!important;
	display: inline
}

.col-title p {
	text-align: center;
	font-size: 20px;
	line-height: 22px;
	font-family: 'Titillium Web', Arial, Helvetica;
	font-weight: 400;
	padding: 10px 0 20px
}

.title-box-only h4 {
	font-size: 40px;
	line-height: 30px;
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;
	font-weight: 600;
	padding-bottom: 10px;
	margin-bottom: 0;
	color: #fff
}

.title-box-only.style2 h4 {
	margin-bottom: 0;
	color: #020d26
}

.title-box-only.style2 h2 {
	font-size: 40px;
	line-height: 40px;
	padding-bottom: 0;
	margin-bottom: 15px
}

.title-box-only h2 {
	font-size: 65px;
	line-height: 65px;
	padding-bottom: 20px
}

.title-box-only h2 strong {
	font-weight: 400
}

.title-box-only p {
	font-size: 17px;
	line-height: 27px;
	font-weight: 400
}

.title-box-only span {
	display: block;
	font-size: 25px;
	line-height: 32px;
	font-weight: 400;
	margin-bottom: 15px;
	padding-top: 5px
}

.heading-seperator {
	position: relative
}

.heading-seperator span:after {
	content: "";
	left: 53%;
	position: absolute;
	bottom: 28px;
	width: 17px;
	margin-left: 0;
	border-bottom-width: 3px;
	border-bottom-color: #cacaca;
	border-bottom-style: solid
}

.heading-seperator span:after {
	right: auto;
	left: 63px
}

.heading-seperator:after {
	border-bottom-color: #ff5e14
}

.heading-seperator:after {
	content: "";
	left: 50%;
	position: absolute;
	bottom: 28px;
	width: 59px;
	margin-left: -37px;
	border-bottom-width: 3px;
	border-bottom-style: solid
}

.heading-seperator:after {
	left: 0;
	margin-left: 0
}

.heading-seperator.text-center span:after {
	left: auto;
	margin-left: 26px
}

.heading-seperator.text-center:after {
	left: inherit;
	margin-left: -37px
}

.separator .sep-line {
	height: 1px;
	border-top: 1px solid #dbdbdb;
	display: block;
	position: relative;
	top: 5px;
	width: 100%
}

.ttm-bgcolor-darkgrey .separator .sep-line {
	border-color: rgba(255, 255, 255, .14)
}

.ttm-bgcolor-white .separator .sep-line {
	border-color: #f1f1f1
}

.ttm-btn {
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	padding: 11px 32px 11px 31px;
	background: 0 0;
	border: 1px solid transparent;
	position: relative;
	font-weight: 600;
	overflow: hidden;
	z-index: 9;
	text-transform: capitalize;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out
}

.ttm-btn.btn-inline {
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 600;
	padding: 0;
	border: 1px solid transparent;
	background-color: transparent
}

.ttm-btn.btn-inline.style2 {
	padding: 1px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: underline
}

.ttm-btn.ttm-icon-btn-left {
	padding-left: 44px
}

.ttm-btn.ttm-icon-btn-right {
	padding-right: 44px
}

.ttm-btn.ttm-icon-btn-left i {
	left: 20px
}

.ttm-btn.ttm-icon-btn-right i {
	right: 20px
}

.ttm-btn.ttm-icon-btn-right {
	padding-right: 22px
}

.ttm-btn.ttm-icon-btn-right i {
	right: 2px
}

.ttm-bgcolor-darkgrey .ttm-btn:hover.btn-inline.ttm-btn-color-skincolor {
	background-color: transparent;
	color: #fff
}


.ttm-btn i {
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.ttm-btn.ttm-icon-btn-right {
	text-align: right
}

.ttm-btn.ttm-btn-size-xs {
	font-size: 11px;
	padding: 8px 20px
}

.ttm-btn.ttm-btn-size-xs.ttm-icon-btn-right {
	padding-right: 31px
}

.ttm-btn.ttm-btn-size-xs.ttm-icon-btn-left {
	padding-left: 31px
}

.ttm-btn.ttm-btn-size-xs i {
	font-size: 14px;
	height: 11px;
	line-height: 11px;
	right: 12px
}

.ttm-btn.ttm-btn-size-sm {
	font-size: 13px;
	padding: 9px 25px
}

.ttm-btn.ttm-btn-size-sm.ttm-icon-btn-right {
	padding-right: 39px
}

.ttm-btn.ttm-btn-size-sm.ttm-icon-btn-left {
	padding-left: 39px
}

.ttm-btn.ttm-btn-size-sm i {
	font-size: 14px;
	height: 12px;
	line-height: 12px;
	right: 16px
}

.ttm-btn.ttm-btn-size-md {
	font-size: 16px;
	padding: 11px 32px 11px 31px
}

.ttm-btn.ttm-btn-size-md.ttm-icon-btn-right {
	padding-right: 55px
}

.ttm-btn.ttm-btn-size-md.ttm-icon-btn-left {
	padding-left: 55px
}

.ttm-btn.ttm-btn-size-md.ttm-icon-btn-right i {
	font-size: 13px;
	height: 13px;
	line-height: 13px;
	right: 30px
}

.ttm-btn.ttm-btn-size-lg {
	font-size: 20px;
	line-height: 20px;
	padding: 18px 45px
}

.ttm-btn.ttm-btn-size-lg.ttm-icon-btn-right {
	padding-right: 60px
}

.ttm-btn.ttm-btn-size-lg.ttm-icon-btn-left {
	padding-left: 60px
}

.ttm-btn.ttm-btn-size-lg.ttm-icon-btn-right i {
	font-size: 20px;
	height: 16px;
	line-height: 16px;
	right: 25px
}

.ttm-btn.ttm-btn-shape-round {
	border-radius: 2em
}

.ttm-btn.ttm-btn-shape-rounded {
	border-radius: 5px
}

.ttm-btn.ttm-btn-shape-square {
	border-radius: 0
}

.ttm-btn.ttm-btn-style-border {
	background-color: transparent;
	border: 1px solid transparent
}

.ttm-btn.ttm-btn-color-white.ttm-btn-style-border {
	color: #fff;
	border-color: #fff;
	background: 0 0
}

.ttm-btn.ttm-btn-color-white.ttm-btn-style-border:hover {
	color: #020d26;
	border-color: #fff;
	background-color: #fff
}

.ttm-btn.ttm-btn-color-black.ttm-btn-style-fill {
	color: #fff;
	background-color: #2c2c2c
}

.ttm-btn.ttm-btn-color-black.ttm-btn-style-fill:hover {
	color: #f7f7f7;
	background-color: #1b1b1b
}

.ttm-video-btn.video-btn-left {
	left: 0
}

.video-btn-left .ttm-play-btn {
	padding-left: 90px
}

.ttm-video-btn.video-btn-center {
	left: 50%;
	margin-top: -25px;
	position: absolute;
	top: 50%
}

.ttm-video-btn:hover a {
	opacity: .8;
	color: #fff
}

.ttm-play-btn {
	border-radius: 30px;
	color: #fff;
	font-size: 18px;
	display: inline-block;
	padding: 10px 20px 10px 50px;
	position: relative
}

.ttm-video-btn .ttm-btn-play {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-top: -30px;
	z-index: 5;
	width: 70px;
	height: 70px;
	border-radius: 50px;
	text-align: center;
	line-height: 70px;
	font-size: 25px;
	margin-right: -1px;
	cursor: pointer;
	display: inline-block;
	-webkit-transition: .15s ease-in-out;
	transition: .15s ease-in-out
}

.ttm-btn-play:after,
.ttm-btn-play:before {
	content: '';
	border: 1px solid;
	border-color: inherit;
	width: 150%;
	height: 150%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	position: absolute;
	left: -25%;
	top: -25%;
	opacity: 1;
	-webkit-animation: 1s videoplay-anim linear infinite;
	animation: 1s videoplay-anim linear infinite
}

.ttm-btn-play:before {
	-webkit-animation-delay: .5s;
	animation-delay: .5s
}

.ttm-play-btn:hover,
.ttm-video-btn span.ttm-btn-play {
	color: #fff
}

.ttm-video-btn:hover .ttm-btn-play {
	background-color: rgba(255, 94, 24, .95);
	color: #fff
}

.fid-section.bg-img5 {
	background-attachment: fixed
}

.ttm-fid {
	position: relative;
	padding: 25px 0
}

.ttm-fid sub {
	opacity: 1;
	font-size: 35px;
	font-weight: 600;
	bottom: 0;
	margin-left: -5px
}

.ttm-fid.ttm-fid-icon {
	text-align: center
}

.ttm-fid-icon-wrapper i {
	font-size: 45px!important
}

.ttm-fid-contents h3 {
	width: 100%;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	margin-bottom: 0;
	color: rgba(0, 0, 0, .8)
}

.ttm-fid-contents h4 {
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 0;
	font-weight: 600;
	margin-bottom: 0;
	padding: 0
}

.ttm-fid-icon .ttm-fid-icon-wrapper i {
	position: absolute;
	top: 50%;
	left: 50%;
	-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%)
}

.ttm-fid-icon .ttm-fid-icon-wrapper {
	margin-bottom: 10px;
	border: 2px solid #fff;
	width: 113px;
	height: 113px;
	line-height: 113px;
	border-radius: 50%;
	display: inline-block;
	position: relative
}

.ttm-fid-icon .ttm-fid-icon-wrapper:after,
.ttm-fid-icon .ttm-fid-icon-wrapper:before {
	position: absolute;
	top: 50%;
	height: 1px;
	width: 100%;
	content: "";
	border-bottom: 1px dashed #fff
}

.ttm-fid-icon .ttm-fid-icon-wrapper:before {
	right: -100%
}

.ttm-fid-icon .ttm-fid-icon-wrapper:after {
	left: -100%
}

.box-connect .col-md-3:first-child .ttm-fid-icon .ttm-fid-icon-wrapper:after,
.box-connect .col-md-3:last-child .ttm-fid-icon .ttm-fid-icon-wrapper:before {
	display: none
}

.featured-box {
	padding: 20px 0 20px 0;
	position: relative
}

.featured-box.left-icon .featured-content {
	padding-left: 15px
}

.featured-box.left-icon {
	display: table-cell;
	display: table
}

.featured-box.left-icon .featured-content {
	display: table-cell;
	vertical-align: middle
}

.featured-box.left-icon .featured-icon {
	vertical-align: top;
	display: table-cell
}

.featured-box .featured-icon.icon-shape-square {
	margin-bottom: 25px
}

.featured-box .featured-icon.icon-shape-square i {
	display: inline-block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: 30px;
	text-align: center;
	border: 1px solid transparent;
	border-radius: 0
}

.featured-box .featured-icon.icon-shape-square.icon-size-md i {
	width: 68px;
	height: 65px;
	line-height: 65px
}

.featured-box .featured-icon.icon-shape-square.icon-bgcolor-grey i {
	background-color: #ebebeb
}

.featured-box .featured-icon.border-icon i {
	font-size: 20px;
	height: 40px;
	width: 40px;
	border: 1px solid;
	border-radius: 50%;
	float: left;
	text-align: center;
	line-height: 40px;
	margin-right: 15px
}

.featured-box .featured-icon i {
	font-size: 45px;
	line-height: 45px
}

.featured-title h5 {
	font-size: 21px;
	line-height: 28px;
	margin-bottom: 10px;
	font-weight: 600
}

.featured-box.icon-size-sm .featured-icon i {
	font-size: 28px;
	line-height: 28px
}

.featured-box.style2 {
	padding: 36px 15px 43px;
	border: 1px solid transparent;
	margin-top: 15px
}

.service-section.style2 .row .col-lg-4:nth-child(-n+3) .featured-box.style2 {
	margin-bottom: 40px
}

.featured-box.style2 .featured-content {
	padding-top: 18px
}

.featured-box.style2:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 100%;
	z-index: -10;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	transition: all .3s linear
}

.featured-box.style2:hover:after {
	border-color: #ff5e14;
	width: 100%
}

.featured-box.style3 {
	padding: 60px 10px
}

.featured-box.style4 {
	padding: 10px 0
}

.featured-box.style4 .featured-title h5 {
	margin-bottom: 0
}

.featured-box.style4 .featured-desc p {
	color: #020d26;
	font-size: 18px;
	font-weight: 400
}

.featured-box.style5 {
	position: relative;
	padding: 0 25px 36px;
	background-color: #fff;
	z-index: 9
}

.featured-box.style5 .featured-icon {
	display: inline-block;
	text-align: center;
	margin-top: -30px
}

.featured-box.style6 {
	padding: 67px 70px 70px
}

.ttm-box-seperator.row {
	margin: 0 15px;
	padding: 65px 10px 21px
}

.ttm-box-seperator.row .col-lg-4 .featured-box {
	border-left: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
	margin-right: -15px;
	margin-left: -15px;
	margin-bottom: 25px;
	padding: 0 20px
}

.ttm-box-seperator.style2.row {
	padding: 40px 17px 65px 12px;
	margin-top: 24px
}

.ttm-box-seperator.style2.row .col-lg-4 .featured-box {
	padding-top: 30px;
	padding-bottom: 48px;
	margin-bottom: 0
}

.ttm-box-seperator.row .col-lg-4 .featured-box:nth-last-child(1) {
	border-bottom: none
}

.ttm-box-seperator.row .col-lg-4:nth-child(1) .featured-box {
	border-left: none
}

.featured-box.style7 {
	padding: 0 0
}

.featured-box.style7 .featured-title h5 {
	font-size: 18px;
	line-height: 33px;
	margin-bottom: 10px
}

.featured-box.style7 .featured-icon i {
	font-size: 26px;
	line-height: 0;
	font-weight: 400;
	vertical-align: middle
}

.featured-box.style8 {
	padding: 0 0;
	margin: 0 0 20px;
	border-bottom: 1px solid #ebebeb;
	display: block;
	clear: both
}

.featured-box.style8 .featured-icon i {
	font-size: 32px;
	clear: both
}

.featured-box.style8 .featured-title h5 {
	line-height: 44px;
	margin-bottom: 10px
}

.featured-box.style9 {
	padding: 15px 0
}

.featured-box.style9.featured-box.left-icon p {
	color: #fff
}

.featured-box.style9 .featured-icon i {
	font-size: 34px
}

.featured-box.style9 .featured-title h5 {
	font-size: 22px;
	line-height: 27px;
	margin-bottom: 0
}

.featured-box.style10 {
	padding: 10px 0 0
}

.featured-box.style10 .featured-icon i {
	height: 95px;
	width: 110px;
	line-height: 95px;
	font-size: 45px
}

.featured-box.style10 .featured-content {
	padding-left: 25px;
	padding-right: 40px
}

.featured-box.style10 .featured-content .featured-desc h3 {
	margin: 0
}

.featured-box.style10 .featured-content .featured-desc p {
	margin: 0
}

.featured-item {
	position: relative
}

.col-md-4:not(:last-child) .featured-item.ttm-box-view-topimage,
.featured-item.ttm-portfolio-view-topimage:not(.owl-carousel) {
	margin-bottom: 30px
}

.featured-item .content-post {
	padding: 15px;
	position: relative;
	text-align: left;
	background-color: #fff;
	-webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
	-moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
	box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14)
}

.featured-item .content-post h2.title-post {
	font-size: 22px;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 25px
}

.featured-item .content-post .category a:hover,
.featured-item .content-post h2.title-post a:hover {
	color: #ff5e14
}

.featured-item .content-post .category,
.featured-item .content-post .category a {
	font-size: 13px;
	color: #fff
}

.featured-item.ttm-portfolio-view-topimage .content-post .category,
.featured-item.ttm-portfolio-view-topimage .content-post .category a {
	color: #afafaf
}

.featured-item img,
.featured-portfolio-item {
	position: relative;
	overflow: hidden
}

.featured-item .content-post .content-post-desc {
	background-color: #fff;
	margin: 10px 10px;
	padding: 13px 0 12px;
	margin-top: -60px
}

.content-post h5.title-post {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 0;
	line-height: 34px
}

.content-post p.category {
	color: #b3b7c3;
	font-size: 13px;
	margin-top: -6px
}

.ttm-social-links-wrapper .social-icons li {
	margin: 0 3px 10px 0
}

.ttm-social-links-wrapper .social-icons li a {
	margin-top: 15px;
	border-radius: 50%;
	border: 1px solid transparent;
	width: 29px;
	height: 29px;
	line-height: 29px;
	font-size: 13px;
	margin-right: 5px;
	text-align: center;
	background-color: #e5e8e9
}

.ttm-social-links-wrapper .social-icons li a {
	margin: 0 2px;
	display: block
}

.ttm-social-links-wrapper {
	border-top: 1px solid #edeff1;
	margin: 0 15px;
	padding-top: 14px
}

.ttm-box-view-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(2, 13, 38, .8);
	opacity: 0;
	-webkit-transition: all .5s ease 0s;
	transition: all .5s ease 0s
}

.featured-item:hover .ttm-box-view-overlay {
	height: 100%;
	opacity: 1
}

.ttm-box-view-overlay .featured-iconbox a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	border-radius: 50%;
	font-size: 18px;
	-webkit-transition: unset;
	-moz-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: unset
}

.ttm-box-view-overlay .featured-iconbox a i {
	display: block;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.ttm-box-view-overlay .featured-iconbox.ttm-media-link {
	position: absolute;
	z-index: 5;
	top: 0;
	width: 100%;
	text-align: center;
	padding: 0 15px;
	-webkit-transform: translateY(-50%);
	-khtml-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .5s ease 0s;
	transition: all .5s ease 0s
}

.ttm-box-view-overlay .featured-iconbox.ttm-media-link a.ttm_link {
	margin-left: 8px
}

.featured-item.ttm-portfolio-view-topimage:hover .ttm-box-view-overlay .featured-iconbox.ttm-media-link {
	top: 50%
}

.featured-item .featured-team-item.ttm-item-view-topimage a {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -43px;
	margin-left: -22px;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.featured-team-item .ttm-box-view-overlay {
	height: 0;
	top: 0
}

.featured-team-item:hover .ttm-box-view-overlay {
	height: 100%;
	opacity: 1
}

.featured-portfolio-item .ttm-box-view-overlay:hover .ttm-media-link {
	top: 39%
}

.featured-team-item .featured-img-left a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	line-height: 40px;
	color: #fff;
	text-align: center;
	font-size: 19px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all .3s ease;
	opacity: 0;
	margin-top: 0
}

.featured-team-item:hover .featured-img-left .ttm-box-view-overlay {
	opacity: 1;
	transform: scale(1)
}

.featured-team-item .featured-img-left a {
	opacity: 1
}

.featured-portfolio-item .content-post.content-portfolio-post {
	padding: 16px 18px
}

.featured-portfolio-item .content-post.content-portfolio-post {
	position: absolute;
	width: 100%;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform .4s, opacity .1s .3s;
	-moz-transition: -moz-transform .4s, opacity .1s .3s;
	transition: transform .4s, opacity .1s .3s
}

.featured-portfolio-item:hover .content-post.content-portfolio-post {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform .4s, opacity .1s;
	-moz-transition: -moz-transform .4s, opacity .1s;
	transition: transform .4s, opacity .1s
}

.featured-portfolio-item .content-post.content-portfolio-post:before {
	position: absolute;
	bottom: 100%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	left: 30px;
	border-style: solid;
	border-width: 0 15px 15px 15px;
	border-color: transparent transparent #fff transparent;
	z-index: 1;
	top: -14px
}

.featured-portfolio-item .content-post.content-portfolio-post:before {
	border-color: transparent transparent #ff5e14 transparent
}

.featured-team-item {
	overflow: hidden;
	position: relative;
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
	-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
	border: 6px solid #fff
}

.featured-team-item.style2 {
	border: 0;
	margin: 15px 0;
	padding: 15px;
	background-color: #fff
}

.featured-item.ttm-team-view-topimage .content-post.content-team-post {
	text-align: center;
	padding: 23px 0 0 0;
	padding-bottom: 2px;
	background-color: #f3f7f9;
	margin-bottom: 0
}

.featured-img-left {
	padding-left: 0;
	padding-right: 0
}

.featured-team-item .featured-img-right.ttm-post-content .content-post.content-team-post {
	padding: 15px 25px 0;
	text-align: left;
	background-color: inherit;
	box-shadow: inherit
}

.featured-item .featured-img-right.ttm-post-content .content-post .content-post-desc {
	margin: 0;
	padding: 0
}

.ttm-team-details-list {
	padding: 0;
	margin: 0
}

.ttm-team-details-list li {
	position: relative;
	padding: 3px 0 3px 25px;
	font-size: 15px;
	line-height: 24px;
	display: block
}

.ttm-team-list-title i {
	position: absolute;
	left: -33px;
	top: 4px;
	text-align: center;
	width: 30px;
	display: block;
	text-indent: 0;
	font-size: 16px
}

.content-post.content-team-post .ttm-social-links-wrapper ul li a {
	margin: 0 2px;
	display: block;
	color: rgba(44, 44, 44, .6)
}

.ttm-social-links-wrapper {
	border: 0;
	padding: 0;
	margin: 21px 0 0
}

.ttm-team-details-list .ttm-team-list-title {
	margin-right: 8px;
	position: relative;
	color: #0a0c0e;
	font-weight: 600;
	float: left
}

.featured-team-item .featured-img-left.ttm-post-content .ttm-team-details-list .ttm-team-list-value {
	font-size: 16px
}

.featured-img-left:hover .ttm-box-view-overlay {
	opacity: 1;
	transform: scale(1)
}

.featured-img-left .ttm-box-view-overlay {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	opacity: 0;
	background-color: rgba(2, 13, 38, .8);
	height: 100%;
	width: 100%;
	cursor: pointer;
	transform: scale(0);
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease
}

.featured-img-left:hover .ttm-box-view-overlay .featured-icon i {
	opacity: 1
}

.featured-img-left:hover .ttm-box-view-overlay .featured-icon a {
	top: 50%
}

.ttm-progress-bar {
	position: relative
}

.ttm-progress-bar {
	margin: 8px 0 40px 0
}

.ttm-progress-bar:not(:last-child) {
	margin-bottom: 40px
}

.ttm-progress-bar .progress .progress-bar.progress-bar-color-bar_black {
	background-color: #414141
}

.ttm-progress-bar h4 {
	top: -35px;
	left: 0;
	font-size: 17px;
	color: #5d6576;
	font-weight: 400;
	margin-bottom: 10px;
	letter-spacing: 1.2px
}

.ttm-progress-bar i {
	width: 30px;
	height: 40px;
	position: absolute;
	font-size: 17px;
	line-height: 20px
}

.ttm-progress-bar .progress {
	background-color: #c0c0c1;
	border-radius: 0;
	height: 7px
}

.ttm-progress-bar .progress-parcent {
	position: absolute;
	right: 0;
	color: #0a0a0a;
	z-index: 3;
	text-shadow: none;
	font-size: 17px;
	padding: 2px 0;
	border-radius: 0;
	top: 0
}

.ttm-icon-left-true.ttm-progress-bar h4 {
	margin-left: 35px
}

.testimonial-box,
.testimonial-slide {
	position: relative
}

.testimonial-box.testimonial-bgimg-box {
	background-image: url(../images/bg-image/row-bgimage-4.html);
	padding-top: 0!important;
	padding-right: 70px!important;
	padding-bottom: 0!important;
	padding-left: 20px!important
}

.testimonial-slide .testimonials {
	margin: 10px 0 10px 0;
	padding: 62px 0 72px 50px;
	position: relative
}

.testimonial-slide .testimonials .testimonial-content {
	-webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, .13);
	-moz-box-shadow: 0 0 25px 0 rgba(0, 0, 0, .13);
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, .13);
	margin-left: 150px;
	margin-top: 69px;
	padding: 45px 40px 45px 40px;
	z-index: 1;
	position: relative;
	background-color: #fff
}

.testimonial-slide .testimonials .testimonial-content .testimonial-caption {
	margin-bottom: 15px
}

.testimonial-slide .testimonials .testimonial-content h6 {
	padding-top: 0;
	margin-bottom: -5px;
	font-size: 19px;

	font-weight: 600;
	line-height: 24px;
	color: #020d26
}

.testimonial-slide .testimonials .testimonial-content label {
	font-size: 12px;
	color: #9f9f9f;
	margin: 0
}

.testimonial-slide .testimonials .testimonial-content p {
	padding: 0;
	margin: 0;
	padding-top: 10px;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	color: #5d6576;
	font-style: italic
}

.testimonial-slide .testimonials .testimonial-content .testimonial-caption:after {
	content: "";
	width: 30px;
	display: block;
	height: 2px;
	text-align: center;
	margin: 0 auto;
	margin-top: 6px
}

.testimonial-slide .testimonial-avatar .testimonial-img {
	border: none;
	position: absolute;
	top: 0;
	left: 55px;
	top: 80px
}

.testimonial-slide .testimonial-avatar .testimonial-img img {
	border: 5px solid #fff;
	-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1)
}

.client {
	padding: 68px 20px 85px;
	text-align: center
}

.ttm-client-logo-tooltip {
	position: relative
}

.client-box .client {
	text-align: center;
	padding: 28px 20px;
	margin: 15px 0
}

.client-box {
	display: block;
	background-color: #fff;
	-webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
	-moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
	box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14)
}

.wrap-acadion .accordion {
	margin-top: 15px
}

.accordion .toggle .toggle-title {
	font-size: 17px;
	cursor: pointer;
	padding: 9px 20px 10px;
	font-weight: 400;
	margin-bottom: 0;
	position: relative
}

.accordion .toggle-title a {
	color: #fff
}

.accordion .toggle-title a i {
	margin-right: 14px
}

.accordion .toggle.ttm-style-classic .toggle-title {
	border: 1px solid #f7f7f7;
	background-color: transparent
}

.accordion .ttm-style-classic:not(.ttm-toggle-title-bgcolor-grey) .toggle-title {
	-webkit-box-shadow: 0 0 5px 0 rgba(6, 22, 58, .1);
	-moz-box-shadow: 0 0 5px 0 rgba(6, 22, 58, .1);
	box-shadow: 0 0 5px 0 rgba(6, 22, 58, .1)
}

.accordion .ttm-style-classic .toggle-title.active {
	border-color: #f0f0f0;
	background-color: #f8f8f8
}

.toggle-content ul li {
	list-style: disc
}

.accordion .ttm-style-classic .toggle-title>a,
.accordion .ttm-style-classic.ttm-toggle-title-bgcolor-grey.active .toggle-title>a,
.accordion .ttm-toggle-title-bgcolor-grey.active .toggle-title:after {
	color: #666
}

.accordion .toggle-title:after.active,
.accordion .toggle:not(.ttm-style-classic) .toggle-title:after.active {
	color: #fff
}

.accordion .toggle .toggle-title {
	margin: 15px 0
}

.accordion .toggle.active .toggle-title {
	margin-top: 15px;
	margin-bottom: -1px
}

.accordion .ttm-style-classic.ttm-toggle-title-bgcolor-grey .toggle-title {
	border-color: #f0f0f0;
	background-color: #f8f8f8;
	padding-left: 46px
}

.accordion .ttm-style-classic.ttm-toggle-title-bgcolor-grey .toggle-title.active {
	background-color: #f8f8f8
}

.accordion .toggle .toggle-title:after {
	position: absolute;
	font-family: FontAwesome;
	right: 20px;
	top: 10px;
	content: "\f0d7"
}

.accordion .toggle.active .toggle-title:after {
	content: "\f0d8";
	font-family: FontAwesome
}

.accordion .toggle-content {
	display: none;
	padding: 20px 20px;
	background-color: #fff;
	overflow: hidden
}

.accordion .toggle.ttm-toggle-title-bgcolor-grey .toggle-title:after {
	position: absolute;
	font-family: FontAwesome;
	content: "\f067";
	left: 20px;
	font-size: 16px;
	top: 10px
}

.accordion .toggle.ttm-toggle-title-bgcolor-grey.ttm-toggle-title-bgcolor-grey.active .toggle-title:after {
	font-family: FontAwesome;
	content: "\f068"
}

.accordion .toggle.active .toggle-title:after,
.accordion .toggle:not(.ttm-style-classic) .toggle-title:after {
	color: #fff
}

.accordion .toggle.ttm-toggle-title-bgcolor-grey .toggle-title:after {
	color: #666
}

.accordion .toggle.toggle-title.ttm-style-classic.active .toggle-title:after {
	color: #fff
}

.accordion .toggle.toggle-style-border {
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 22px;
	margin-bottom: 22px
}

.accordion .toggle.toggle-style-border .toggle-title {
	background-color: transparent
}

.accordion .toggle.toggle-style-border.toggle-square .toggle-title {
	padding: 4px 0;
	padding-left: 42px;
	letter-spacing: 1.2px;
	margin: 0
}

.accordion .toggle.toggle-style-border.toggle-square .toggle-content {
	padding: 0;
	padding-left: 42px;
	background-color: transparent
}

.accordion .toggle.toggle-style-border.toggle-square .toggle-title:after {
	position: absolute;
	font-family: themify;
	content: "\e61a";
	left: 0;
	font-size: 15px;
	font-weight: 900;
	top: 0;
	height: 28px;
	width: 28px;
	line-height: 28px;
	text-align: center
}

.accordion .toggle.toggle-style-border.toggle-square.active .toggle-title:after {
	font-family: themify;
	content: "\e622"
}

.post,
.post-image {
	position: relative;
	border-radius: 2px;
	overflow: hidden
}

.post {
	margin-bottom: 30px
}

.post.post-topimage {
	margin: 0
}

.post-meta ul {
	padding: 0 3px 10px 0;
	margin: 0
}

.post-meta ul li {
	display: inline-block;
	padding-right: 15px;
	position: relative;
	color: #7f7f7f
}

.post-meta ul li i {
	padding-right: 7px
}

.post-meta .ttm-right-meta {
	display: inline-block
}

.post-meta .ttm-right-meta .ttm-social-share-links {
	opacity: 1;
	visibility: visible
}

.post-meta .ttm-right-meta .ttm-social-share-links {
	position: absolute;
	top: -7px;
	left: 75px;
	opacity: 0;
	width: 390px;
	padding-right: 35px;
	transition: .4s all ease;
	visibility: hidden;
	text-align: left;
	padding-right: 80px
}

.ttm-social-share-links ul li {
	display: inline-block;
	padding-right: 7px;
	padding-top: 6px
}

.ttm-right-meta .ttm-social-share-links ul li a {
	padding: 0 0 0 6px;
	width: 30px;
	height: 30px;
	text-align: center;
	margin-right: 0;
	border-radius: 50%;
	font-size: 12px;
	border: 1px solid #ededed;
	display: block;
	background-color: #fff;
	color: #7f7f7f
}

.post .post-desc {
	padding: 33px 0 25px 0
}

.post .post-desc.style3 {
	padding: 0 5px 25px 30px
}

.post .post-desc h5 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 25px;
	line-height: 32px;
	font-weight: 400;
	text-align: center;
}

.post .post-desc h3 {
	font-size: 21px;
	line-height: 28px;
	margin-bottom: 10px;
	color: #1c1c1c;
	font-weight: 600
}

.post.box-shadow .post-desc {
	padding: 45px 25px 40px 25px
}

.post.box-shadow.style2 {
	margin-bottom: 30px
}

.post.box-shadow.style2 .post-desc {
	padding: 10px 5px 5px 25px
}

.post .post-desc.style2 p,
.post .post-desc.style3 p {
	border-top: 1px solid #e5e5e5;
	margin-top: 4px;
	padding: 20px 0 4px
}

.post .post-desc .ttm-btn.btn-inline {
	font-size: 14px
}

.post-image-icon i {
	position: absolute;
	z-index: 2;
	color: #fff;
	font-size: 18px;
	width: 38px;
	height: 45px;
	padding-top: 7px;
	text-align: center;
	right: 20px;
	top: 0;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%)
}

.post-image-icon i:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-bottom: 10px solid #fff;
	border-left: 19px solid transparent;
	border-right: 19px solid transparent;
	margin-bottom: -1px
}

.post:not(.ttm-blog-classic) .post-image {
	overflow: hidden;
	padding: 0;
	border: 1px solid #000;
}

.post-image img {
	width: 100%;
	transition: transform .5s ease-in-out
}

.post.post-img-left .post-image {
	float: left
}

.post.post-topimage:hover .post-image img {
	transform: scale(1.1)
}

article.ttm-blog-classic {
	background: #fff;
	padding: 30px 27px 30px;
	margin-bottom: 40px
}

article.ttm-blog-classic .ttm-blog-classic-content {
	background: #fff;
	padding: 11px 0 0 25px;
	margin-top: -48px;
	z-index: 11;
	position: relative;
	display: block;
	margin-left: 60px
}

article.ttm-blog-classic .post-desc .post-title h5 {
	margin-bottom: 0;
	font-weight: 600
}

.page-item:first-child .page-link {
	border-radius: 5px
}

article.post blockquote {
	display: block;
	background: #f3f7f9;
	padding: 20px 20px 12px 100px;
	position: relative;
	border: none;
	font-weight: 400;
	margin: 35px 0 35px 0;
	font-size: 18px;
	min-height: 100px;
	line-height: 32px
}

article.post blockquote:before {
	content: '\f10d';
	font-family: FontAwesome;
	font-size: 40px;
	font-weight: 400;
	color: #999;
	position: absolute;
	left: 31px;
	top: 5px;
	width: 58px;
	height: 60px;
	font-style: italic;
	line-height: 85px;
	display: block;
	border-radius: 5px
}

.ttm-bgcolor-white .ttm-post-prev-next-buttons {
	border-bottom: 1px solid #e4e4e4;
	border-top: 1px solid #e4e4e4
}

.ttm-post-prev-next-buttons {
	margin-bottom: 20px;
	margin-top: 30px;
	border-top: 1px solid #f3f5f7;
	padding-top: 30px
}

.ttm-post-prev-next-buttons {
	margin-top: 0;
	margin-bottom: 10px;
	padding-top: 30px;
	padding-bottom: 23px;
	border-bottom: 1px solid #e4e4e4;
	border-top: 1px solid #e4e4e4
}

.ttm-post-prev-buttons {
	position: relative;
	margin-bottom: 20px;
	margin-top: 30px;
	border-top: 1px solid #f3f5f7;
	padding-top: 30px
}

.ttm-post-prev-next-buttons .ttm-btn-icon-right-right {
	float: right
}

.ttm-portfolio-prev-next-buttons {
	position: relative;
	margin-bottom: 20px;
	margin-top: 30px;
	border-top: 1px solid #f3f5f7;
	padding-top: 30px
}

.ttm-pagination {
	display: block;
	margin-top: 30px;
	text-align: center;
	margin-bottom: 35px
}

.ttm-pagination .page-numbers {
	width: 40px;
	height: 40px;
	line-height: 39px;
	text-align: center;
	display: inline-block;
	background-color: #fff;
	color: #42454e;
	font-size: 16px;
	font-weight: 400;
	border: 1px solid #c3c0c0;
	margin: 0 3px;
	padding: 0;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.comments-area {
	margin-top: 50px;
	margin-bottom: 0
}

.comments-area h2 {
	font-size: 33px;
	line-height: 40px;
	margin-bottom: 15px
}

.comments-area ol.comment-list {
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 25px;
	margin-bottom: 30px
}

.comment-list li {
	position: relative;
	margin-top: 30px
}

.comment-list .children {
	margin-left: 35px
}

.comment-list,
.comment-list .children {
	list-style-type: none;
	padding: 0
}

.single-post .comments-area {
	margin-top: 50px;
	margin-bottom: 0
}

.single-post .comments-area .comments-title {
	font-size: 33px;
	font-weight: 600
}

.comment-body {
	padding: 0;
	margin-left: 0;
	margin-bottom: 0;
	background-color: #f3f7f9;
	padding: 25px 25px 25px
}

.comment-author {
	float: left;
	max-width: 70px;
	margin-right: 20px;
	text-align: center
}

.comment-author img {
	max-width: 100%;
	height: auto;
	border-radius: 0;
	height: auto;
	vertical-align: middle;
	overflow: hidden;
	max-width: 66px;
	border-radius: 50%
}

.comment-reply-title {
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 33px;
	margin-bottom: 20px
}

.comment-box {
	border: none;
	margin-left: 70px;
	padding-left: 20px
}

.comment-meta {
	font-size: 14px;
	padding: 0;
	position: relative
}

.comment-meta,
.comment-meta a {
	color: #9096a1;
	font-size: 13px
}

.comment-meta .ttm-comment-owner h5,
.ttm-comment-owner {
	display: block;
	font-size: 18px;
	line-height: 18px;
	font-style: normal;
	color: #020d26;
	margin: 0
}

.single article.post .comment-body p {
	margin-top: 10px
}

.comment-list a.comment-reply-link {
	background-color: #020d26;
	border-radius: 0;
	border: 1px solid #020d26;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	line-height: 17px;
	padding: 4px 15px 5px 15px
}

.comments-area .comment-respond {
	padding-top: 10px
}

#respond .comment-reply-title {
	margin: 0 0 20px!important
}

.comment-form {
	margin-bottom: 20px
}

.comment-form .comment-notes {
	margin-bottom: 25px;
	font-style: italic
}

.comment-form p:not(.comment-notes) {
	margin-bottom: 20px
}

.comment-form textarea {
	height: 125px
}

.comment-form input[type=email],
.comment-form input[type=text],
.comment-form input[type=url],
.comment-form textarea {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	border-radius: 0;
	padding-left: 0;
	padding-bottom: 5px;
	text-indent: 0
}

.contactform .text-input select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.ttm-quoteform-main {
	margin: 80px 200px!important
}

.ttm-quoteform-main {
	background-color: #fff;
	color: #5e5e5e;
	font-size: 13px;
	-webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, .25);
	-moz-box-shadow: 0 0 25px 0 rgba(0, 0, 0, .25);
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, .25)
}

label i {
	position: absolute;
	z-index: 100;
	font-size: 16px;
	padding: 17px 0
}

.ttm-reset-qouteform-section {
	margin-right: -90px;
	margin-left: -90px;
	padding: 30px
}

.wrap-form label {
	width: 100%
}

.wrap-form span.text-input {
	width: 100%;
	margin-bottom: 10px
}

.getquote-form input[type=text],
.getquote-form textarea {
	border-radius: 0;
	color: #8f8f8f;
	padding: 10px 10px 10px 55px;
	font-weight: 400;
	text-indent: 0;
	background-color: #fafbfc;
	border: 1px solid #f1f3f5;
	font-size: 13px
}

.getquote-form .text-input textarea {
	height: 110px
}

.getquote-form button {
	margin-top: 10px
}

.getquote-form .text-input input::placeholder,
.getquote-form .text-input textarea::placeholder {
	color: #828282
}

.wrap-form span.text-select:after {
	position: absolute;
	font-family: FontAwesome
}

.wrap-form span.text-select:after {
	right: 26px;
	top: 13px;
	content: "\f0d7"
}

.wrap-form label {
	position: relative;
	margin-bottom: 15px;
	padding-top: 5px
}

.getquote-form label i {
	position: absolute;
	left: 5px;
	color: #fff;
	z-index: 100;
	font-size: 16px;
	margin-left: -5px;
	padding: 16px 14px;
	border: 1px solid transparent
}

.contactform .ttm-btn-icon-right {
	position: absolute;
	left: 69%;
	top: 76%
}

.contactform .ttm-btn-icon-right button {
	font-weight: 700;
	font-size: 30px;
	height: 55px;
	width: 114px
}

.ttm-bgcolor-darkgrey .contactform.style2 .text-area,
.ttm-bgcolor-darkgrey .contactform.style2 .text-input {
	background-color: transparent;
	border: none;
	border-radius: 0;
	padding-bottom: 9px;
	padding-left: 35px;
	border-bottom: 1px solid rgba(0, 0, 0, .15)
}

.contactform.style2 label i {
	position: absolute;
	left: 5px;
	top: 25px;
	opacity: .9;
	font-size: 16px;
	line-height: 16px;
	z-index: 1;
	padding: 0
}

.contactform.style2 .ttm-form-control {
	margin-bottom: 15px;
	display: block;
	padding-top: 5px
}

.ttm-tabs {
	width: 100%
}

.ttm-tabs ul {
	margin: 0;
	padding: 0
}

.ttm-tabs:not(.element-tab-style-vertical) ul {
	display: -webkit-flex;
	display: flex
}

.ttm-tabs.style2 ul {
	display: block
}

.ttm-tabs ul.tabs li {
	display: inline-block
}

.ttm-tabs ul.tabs li a {
	display: block;
	cursor: pointer;
	text-align: center;
	padding: 14px 20px;
	background-color: #fff;
	color: #413d3d;
	letter-spacing: 1.2px;
	font-weight: 400;
	font-size: 17px
}

.gallery-section .ttm-tabs ul.tabs li:not(.active) a {
	color: #131313
}

.ttm-tabs ul.tabs li a i {
	font-size: 18px;
	margin-right: 9px;
	position: relative;
	top: 2px
}

.ttm-tabs ul.tabs li a span {
	font-size: 18px;
	font-weight: 400
}

.ttm-tabs .content-tab {
	padding: 36px 30px 50px 30px
}

.tab-padding-box {
	padding-top: 105px;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 70px
}

.ttm-tabs .content-tab h6 {
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 29px;
	padding-bottom: 7px
}

.ttm-tabs.style2 .tabs {
	margin-bottom: 30px;
	padding-left: 0
}

.ttm-tabs.style2.full-width .tabs {
	padding-left: 10px
}

.ttm-tabs.style2 .content-tab {
	padding: 0
}

.ttm-tabs.style2 .row.ttm-boxes-spacing-10px {
	padding: 0
}

.ttm-tabs.style2 ul.tabs li {
	margin-right: 7px;
	background: 0 0;
	padding: 0;
	margin-bottom: 5px
}

.ttm-tabs.style2 ul.tabs li a {
	display: block;
	cursor: pointer;
	padding: 8px 25px;
	line-height: 22px;
	position: relative;
	z-index: 3;
	color: #1c1c1c;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: transparent;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid rgba(0, 0, 0, .2);
	text-transform: uppercase
}

.timeline {
	position: relative
}

.timeline .timeline-panel {
	position: relative;
	padding-left: 100px
}

.timeline.ttmscore-timeline-round .timeline-year,
.timeline.ttmscore-timeline-round .timeline-year::before {
	border-radius: 50%
}

.timeline .timeline-year {
	left: 0;
	position: absolute;
	top: 5px;
	width: 74px;
	height: 74px;
	padding: 5px;
	line-height: 70px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	background-color: #e9103a;
	font-weight: 600
}

.timeline .timeline-year:before {
	content: "";
	position: absolute;
	left: -5px;
	top: -5px;
	width: 84px;
	height: 84px;
	border: 2px solid #fff
}

.timeline .timeline-body h3:after {
	content: "";
	position: absolute;
	border-radius: 50%;
	left: -34px;
	top: 10px;
	width: 10px;
	height: 10px
}

.timeline .timeline-panel .timeline-body {
	position: relative;
	padding-top: 0;
	padding-bottom: 20px;
	margin-left: 35px
}

.timeline .timeline-panel .timeline-body p:before {
	content: "";
	position: absolute;
	left: -30px;
	top: 11px;
	width: 2px;
	height: 100%;
	background: #f0f0f0;
	background: rgba(255, 255, 255, .1)
}

.timeline .timeline-panel:last-child .timeline-body:before {
	height: 70%
}

.timeline .timeline-body .title {
	position: relative;
	text-align: left;
	font-size: 22px;
	line-height: 30px
}

.timeline .timeline-panel:not(:last-child) .timeline-body p {
	margin-bottom: 50px
}

.row.ttm-boxes-spacing-10px {
	margin: 0;
	padding: 0 5px
}

.ttm-boxes-spacing-10px .ttm-box-col-wrapper {
	padding-right: 5px;
	padding-left: 5px;
	margin: 0 0 10px
}

.row.ttm-boxes-spacing-10px.style2 {
	padding: 10px 0 0;
	margin: 0 -5px
}

.row.ttm-boxes-spacing-5px {
	padding: 10px 5px 0;
	margin: 0
}

.ttm-boxes-spacing-5px .ttm-box-col-wrapper {
	padding-right: 2.5px;
	padding-left: 2.5px;
	margin-bottom: 5px
}

.row.ttm-boxes-spacing-5px.style2 {
	padding: 5px 0 0;
	margin: 0 -5px
}

.pricing-plan {
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .09);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .09);
	margin-right: -15px;
	margin-left: -15px
}

.pricing-plan.pricing-recommended-plan {
	z-index: 999;
	position: relative;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
	margin-top: -27px
}

.pricing-plan.active {
	padding: 60px 0
}

.pricing-head {
	border: 0;
	padding-bottom: 28px;
	padding-top: 0
}

.pricing-title {
	text-align: center;
	font-weight: 700;
	font-size: 22px;
	padding: 30px 10px 10px 10px;
	padding-bottom: 10px;
	margin-bottom: -1px;
	position: relative
}

.price-value {
	font-size: 48px;
	font-weight: 600;
	text-shadow: none;
	line-height: 40px;
	padding: 0;
	text-align: center
}

.pricing-plan .pricing-head .price-value span:after {
	content: '/';
	position: absolute;
	left: 3px;
	top: -1px
}

.pricing-plan .pricing-head .price-value span {
	position: relative;
	padding-left: 15px;
	font-size: 20px;
	font-weight: 400
}

.pricing-plan .pricing-head .price-value sub {
	font-size: 20px;
	padding-right: 2px;
	bottom: 0
}

.pricing-list {
	padding: 0 30px
}

ul.features-list {
	margin: 0;
	padding: 0;
	background-color: #fff
}

ul.features-list li {
	padding: 18px 20px 18px 20px;
	border-bottom: 1px solid #e9e9e9;
	font-size: 18px;
	color: #5d6576!important;
	padding-left: 90px;
	padding-right: 40px;
	text-align: left;
	position: relative
}

ul.features-list li:last-child {
	border-bottom: none
}

ul.features-list li:before {
	font-family: FontAwesome;
	content: '\f00c';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	display: inline-block;
	padding-right: 12px
}

.pricing-footer .price_btn {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	text-align: center;
	padding: 16px 20px;
	margin-bottom: -75px!important
}

.pricing-footer .price_btn a.ttm-btn.ttm-btn-fill.ttm-btn-border-white {
	border: 1px solid #fff
}

.price_btn a {
	padding: 12px 40px;
	background-color: #fff;
	text-transform: uppercase
}

.pricing-footer {
	background-color: #fff;
	padding-bottom: 30px;
	padding-top: 15px
}

.pricing-plan.style2 .pricing-title {
	color: #222021
}

.pricing-plan.style2 .price-value h2 {
	color: #fff
}

.pricing-plan.style2.active .price-value h2 {
	color: #ff5e14
}

.pricing-plan.style-3:hover,
.pricing-plan.style2:hover {
	border-color: transparent
}

.pricing-plan.style-3 .price-value {
	padding: 50px 0
}

.pricing-plan.style-3 .price-value h2 {
	color: #fff
}

.sidebar .widget,
.sidebar.shop .widget.widget-banner {
	margin-bottom: 44px
}

.sidebar .widget:last-of-type {
	margin-bottom: 0
}

.sidebar .widget a {
	color: #5d6576
}

.sidebar h3.widget-title {
	margin-top: 0;
	margin-bottom: 25px;
	display: block;
	overflow: hidden
}

.sidebar .widget .widget-title:before {
	content: '';
	border-left: 3px solid;
	margin-right: 13px
}

.sidebar .widget.widget-nav-menu ul li {
	padding: 0
}

.ttm-sidebar-left,
.ttm-sidebar-right {
	display: block
}

.sidebar.sidebar-left,
.ttm-sidebar-left>[class*=col-],
.ttm-sidebar-right .content-area {
	float: left
}

.ttm-sidebar-left div.content-area {
	float: right
}

.sidebar-left .widget-nav-menu ul li:not(:first-child) {
	border-top: 1px solid #e5eaef
}

.sidebar-left .widget-nav-menu ul li::after {
	content: "\e649";
	position: absolute;
	right: 16px;
	top: 14px;
	font-size: 15px;
	font-family: themify
}

.sidebar-left .widget-nav-menu ul li.active::after,
.widget-nav-menu ul li:hover:after {
	color: #fff
}

.sidebar-left .widget.widget-nav-menu ul li a {
	display: block;
	padding: 15px 30px 15px 20px;
	position: relative;
	font-weight: 700;
	font-size: 13.5px
}

.sidebar-left .widget.widget-nav-menu ul li a:before {
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #e1e1e1
}

.sidebar-left .widget-nav-menu ul li:last-child a:before {
	content: none
}

.cls1 {
	font-size: 13px!important;
	padding-left: 10px!important;
	font-weight: 650!important
}

.sidebar.sidebar-right,
.ttm-sidebar-right>[class*=col-] {
	float: right
}

.ttm-sidebar-right .content-area {
	float: left
}

.sidebar-left .widget-nav-menu ul li {
	padding: 0;
	position: relative
}

.sidebar .widget.widget-download {
	margin-bottom: 43px
}

.sidebar .widget-download .download li {
	position: relative
}

.sidebar .widget-download .download li a {
	font-size: 15px;
	line-height: 22px;
	padding-left: 40px
}

.sidebar .widget-download .download li i {
	font-size: 34px;
	position: absolute;
	top: -12%;
	left: 0
}

.sidebar ul.contact-widget-wrapper li i {
	position: absolute;
	top: 6px;
	left: 0
}

.sidebar ul.contact-widget-wrapper li {
	padding-left: 30px;
	position: relative;
	padding-top: 0;
	padding-bottom: 17px;
	line-height: 20px
}

.sidebar .widget.widget-search {
	position: relative
}

.sidebar .widget.widget-search .search-form label {
	display: block
}

.sidebar .widget-search .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute!important;
	height: 1px;
	width: 1px;
	overflow: hidden
}

.sidebar .widget.widget-search .search-form .search-submit {
	position: absolute;
	top: 0;
	right: 0;
	text-indent: -999px;
	padding: 0;
	width: 46px;
	height: 46px;
	z-index: 1;
	border-radius: 0 3px 3px 0;
	background-image: url(../images/search-icon.png);
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	opacity: .5
}

.sidebar .widget.widget-search .input-text {
	border-width: 1px;
	background-color: #fff;
	border-radius: 0;
	text-indent: 0
}

.sidebar .widget ul:not(.contact-widget-wrapper):not(.widget-menu):not(.download):not(.rating)>li {
	padding: 7px 0;
	border-top: 1px solid #e5eaef
}

.sidebar .widget ul>li:first-child {
	border-top: 0
}

.sidebar .widget.widget-Categories a:before {
	content: "\f068";
	font-family: FontAwesome;
	position: absolute;
	top: 9px;
	left: 0;
	line-height: 1em;
	font-size: 10px;
	font-weight: 400
}

.widget-Categories a {
	display: inline-block;
	padding-left: 20px;
	position: relative
}

.sidebar .widget.widget-recent-post ul>li {
	padding: 15px 0!important;
	margin: 0
}

.sidebar .widget .tagcloud a {
	display: inline-block;
	padding: 7px 27px;
	margin: 0 2px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 14px;
	background-color: #f7f7f7;
	font-weight: 600
}

.flicker-widget .ttm-flicker-widget-wrapper a {
	overflow: hidden;
	display: block;
	margin: 0 7px 0 0;
	width: 75px;
	height: 75px;
	display: inline-block;
	background: 0 0
}

.ttm-pf-single-content-wrapper-innerbox {
	background-color: #fff;
	padding: 25px 25px
}

.ttm-pf-view-left-image .ttm-pf-single-detail-box {
	border: 15px solid #f3f7f9;
	padding: 15px;
	margin-left: -10px
}

.ttm-portfolio-description h2 {
	margin-bottom: 5px;
	font-size: 27px
}

.ttm-pf-detailbox-list .ttm-pf-details-date {
	position: relative;
	display: block;
	padding: 18px 0 0 30px;
	margin-left: 10px;
	font-size: 13px
}

.ttm-pf-detailbox-list .ttm-pf-details-date i {
	position: absolute;
	left: -20px;
	top: 13px;
	display: inline-block;
	border-radius: 50%;
	padding-left: 0;
	vertical-align: middle;
	font-size: 20px;
	text-align: center;
	transform: translate(0, 0);
	height: 40px;
	width: 40px;
	line-height: 40px;
	z-index: 1
}

.ttm-pf-detailbox-list .ttm-pf-details-date .ttm-pf-left-details {
	font-weight: 600;
	margin-right: 15px;
	margin-left: 0;
	display: block;
	font-size: 17px;
	line-height: 20px
}

ul.ttm-pf-detailbox-list {
	padding: 0
}

.ttm-term-desc {
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 30px;
	margin-bottom: 30px
}

.ttm-pf-single-content-wrapper .ttm-social-share-title,
.ttm-pf-single-content-wrapper-innerbox .ttm-social-share-title {
	padding-top: 6px;
	font-weight: 600;
	padding-right: 10px;
	position: relative;
	margin-right: 10px;
	font-size: 18px;
	float: left;
	color: #b2b9bd
}

.ttm-pf-detailbox-list .ttm-pf-details-date {
	position: relative;
	display: block;
	padding: 18px 0 0 30px;
	margin-left: 10px;
	font-size: 14px
}

.ttm-pf-single-related-title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 30px
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute!important;
	height: 1px;
	width: 1px;
	overflow: hidden
}

.ttm-single-product-details {
	background-color: #fff;
	margin-bottom: 30px
}

.ttm-single-product-info {
	padding: 30px
}

div.product.ttm-single-product-details div.images {
	width: 48%;
	float: left
}

div.product.ttm-single-product-details div.summary {
	width: 48%;
	float: right
}

div.product.ttm-single-product-details .product-gallery__image img {
	height: auto;
	max-width: 100%
}

.ttm-single-product-details div.images .product-gallery__image:nth-child(n+2) {
	width: 25%;
	display: inline-block
}

div.product .product_title {
	padding-bottom: 8px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 25px;
	font-size: 30px;
	text-transform: capitalize
}

div.product .summary .product-rating {
	float: right;
	margin-bottom: 15px
}

.summary .star-rating {
	float: left;
	padding: 0;
	margin: 0;
	margin-right: 5px
}

.summary .star-rating li {
	display: inline-block;
	font-size: 12px
}

.product_meta {
	padding-top: 17px;
	border-top: 1px solid #ddd;
	margin-top: 15px
}

.ttm-single-product-details .product-details__short-description {
	margin-top: 20px;
	margin-bottom: 50px
}

.summary form.cart {
	margin-top: 30px;
	margin-bottom: 30px
}

div.product form.cart div.quantity {
	float: left;
	margin: 0 4px 0 0
}

.quantity .qty {
	height: 41px;
	width: 88px;
	text-align: center
}

.posted_in {
	font-weight: 700
}

.posted_in a {
	font-weight: 400
}

.tabs-for-single-products.ttm-tabs {
	padding: 0 30px 30px 30px
}

div.product ul.tabs li a {
	font-weight: 400;
	color: #515151;
	padding: 0;
	background: 0 0
}

div.product ul.tabs li {
	margin: 0 2px;
	border-radius: 0;
	color: #fff;
	font-size: 16px;
	border-color: #e4e4e4;
	background-color: #f9f9f8;
	border-radius: 3px;
	border: 1px solid #e4e4e4;
	font-weight: 400;
	font-size: 16px;
	padding: 13px 30px;
	position: relative
}

div.product ul.tabs li a {
	color: #515151!important
}

div.product ul.tabs li:hover a {
	background-color: transparent
}

div.product ul.tabs li.active a {
	color: #fff!important
}

div.product ul.tabs li.active:before {
	display: block!important;
	content: "";
	width: 0;
	height: 0;
	border: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #ff5e14;
	position: absolute;
	bottom: -8px;
	left: 50%;
	-khtml-transform: translateX(-50%) translateY(0);
	-moz-transform: translateX(-50%) translateY(0);
	-ms-transform: translateX(-50%) translateY(0);
	-o-transform: translateX(-50%) translateY(0);
	transform: translateX(-50%) translateY(0)
}

div.product .ttm-tabs .content-inner h2 {
	font-size: 25px
}

div.product .ttm-tabs .content-tab {
	padding: 30px 0 0 0
}

.related.products {
	margin-top: 50px
}

.related.products h2 {
	font-size: 28px;
	font-weight: 600;
	line-height: 40px;
	padding-bottom: 15px
}

#reviews #comments ol {
	margin: 0;
	padding: 0
}

#reviews #comments ol.commentlist li img.avatar {
	width: 65px
}

#reviews #comments ol.commentlist li img.avatar {
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px;
	background: #ebe9eb;
	border: 1px solid #e4e1e3;
	margin: 0;
	box-shadow: none
}

div.product #reviews .star-rating {
	margin: 0;
	margin-top: 7px;
	float: right
}

#reviews #comments ol.commentlist li {
	padding: 0;
	margin: 0 0 20px;
	position: relative;
	border: 0
}

#reviews #comments ol.commentlist li .comment-text {
	border: 1px solid #e4e1e3;
	padding: 1em 1em 0;
	border-radius: 0;
	margin-left: 80px
}

#reviews #comments ol.commentlist li .comment-text p.meta {
	font-size: 16px;
	color: #828c96;
	margin-bottom: 9px
}

div.product .Reviews .star-rating {
	margin: 0;
	margin-top: 7px;
	float: right
}

.comment-form-rating {
	padding-bottom: 20px
}

.comment-form-rating .stars {
	margin-bottom: 15px
}

#review_form_wrapper .comment-reply-title {
	font-size: 18px;
	line-height: 20px;
	color: #283d58
}

#review_form_wrapper .comment-respond p {
	margin: 0 0 10px
}

#reviews #review_form_wrapper select {
	width: 154px!important
}

#reviews #comment {
	height: 75px
}

#review_form_wrapper .comment-respond .form-submit {
	margin-top: 30px
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	vertical-align: middle;
	width: 100%;
	margin: 0 0 1.75em
}

table tbody tr,
table thead tr {
	border: 1px solid #e6e6e6
}

table tbody th {
	border-right: 1px solid #e6e6e6
}

table.shop_attributes th {
	width: 150px;
	font-weight: 700;
	padding: 8px;
	border-top: 0;
	border-bottom: 1px dotted rgba(0, 0, 0, .1);
	margin: 0;
	line-height: 1.5
}

table.shop_attributes td {
	font-style: italic;
	border-top: 0;
	border-bottom: 1px dotted rgba(0, 0, 0, .1);
	margin: 0;
	padding-left: 10px;
	line-height: 1.5
}

table.shop_attributes td p {
	margin: 0;
	padding: 8px 0
}

.ttm-team-member-single-content-wrapper {
	padding: 10px 0
}

.ttm-team-member-single-content .ttm-team-member-view-default .ttm-team-img {
	background-color: #fff;
	padding: 6px
}

.shadow-box,
.ttm-team-member-single-content .ttm-team-member-view-default .ttm-team-img,
.ttm-team-member-single-content-area .ttm-team-member-content {
	-webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
	-moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
	box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14)
}

.ttm-team-member-single-content-area .ttm-team-member-content {
	background-color: #fff;
	padding: 30px 35px 22px 35px
}

.ttm-team-member-single-title {
	font-size: 30px;
	line-height: 35px;
	font-weight: 500;
	margin-bottom: 3px
}

.ttm-team-member-single-position {
	font-size: 16px;
	color: gray;
	font-weight: 400;
	margin-bottom: 10px;
	margin-top: -3px
}

.ttm-team-member-single-content .ttm-team-details-list li {
	padding: 10px 50px 10px 26px
}

.ttm-team-member-single-content .ttm-social-links-wrapper ul li a {
	width: 40px;
	line-height: 40px;
	height: 40px;
	text-align: center;
	display: block;
	border: none;
	font-size: 18px;
	color: #7f7f7f;
	border-radius: 50%
}

.ttm-team-member-single-content-wrapper .ttm-team-member-content:not(.shadow-box) {
	margin-top: 20px;
	margin-bottom: 20px
}

.ttm-team-member-single-content-wrapper .ttm-team-member-content:last-child {
	margin-bottom: 0
}

.ttm-team-member-single-title {
	font-size: 30px;
	line-height: 35px;
	font-weight: 500;
	margin-bottom: 3px
}

.ttm-team-member-single-position {
	font-size: 16px;
	color: gray;
	font-weight: 400;
	margin-bottom: 10px;
	margin-top: -3px
}

.ttm-team-member-content textarea {
	height: 151px
}

.ttm-product-box-inner {
	position: relative;
	overflow: hidden
}

.products-ordering {
	margin-bottom: 36px;
	float: right
}

.products-ordering select {
	background-color: #fff;
	text-indent: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative
}

.products-ordering .orderby {
	position: relative
}

.products-ordering .orderby:after {
	content: '\f0d7';
	font-family: FontAwesome;
	display: inline-block;
	position: absolute;
	right: 25px;
	top: 14px
}

ul.products {
	padding: 0;
	margin-right: -15px;
	margin-left: -15px;
	clear: both
}

ul.products li.product .ttm-product-box {
	margin-bottom: 35px;
	border: 1px solid #e4e5e7;
	position: relative;
	overflow: hidden;
	background-color: #fff
}

ul.products li.product .onsale {
	font-size: 10px;
	color: #fff;
	text-transform: uppercase;
	padding: 3px 10px;
	text-align: center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0;
	line-height: 18px;
	font-weight: 400;
	z-index: 9
}

.products .price del .product-Price-amount {
	font-size: 13px;
	text-decoration: line-through;
	color: #888
}

.products .price ins {
	text-decoration: none;
	padding: 2px
}

ul.products li.product .onsale:after {
	border-style: solid solid solid none;
	border-width: 9px 9px 9px 0;
	bottom: -16px;
	content: "";
	left: -44px;
	margin: 0 auto;
	position: absolute;
	right: 0;
	text-align: center;
	width: 9px
}

ul.products li.product .product-btn:hover {
	background-color: #151515
}

.ttm-product-content {
	text-align: center;
	padding-top: 10px;
	margin-bottom: 15px
}

ul.products li.product h2 {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
	padding-top: 15px
}

.products .star-ratings,
.sidebar .star-ratings {
	font-size: 10px;
	text-align: center
}

ul.products li.product .price {
	margin: 3px 0;
	min-height: 20px;
	margin-bottom: 15px;
	font-size: 17px
}

.products .star-ratings ul {
	padding: 0;
	margin: 0
}

.products .star-ratings ul li {
	display: inline-block
}

.products .price .product-Price-amount {
	font-size: 17px;
	font-weight: 400
}

ul.products li.product:hover a img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	background-color: #232323
}

.products ul.products li.product a img {
	margin-bottom: 0;
	-webkit-transition: all .5s ease-out 0s;
	-moz-transition: all .5s ease-out 0s;
	-ms-transition: all .5s ease-out 0s;
	-o-transition: all .5s ease-out 0s;
	transition: all .5s ease-out 0s
}

ul.products li.product .ttm-shop-icon {
	display: block;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 65%;
	right: 0;
	left: 0;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0
}

ul.products li.product:hover .ttm-shop-icon {
	opacity: 1
}

ul.products li.product .ttm-shop-icon a {
	width: 50px;
	height: 50px;
	line-height: 50px;
	position: absolute;
	text-align: center;
	border-radius: 50%;
	background-color: #fff;
	color: #111;
	letter-spacing: 1px;
	font-weight: 400;
	display: block;
	-webkit-transform: translateY(60px);
	-moz-transform: translateY(60px);
	-o-transform: translateY(60px);
	-ms-transform: translateY(60px);
	transform: translateY(60px);
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	-o-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s
}

ul.products li.product:hover .ttm-shop-icon a {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

.ttm-shop-icon .product-btn {
	display: inline-block;
	width: 50px;
	margin-right: 5px
}

ul.products li.product:hover .ttm-product-box:after {
	opacity: 1
}

ul.products li.product .ttm-product-box:after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(6, 22, 58, .35);
	pointer-events: none;
	z-index: 1;
	content: "";
	opacity: 0;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s
}

.banner-image figure {
	overflow: hidden
}

.banner-image:hover figure img {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-webkit-transform: scale(1.05)
}

.products-result-count {
	float: left
}

.sidebar-right.sidebar ul.product-list-widget>li:first-child,
.sidebar-right.sidebar ul.ttm-recent-post-list>li:first-child {
	border-top: 0;
	padding-top: 0
}

.sidebar ul.product-list-widget li img {
	float: right;
	margin-left: 4px;
	margin-top: 5px;
	width: 40px;
	height: auto
}

.sidebar .star-ratings,
.star-ratings {
	font-size: .857em;
	text-align: left
}

.sidebar-right.sidebar .widget ul.rating>li {
	padding: 0 0;
	display: inline-block
}

.checkout,
.ttm-cart-form {
	margin: 0;
	padding: 30px;
	background-color: #fff
}

.shop_table {
	border: 1px solid rgba(0, 0, 0, .1);
	margin: 0 -1px 24px 0;
	text-align: left;
	width: 100%;
	border-collapse: separate;
	border-radius: 0
}

table.shop_table tbody tr,
table.shop_table thead tr {
	border: 1px solid #e6e6e6
}

table.shop_table th {
	font-weight: 700;
	padding: 9px 12px;
	line-height: 1.5em;
	border-top: 1px solid rgba(0, 0, 0, .1)
}

table.shop_table td {
	border-top: 1px solid rgba(0, 0, 0, .1);
	padding: 5px 10px;
	vertical-align: middle;
	line-height: 1.5em
}

table.shop_table .product-thumbnail img {
	width: 32px;
	height: auto
}

.quantity {
	height: 41px;
	width: 88px
}

table.shop_table td.actions {
	text-align: right
}

table.shop_table td.actions .input-text {
	width: 150px;
	float: left
}

.coupon {
	float: left
}

.coupon .input-text {
	float: left;
	margin: 0 4px 0 0
}

.coupon button,
a.checkout-button {
	border: 0
}

.coupon button,
a.checkout-button,
button.cart_button {
	padding: 15px 30px 15px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	text-align: center
}

button.cart_button {
	padding: 11px 40px
}

.cart-collaterals {
	margin-top: 60px
}

.cart-collaterals .cart_totals {
	float: right;
	width: 48%
}

.cart_totals h2 {
	margin-bottom: 15px;
	font-size: 28px
}

a.checkout-button {
	display: block
}

a.remove {
	display: block;
	font-size: 1.5em;
	height: 1em;
	width: 1em;
	text-align: center;
	line-height: 1;
	border-radius: 100%;
	color: red;
	text-decoration: none;
	font-weight: 700;
	border: 0
}

a.remove:hover {
	color: #fff;
	background: red
}

.form-row .required {
	color: red;
	font-weight: 700;
	border: 0!important;
	text-decoration: none
}

form .form-row {
	padding: 3px;
	margin: 0 0 6px
}

.checkout h3#order_review_heading {
	margin-bottom: 30px;
	margin-top: 15px
}

.checkout #payment {
	background: #ebe9eb;
	border-radius: 5px
}

ul.payment_methods {
	text-align: left;
	padding: 1em;
	border-bottom: 1px solid #d3ced2;
	margin: 0;
	list-style: none outside
}

#payment .payment_box {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	padding: 1em;
	margin: 1em 0;
	font-size: .92em;
	border-radius: 2px;
	line-height: 1.5;
	background-color: #dfdcde;
	color: #515151
}

#payment div.form-row {
	padding: 1em
}

.element-row {
	padding: 0 0 45px;
	position: relative
}

.element-row .section-title h2.title {
	padding: 0;
	margin-top: 22px
}

.ttm-tabs.element-tab-style-vertical .content-tab {
	padding: 0
}

.ttm-tabs.element-tab-style-vertical ul.tabs li {
	margin-top: 1px;
	width: 100%
}

.ttm-tabs.element-tab-style-vertical ul.tabs li a {
	background-color: #2a2a2a;
	color: #fff;
	letter-spacing: 1.2px;
	padding: 14px 30px;
	text-transform: uppercase;
	font-size: 17px
}

.ttm-tabs.element-tab-style-horizontal .content-tab {
	padding: 35px 0 0
}

.ttm-tabs.element-tab-style-horizontal ul {
	margin: 0;
	padding: 0;
	display: -webkit-flex;
	display: flex
}

.ttm-tabs.element-tab-style-horizontal ul.tabs li {
	margin-right: 6px;
	display: inline-block
}

.ttm-tabs.element-tab-style-horizontal ul.tabs li:last-child {
	margin-right: 0
}

.ttm-tabs.element-tab-style-horizontal ul.tabs li a {
	padding: 16px 18px 15px 18px;
	font-size: 15px;
	border-radius: 5px;
	letter-spacing: 1.2px;
	border: none;
	color: #fff;
	display: block;
	text-align: left
}

.ttm-tabs.element-tab-style-horizontal .content-tab img {
	height: 150px;
	width: 150px
}

.ttm-btn-box {
	display: block;
	margin-bottom: 21.74px;
	max-width: 100%
}

.ttm-btn-box.btn-inline {
	display: inline-block
}

.accordion .toggle.active .toggle-title:after {
	font-family: FontAwesome;
	content: "\f068"
}

.accordion .toggle .toggle-title:after {
	font-family: FontAwesome;
	content: "\f067"
}

.ttm-progress-bar .progress .progress-bar.progress-bar-color-bar_blue {
	background-color: #0074cc
}

.ttm-progress-bar .progress .progress-bar.progress-bar-color-bar_green {
	background-color: #5bb75b
}

.ttm-progress-bar .progress .progress-bar.progress-bar-color-bar_pink {
	background-color: #f4524d
}

.ttm-progress-bar .progress .progress-bar.progress-bar-color-bar_turquoise {
	background-color: #00c1cf
}

.fid-section {
	padding: 40px 0
}

.element-row .client-section2 {
	padding: 50px 0
}

.ttm-icon {
	margin-bottom: 35px;
	display: inline-block;
	text-align: center;
	border: 2px solid transparent;
	position: relative;
	transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out
}

.ttm-icon span {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.ttm-icon.ttm-icon_element-size-xs {
	height: 40px;
	width: 40px;
	line-height: 40px
}

.ttm-icon.ttm-icon_element-size-xs span {
	font-size: 19px
}

.ttm-icon.ttm-icon_element-size-md {
	height: 64px;
	width: 64px;
	line-height: 64px
}

.ttm-icon.ttm-icon_element-size-md span {
	font-size: 36px
}

.ttm-icon.ttm-icon_element-size-md {
	max-width: 100%;
	box-sizing: content-box
}

.ttm-icon.ttm-icon_element-style-round {
	border-radius: 5px
}

.ttm-icon.ttm-icon_element-style-rounded {
	border-radius: 50%
}

.ttm-icon.ttm-icon_element-style-square {
	border-radius: 0
}

.ttm-icon.ttm-icon-color-black.ttm-icon-style-border {
	background-color: transparent
}

.ttm-icon.ttm-icon_element-fill {
	color: #fff;
	background-color: #39c8df
}

.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-yellow {
	background-color: #ffb300
}

.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-orange {
	background-color: #ff4c00
}

.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-red {
	background-color: #ff0a26
}

.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-dark_pink {
	background-color: #ff0061
}

.ttm-icon.ttm-icon_element-fillttm-icon_element-background-mulled_wine {
	background-color: #50485b
}

.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-mulled_wine {
	border-color: #50485b;
	color: #50485b
}

.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-blue {
	border-color: #5472d2;
	color: #5472d2
}

.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-yellow {
	border-color: #ffb300;
	color: #ffb300
}

.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-orange {
	border-color: #ff4c00;
	color: #ff4c00
}

.ttm-icon.ttm-icon_element-border.ttm-icon_element-color-red {
	border-color: #ff0a26;
	color: #ff0a26
}

.ttm-icon.ttm-icon_element-fill.ttm-icon_element-background-color-grey {
	background-color: #ebebeb;
	color: #39c8df
}

.element-style .icon-box-wrapper {
	padding-top: 20px
}

.element-style .row .col-md-6 .featured-box:not(:last-child) {
	padding: 0;
	margin-bottom: 40px
}