.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%,
	53%,
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	40%,
	43% {
		-webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}
	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

@keyframes bounce {
	0%,
	100%,
	20%,
	53%,
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	40%,
	43% {
		-webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}
	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

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

@-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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

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

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1)
	}
	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}
	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}
	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1)
	}
	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}
	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}
	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

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

@-webkit-keyframes shake {
	0%,
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

@keyframes shake {
	0%,
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

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

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}
	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}
	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

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

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

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

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}
	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}
	100% {
		-webkit-transform: none;
		transform: none
	}
}

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

@-webkit-keyframes bounceIn {
	0%,
	100%,
	20%,
	40%,
	60%,
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes bounceIn {
	0%,
	100%,
	20%,
	40%,
	60%,
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@-webkit-keyframes bounceInDown {
	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}
	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInDown {
	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}
	100% {
		-webkit-transform: none;
		transform: none
	}
}

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

@-webkit-keyframes bounceInLeft {
	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}
	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInLeft {
	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}
	100% {
		-webkit-transform: none;
		transform: none
	}
}

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

@-webkit-keyframes bounceInRight {
	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}
	100% {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInRight {
	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}
	100% {
		-webkit-transform: none;
		transform: none
	}
}

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

@-webkit-keyframes bounceInUp {
	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes bounceInUp {
	0%,
	100%,
	60%,
	75%,
	90% {
		-webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

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

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.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: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

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

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

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

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

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

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

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

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

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

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

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

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

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

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

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

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

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

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.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
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

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

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

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

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

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

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

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

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

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

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

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

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

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

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

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

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

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

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

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

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

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

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

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

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1
	}
	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1
	}
	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}
	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}
	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

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

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

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

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

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

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

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

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	100% {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	100% {
		opacity: 0
	}
}

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

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

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

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

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

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

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

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

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

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes slideInUp {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: visible
	}
	100% {
		-webkit-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% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}
}

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

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}

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

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

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

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
}

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

.dropup,
.dropdown {
	position: relative;
}

.dropdown-toggle:focus {
	outline: 0;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	list-style: none;
	font-size: 14px;
	text-align: left;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}

.dropdown-menu.pull-right {
	right: 0;
	left: auto;
}

.dropdown-menu .divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5;
}

.dropdown-menu>li>a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 1.42857143;
	color: #333333;
	white-space: nowrap;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
	text-decoration: none;
	color: #262626;
	background-color: #f5f5f5;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
	color: #ffffff;
	text-decoration: none;
	outline: 0;
	background-color: #337ab7;
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
	color: #777777;
}

.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
	text-decoration: none;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	cursor: not-allowed;
}

.open>.dropdown-menu {
	display: block;
}

.open>a {
	outline: 0;
}

.dropdown-menu-right {
	left: auto;
	right: 0;
}

.dropdown-menu-left {
	left: 0;
	right: auto;
}

.dropdown-header {
	display: block;
	padding: 3px 20px;
	font-size: 12px;
	line-height: 1.42857143;
	color: #777777;
	white-space: nowrap;
}

.dropdown-backdrop {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 990;
}

.pull-right>.dropdown-menu {
	right: 0;
	left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
	border-top: 0;
	border-bottom: 4px dashed;
	border-bottom: 4px solid \9;
	content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 2px;
}

@media (min-width: 768px) {
	.navbar-right .dropdown-menu {
		left: auto;
		right: 0;
	}
	.navbar-right .dropdown-menu-left {
		left: 0;
		right: auto;
	}
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

[role="button"] {
	cursor: pointer;
}

table {
	background-color: transparent;
}

caption {
	padding-top: 8px;
	padding-bottom: 8px;
	color: #777777;
	text-align: left;
}

th {
	text-align: left;
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #dddddd;
}

.table>thead>tr>th {
	vertical-align: bottom;
	border-bottom: 2px solid #dddddd;
}

.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>td {
	border-top: 0;
}

.table>tbody+tbody {
	border-top: 2px solid #dddddd;
}

.table .table {
	background-color: #ffffff;
}

.table-condensed>thead>tr>th,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>td {
	padding: 5px;
}

.table-bordered {
	border: 1px solid #dddddd;
}

.table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
	border: 1px solid #dddddd;
}

.table-bordered>thead>tr>th,
.table-bordered>thead>tr>td {
	border-bottom-width: 2px;
}

.table-striped>tbody>tr:nth-of-type(odd) {
	background-color: #f9f9f9;
}

.table-hover>tbody>tr:hover {
	background-color: #f5f5f5;
}

table col[class*="col-"] {
	position: static;
	float: none;
	display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
	position: static;
	float: none;
	display: table-cell;
}

.table>thead>tr>td.active,
.table>tbody>tr>td.active,
.table>tfoot>tr>td.active,
.table>thead>tr>th.active,
.table>tbody>tr>th.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>tbody>tr.active>td,
.table>tfoot>tr.active>td,
.table>thead>tr.active>th,
.table>tbody>tr.active>th,
.table>tfoot>tr.active>th {
	background-color: #f5f5f5;
}

.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover,
.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr.active:hover>th {
	background-color: #e8e8e8;
}

.table>thead>tr>td.success,
.table>tbody>tr>td.success,
.table>tfoot>tr>td.success,
.table>thead>tr>th.success,
.table>tbody>tr>th.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>tbody>tr.success>td,
.table>tfoot>tr.success>td,
.table>thead>tr.success>th,
.table>tbody>tr.success>th,
.table>tfoot>tr.success>th {
	background-color: #dff0d8;
}

.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover,
.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr.success:hover>th {
	background-color: #d0e9c6;
}

.table>thead>tr>td.info,
.table>tbody>tr>td.info,
.table>tfoot>tr>td.info,
.table>thead>tr>th.info,
.table>tbody>tr>th.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>tbody>tr.info>td,
.table>tfoot>tr.info>td,
.table>thead>tr.info>th,
.table>tbody>tr.info>th,
.table>tfoot>tr.info>th {
	background-color: #d9edf7;
}

.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover,
.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr.info:hover>th {
	background-color: #c4e3f3;
}

.table>thead>tr>td.warning,
.table>tbody>tr>td.warning,
.table>tfoot>tr>td.warning,
.table>thead>tr>th.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>tbody>tr.warning>td,
.table>tfoot>tr.warning>td,
.table>thead>tr.warning>th,
.table>tbody>tr.warning>th,
.table>tfoot>tr.warning>th {
	background-color: #fcf8e3;
}

.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover,
.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr.warning:hover>th {
	background-color: #faf2cc;
}

.table>thead>tr>td.danger,
.table>tbody>tr>td.danger,
.table>tfoot>tr>td.danger,
.table>thead>tr>th.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>tbody>tr.danger>td,
.table>tfoot>tr.danger>td,
.table>thead>tr.danger>th,
.table>tbody>tr.danger>th,
.table>tfoot>tr.danger>th {
	background-color: #f2dede;
}

.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover,
.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
	background-color: #ebcccc;
}

.table-responsive {
	overflow-x: auto;
	min-height: 0.01%;
}

@media screen and (max-width: 767px) {
	.table-responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #dddddd;
	}
	.table-responsive>.table {
		margin-bottom: 0;
	}
	.table-responsive>.table>thead>tr>th,
	.table-responsive>.table>tbody>tr>th,
	.table-responsive>.table>tfoot>tr>th,
	.table-responsive>.table>thead>tr>td,
	.table-responsive>.table>tbody>tr>td,
	.table-responsive>.table>tfoot>tr>td {
		white-space: nowrap;
	}
	.table-responsive>.table-bordered {
		border: 0;
	}
	.table-responsive>.table-bordered>thead>tr>th:first-child,
	.table-responsive>.table-bordered>tbody>tr>th:first-child,
	.table-responsive>.table-bordered>tfoot>tr>th:first-child,
	.table-responsive>.table-bordered>thead>tr>td:first-child,
	.table-responsive>.table-bordered>tbody>tr>td:first-child,
	.table-responsive>.table-bordered>tfoot>tr>td:first-child {
		border-left: 0;
	}
	.table-responsive>.table-bordered>thead>tr>th:last-child,
	.table-responsive>.table-bordered>tbody>tr>th:last-child,
	.table-responsive>.table-bordered>tfoot>tr>th:last-child,
	.table-responsive>.table-bordered>thead>tr>td:last-child,
	.table-responsive>.table-bordered>tbody>tr>td:last-child,
	.table-responsive>.table-bordered>tfoot>tr>td:last-child {
		border-right: 0;
	}
	.table-responsive>.table-bordered>tbody>tr:last-child>th,
	.table-responsive>.table-bordered>tfoot>tr:last-child>th,
	.table-responsive>.table-bordered>tbody>tr:last-child>td,
	.table-responsive>.table-bordered>tfoot>tr:last-child>td {
		border-bottom: 0;
	}
}

.datetimepicker {
	padding: 4px;
	margin-top: 1px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	direction: ltr
}

.datetimepicker-inline {
	width: 220px
}

.datetimepicker.datetimepicker-rtl {
	direction: rtl
}

.datetimepicker.datetimepicker-rtl table tr td span {
	float: right
}

.datetimepicker-dropdown,
.datetimepicker-dropdown-left {
	top: 0;
	left: 0
}

[class*=" datetimepicker-dropdown"]:before {
	content: '';
	display: inline-block;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	position: absolute
}

[class*=" datetimepicker-dropdown"]:after {
	content: '';
	display: inline-block;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	position: absolute
}

[class*=" datetimepicker-dropdown-top"]:before {
	content: '';
	display: inline-block;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #ccc;
	border-top-color: rgba(0, 0, 0, 0.2);
	border-bottom: 0
}

[class*=" datetimepicker-dropdown-top"]:after {
	content: '';
	display: inline-block;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #fff;
	border-bottom: 0
}

.datetimepicker-dropdown-bottom-left:before {
	top: -7px;
	right: 6px
}

.datetimepicker-dropdown-bottom-left:after {
	top: -6px;
	right: 7px
}

.datetimepicker-dropdown-bottom-right:before {
	top: -7px;
	left: 6px
}

.datetimepicker-dropdown-bottom-right:after {
	top: -6px;
	left: 7px
}

.datetimepicker-dropdown-top-left:before {
	bottom: -7px;
	right: 6px
}

.datetimepicker-dropdown-top-left:after {
	bottom: -6px;
	right: 7px
}

.datetimepicker-dropdown-top-right:before {
	bottom: -7px;
	left: 6px
}

.datetimepicker-dropdown-top-right:after {
	bottom: -6px;
	left: 7px
}

.datetimepicker>div {
	display: none
}

.datetimepicker.minutes div.datetimepicker-minutes {
	display: block
}

.datetimepicker.hours div.datetimepicker-hours {
	display: block
}

.datetimepicker.days div.datetimepicker-days {
	display: block
}

.datetimepicker.months div.datetimepicker-months {
	display: block
}

.datetimepicker.years div.datetimepicker-years {
	display: block
}

.datetimepicker table {
	margin: 0
}

.datetimepicker td,
.datetimepicker th {
	text-align: center;
	width: 20px;
	height: 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 0
}

.table-striped .datetimepicker table tr td,
.table-striped .datetimepicker table tr th {
	background-color: transparent
}

.datetimepicker table tr td.minute:hover {
	background: #eee;
	cursor: pointer
}

.datetimepicker table tr td.hour:hover {
	background: #eee;
	cursor: pointer
}

.datetimepicker table tr td.day:hover {
	background: #eee;
	cursor: pointer
}

.datetimepicker table tr td.old,
.datetimepicker table tr td.new {
	color: #999
}

.datetimepicker table tr td.disabled,
.datetimepicker table tr td.disabled:hover {
	background: 0;
	color: #999;
	cursor: default
}

.datetimepicker table tr td.today,
.datetimepicker table tr td.today:hover,
.datetimepicker table tr td.today.disabled,
.datetimepicker table tr td.today.disabled:hover {
	background-color: #fde19a;
	background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
	background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
	background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
	background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
	background-image: linear-gradient(top, #fdd49a, #fdf59a);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
	border-color: #fdf59a #fdf59a #fbed50;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.datetimepicker table tr td.today:hover,
.datetimepicker table tr td.today:hover:hover,
.datetimepicker table tr td.today.disabled:hover,
.datetimepicker table tr td.today.disabled:hover:hover,
.datetimepicker table tr td.today:active,
.datetimepicker table tr td.today:hover:active,
.datetimepicker table tr td.today.disabled:active,
.datetimepicker table tr td.today.disabled:hover:active,
.datetimepicker table tr td.today.active,
.datetimepicker table tr td.today:hover.active,
.datetimepicker table tr td.today.disabled.active,
.datetimepicker table tr td.today.disabled:hover.active,
.datetimepicker table tr td.today.disabled,
.datetimepicker table tr td.today:hover.disabled,
.datetimepicker table tr td.today.disabled.disabled,
.datetimepicker table tr td.today.disabled:hover.disabled,
.datetimepicker table tr td.today[disabled],
.datetimepicker table tr td.today:hover[disabled],
.datetimepicker table tr td.today.disabled[disabled],
.datetimepicker table tr td.today.disabled:hover[disabled] {
	background-color: #fdf59a
}

.datetimepicker table tr td.today:active,
.datetimepicker table tr td.today:hover:active,
.datetimepicker table tr td.today.disabled:active,
.datetimepicker table tr td.today.disabled:hover:active,
.datetimepicker table tr td.today.active,
.datetimepicker table tr td.today:hover.active,
.datetimepicker table tr td.today.disabled.active,
.datetimepicker table tr td.today.disabled:hover.active {
	background-color: #fbf069
}

.datetimepicker table tr td.active,
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active.disabled:hover {
	background-color: #006dcc;
	background-image: -moz-linear-gradient(top, #08c, #04c);
	background-image: -ms-linear-gradient(top, #08c, #04c);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
	background-image: -webkit-linear-gradient(top, #08c, #04c);
	background-image: -o-linear-gradient(top, #08c, #04c);
	background-image: linear-gradient(top, #08c, #04c);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
	border-color: #04c #04c #002a80;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}

.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active:hover:hover,
.datetimepicker table tr td.active.disabled:hover,
.datetimepicker table tr td.active.disabled:hover:hover,
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active:hover.disabled,
.datetimepicker table tr td.active.disabled.disabled,
.datetimepicker table tr td.active.disabled:hover.disabled,
.datetimepicker table tr td.active[disabled],
.datetimepicker table tr td.active:hover[disabled],
.datetimepicker table tr td.active.disabled[disabled],
.datetimepicker table tr td.active.disabled:hover[disabled] {
	background-color: #04c
}

.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active {
	background-color: #039
}

.datetimepicker table tr td span {
	display: block;
	width: 23%;
	height: 54px;
	line-height: 54px;
	float: left;
	margin: 1%;
	cursor: pointer;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px
}

.datetimepicker .datetimepicker-hours span {
	height: 26px;
	line-height: 26px
}

.datetimepicker .datetimepicker-hours table tr td span.hour_am,
.datetimepicker .datetimepicker-hours table tr td span.hour_pm {
	width: 14.6%
}

.datetimepicker .datetimepicker-hours fieldset legend,
.datetimepicker .datetimepicker-minutes fieldset legend {
	margin-bottom: inherit;
	line-height: 30px
}

.datetimepicker .datetimepicker-minutes span {
	height: 26px;
	line-height: 26px
}

.datetimepicker table tr td span:hover {
	background: #eee
}

.datetimepicker table tr td span.disabled,
.datetimepicker table tr td span.disabled:hover {
	background: 0;
	color: #999;
	cursor: default
}

.datetimepicker table tr td span.active,
.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active.disabled:hover {
	background-color: #006dcc;
	background-image: -moz-linear-gradient(top, #08c, #04c);
	background-image: -ms-linear-gradient(top, #08c, #04c);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
	background-image: -webkit-linear-gradient(top, #08c, #04c);
	background-image: -o-linear-gradient(top, #08c, #04c);
	background-image: linear-gradient(top, #08c, #04c);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
	border-color: #04c #04c #002a80;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}

.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active:hover:hover,
.datetimepicker table tr td span.active.disabled:hover,
.datetimepicker table tr td span.active.disabled:hover:hover,
.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active:hover.disabled,
.datetimepicker table tr td span.active.disabled.disabled,
.datetimepicker table tr td span.active.disabled:hover.disabled,
.datetimepicker table tr td span.active[disabled],
.datetimepicker table tr td span.active:hover[disabled],
.datetimepicker table tr td span.active.disabled[disabled],
.datetimepicker table tr td span.active.disabled:hover[disabled] {
	background-color: #04c
}

.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active {
	background-color: #039
}

.datetimepicker table tr td span.old {
	color: #999
}

.datetimepicker th.switch {
	width: 145px
}

.datetimepicker th span.glyphicon {
	pointer-events: none
}

.datetimepicker thead tr:first-child th,
.datetimepicker tfoot tr:first-child th {
	cursor: pointer
}

.datetimepicker thead tr:first-child th:hover,
.datetimepicker tfoot tr:first-child th:hover {
	background: #eee
}

.input-append.date .add-on i,
.input-prepend.date .add-on i,
.input-group.date .input-group-addon span {
	cursor: pointer;
	width: 14px;
	height: 14px
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


/*#email 
{
font-size: 80%;
}*/

#red {
	color: red;
}

.lab {
	font-family: basic ltd;
	font-size: 16px;
	padding: 0px;
}

#f24 {
	font-size: 20px
}

#f18 {
	font-size: 16px;
}

.ht3 {
	font-family: thoma;
	font-size: 35px;
}

.tb50 {
	text-align: center;
	font-family: times new romen;
	font-weight: 800;
}

.radiop {
	width: inherit !important;
	height: inherit !important;
}

.pd14 {
	padding: 5px 0px 0px;
}

.pd3 {
	padding: 3px 0px 0px;
}

.centerp {
    text-align: left;
    border: none;
    color: #fff;
}

body {
	font: 15px/1.6 Roboto Condensed, sans-serif;
	text-align: center;
	color: #191F26;
	background: #EDEDDC;
	word-wrap: break-word;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure {
	border: 0;
	margin: 0;
	padding: 0
}

html {
	overflow-y: scroll;
	-webkit-text-size-adjust: auto;
	-webkit-overflow-scrolling: touch;
}

img,
fieldset,
abbr,
acronym {
	border: 0;
}

article,
aside,
figure,
figcaption,
hgroup,
footer,
header,
nav,
section,
video,
object {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

img {
	border: 0;
	max-width: 100%;
	vertical-align: middle;
}

figure {
	position: relative;
}

figure img {
	display: block;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

ul {
	margin: 0 0 20px;
}

ul>li {
	list-style: none;
	position: relative;
	padding: 0 0 10px 15px;
}

/* ul>li:before {
	content: "\2022";
	font-size: 30px;
	color: #DBBC94;
	position: absolute;
	top: -10px;
	left: 0;
} */

ul ul {
	margin: 10px 0 -10px 2px;
}

ul ul li:before {
	content: "\00af";
	font-size: 25px;
	top: 0;
	left: -2px;
}

ol {
	margin: 0 0 20px 25px;
}

ol li {
	list-style: decimal outside;
	padding: 0 0 10px 5px;
}

ol ol {
	margin: 10px 0 -10px 15px;
}

nav ul {
	margin: 0;
}

nav li:before {
	display: none;
}


a {
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

a:active,
a:hover {
	outline: 0;
}

.color::-moz-selection,
.color::-moz-selection {
	background: #191F26;
}

.color::selection,
.color::selection {
	background: #191F26;
}

.left {
	float: left !important;
}

.right {
	float: right !important;
}

.center,
.center .wrap {
	text-align: center;
}

.logo {
	font-size: 15px;
	width: 300px;
}

.logo img {
	width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6,
.header,
.intro,
label,
input,
textarea,
select,
table,
dl,
option,
optgroup,
.selector,
.btn,
.f-title,
.pager,
.contact-data,
.categories,
.meta,
.tabs,
.price,
.trigger,
.close,
.output,
.xdsoft_datetimepicker,
.slicknav_menu,
.readonly .f-row,
.infoBox,
#message {

}

.homeClass h1 {
    font-size: 42px;
    text-transform: revert;
    font-weight: 600;
    line-height: 42px;
	margin-top: 50px;
	color: #ff9700;
}
.homeClass h3 {
    text-transform: revert;
    margin-top: 0px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
	color: #ff9700;
	line-height: 30px;
}
.serviceClass h2 a {
    color: #ff9700 !important;
}


.grey {
	background-color: #34394A !important;
}

.white {
	background-color: #fff !important;
}

.wrap {
	margin: 0 auto;
	width: 1170px;
	text-align: left;
	position: relative;
	max-width: 94%;
	display: inline-block;
}

.row {
	margin: 0 -15px;
}

.full-width {
	float: left;
	width: 100%;
	padding: 0 15px 30px;
	max-width: 100%;
}

.three-fourth {
	float: left;
	width: 75%;
	padding: 0 15px 30px;
	max-width: 100%;
}

.one-half {
	float: left;
	width: 50%;
	padding: 0 15px 30px;
	max-width: 100%;
}

.one-third {
	float: left;
	width: 33.33%;
	padding: 0 15px 30px;
	max-width: 100%;
}

.two-third {
	float: left;
	width: 66.66%;
	padding: 0 15px 30px;
	max-width: 100%;
}

.one-fourth {
	float: left;
	width: 25%;
	padding: 0 15px 30px;
	max-width: 100%;
}

.one-fifth {
	float: left;
	width: 20%;
	padding: 0 15px 30px;
	max-width: 100%;
}

.one-sixth {
	float: left;
	width: 16.66%;
	padding: 0 15px 30px;
	max-width: 100%;
}

.footer h6 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}
.footer .one-fourth img {
    margin-bottom: 10px;
}
.row:before,
.row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

.btn {
	border: none;
	text-transform: uppercase;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #fff !important;
	display: inline-block;
	text-align: center;
	max-width: 100%;
}

.btn.small {
	font-size: 12px;
	padding: 8px 14px;
}

.btn.medium {
	font-size: 15px;
	padding: 11px 20px;
	min-width: 142px;
}

.btn.large {
    font-size: 17px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 30px !important;
	background: #edc900;
}


.btn.huge {
	font-size: 20px;
	width: 270px;
	height: 70px;
	line-height: 70px;
	padding: 0 14px;
}

.btn.white {
	color: #191F26 !important;
}

.btn.full {
	width: 100%;
}

.btn.color:hover,
.btn.color:focus,
.btn.white:hover,
.btn.white:focus {
	background: #191F26 !important;
	color: #fff !important;
}

.btn.black:hover,
.btn.black:focus,
.cta .btn:hover,
.cta .btn:focus {
	background: #fff !important;
	color: #191F26 !important;
}

.more {
	font-weight: 600;
	padding-top: 2px;
	display: inline-block;
	position: relative;
	text-decoration: none;
}

.more:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	opacity: 0;
	-ms-opacity: 0;
	width: 0;
}

.more:hover:after,
.more:focus:after {
	opacity: 1;
	-ms-opacity: 1;
	width: 100%;
}

.back {
	background: #858585;
}

.ico {
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	background-image: url(../images-new/icons.png);
	background-repeat: no-repeat;
	background-color: transparent !important;
}

.phone {
	width: 29px;
	height: 24px;
	margin-top: -1px;
}

.phone.black {
	background-position: 0 0;
}

.email {
	width: 29px;
	height: 19px;
	font-size: 13px
}

.email.black {
	background-position: -31px -4px;
}

.circle {
	float: left;
	width: 88px;
	height: 88px;
	border: 1px solid #191F26;
	margin: 0 20px 30px 0;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	border-radius: 45px;
	text-align: center;
	line-height: 90px;
}

.circle .ico {
	height: 40px;
}

.heart {
	background-position: 0 -53px;
	width: 38px;
}

.wand {
	background-position: -40px -53px;
	width: 35px;
}

.lock {
	background-position: -80px -53px;
	width: 27px;
}

.award {
	background-position: 0 -93px;
	width: 38px;
}

.pig {
	background-position: -40px -93px;
	width: 38px;
}

.shuttle {
	background-position: -80px -93px;
	width: 36px;
}

.wallet {
	background-position: 0 -135px;
	width: 35px;
}

.clip {
	background-position: -40px -135px;
	width: 21px;
}

.telephone {
	background-position: -80px -135px;
	width: 25px;
}

.people {
	width: 35px;
	height: 40px;
}

.luggage {
	width: 35px;
	height: 40px;
}

.time {
	width: 33px;
	height: 40px;
}

.header {
    width: 100%;
    padding: 5px 0;
    height: auto;
    position: absolute;
    top: 0px;
    background: transparent !important;
}

body {
    width: 100%;
    float: left;
}

#b, #chlug, #pass, #viab, #way {
    height: 45px !important;
    border: none !important;
    border-radius: 30px !important;
	box-shadow: none !important;
}
#chlug, #pass {
	padding: 0 10px !important;
	text-align: center;
}
/* .header {
	background-image: linear-gradient(142deg, #00008B, #00008B 5%, #FFF 4%, #FFF 4%, #8B0000 5%, #8B0000 8%, #FFF 9%, #FFF 92%, #8B0000 93%, #8B0001 95%, #FFF 95%, #FFF 47%, #00008B 8%, #00008B 33%)
} */
.djUreview.slick-slide {
    border: 1px solid #ccc !important;
    border-radius: 10px;
    margin: 0 20px !important;
}
.header>.wrap {
	display: table;

}
tr td:hover {
    background: #ff9700;
}
.logo {
	display: table-cell;
	vertical-align: middle;
	padding: 0px 0 !important;
}

.main-nav {
	float: right;
	font-size: 14px;
	text-transform: uppercase;
	position: relative;
}

.main-nav ul>li {
	float: left;
	display: block;
	padding: 13px 0px;
	position: static;
	margin: 0 12px;
}

.main-nav ul>li>a {
	color: black;
	border-radius: 0;
	position: relative;
	font-size: 13px;
	color: #fff !important;
}


.main-nav ul>li.active>a,
.main-nav ul>li.active>a:hover,
.main-nav ul>li.active>a:focus,
.main-nav ul>li:hover>a,
.main-nav ul>li:focus>a {
	color: #191F26;
	font-size: 12px;
}

.main-nav li:hover>ul {
	display: block;
}

.main-nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	margin-left: -10px;
	min-width: 200px;
	background: #fff;
	-webkit-box-shadow: 4px 6px 8px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 4px 6px 8px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 4px 6px 8px 0 rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
	z-index: 9999;
	-webkit-transition: all .3s ease .15s;
	-moz-transition: all .3s ease .15s;
	-o-transition: all .3s ease .15s;
	-ms-transition: all .3s ease .15s;
	transition: all .3s ease .15s;
}

.main-nav ul ul li {
	padding: 0;
}

.main-nav ul ul li a {
	display: block;
	color: #191F26;
	font-size: 13px;
	padding: 9px 15px 7px;
}

.main-nav ul ul li:hover a {
	color: #fff;
	background: #191F26;
}

.main-nav ul ul li:last-child a {
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

.main-nav ul ul li {
	float: none;
	position: relative;
}

.main-nav ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
	margin-left: 0;
}

.main-nav li:hover>div {
	display: block;
}

.main-nav li>div {
	display: none;
	position: absolute;
	width: 1170px;
	padding: 15px 0 30px;
	top: 100%;
	right: 0;
	z-index: 999;
	background: #000;
	-webkit-box-shadow: 4px 6px 8px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 4px 6px 8px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 4px 6px 8px 0 rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
	-webkit-transition: all .3s ease .15s;
	-moz-transition: all .3s ease .15s;
	-o-transition: all .3s ease .15s;
	-ms-transition: all .3s ease .15s;
	transition: all .3s ease .15s;
}

.main-nav li>div div {
	position: static;
	display: inline-block;
	border-right: 1px solid #DFDFD0;
	padding: 0 30px;
	min-height: 120px;
}

.main-nav li>div div:last-of-type {
	border: none;
}

.main-nav li>div h2 {
	font-size: 15px;
	padding: 0 0 10px;
}

.main-nav li>div ul {
	display: block;
	margin: 0;
	position: static;
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.main-nav li>div ul li a {
	padding: 0 0 5px;
	color: #858585;
}

.main-nav li>div ul li:hover a {
	background: none;
	color: #191F26;
}

.home .header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .15);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .15);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}

.home .main {
	padding: 0;
}

.home .advanced-search {
	margin: 0;
}

.intro {
	background: url(../images-new/uploads/keyvisual.jpg) 50% 0 fixed no-repeat;
	overflow: hidden;
	float: left;
	width: 100%;
	display: block;
	background-position: center
}

.intro .textwidget {
	color: #fff;
	text-align: center;
}
#booking {
    width: 100%;
    float: left;
    padding-bottom: 0px;
}
.intro .textwidget #h1 {
	text-transform: uppercase;
	font-size: 61px;
	margin: 0 0 -5px;
}

.intro .textwidget #h2 {
	text-transform: uppercase;
	font-size: 23px;
	margin: 0;
}
.home_banner_form {
    background: rgba(0,0,0, 0.4);
    width: 100%;
    float: left;
    padding: 20px 10px;
    border-radius: 10px;
    margin-bottom: 160px;
}
.intro .actions {
	margin: 0px 0 0;
	padding: 0px 0 0;
	background: url(../images-new/separator.jpg) 50% 0 no-repeat;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.services {
	float: left;
	width: 100%;
}

.services.boxed article {
	padding: 0;
}

.services.boxed .details {
	text-align: left;
	padding: 25px 30px;
	border-right: 1px solid #DFDFD0;
}

.services.boxed article:last-child .details {
	border: none;
}

.services.boxed .details h4 {
	text-transform: uppercase;
}

.services.boxed .details h4 a {
	color: #191F26;
}

.services.iconic {
	padding: 68px 0 30px;
}

.services.iconic h3 {
	text-transform: uppercase;
	font-size: 17px;
	padding: 0 0 10px;
}

.partners {
	float: left;
	width: 100%;
	padding: 48px 0 30px;
}

.partners h2 {
	text-transform: uppercase;
	font-size: 30px;
	padding: 0 0 40px;
}

.testimonials {
	float: left;
	width: 100%;
	background: url(../images-new/testimonials.png) 50% 100% no-repeat;
	overflow: hidden;
	color: #fff;
	padding: 90px 0 70px;
}

.testimonials h6 {
	text-transform: uppercase;
	position: relative;
	font-size: 39px;
	color: #fff;
}

.testimonials h6:before {
	content: "";
	width: 41px;
	height: 29px;
}

.testimonials p {
	padding: 0 20% 30px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.testimonials .meta {
	font-size: 16px;
}

.testimonials.white h6,
.testimonials.white p {
	color: #191F26;
}

.advanced-search {
	float: left;
	width: 100%;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	padding: 35px 0 28px;
	margin: 0 0 35px;
	border-bottom: 1px solid #fff;
}

.advanced-search h3 {
	font-size: 20px;
	margin: 0 0 35px;
}

.advanced-search .f-row {
	margin: 0 0 30px;
	padding: 0 0 30px;
	border-bottom: 1px solid rgba(0, 0, 0, .15);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .3);
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .3);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .3);
}

.advanced-search .f-row:last-child {
	margin: 0;
	padding: 0;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.advanced-search .form-group {
	float: left;
	vertical-align: middle;
}

.advanced-search .form-group:first-of-type label,
.advanced-search .f-row:last-child label {
	padding-left: 0;
}

.advanced-search .form-group label {
	float: left;
	color: #fff;
	font-size: 15px;
}

.advanced-search .form-group input {
	float: right;
	border-color: #fff;
	color: #191F26;
}

.advanced-search .form-group input:focus,
.advanced-search .form-group .radio span {
	border-color: #fff;
}

.advanced-search .right {
	width: 23%;
}

.advanced-search .btn {
	width: 100%;
}

.form-group div.selector {
	border-color: #fff;
	height: 47px;
	line-height: 46px;
	color: #191F26;
}

.form-group div.selector:focus {
	border-color: #fff;
}

.form-group div.selector span {
	height: 47px;
	line-height: 46px;
}

.form-group div.selector span:before {
	border-color: #191F26 transparent transparent transparent;
}

.form-group.spinner {
	width: 35.1%;
}

.form-group.spinner label {
	line-height: 47px;
	padding: 0;
}

.form-group.spinner input {
	width: 16%;
}

.form-group.radios {
	padding: 11px 0 0 5.8%;
	width: 28.9%;
}

.form-group.radios>div {
	float: left;
}

.form-group.radios>div:last-of-type {
	float: right;
}

.form-group.radios label {
	line-height: 25px;
	padding: 0;
}

.output {
	color: #fff;
	padding: 30px 0;
	float: left;
	width: 100%;
	margin: 0 0 35px;
	border-bottom: 1px solid #fff;
}

.output p {
	font-size: 16px;
	padding: 0 0 3px;
	text-transform: uppercase;
}

.output p small {
	font-size: 15px;
	text-transform: none;
}

.output .wrap div {
	float: left;
	padding: 10px 0 2px;
}

.twoway .wrap div {
	width: 50%;
}

.twoway .wrap div:last-child {
	padding-left: 30px;
	border-left: 1px solid rgba(0, 0, 0, .15);
	-webkit-box-shadow: -1px 0 0 rgba(255, 255, 255, .3);
	-moz-box-shadow: -1px 0 0 rgba(255, 255, 255, .3);
	box-shadow: -1px 0 0 rgba(255, 255, 255, .3);
}

.data th,
.data td {
	text-align: center;
	width: 16%;
}

.data th:first-child,
.data td:first-child {
	text-align: left;
	width: 52%;
}

.data i {
	width: 100%;
	display: inline-block;
	color: #858585;
	text-transform: none;
}

.sidebar .widget .summary h5 {
	padding: 0 0 13px;
}

.summary div {
	padding: 17px 20px 12px;
	float: left;
	width: 100%;
	border-bottom: 1px solid #DFDFD0;
}

.summary div:last-of-type {
	border: none;
}

.summary dl {
	font-size: 13px;
	text-transform: uppercase;
	float: left;
	width: 100%;
}

.summary dt {
	float: left;
	color: #858585;
	width: 32%;
	padding: 0 0 6px;
}

.summary dd {
	float: left;
	width: 68%;
	padding: 0 0 6px;
}

.total {
	background: #191f26;
	padding: 12px 20px;
	color: #fff;
	display: table;
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

.total dt {
	font-size: 15px;
	color: #fff;
	padding: 0;
	display: table-cell;
	vertical-align: baseline;
	float: none;
}

.total dd {
	font-size: 21px;
	padding: 0;
	display: table-cell;
	vertical-align: baseline;
	float: none;
}

.readonly {
	position: relative;
}

.readonly h3 {
	padding: 20px 0;
	margin-top: 10px;
	display: inline-block;
	width: 100%;
	border-top: 1px solid #DFDFD0;
}

.readonly h3:first-of-type {
	padding-top: 0;
	margin: 0;
	border: none;
}

.readonly .f-row {
	padding: 0 0 12px;
	text-transform: uppercase;
	font-size: 13px;
}

.readonly .f-row .one-fourth {
	color: #858585;
}

.results {
	float: left;
	width: 100%;
	margin: 10px 0 5px;
}

.result {
	float: left;
	width: 100%;
	background: #fff;
	color: #34394A;
	overflow: hidden;
	-webkit-box-shadow: inset 0 0 0 1px #DFDFD0;
	-moz-box-shadow: inset 0 0 0 1px #DFDFD0;
	box-shadow: inset 0 0 0 1px #DFDFD0;
	margin: 0 0 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.result>div {
	padding: 0;
}

.result .one-fourth {
	width: 23%;
	position: relative;
}

.result img {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	padding: 1px 0 0 1px;
	max-height: 99%;
}

.result .one-half {
	width: 54%;
	-webkit-box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
	-moz-box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
	box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
}

.result .one-half h3 {
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 1px solid #DFDFD0;
	width: 100%;
	padding: 22px 30px 20px;
	position: relative;
}

.result .trigger {
	width: 20px;
	height: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	text-align: center;
	line-height: 20px;
	font-weight: bold;
	position: absolute;
	top: 35%;
	right: 25px;
	z-index: 2;
}

.result ul {
	margin: 0;
	display: table;
	width: 100%;
	height: 132px;
}

.result li:before {
	display: none;
}

.result li {
	width: 33.333%;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	padding: 0;
}

.result li:nth-child(2n) {
	-webkit-box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
	-moz-box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
	box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
}

.result li .ico {
	margin: 0 0 10px;
}

.result li p {
	padding: 0;
	line-height: 1.2;
}

.result .one-fourth>div {
	padding: 25px 30px 0 30px;
	height: 100%;
	display: inline-block;
	width: 100%;
	position: relative;
}

.result .price {
	font-size: 37px;
	line-height: 1.2;
}

.result .price small {
	font-size: 20px;
}

.result .meta {
	font-size: 15px;
	color: #34394A;
}

.result .btn {
	width: 100%;
	float: left;
	margin: 27px 0 0;
}

.result .full-width {
	border-top: 1px solid #DFDFD0;
	padding: 25px 50px 15px 30px;
	position: relative;
	background: #fff;
	border-bottom: 1px solid #DFDFD0;
	-webkit-box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
	-moz-box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
	box-shadow: 1px 0 0 0 #DFDFD0 inset, -1px 0 0 0 #DFDFD0 inset;
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

.result .close {
	width: 20px;
	height: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	text-align: center;
	line-height: 17px;
	text-indent: 0.04em;
	font-weight: bold;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 2;
}

.main {
	float: left;
	width: 100%;
	padding: 0 0 50px;
	overflow: hidden;
	max-width: 100%;
}

.site-title {
	float: left;
	width: 100%;
	border-bottom: 1px solid #fff;
	margin: 0 0 35px;
}

.site-title .container {
	height: 100px;
	display: table;
	color: #fff;
	width: 100%;
}

.site-title h1 {
	display: table-cell;
	vertical-align: middle;
}

.breadcrumbs {
	float: right;
	padding: 40px 0 0;
	font-weight: 500;
}

.breadcrumbs li {
	float: left;
	padding: 0;
}

.breadcrumbs a {
	position: relative;
	color: #fff;
}

.breadcrumbs li a:after {
	content: "\005C";
	font-weight: 400;
	padding: 0 8px;
	color: #fff;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
	color: #191F26;
}

.pager {
	float: left;
	width: 100%;
	padding: 29px 0 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .6);
	-webkit-box-shadow: 0 -1px 0 #DFDFD0;
	-moz-box-shadow: 0 -1px 0 #DFDFD0;
	box-shadow: 0 -1px 0 #DFDFD0;
}

.pager a {
	display: inline-block;
	margin: 0 7.5px 15px;
	width: 47px;
	height: 47px;
	line-height: 47px;
	background: #DFDFD0;
	color: #191F26;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.pager .current {
	color: #fff;
}

.pager a:hover,
.pager a:focus {
	color: #fff;
}

.overlay {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	-ms-opacity: 0;
	z-index: 20;
	background: rgba(0, 0, 0, .4);
	overflow: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}

.overlay a.expand {
	border: 2px solid #fff;
	text-align: center;
	color: #fff;
	line-height: 60px;
	font-weight: 400;
	font-size: 30px;
	display: block;
	position: absolute;
	z-index: 100;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.entry-featured:hover .overlay,
.featured-image:hover .overlay {
	opacity: 1;
	-ms-opacity: 1;
}

.entry-featured:hover a.expand,
.featured-image:hover a.expand {
	width: 60px;
	height: 60px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.entry-featured a.expand:after,
.featured-image a.expand:after {
	display: none;
}

.offset {
	margin-top: 65px;
}

.textongrey p {
	font-weight: 500;
	line-height: 1.5;
	padding: 0 0 20px;
}

.cta {
	float: left;
	width: 100%;
}

.cta .wrap {
	display: table;
	height: 130px;
}

.cta p {
	font-size: 23px;
	font-weight: 500;
	display: table-cell;
	vertical-align: middle;
	padding: 0 15px 0 0;
	color: #fff;
}

.cta .btn {
	margin-top: 30px;
}

.tabs {
	float: left;
	width: 100%;
	margin: 0 0 30px;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.tabs ul {
	display: block;
	width: 100%;
}

.tabs li {
	float: left;
	display: block;
	border-right: 1px solid rgba(0, 0, 0, .3);
	text-align: center;
	text-transform: uppercase;
	padding: 0;
}

.tabs li:last-child {
	border: none;
}

.tabs li:first-child a {
	-webkit-border-radius: 3px 0 0 0;
	-moz-border-radius: 3px 0 0 0;
	border-radius: 3px 0 0 0;
}

.tabs li:last-child a {
	-webkit-border-radius: 0 3px 0 0;
	-moz-border-radius: 0 3px 0 0;
	border-radius: 0 3px 0 0;
}

.tabs li a {
	float: left;
	color: #fff;
	padding: 17px 20px 16px;
	width: 100%;
	position: relative;
}

.tabs li.active a:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 45%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
}

.tabs.one li {
	width: 100%;
}

.tabs.two li {
	width: 50%;
}

.tabs.three li {
	width: 33.333%;
}

.tabs.four li {
	width: 25%;
}

.tabs.five li {
	width: 20%;
}

.tabs.six li {
	width: 16.667%;
}

.tab-content article {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.tab-content article img {
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.description {
	float: left;
	width: 100%;
	padding: 17px 20px 20px;
	background: #fff;
	color: #34394A;
	-webkit-box-shadow: inset 0 0 0 1px #DFDFD0;
	-moz-box-shadow: inset 0 0 0 1px #DFDFD0;
	box-shadow: inset 0 0 0 1px #DFDFD0;
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

.description h3 {
	font-size: 16px;
	padding: 0 0 12px;
}

.description h3 a:hover {
	text-decoration: none;
}

.description div {
	border-bottom: 1px solid #DFDFD0;
	margin: 0 0 14px;
	padding: 0 0 14px;
}

.description p {
	padding: 0 0 4px;
	font-size: 14px;
}

.description div a {
	color: #34394A;
}

.description div a:hover,
.description div a:focus {
	text-decoration: underline;
}

.keyvisual {
	float: left;
	width: 100%;
	position: relative;
	height: 600px;
	overflow: hidden;
	margin-top: -36px;
}

.keyvisual img {
	position: absolute;
	top: -20%;
	left: 0;
}

.microlocations {
	float: left;
	width: 100%;
	padding: 35px 0 6px;
	position: relative;
	margin-top: -105px;
}

.microlocations h3 {
	padding: 0 0 27px;
}

.microlocations p {
	padding: 0 0 4px;
}

.microlocations p a {
	color: #34394A;
}

.microlocations p a:hover,
.microlocations p a:focus {
	text-decoration: underline;
}

.gmap {
	float: left;
	width: 100%;
	height: 450px;
	margin: -36px 0 35px;
	border-bottom: 1px solid #fff;
}

.gmap img {
	max-width: none;
}

.gmap label {
	width: auto;
	display: inline;
}

.infoBox {
	text-align: left;
	font-size: 15px;
	width: 270px;
	max-width: 100%;
	padding: 27px 30px 29px;
	margin-top: -80px;
	color: #fff;
	background: #36394A;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.infoBox span {
	font-size: 17px;
}

.infoBox:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 15px 0 15px;
	border-color: #36394A transparent transparent transparent;
	position: absolute;
	bottom: -15px;
	left: 30px;
}

.hentry {
	float: left;
	width: 100%;
	background: #fff;
	color: #34394A;
}

.hentry .entry-featured {
	float: left;
	width: 33.33%;
	position: relative;
	overflow: hidden;
}

.hentry .entry-featured img {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}

.hentry .entry-content {
	float: left;
	width: 66.66%;
	padding: 25px;
}

.hentry .entry-content h2 a {
	color: #34394A;
}

.one-half .entry-featured,
.one-half .entry-content {
	width: 100%;
}

.one-half .entry-featured img {
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.hentry.single {
	margin-bottom: 30px;
}

.single .entry-featured {
	width: 100%;
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.single .entry-featured img {
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.three-fourth .single .entry-featured {
	height: 450px;
}


.one-half .single .entry-featured {
	height: 300px;
}

.three-fourth .single .entry-featured img,
.one-half .single .entry-featured img {
	position: absolute;
	top: -30%;
	left: 0;
}

.single .entry-content {
	width: 100%;
	position: relative;
	padding: 20px 25px;
}

.single .entry-content h2 {
	font-size: 25px;
	text-transform: none;
	padding: 0 0 12px;
}

.lead,
.textongrey .lead {
	font-size: 16px;
	font-weight: 600;
}

.single p {
    line-height: 30px;
    color: #000;
	font-size: 18px !important;
}
.counitesClass h1 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    text-align: left !important;
    color: #ff9700;
    text-transform: revert;
}
.counitesClass {
	text-align: left !important;
	padding-top: 50px;
}
.counitesClass li {
    padding-left: 0px;
    font-size: 16px;
    color: #000;
    list-style: disclosure-closed !important;
}
.counitesClass .one-half {
    margin-top: 20px;
    padding-left: 20px;
}
#carousel_djReviews73 {
    border: 1px solid #DFDFD0;
    margin-bottom: 40px !important;
}
.reviewsClass .well.well-sm {
    border: 1px solid #DFDFD0;
    box-shadow: none;
    border-radius: 0px;
}
.reviewsClass #new-review {
    min-height: 120px;
}
.reviewsClass {
    margin-bottom: 30px;
}
.reviewsClass .btn.btn-success {
    padding: 10px 30px;
    font-size: 16px;
    border: none;
}
.single a {
	position: relative;
	font-weight: 600;
}

.single a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	opacity: 0;
	-ms-opacity: 0;
	width: 0;
}

.single a:hover:after,
.single a:focus:after {
	opacity: 1;
	-ms-opacity: 1;
	width: 100%;
}

blockquote {
	position: relative;
	background: #ededdc;
	margin: 6px 0 20px;
	padding: 20px 25px 20px 79px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

blockquote:before {
	content: "";
	width: 41px;
	height: 29px;
}

.comments {
	float: left;
	width: 100%;
	margin: -2px 0 30px;
	border-bottom: 1px solid #DFDFD0;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .6);
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .6);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .6)
}

.comments h3 {
	padding: 0 0 30px;
	color: #191F26;
}

.comment-list {
	margin: 0;
}

.comments li {
	list-style: none;
	float: left;
	width: 100%;
	color: #34394A;
	margin: 0 0 30px;
	padding: 0 0 0 100px;
	position: relative;
}

.comments .avatar {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100px;
}

.comments .avatar img {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	border: 1px solid #DFDFD0;
}

.comments .depth-2 {
	padding-left: 200px;
	margin-left: 0;
	width: auto;
}

.depth-2 .avatar {
	left: 100px;
}

.comments .depth-3 {
	padding-left: 300px;
	margin-left: 0;
	width: auto;
}

.depth-3 .avatar {
	left: 200px;
}

.comment-box {
	float: left;
	width: 100%;
	background: #fff;
	min-height: 100px;
	padding: 15px 15px 0;
	border: 1px solid #DFDFD0;
	border-left: 0;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}

.comment-box .meta {
	color: #999;
	padding: 0 0 8px;
}

.comment-box a {
	color: #F2716A;
}

.meta {
	font-size: 13px;
	color: #858585
}

.meta strong {
	font-size: 15px;
	font-weight: 400;
	color: #191F26;
	padding: 0 3px 0 0;
}

.comment-text {
	float: left;
}

.comment-text p {
	font-size: 14px;
	padding: 0 0 14px;
	max-width: 86%;
}

.comments .btn {
	float: right;
	position: absolute;
	top: 15px;
	right: 15px;
}

.box {
	float: left;
	width: 100%;
	background: #fff;
	padding: 20px 25px 25px;
	color: #34394A;
	-webkit-box-shadow: inset 0 0 0 1px #DFDFD0;
	-moz-box-shadow: inset 0 0 0 1px #DFDFD0;
	box-shadow: inset 0 0 0 1px #DFDFD0;
	margin: 0 0 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.comment-respond h3 {
	padding: 0 0 20px;
}

.comment-respond label {
	color: #858585;
}

.faqs {
	background: #fff;
	border: 1px solid #DFDFD0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	width: 100%;
	margin: 22px 0 33px;
}

.faqs dt {
	padding: 25px;
	color: #858585;
	font: 600 17px 'Raleway', Arial, Helvetica, sans-serif;
	border-top: 1px solid #DFDFD0;
	cursor: pointer;
	position: relative;
}

.faqs dt:after {
	content: "+";
	position: absolute;
	top: 12px;
	right: 25px;
	font: normal 40px 'Times New Roman', serif;
	color: #ccc;
}

.faqs .expanded:after {
	content: "\2013";
	top: 7px;
}

.faqs dt:first-of-type {
	border: none;
}

.faqs dd {
	padding: 0 25px 10px;
	font: 15px/1.5 'Raleway', Arial, Helvetica, sans-serif;
}

.error {
	background: url(../images-new/lost.jpg) -50px 100% no-repeat;
	padding: 0;
	min-height: 630px;
}

.error .content {
	padding-top: 70px;
}

.error h2 {
	font-size: 35px;
}

.modal {
	float: none;
	margin: 0 auto;
}

.sidebar .widget {
	float: left;
	width: 100%;
	background: #fff;
	color: #34394A;
	-webkit-box-shadow: inset 0 0 0 1px #DFDFD0;
	-moz-box-shadow: inset 0 0 0 1px #DFDFD0;
	box-shadow: inset 0 0 0 1px #DFDFD0;
	margin: 0 0 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.contactClass address {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
}
.contactClass #i {
    padding-left: 0px;
	font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    color: #000;
}
.sidebar .widget h4 {
	font-size: 24px;
	text-transform: uppercase;
	background: #191F26;
	color: #fff;
	padding: 17px 20px 16px;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}
.contactClass {
    margin-top: 50px;
}
.contactClass h2 {
    text-align: left;
    color: #ff9700;
    font-weight: 600;
}
.contactClass p {
    text-align: left;
    font-size: 16px;
    color: #000;
    margin-top: 10px;
}
.contactClass form {
    width: 100%;
    float: left;
    margin-top: 0px;
    border: 1px solid #DFDFD0;
}
.sidebar .widget h5 {
	font-family: 'Roboto', sans-serif !important;
	font-weight: 700;
	padding: 0 0 6px;
}

.sidebar .widget img {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.sidebar .widget img:last-of-type {
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

.sidebar .widget .textwidget {
	padding: 17px 20px 5px;
}

.sidebar .widget form {
	float: left;
	width: 100%;
	padding: 17px 20px 0;
}

.sidebar .widget .f-row {
	padding-bottom: 20px;
}

.sidebar .widget .f-row input {
	padding: 10px 12px;
}

.contact-data {
	font-size: 17px;
}

.contact-data .ico {
	margin-right: 10px;
}

.categories {
	margin: 0;
}

.categories li {
	text-transform: uppercase;
	font-size: 14px;
	border-bottom: 1px solid #DFDFD0;
	padding: 0;
}

.categories li:before {
	display: none;
}

.categories li a {
	display: inline-block;
	width: 100%;
	color: #34394A;
	padding: 17px 20px 16px;
}

.categories li:last-child {
	border-bottom: none;
}

.categories li.active {
	font-size: 15px;
}

.categories li.active a,
.categories li:hover a {
	background: #191F26;
	color: #fff;
}

.categories li.active:after {
	content: "";
	position: absolute;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
}

.sidebar.right li.active:after {
	left: -15px;
	border-width: 27px 15px 27px 0;
	border-color: transparent #191F26 transparent transparent;
}

.sidebar.left li.active:after {
	right: -15px;
	border-width: 27px 0 27px 15px;
	border-color: transparent transparent transparent #191F26;
}

.categories li.active:first-child a {
	-webkit-border-radius: 3px 0 0 0;
	-moz-border-radius: 3px 0 0 0;
	border-radius: 3px 0 0 0;
}

.categories li.active:last-child a {
	-webkit-border-radius: 0 0 0 3px;
	-moz-border-radius: 0 0 0 3px;
	border-radius: 0 0 0 3px;
}
.row-section-container .row {
    margin-top: 50px;
}
.footer {
	float: left;
	width: 100%;
	min-height: 300px;
	color: #fff;
	padding-top: 70px;
	background: #000;
}
.main_page_section {
    background: #f2f2f2;
    padding-bottom: 50px;
    text-align: center;
}
.main_page_section img {
    background: #fff;
    border: 1px solid #ccc;
}
.homeClass .main_page_section h1 {
    margin-bottom: 30px;
}
.homeClass .main_page_section h3 {
    margin-top: 15px;
}
.footer article {
	min-height: 170px;
}
.footer .one-fourth a img {
    width: 100px;
}
.footer p {
	font-weight: 500;
}

.footer .contact-data {
	padding: 10px 0 3px;
	white-space: nowrap;
	color: #fff;
}
.footer .contact-data a {
	color: #fff;
}

.social {
	display: inline-block;
	margin: 0;
}
body {
    font-family: 'Roboto', sans-serif !important;
}
.social li {
	text-align: center;
	float: left;
	display: block;
	margin: 0 6px 6px 0;
	padding: 0;
	border: none;
	width: 40px;
	height: 40px;
	background: #333;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.social li:before {
	display: none;
}

.social li:last-child {
	margin-right: 0;
}

.social li a {
	float: left;
	display: block;
	text-indent: -99999px;
	position: relative;
	width: 100%;
	height: 100%;
}

.social li a:before {
	content: "";
	position: absolute;
}

.social .facebook a:before {
	background: url(../images-new/icons.png) 0 -30px no-repeat;
	width: 10px;
	height: 20px;
	top: 10px;
	left: 14.5px;
}

.social .twitter a:before {
	background: url(../images-new/icons.png) -12px -33px no-repeat;
	width: 25px;
	height: 17px;
	top: 12px;
	left: 8px;
}

.social .gplus a:before {
	background: url(../images-new/icons.png) -59px -31px no-repeat;
	width: 13px;
	height: 19px;
	top: 11px;
	left: 13px;
}

.social .linkedin a:before {
	background: url(../images-new/icons.png) -38px -32px no-repeat;
	width: 18px;
	height: 18px;
	top: 11px;
	left: 11px;
}

.social .vimeo a:before {
	background: url(../images-new/icons.png) -75px -32px no-repeat;
	width: 20px;
	height: 18px;
	top: 12px;
	left: 9.5px;
}

.social .pinterest a:before {
	background: url(../images-new/icons.png) -98px -31px no-repeat;
	width: 18px;
	height: 19px;
	top: 11px;
	left: 11px;
}

.copy {
	float: left;
	width: 100%;
	color: #fff;
	padding: 20px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .07);
	-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
	-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
	box-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
}

.copy p {
	float: left;
	max-width: 40%;
}

.copy a {
	color: #fff;
}

.copy a:hover,
.copy a:focus {
	color: #fff;
}

.foot-nav {
	float: right;
	max-width: 60%;
	font-weight: 500;
}

.foot-nav li {
	float: left;
	padding: 0 0 0 0px;
}

fieldset {
	display: inline-block;
	width: 100%;
}

label {
	display: inline-block;
	cursor: pointer;
	color: #191F26;
	position: relative;
	font-size: 13px;
	text-transform: uppercase;
	padding: 0 0 17px 1px;
}

label span {
	text-transform: none;
}

input,
textarea {
	outline: none;
}

button,
input,
select,
textarea {
	margin: 0;
	vertical-align: baseline;
	*vertical-align: middle;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	-webkit-appearance: button;
	text-align: center;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

input[type="search"],
input[type="email"],
input[type="text"],
input[type="number"],
input[type="password"],
textarea {
	display: block;
	padding: 12px 15px;
	font-size: 15px;
	width: 100%;
	border: 1px solid #DFDFD0;
	color: #34394A;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

textarea {
	resize: none;
	height: 235px;
}

select {
	padding: 12px 15px;
	width: 100%;
	line-height: 1;
	color: #34394A;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #DFDFD0;
}

optgroup {
	font-style: normal;
	text-transform: uppercase;
	color: #191f26;
}

optgroup:before {
	content: attr(label);
	display: block;
	padding: 10px 0 5px;
}

option {
	font-size: 13px;
	color: #34394A;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
	border-color: #bbb;
}

input[type="file"] {
	border: 1px solid #DFDFD0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #34394A;
	padding: 6px;
	margin: 5px 0;
}

.f-row {
	float: left;
	width: 100%;
	padding: 0 0 25px;
}

.f-row:last-child {
	padding-bottom: 0;
}

.f-row .full-width,
.f-row .one-half,
.f-row .one-third,
.f-row .two-third,
.f-row .one-fourth,
.f-row .three-fourth,
.f-row .one-fifth,
.f-row .one-sixth {
	padding: 0 30px 0 0;
}

.f-row div:last-child {
	padding-right: 0;
}

.f-title {
	margin: 35px 0 25px;
	padding: 17px 20px 16px;
	width: 100%;
	display: inline-block;
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.f-title:first-of-type {
	margin-top: 0;
}

.actions {
	float: left;
	width: 100%;
	padding: 29px 0 0;
	margin-top: 4px;
	border-top: 1px solid rgba(255, 255, 255, .6);
	-webkit-box-shadow: 0 -1px 0 #DFDFD0;
	-moz-box-shadow: 0 -1px 0 #DFDFD0;
	box-shadow: 0 -1px 0 #DFDFD0;
}

.actions .btn {
	margin-right: 26px;
}

.actions .btn.right {
	margin-right: 0;
}

.check label,
.radio label {
	padding: 3px 0 0;
	float: left;
	max-width: 87%;
}

.one-sixth label {
	white-space: nowrap;
}

.error_message {
	background: #de2222;
	color: #fff;
	padding: 15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-transform: uppercase;
	margin: 0 0 15px;
}

#message h6 {
	padding-bottom: 10px;
	color: #191f26;
}

#message p {
	padding: 0;
}

.preloader {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
}

#followingBallsG {
	position: relative;
	width: 256px;
	height: 20px;
	top: 45%;
	left: 43%;
}

.followingBallsG {
	background-color: #191F26;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	-moz-border-radius: 10px;
	-moz-animation-name: bounce_followingBallsG;
	-moz-animation-duration: 2.3s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: linear;
	-webkit-border-radius: 10px;
	-webkit-animation-name: bounce_followingBallsG;
	-webkit-animation-duration: 2.3s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: linear;
	-ms-border-radius: 10px;
	-ms-animation-name: bounce_followingBallsG;
	-ms-animation-duration: 2.3s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-direction: linear;
	-o-border-radius: 10px;
	-o-animation-name: bounce_followingBallsG;
	-o-animation-duration: 2.3s;
	-o-animation-iteration-count: infinite;
	-o-animation-direction: linear;
	border-radius: 10px;
	animation-name: bounce_followingBallsG;
	animation-duration: 2.3s;
	animation-iteration-count: infinite;
	animation-direction: linear;
}

#followingBallsG_1 {
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-ms-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}

#followingBallsG_2 {
	-moz-animation-delay: 0.23s;
	-webkit-animation-delay: 0.23s;
	-ms-animation-delay: 0.23s;
	-o-animation-delay: 0.23s;
	animation-delay: 0.23s;
}

#followingBallsG_3 {
	-moz-animation-delay: 0.46s;
	-webkit-animation-delay: 0.46s;
	-ms-animation-delay: 0.46s;
	-o-animation-delay: 0.46s;
	animation-delay: 0.46s;
}

#followingBallsG_4 {
	-moz-animation-delay: 0.69s;
	-webkit-animation-delay: 0.69s;
	-ms-animation-delay: 0.69s;
	-o-animation-delay: 0.69s;
	animation-delay: 0.69s;
}

@-moz-keyframes bounce_followingBallsG {
	0% {
		left: 0px;
		background-color: #191F26;
	}
	50% {
		left: 236px;
		background-color: #fff;
	}
	100% {
		left: 0px;
		background-color: #191F26;
	}
}

@-webkit-keyframes bounce_followingBallsG {
	0% {
		left: 0px;
		background-color: #191F26;
	}
	50% {
		left: 236px;
		background-color: #fff;
	}
	100% {
		left: 0px;
		background-color: #191F26;
	}
}

@-ms-keyframes bounce_followingBallsG {
	0% {
		left: 0px;
		background-color: #191F26;
	}
	50% {
		left: 236px;
		background-color: #fff;
	}
	100% {
		left: 0px;
		background-color: #191F26;
	}
}

@-o-keyframes bounce_followingBallsG {
	0% {
		left: 0px;
		background-color: #191F26;
	}
	50% {
		left: 236px;
		background-color: #fff;
	}
	100% {
		left: 0px;
		background-color: #191F26;
	}
}

@keyframes bounce_followingBallsG {
	0% {
		left: 0px;
		background-color: #191F26;
	}
	50% {
		left: 236px;
		background-color: #fff;
	}
	100% {
		left: 0px;
		background-color: #191F26;
	}
}

div.selector,
div.selector span,
div.checker span,
div.radio span,
div.uploader,
div.uploader span.action,
div.button,
div.button span {
	text-align: left;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

div.selector,
div.checker,
div.button,
div.radio,
div.uploader {
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: middle;
}

div.selector:focus,
div.checker:focus,
div.button:focus,
div.radio:focus,
div.uploader:focus {
	outline: 0;
}

div.selector,
div.selector *,
div.radio,
div.radio *,
div.checker,
div.checker *,
div.uploader,
div.uploader *,
div.button,
div.button * {
	cursor: pointer;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
	padding: 12px 15px;
	border: 1px solid #DFDFD0;
}

input.uniform-input.active,
select.uniform-multiselect.active,
textarea.uniform.active,
input.uniform-input.focus,
select.uniform-multiselect.focus,
textarea.uniform.focus {
	border-color: #bbb;
}

div.checker input,
input[type="search"],
input[type="search"]:active {
	-moz-appearance: none;
	-webkit-appearance: none;
}

div.selector {
	border: 1px solid #DFDFD0;
	line-height: 48px;
	height: 48px;
	position: relative;
	overflow: hidden;
	width: 100% !important;
	padding-left: 15px;
	background: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

div.selector span {
	position: relative;
	text-overflow: ellipsis;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	height: 48px;
	line-height: 48px;
	background: #fff;
	cursor: pointer;
	width: 100% !important;
	padding-right: 30px;
}

div.selector span:before {
	content: "";
	position: absolute;
	top: 21px;
	right: 15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 7px 0 7px;
	border-color: #ccc transparent transparent transparent;
}

div.selector select {
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	border: none;
	background: none;
	position: absolute;
	height: 48px;
	top: 0;
	left: 0;
	width: 100%;
}

div.selector.active,
div.selector.focus {
	border-color: #bbb;
}

div.checker {
	position: relative;
	top: 0;
	margin-right: 15px;
	float: left;
}

div.checker,
div.checker span,
div.checker input {
	width: 25px;
	height: 25px;
}

div.checker span {
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: center;
	background: #fff;
	border: 1px solid #DFDFD0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
}

div.checker span.checked:before {
	content: "\2713";
	position: absolute;
	top: 1px;
	left: 5px;
	font-weight: bold;
	text-shadow: 0 1px 0 #191f26;
}

div.checker input {
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	border: none;
	background: none;
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
}

div.radio {
	position: relative;
	top: 0;
	margin-right: 15px;
	float: left;
}

div.radio,
div.radio span,
div.radio input {
	width: 25px;
	height: 25px;
}

div.radio span {
	border: 1px solid #DFDFD0;
	background: #fff;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	border-radius: 13px;
	position: relative;
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: center;
}

div.radio span.checked:before {
	content: "";
	width: 11px;
	height: 11px;
	background: #191f26;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	position: absolute;
	top: 6px;
	left: 6px;
}

div.radio input {
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	border: none;
	background: none;
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: center;
}

.slicknav_menu {
	display: none;
}

.slicknav_btn {
	position: relative;
	display: block;
	vertical-align: middle;
	float: right;
	padding: 27px 4% 30px 0;
	line-height: 1.125em;
	cursor: pointer;
}

.slicknav_menu .slicknav_menutxt {
	display: block;
	line-height: 1.188em;
	float: left;
}

.slicknav_menu .slicknav_icon {
	float: left;
	margin: 5px 0;
}

.slicknav_menu .slicknav_no-text {
	margin: 0
}

.slicknav_menu .slicknav_icon-bar {
	display: block;
	width: 40px;
	height: 4px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}

.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
	margin-top: 5px;
}

.slicknav_nav {
	clear: both;
}

.slicknav_nav ul,
.slicknav_nav li {
	display: block;
}

.slicknav_nav .slicknav_arrow {
	font-size: 0.8em;
	margin: 0 0 0 0.4em;
}

.slicknav_nav .slicknav_item {
	cursor: pointer;
}

.slicknav_nav .slicknav_row {
	display: block;
}

.slicknav_nav a {
	display: block
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
	display: inline
}

.slicknav_menu:before,
.slicknav_menu:after {
	content: " ";
	display: table;
}

.slicknav_menu:after {
	clear: both
}

.slicknav_menu {
	*zoom: 1
}

.slicknav_menu {
	font-size: 16px;
	float: right;
	width: 100%;
}

.slicknav_nav {
	background: #fff;
	color: #858585;
	margin: 0;
	padding: 0;
	font-size: 0.875em;
}

.slicknav_nav,
.slicknav_nav ul {
	list-style: none;
	overflow: hidden;
}

.slicknav_nav ul {
	padding: 0;
	margin: 0;
}

.slicknav_nav li {
	padding: 0;
	text-transform: uppercase;
}

.slicknav_nav .slicknav_row {
	padding: 15px 4% 13px;
}

.slicknav_nav a {
	padding: 15px 4% 13px;
	text-decoration: none;
	color: #858585;
	border-top: 1px solid #dfdfd0;
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
	padding: 0;
	margin: 0;
	border: none;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav li:hover a {
	color: #191f26;
}

.slicknav_nav .slicknav_txtnode {
	margin-left: 15px;
}

.slicknav_nav h2 {
	display: none;
}

.slicknav_nav div {
	padding: 0;
	width: 100%;
	float: none;
}

@media print {
	* {
		color: #000;
		text-shadow: none;
		background: transparent;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		font-size: 10pt;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100%;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
	select {
		background: none;
	}
	.header,
	.main-nav,
	.site-title,
	.sidebar,
	.footer {
		display: none;
	}
}

@media screen and (max-width:1200px) {
	.wrap {
		width: 94%;
	}
	.main-nav {
		font-size: 14px;
	}
	.main-nav ul>li {
		padding-left: 25px;
	}
	.hentry .entry-content p {
		height: 47px;
		overflow: hidden;
	}
	.single .entry-content p {
		height: auto;
	}
	.advanced-search .form-group.spinner {
		width: 45%;
	}
	.advanced-search .form-group.spinner label {
		width: auto;
		line-height: 47px;
		padding: 0 30px 0 0;
	}
	.advanced-search .form-group.spinner input {
		width: 16%;
		float: left;
	}
	.advanced-search .form-group.radios {
		padding-left: 0;
		width: 30%;
	}
	.advanced-search .form-group.right {
		width: 25%;
		padding: 0;
	}
	.form-group.radios>div:last-of-type {
		float: left;
		padding-left: 30px;
	}
	.services.iconic .one-third {
		width: 50%;
	}
	.result .one-fourth:first-of-type {
		width: 25%;
	}
	.result .one-fourth {
		width: 25%;
	}
	.result .one-half {
		width: 50%;
	}
	.main-nav li>div {
		width: 100% !important;
	}
	.tab-content .one-fourth {
		width: 50%;
	}
}

@media screen and (max-width:1040px) {
	.header {
		height: auto;
		min-height: 80px;
	}
	.header .wrap {
		height: auto;
	}
	.logo img {
		width: 80%
	}
	.main-nav {
		float: left;
		border-top: 1px solid #DFDFD0;
		padding: 29px 0px;
		width: 120%;
		margin-left: -12%;
		margin-top: 1;
		font-size: 14px;
	}
	.logo {
		margin-top: -15px;
		font-size: 15px;
		width: 37%;
	}
	.main-nav ul>li {
		padding: 0 25px 0 0;
	}
	.advanced-search .form-group.spinner,
	.advanced-search .form-group.radios {
		width: 66.6667%;
	}
	.advanced-search .form-group.radios {
		padding-top: 20px;
	}
	.advanced-search .form-group.right {
		width: 33.3333%;
	}
	.result {
		position: relative;
	}
	.result .one-fourth:first-of-type {
		width: 50%;
		left: 0;
		top: 0;
		overflow: hidden;
	}
	.result .one-fourth {
		width: 50%;
		position: absolute;
		top: 100px;
		left: 50%;
		height: auto !important;
	}
	.result .one-fourth>div {
		padding: 41px 30px 34px;
	}
	.result .one-half {
		float: right;
		width: 50%;
		margin-top: 180px;
		height: auto !important;
		position: relative;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	.result .one-half h3 {
		position: absolute;
		top: -180px;
	}
	.result .price,
	.result .meta {
		float: left;
	}
	.result .meta {
		padding: 19px 10px 0;
	}
	.result .btn {
		margin-top: 0px;
		position: absolute;
		left: 3.5%;
		width: 86%;
	}
	.single .entry-featured,
	.keyvisual {
		height: auto !important;
	}
	.single .entry-featured img,
	.keyvisual img {
		position: static !important;
		width: 100% !important;
	}
	.copy p,
	.foot-nav {
		max-width: 100%;
		width: 100%;
		float: left;
		text-align: center;
	}
	.foot-nav li {
		padding: 0 24px 15px 0;
		display: inline-block;
		float: none;
	}
	.home .boxed .one-fourth {
		width: 50%;
	}
}

@media screen and (max-width:980px) {
	.wrap {
		width: 92%;
	}
	.full-width,
	.three-fourth,
	.one-half,
	.one-third,
	.two-third,
	.one-fourth,
	.one-fifth,
	.one-sixth {
		width: 100%;
	}
	.header .wrap {
		width: 100%;
		max-width: 100%;
		display: block;
	}
	.main-nav {
		display: none;
	}
	.slicknav_menu {
		display: block;
	}
	.logo {
		position: absolute;
		top: 0px;
		left: 9%;
		display: block;
		width: 46%;
	}
	.sidebar {
		padding-bottom: 0;
	}
	.f-row {
		padding: 0;
	}
	.f-row .full-width,
	.f-row .one-half,
	.f-row .one-third,
	.f-row .one-fourth,
	.f-row .one-fifth,
	.f-row .one-sixth {
		padding: 0 0 25px;
	}
	.sidebar .widget,
	.tabs li {
		width: 100% !important;
		margin-right: 0;
	}
	.tabs li:first-child a {
		-webkit-border-radius: 3px 3px 0 0;
		-moz-border-radius: 3px 3px 0 0;
		border-radius: 3px 3px 0 0;
	}
	.categories li:after,
	.tabs li.active a:after {
		display: none;
	}
	.tabs li {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, .3);
	}
	.footer article {
		min-height: 100%;
	}
	.footer .one-half {
		padding-bottom: 13px;
		margin-bottom: 30px;
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, .5);
		-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .07);
		-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .07);
		box-shadow: 0 1px 0 rgba(255, 255, 255, .07);
	}
	.footer .one-fourth {
		width: 50%;
	}
	.hentry .entry-featured,
	.hentry .entry-content {
		width: 100%;
	}
	.hentry .entry-content p {
		height: auto;
	}
	.hentry .entry-featured img {
		-webkit-border-radius: 3px 3px 0 0;
		-moz-border-radius: 3px 3px 0 0;
		border-radius: 3px 3px 0 0;
	}
	.advanced-search .form-group.spinner,
	.advanced-search .form-group.radios {
		width: 100%;
		padding: 0 0 30px;
		float: right;
	}
	.advanced-search .form-group.right {
		width: 100%;
		padding: 0 0 30px;
		float: left;
	}
	.cta {
		padding: 30px 0;
	}
	.cta .wrap {
		text-align: center;
	}
	.cta p {
		display: inline-block;
		width: 100%;
		padding: 0;
	}
	.cta .btn {
		margin: 20px auto 0;
		float: none!important;
	}
	.testimonials p {
		padding: 0 5% 30px;
	}
	.actions {
		margin: 0;
	}
	.actions .btn {
		width: 47.5%;
		margin: 0 4% 30px 0;
	}
	.actions .btn:nth-child(2n) {
		margin-right: 0;
	}
	.intro .actions .btn {
		width: auto;
	}
	.result .one-fourth,
	.result .one-half {
		width: 100%;
		position: relative;
		top: 0;
		left: 0;
		height: auto;
		margin: 0;
	}
	.result .one-fourth:first-of-type {
		width: 100%;
		text-align: center;
	}
	.result .one-fourth:first-of-type img {
		margin: 0 auto;
		max-width: 99%;
	}
	.result .one-half {
		border-bottom: 1px solid #dfdfd0;
	}
	.result .one-half h3 {
		position: relative;
		top: 0;
	}
	.result .one-fourth>div {
		padding: 25px 30px 20px;
		border-bottom: none;
	}
	.result .price {
		padding-top: 5px;
	}
	.result .meta {
		padding-top: 24px;
	}
	.result .btn {
		position: static;
		top: 0;
		left: 0;
		float: right;
		width: 33.3333%;
	}
	.site-title .container {
		height: auto;
		display: inline-block;
		padding: 0 0 27px;
	}
	.site-title h1 {
		float: left;
		width: 100%;
		padding: 27px 0 0;
	}
	.breadcrumbs {
		float: left;
		width: 100%;
		padding: 0;
	}
	.microlocations .one-fourth {
		width: 50%;
	}
	.readonly .one-fourth {
		width: 33.3333%;
	}
	.readonly .three-fourth {
		width: 66.6667%;
	}
	.logo {
		width: 70%;
		margin-top: -26px;
	}
	.logo img {
		width: 100%;
	}
}

@media screen and (min-width: 992px) {
	.main-nav ul>li>a {
		font-size: 12px;
		font-family: 'Roboto', sans-serif !important;
	}
}

@media screen and (max-width:800px) {
	.wrap {
		width: 94% !important;
	}
	.home .services .one-third,
	.home .services .one-fourth,
	.footer .one-fourth {
		width: 100%;
	}
	.footer {
		min-height: 100%;
		padding: 0;
	}
	.footer .wrap {
		text-align: center;
	}
	.footer article {
		padding: 35px 15px 20px;
		margin: 0;
		border-bottom: 1px solid rgba(0, 0, 0, .5);
		-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .07);
		-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .07);
		box-shadow: 0 1px 0 rgba(255, 255, 255, .07);
	}
	.animated {
		-webkit-animation-duration: 0s;
		animation-duration: 0s;
	}
	.intro .textwidget {
		padding-top: 40%;
	}
	.logo {
		width: 70%;
		margin-top: -14px;
	}
	.logo img {
		width: 100%;
	}
}

@media screen and (max-width:600px) {
	.result .btn {
		width: 100%;
		margin-top: 25px;
	}
	.microlocations .one-fourth,
	.tab-content .one-fourth,
	.readonly .one-fourth,
	.readonly .three-fourth {
		width: 100%;
	}
	.readonly .one-fourth {
		padding-bottom: 0;
	}
	.twoway .wrap div {
		width: 100%;
		padding: 0 0 15px;
		margin: 0 0 20px;
		border-bottom: 1px solid rgba(0, 0, 0, .15);
		-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .3);
		-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .3);
		box-shadow: 0 1px 0 rgba(255, 255, 255, .3);
	}
	.twoway .wrap div:last-child {
		padding: 0;
		margin: 0;
		border: none;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	.logo {
		width: 75%;
		margin-top: 0px;
	}
	.logo img {
		width: 100%;
	}
}

@media screen and (max-width:500px) {
	.wrap {
		width: 92% !important;
	}
	.intro .textwidget {
		padding-top: 50%;
	}
	.intro .textwidget h1 {
		font-size: 45px;
	}
	.intro .textwidget h2 {
		font-size: 17px;
	}
	.intro .btn.large {
		font-size: 14px;
		width: 46%;
		margin: 0 1%;
	}
	.advanced-search .form-group.spinner input {
		width: 100%;
	}
	.main table,
	.main thead,
	.main tbody,
	.main th,
	.main td,
	.main tr {
		display: block;
		width: 100%;
		text-align: left;
	}
	.main thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.main td {
		position: relative;
	}
	.data th:first-child,
	.data td:first-child {
		width: 100%
	}
	.logo {
		width: 70%;
		margin-top: 0px;
	}
	.logo img {
		width: 100%;
	}
}

@media screen and (max-width:300px) {
	.wrap {
		width: 97% !important;
	}
}

@media screen and (max-width:400px) {
	header>.wrap {
		width: 100% !important;
	}
	.intro {
		width: 100% !important;
	}
	.intro .textwidget h1 {
		font-size: 25px !important;
	}
	.intro .textwidget h2 {
		font-size: 15px !important;
	}
	.intro .btn.large {
		width: 100%;
		margin: 0 0 15px;
	}
	.slicknav_btn {
		padding: 10px 4% 30px 0;
	}
	.header {
		min-height: 44px !important;
	}
	.logo {
		width: 70%;
		margin-top: 0px;
	}
	.logo img {
		width: 100%
	}
	.copy {
		border-top: none;
		box-shadow: none;
	}
	.one-fourth article {
		width: 50%;
	}
	#email {
		font-size: 12px;
	}
	.footer article {
		/* margin: 0; */
		border-bottom: 0px;
	}
}

header>.wrap {
	width: 90%;
}

::-moz-selection {
	background: #ff9700;
	color: #fff;
}

::selection {
	background: #ff9700;
	color: #fff;
}

html {
	-webkit-tap-highlight-color: #ff9700;
}

a,
.more,
.services.boxed .details h4 a:hover,
.services.iconic h3,
.content a,
.description a:hover,
.description a:focus,
.microlocations p a:hover,
.microlocations p a:focus,
.hentry .entry-content h2 a:hover,
.hentry .entry-content h2 a:focus,
.footer .contact-data a:hover,
.footer .contact-data a:focus,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today,
.faqs .expanded,
.faqs .expanded:after {
}

.color,
.pager a.current,
.pager a:hover,
.pager a:focus,
table.hover tr:hover td,
.tabs li.active a,
.social li:hover,
.data th,
.tabs li a:hover,
.tabs li a:focus,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover,
.slicknav_menu .slicknav_icon-bar {
	background-color: #ff9700;
}

.btn:hover,
.btn:focus {
	background: #ff9700 !important;
	color: #fff !important;
}

.more:after,
.single a:after {
	border-bottom: 2px dotted #ff9700;
}

.tabs li.active a:after {
	border-color: #ff9700 transparent transparent transparent;
}

blockquote:before {
	position: absolute;
	left: 20px;
	background: url(../images-new/icons-pink.png) -62px 0 no-repeat;
}

.testimonials h6:before {
	position: relative;
	display: inline-block;
	left: -16px;
	background: url(../images-new/icons-pink.png) -62px 0 no-repeat;
}

.footer .phone {
	background-image: url(../images-new/icons-pink.png) !important;
	background-position: 0 0;
	filter: brightness(0) invert(1);
}

.footer .email {
	background-image: url(../images-new/icons-pink.png) !important;
	background-position: -31px -4px;
	filter: brightness(0) invert(1);
}

.people {
	background-image: url(../images-new/icons-pink.png) !important;
	background-position: 0 -30px;
}

.luggage {
	background-image: url(../images-new/icons-pink.png) !important;
	background-position: -40px -30px;
}

.time {
	background-image: url(../images-new/icons-pink.png) !important;
	background-position: -80px -30px;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
	float: left;
}

.col-xs-12 {
	width: 100%;
}

.col-xs-11 {
	width: 91.66666667%;
}

.col-xs-10 {
	width: 83.33333333%;
}

.col-xs-9 {
	width: 75%;
}

.col-xs-8 {
	width: 66.66666667%;
}

.col-xs-7 {
	width: 58.33333333%;
}

.col-xs-6 {
	width: 50%;
}

.col-xs-5 {
	width: 41.66666667%;
}

.col-xs-4 {
	width: 33.33333333%;
}

.col-xs-3 {
	width: 25%;
}

.col-xs-2 {
	width: 16.66666667%;
}

.col-xs-1 {
	width: 8.33333333%;
}

.col-xs-pull-12 {
	right: 100%;
}

.col-xs-pull-11 {
	right: 91.66666667%;
}

.col-xs-pull-10 {
	right: 83.33333333%;
}

.col-xs-pull-9 {
	right: 75%;
}

.col-xs-pull-8 {
	right: 66.66666667%;
}

.col-xs-pull-7 {
	right: 58.33333333%;
}

.col-xs-pull-6 {
	right: 50%;
}

.col-xs-pull-5 {
	right: 41.66666667%;
}

.col-xs-pull-4 {
	right: 33.33333333%;
}

.col-xs-pull-3 {
	right: 25%;
}

.col-xs-pull-2 {
	right: 16.66666667%;
}

.col-xs-pull-1 {
	right: 8.33333333%;
}

.col-xs-pull-0 {
	right: auto;
}

.col-xs-push-12 {
	left: 100%;
}

.col-xs-push-11 {
	left: 91.66666667%;
}

.col-xs-push-10 {
	left: 83.33333333%;
}

.col-xs-push-9 {
	left: 75%;
}

.col-xs-push-8 {
	left: 66.66666667%;
}

.col-xs-push-7 {
	left: 58.33333333%;
}

.col-xs-push-6 {
	left: 50%;
}

.col-xs-push-5 {
	left: 41.66666667%;
}

.col-xs-push-4 {
	left: 33.33333333%;
}

.col-xs-push-3 {
	left: 25%;
}

.col-xs-push-2 {
	left: 16.66666667%;
}

.col-xs-push-1 {
	left: 8.33333333%;
}

.col-xs-push-0 {
	left: auto;
}

.col-xs-offset-12 {
	margin-left: 100%;
}

.col-xs-offset-11 {
	margin-left: 91.66666667%;
}

.col-xs-offset-10 {
	margin-left: 83.33333333%;
}

.col-xs-offset-9 {
	margin-left: 75%;
}

.col-xs-offset-8 {
	margin-left: 66.66666667%;
}

.col-xs-offset-7 {
	margin-left: 58.33333333%;
}

.col-xs-offset-6 {
	margin-left: 50%;
}

.col-xs-offset-5 {
	margin-left: 41.66666667%;
}

.col-xs-offset-4 {
	margin-left: 33.33333333%;
}

.col-xs-offset-3 {
	margin-left: 25%;
}

.col-xs-offset-2 {
	margin-left: 16.66666667%;
}

.col-xs-offset-1 {
	margin-left: 8.33333333%;
}

.col-xs-offset-0 {
	margin-left: 0%;
}

@media (min-width: 768px) {
	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12 {
		float: left;
	}
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-11 {
		width: 91.66666667%;
	}
	.col-sm-10 {
		width: 83.33333333%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-8 {
		width: 66.66666667%;
	}
	.col-sm-7 {
		width: 58.33333333%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-5 {
		width: 41.66666667%;
	}
	.col-sm-4 {
		width: 33.33333333%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-2 {
		width: 16.66666667%;
	}
	.col-sm-1 {
		width: 8.33333333%;
	}
	.col-sm-pull-12 {
		right: 100%;
	}
	.col-sm-pull-11 {
		right: 91.66666667%;
	}
	.col-sm-pull-10 {
		right: 83.33333333%;
	}
	.col-sm-pull-9 {
		right: 75%;
	}
	.col-sm-pull-8 {
		right: 66.66666667%;
	}
	.col-sm-pull-7 {
		right: 58.33333333%;
	}
	.col-sm-pull-6 {
		right: 50%;
	}
	.col-sm-pull-5 {
		right: 41.66666667%;
	}
	.col-sm-pull-4 {
		right: 33.33333333%;
	}
	.col-sm-pull-3 {
		right: 25%;
	}
	.col-sm-pull-2 {
		right: 16.66666667%;
	}
	.col-sm-pull-1 {
		right: 8.33333333%;
	}
	.col-sm-pull-0 {
		right: auto;
	}
	.col-sm-push-12 {
		left: 100%;
	}
	.col-sm-push-11 {
		left: 91.66666667%;
	}
	.col-sm-push-10 {
		left: 83.33333333%;
	}
	.col-sm-push-9 {
		left: 75%;
	}
	.col-sm-push-8 {
		left: 66.66666667%;
	}
	.col-sm-push-7 {
		left: 58.33333333%;
	}
	.col-sm-push-6 {
		left: 50%;
	}
	.col-sm-push-5 {
		left: 41.66666667%;
	}
	.col-sm-push-4 {
		left: 33.33333333%;
	}
	.col-sm-push-3 {
		left: 25%;
	}
	.col-sm-push-2 {
		left: 16.66666667%;
	}
	.col-sm-push-1 {
		left: 8.33333333%;
	}
	.col-sm-push-0 {
		left: auto;
	}
	.col-sm-offset-12 {
		margin-left: 100%;
	}
	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0 {
		margin-left: 0%;
	}
}

@media (min-width: 992px) {
	.col-md-1,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-md-10,
	.col-md-11,
	.col-md-12 {
		float: left;
	}
	.col-md-12 {
		width: 100%;
	}
	.col-md-11 {
		width: 91.66666667%;
	}
	.col-md-10 {
		width: 83.33333333%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-8 {
		width: 66.66666667%;
	}
	.col-md-7 {
		width: 58.33333333%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-5 {
		width: 41.66666667%;
	}
	.col-md-4 {
		width: 33.33333333%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-2 {
		width: 16.66666667%;
	}
	.col-md-1 {
		width: 8.33333333%;
	}
	.col-md-pull-12 {
		right: 100%;
	}
	.col-md-pull-11 {
		right: 91.66666667%;
	}
	.col-md-pull-10 {
		right: 83.33333333%;
	}
	.col-md-pull-9 {
		right: 75%;
	}
	.col-md-pull-8 {
		right: 66.66666667%;
	}
	.col-md-pull-7 {
		right: 58.33333333%;
	}
	.col-md-pull-6 {
		right: 50%;
	}
	.col-md-pull-5 {
		right: 41.66666667%;
	}
	.col-md-pull-4 {
		right: 33.33333333%;
	}
	.col-md-pull-3 {
		right: 25%;
	}
	.col-md-pull-2 {
		right: 16.66666667%;
	}
	.col-md-pull-1 {
		right: 8.33333333%;
	}
	.col-md-pull-0 {
		right: auto;
	}
	.col-md-push-12 {
		left: 100%;
	}
	.col-md-push-11 {
		left: 91.66666667%;
	}
	.col-md-push-10 {
		left: 83.33333333%;
	}
	.col-md-push-9 {
		left: 75%;
	}
	.col-md-push-8 {
		left: 66.66666667%;
	}
	.col-md-push-7 {
		left: 58.33333333%;
	}
	.col-md-push-6 {
		left: 50%;
	}
	.col-md-push-5 {
		left: 41.66666667%;
	}
	.col-md-push-4 {
		left: 33.33333333%;
	}
	.col-md-push-3 {
		left: 25%;
	}
	.col-md-push-2 {
		left: 16.66666667%;
	}
	.col-md-push-1 {
		left: 8.33333333%;
	}
	.col-md-push-0 {
		left: auto;
	}
	.col-md-offset-12 {
		margin-left: 100%;
	}
	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-md-offset-9 {
		margin-left: 75%;
	}
	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-md-offset-6 {
		margin-left: 50%;
	}
	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-md-offset-3 {
		margin-left: 25%;
	}
	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-md-offset-0 {
		margin-left: 0%;
	}
}

@media (min-width: 1200px) {
	.col-lg-1,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12 {
		float: left;
	}
	.col-lg-12 {
		width: 100%;
	}
	.col-lg-11 {
		width: 91.66666667%;
	}
	.col-lg-10 {
		width: 83.33333333%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-8 {
		width: 66.66666667%;
	}
	.col-lg-7 {
		width: 58.33333333%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-5 {
		width: 41.66666667%;
	}
	.col-lg-4 {
		width: 33.33333333%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-2 {
		width: 16.66666667%;
	}
	.col-lg-1 {
		width: 8.33333333%;
	}
	.col-lg-pull-12 {
		right: 100%;
	}
	.col-lg-pull-11 {
		right: 91.66666667%;
	}
	.col-lg-pull-10 {
		right: 83.33333333%;
	}
	.col-lg-pull-9 {
		right: 75%;
	}
	.col-lg-pull-8 {
		right: 66.66666667%;
	}
	.col-lg-pull-7 {
		right: 58.33333333%;
	}
	.col-lg-pull-6 {
		right: 50%;
	}
	.col-lg-pull-5 {
		right: 41.66666667%;
	}
	.col-lg-pull-4 {
		right: 33.33333333%;
	}
	.col-lg-pull-3 {
		right: 25%;
	}
	.col-lg-pull-2 {
		right: 16.66666667%;
	}
	.col-lg-pull-1 {
		right: 8.33333333%;
	}
	.col-lg-pull-0 {
		right: auto;
	}
	.col-lg-push-12 {
		left: 100%;
	}
	.col-lg-push-11 {
		left: 91.66666667%;
	}
	.col-lg-push-10 {
		left: 83.33333333%;
	}
	.col-lg-push-9 {
		left: 75%;
	}
	.col-lg-push-8 {
		left: 66.66666667%;
	}
	.col-lg-push-7 {
		left: 58.33333333%;
	}
	.col-lg-push-6 {
		left: 50%;
	}
	.col-lg-push-5 {
		left: 41.66666667%;
	}
	.col-lg-push-4 {
		left: 33.33333333%;
	}
	.col-lg-push-3 {
		left: 25%;
	}
	.col-lg-push-2 {
		left: 16.66666667%;
	}
	.col-lg-push-1 {
		left: 8.33333333%;
	}
	.col-lg-push-0 {
		left: auto;
	}
	.col-lg-offset-12 {
		margin-left: 100%;
	}
	.col-lg-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	.col-lg-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	.col-lg-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	.col-lg-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0 {
		margin-left: 0%;
	}
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
	content: " ";
	display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
	clear: both;
}

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.pull-right {
	float: right !important;
}

.pull-left {
	float: left !important;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.invisible {
	visibility: hidden;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.hidden {
	display: none !important;
}

.affix {
	position: fixed;
}

@-ms-viewport {
	width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}

@media (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}
	table.visible-xs {
		display: table !important;
	}
	tr.visible-xs {
		display: table-row !important;
	}
	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-block {
		display: block !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-inline {
		display: inline !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm {
		display: block !important;
	}
	table.visible-sm {
		display: table !important;
	}
	tr.visible-sm {
		display: table-row !important;
	}
	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-block {
		display: block !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline {
		display: inline !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md {
		display: block !important;
	}
	table.visible-md {
		display: table !important;
	}
	tr.visible-md {
		display: table-row !important;
	}
	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-block {
		display: block !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline {
		display: inline !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg {
		display: block !important;
	}
	table.visible-lg {
		display: table !important;
	}
	tr.visible-lg {
		display: table-row !important;
	}
	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-block {
		display: block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-inline {
		display: inline !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-inline-block {
		display: inline-block !important;
	}
}

@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

.visible-print {
	display: none !important;
}

@media print {
	.visible-print {
		display: block !important;
	}
	table.visible-print {
		display: table !important;
	}
	tr.visible-print {
		display: table-row !important;
	}
	th.visible-print,
	td.visible-print {
		display: table-cell !important;
	}
}

.visible-print-block {
	display: none !important;
}

@media print {
	.visible-print-block {
		display: block !important;
	}
}

.visible-print-inline {
	display: none !important;
}

@media print {
	.visible-print-inline {
		display: inline !important;
	}
}

.visible-print-inline-block {
	display: none !important;
}

@media print {
	.visible-print-inline-block {
		display: inline-block !important;
	}
}

@media print {
	.hidden-print {
		display: none !important;
	}
}

#cookie-bar {
	background: #111111;
	height: auto;
	line-height: 24px;
	color: #eeeeee;
	text-align: center;
	padding: 3px 0;
}

#cookie-bar.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

#cookie-bar.fixed.bottom {
	bottom: 0;
	top: auto;
}

#cookie-bar p {
	margin: 0;
	padding: 0;
	text-align: center;
}

#cookie-bar a {
	color: #ffffff;
	display: inline-block;
	border-radius: 3px;
	text-decoration: none;
	padding: 0 6px;
	margin-left: 8px;
}

#cookie-bar .cb-enable {
	background: #007700;
}

#cookie-bar .cb-enable:hover {
	background: #009900;
}

#cookie-bar .cb-disable {
	background: #990000;
}

#cookie-bar .cb-disable:hover {
	background: #bb0000;
}

#cookie-bar .cb-policy {
	background: #0033bb;
}

#cookie-bar .cb-policy:hover {
	background: #0055dd;
}

select {
	color: grey;
	height: 64px;
	font-size: 20px;
	padding: 0px !important;
	background-color: white !important;
	border-radius: 10px !important;
	padding: 10px !important;
	margin-bottom: 10px;
}

select:hover {
	background: #ebf3f6 !important;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	box-shadow: 0 3px rgba(0, 0, 0, 0.5);
	padding-left: 26% !important;
	color: black !important;
	margin-bottom: 10px;
}

table {
	margin: 0 0 15px;
	width: 100%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-transform: uppercase;
	border-spacing: 0;
	border-left: 1px solid #DFDFD0;
}

table th {
	background: #191F26;
	border-right: 1px solid rgba(0, 0, 0, .13);
	color: #fff;
	padding: 17px 20px 16px;
	text-align: left;
	font-weight: 400;
}

table td {
	background: #fff;
	color: #191F26;
	padding: 8px;
	vertical-align: middle;
	font-size: 16px;
	border: 1px solid #DFDFD0;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	    font-family: 'Roboto', sans-serif !important;
}
tbody th h1 {
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize !important;
    font-weight: 600;
}

table td a,
table.hover a {
	color: #191F26;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}

table th:first-child {
	-webkit-border-radius: 3px 0 0 0;
	-moz-border-radius: 3px 0 0 0;
	border-radius: 3px 0 0 0;
}

table th:last-child {
	-webkit-border-radius: 0 3px 0 0;
	-moz-border-radius: 0 3px 0 0;
	border-radius: 0 3px 0 0;
}

table tr:last-child {
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

table tr:last-child td:first-child {
	-webkit-border-radius: 0 0 0 3px;
	-moz-border-radius: 0 0 0 3px;
	border-radius: 0 0 0 3px;
}

table tr:last-child td:last-child {
	-webkit-border-radius: 0 0 3px 0;
	-moz-border-radius: 0 0 3px 0;
	border-radius: 0 0 3px 0;
}

table.hover tr:hover td {
	color: #fff;
	border-color: rgba(0, 0, 0, .13);
}

table.hover tr:hover td a {
	color: #fff;
}

select::-ms-expand {
	display: none;
}

input {
	color: black !important;
	border: 1px solid #ccc;
}

input[type='text']:focus {
	background: #ebf3f6 !important;
	box-shadow: none !important;
}

.form-control,
input[type='text'] {
	border-radius: 10px !important;
	padding: 10px !important;
	margin-bottom: 10px;
	font-size: 20px;
	height: 65px !important;
	color: black !important;
	font-family: 'Roboto', sans-serif !important;
	box-shadow: 0 3px rgba(0, 0, 0, 0.5);
}

.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-12 {
	padding: 0px 5px 0px 0px !important;
}

.form-group span {
	position: absolute;
	margin-top: 0px;
	color: black;
	top: 21%;
	left: 90%;
	font-size: 30px;
}

.wrap {
	width: 100%;
	max-width: 90%;
}

.intro .textwidget {
    padding-top: 200px !important;
    padding-bottom: 50px !important;
}
.intro .textwidget h1 {
    font-weight: 700;
	font-size: 48px !important;
    line-height: 56px;
}
::-webkit-input-placeholder {
	/* WebKit browsers */
	color: black;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: black;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: black;
}

:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: black;
}


/*
#email 
{
font-size: 80%;
}

*/

#ptop1 {
	padding-top: 1% !important;
}

#th1 {
	font-family: 'Roboto', sans-serif !important;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 25px;
	color: sienna;
	text-align: center;
}

#tp {
	font-family: 'Roboto', sans-serif !important;
	font-size: 25px;
	text-align: center;
}

.tp {
	font-family: 'Roboto', sans-serif !important;
	font-size: 25px;
}

.b {
	height: 40px;
	width: 70%;
	border-radius: 109px;
	font-family: 'Roboto', sans-serif !important;
}


.range_inputs .cancelBtn {
    background: #194384;
    margin-top: 5px;
}
.daterangepicker .calendar td.disabled {
    color: #ccc !important;
}

.areaCoverClass p {
    font-size: 16px;
    color: #000;
}
.areaCoverClass {
    text-align: left;
    padding: 50px 0;
}
.areaCoverClass h2 {
    text-transform: revert !important;
    font-weight: 600;
    color: #ff9700;
    padding-bottom: 0px !important;
    margin-top: 30px;
	font-size: 24px;
}
.areaCoverClass h4 {
    text-transform: revert !important;
    font-weight: 600;
    color: #ff9700;
    padding-bottom: 0px !important;
    margin-top: 30px;
	font-size: 24px;
}
.areaCoverClass table {
    margin-bottom: 30px;
}
.areaCoverClass h3 {
    text-transform: revert !important;
    font-weight: 600;
    color: #ff9700;
    padding-bottom: 10px !important;
	font-size: 24px;
}
.areaCoverClass h1 {
    text-transform: revert !important;
    font-weight: 600;
    color: #ff9700;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
}
.areaCoverClass li {
    padding-left: 0px;
    font-size: 16px;
    color: #000;
    list-style: disclosure-closed !important;
}
.partners h1 {
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize !important;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}
.serviceClass {
    padding-top: 50px;
    text-align: left;
    width: 100%;
    float: left;
}


.serviceClass h2 {
    font-weight: 600;
    color: #ff9700;
    padding-bottom: 0px !important;
	font-size: 24px;
}
.serviceClass p {
    padding-left: 0px;
    font-size: 16px;
    color: #000;
    list-style: disclosure-closed !important;
}
.serviceClass .three-fourth h4 {
    font-weight: 600;
    color: #ff9700;
    padding-bottom: 0px !important;
    margin-top: 30px;
	font-size: 24px;
}
.serviceClass .three-fourth {
    padding-left: 0px;
}
.serviceClass h1 {
    text-transform: revert !important;
    font-weight: 600;
    color: #ff9700;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
}
.serviceClass h3 {
    font-weight: 600;
    color: #ff9700;
    padding-bottom: 0px !important;
    margin-top: 30px;
	font-size: 24px;
}

.serviceClass table h1 {
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize !important;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}
.readmorebtn {
    color: #ff9700;
    font-weight: bold;
    border: 2px solid #ff9700;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
}
.part-2-way {
    margin: 0px !important;
    clear: both;
}
#interstitial .clear_input_div {
    width: 100%;
}

#interstitial button[type="submit"] {
    margin-bottom: 30px;
		margin-top: 10px;
}
#demoglue2 h3 {
    font-size: 18px;
    padding: 0px 30px;
    line-height: 24px;
}
#demoglue2 a {
    background: transparent;
    border: none;
    padding: 0px;
    font-weight: bold;
    font-size: 18px;
    font-style: italic;
    text-decoration: underline;
    color: #ff9700;
}

#booking .form-control, input[type="text"] {
    border-radius: 30px !important;
}
.clear_input {
    color: #000 !important;
    border-radius: 50%;
    background: transparent !important;
    display: block !important;
}
