/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/


.not-animated { opacity: 0; }

.animated {
	opacity: 1;
	-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;
}

.animated.bounceIn,
.animated.bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes bounce {
	0%, 20%, 53%, 80%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.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%, 20%, 53%, 80%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.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;
	transform-origin: center bottom;
}

@-webkit-keyframes flash {
	0%, 50%, 100% {
		opacity: 1;
	}

	25%, 75% {
		opacity: 0;
	}
}

@keyframes flash {
	0%, 50%, 100% {
		opacity: 1;
	}

	25%, 75% {
		opacity: 0;
	}
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}

	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}

	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.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, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}

	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}

	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.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;
	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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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 jello {
	11.1% {
		-webkit-transform: none;
						transform: none
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
						transform: skewX(-12.5deg) skewY(-12.5deg)
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
						transform: skewX(6.25deg) skewY(6.25deg)
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
						transform: skewX(-3.125deg) skewY(-3.125deg)
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
						transform: skewX(1.5625deg) skewY(1.5625deg)
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
						transform: skewX(-0.78125deg) skewY(-0.78125deg)
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
						transform: skewX(0.390625deg) skewY(0.390625deg)
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
						transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
	}
	100% {
		-webkit-transform: none;
						transform: none
	}
}

@keyframes jello {
	11.1% {
		-webkit-transform: none;
						transform: none
	}

	22.2% {

		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
						transform: skewX(-12.5deg) skewY(-12.5deg)
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
						transform: skewX(6.25deg) skewY(6.25deg)
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
						transform: skewX(-3.125deg) skewY(-3.125deg)
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
						transform: skewX(1.5625deg) skewY(1.5625deg)
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
						transform: skewX(-0.78125deg) skewY(-0.78125deg)
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
						transform: skewX(0.390625deg) skewY(0.390625deg)
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
						transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
	}
	100% {
		-webkit-transform: none;
						transform: none
	}
}



.jello{
		-webkit-animation-name:jello;
						animation-name:jello;
		-webkit-transform-origin: center;

						transform-origin: center
}

@-webkit-keyframes bounceIn {
	0%, 20%, 40%, 60%, 80%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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%, 20%, 40%, 60%, 80%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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-keyframes bounceInDown {
	0%, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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%, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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%, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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%, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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%, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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%, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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%, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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%, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	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-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-animation-timing-function: ease-in;
		animation-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-animation-timing-function: ease-in;
		animation-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-animation-timing-function: ease-in;
		animation-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-animation-timing-function: ease-in;
		animation-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-animation-timing-function: ease-in;
		animation-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-animation-timing-function: ease-in;
		animation-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-animation-timing-function: ease-in;
		animation-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-animation-timing-function: ease-in;
		animation-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-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-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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	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, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

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

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

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

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

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

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

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

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}
/*!
 * Bootstrap-select v1.9.3 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2015 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */


.bootstrap-select { width: 100% \0; /*IE9 and below*/ }
.bootstrap-select > .dropdown-toggle {
	width: 100%;
	padding-right: 25px;
	z-index: 1;
}
.bootstrap-select > select {
	position: absolute !important;
	bottom: 0;
	left: 50%;
	width: 0.11px !important;
	height: 100% !important;
	padding: 0 !important;
	opacity: 0 !important;
	border: none;
}


.bootstrap-select > select.mobile-device {
	top: 0;
	left: 0;
	display: block !important;
	width: 100% !important;
	z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle { border-color: #b94a48; }
.bootstrap-select.fit-width { width: auto !important; }
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) { width: 100%; }

.bootstrap-select .dropdown-toggle:focus {
	outline: thin dotted #333333 !important;
	outline: 5px auto -webkit-focus-ring-color !important;
	outline-offset: -2px;
}

.bootstrap-select.form-control {
	margin-bottom: 0;
	padding: 0;
	border: none;
}

.bootstrap-select.form-control:not([class*="col-"]) { width: 100%; }
.bootstrap-select.form-control.input-group-btn { z-index: auto; }

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
	float: none;
	display: inline-block;
	margin-left: 0;
}

.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right { float: right; }

.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group { margin-bottom: 0; }

.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control { padding: 0; }

.form-inline .bootstrap-select.btn-group .form-control { width: 100%; }

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled { cursor: not-allowed; }

.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus { outline: none !important; }

.bootstrap-select.btn-group.bs-container { position: absolute; }

.bootstrap-select.btn-group.bs-container .dropdown-menu { z-index: 1060; }

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
	display: inline-block;
	overflow: hidden;
	width: 100%;
  /*text-align: left;*/
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -2px;
	vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle { width: 100%; }
.bootstrap-select.btn-group .dropdown-menu {
	min-width: 100%;
	-webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box;
		  box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
	position: static;
	float: none;
	border: 0;
	padding: 0;
	margin: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
		  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li { position: relative; }
.bootstrap-select.btn-group .dropdown-menu li a:hover {
	color: #fff;
	background-color: #4484CE;
}


.bootstrap-select.btn-group .dropdown-menu li.active small { color: #fff; }
.bootstrap-select.btn-group .dropdown-menu li.disabled a { cursor: not-allowed; }
.bootstrap-select.btn-group .dropdown-menu li a {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
	position: relative;
	padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark { display: none; }
.bootstrap-select.btn-group .dropdown-menu li a span.text { display: inline-block; }
.bootstrap-select.btn-group .dropdown-menu li small { padding-left: 0.5em; }

.bootstrap-select.btn-group .special {
	font-weight: bold !important;
	color: #FFF !important;
	background: #BC0000 !important;
	text-transform: uppercase;
}

.bootstrap-select.btn-group .dropdown-menu .notify {
	position: absolute;
	bottom: 5px;
	width: 96%;
	margin: 0 2%;
	min-height: 26px;
	padding: 3px 5px;
	background: #f5f5f5;
	border: 1px solid #e3e3e3;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
		  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	pointer-events: none;
	opacity: 0.9;
	-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
			box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box;
		  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box;
		  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
/* ========================================================================
 * bootstrap-switch - v3.3.2
 * ====================================================================== */


.bootstrap-switch {
	display: inline-block;
	direction: ltr;
	cursor: pointer;
	border-radius: 2px;
	border: 1px solid;
	border-color: #CCC;
	position: relative;
	text-align: left;
	overflow: hidden;
	line-height: 8px;
	z-index: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	vertical-align: middle;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bootstrap-switch .bootstrap-switch-container {
	display: inline-block;
	top: 0;
	border-radius: 2px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block !important;
	height: 100%;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
	text-align: center;
	z-index: 1;
}

.bootstrap-switch .bootstrap-switch-handle-on i,
.bootstrap-switch .bootstrap-switch-handle-off i {
	position: relative;
	font-size: 16px;
	left: -1px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
	color: #fff;
	background: #337ab7;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
	color: #fff;
	background: #4484CE;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
	color: #fff;
	background: #16e29c;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
	background: #F19F4D;
	color: #fff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
	color: #fff;
	background: #4484CE;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
	color: #000;
	background: #eeeeee;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-themecolor,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-themecolor {
	color: #FFF;
	background: #1ABC9C;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-black,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-black {
	color: #FFF;
	background: #000;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-white,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-white {
	color: #000;
	background: #F5F5F5;
}

.bootstrap-switch .bootstrap-switch-label {
	text-align: center;
	margin-top: -1px;
	margin-bottom: -1px;
	z-index: 100;
	color: #333333;
	background: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on {
	border-bottom-left-radius: 1px;
	border-top-left-radius: 1px;
}
.bootstrap-switch .bootstrap-switch-handle-off {
	border-bottom-right-radius: 1px;
	border-top-right-radius: 1px;
}
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
	position: absolute !important;
	top: 0;
	left: 0;
	margin: 0;
	z-index: -1;
	opacity: 0;
	filter: alpha(opacity=0);
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
	padding: 6px 16px;
	font-size: 18px;
	line-height: 1.3333333;
}
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate { cursor: default !important; }
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
	-webkit-transition: margin-left 0.2s ease;
	-o-transition: margin-left 0.2s ease;
	transition: margin-left 0.2s ease;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-bottom-right-radius: 1px;
	border-top-right-radius: 1px;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 1px;
	border-top-left-radius: 1px;
}
.bootstrap-switch.bootstrap-switch-focused {
	outline: 0;
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
	border-bottom-right-radius: 1px;
	border-top-right-radius: 1px;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
	border-bottom-left-radius: 1px;
	border-top-left-radius: 1px;
}

.bootstrap-switch-label:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 3px;
    margin-top: -2px;
    margin-left: -5px;
    display: inline-block;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
}






/* --------------------------------------------------------------
	SWITCH
--------------------------------------------------------------  */
.switch-toggle {
	position: absolute;
	margin-left: -9999px;
	visibility: hidden;
}

.switch-toggle + label {
	display: block;
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* --------------------------------------------------------------
	SWITCH 1 - ROUND
----------------------------------------------------------------- */
input.switch-toggle-round + label {
	padding: 2px;
	width: 60px;
	height: 30px;
	background-color: #DDD;
	-webkit-border-radius: 15px;
	-o-border-radius: 15px;
	border-radius: 15px;
}

input.switch-toggle-round + label:before,
input.switch-toggle-round + label:after {
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	bottom: 1px;
	content: "";
}

input.switch-toggle-round + label:before {
	right: 1px;
	background-color: #F1F1F1;
	-webkit-border-radius: 15px;
	-o-border-radius: 15px;
	border-radius: 15px;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}

input.switch-toggle-round + label:after {
	width: 28px;
	background-color: #FFF;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-webkit-transition: margin 0.4s;
	-moz-transition: margin 0.4s;
	-o-transition: margin 0.4s;
	transition: margin 0.4s;
}

input.switch-toggle-round:checked + label:before { background-color: #1ABC9C; }
input.switch-toggle-round:checked + label:after { margin-left: 30px; }

/* --------------------------------------------------------------
	SWITCH 1 - ROUND- MINI
----------------------------------------------------------------- */
input.switch-rounded-mini.switch-toggle-round + label {
	padding: 1px;
	width: 32px;
	height: 16px;
	-webkit-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
}

input.switch-rounded-mini.switch-toggle-round + label:before {
	-webkit-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
}

input.switch-rounded-mini.switch-toggle-round + label:after { width: 15px; }
input.switch-rounded-mini.switch-toggle-round:checked + label:after { margin-left: 15px; }

/* --------------------------------------------------------------
	SWITCH 1 - ROUND- LARGE
----------------------------------------------------------------- */
input.switch-rounded-large.switch-toggle-round + label {
	width: 90px;
	height: 45px;
	-webkit-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
}

input.switch-rounded-large.switch-toggle-round + label:before {
	-webkit-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
}

input.switch-rounded-large.switch-toggle-round + label:after { width: 43px; }
input.switch-rounded-large.switch-toggle-round:checked + label:after { margin-left: 45px; }


/* --------------------------------------------------------------
	SWITCH 1 - ROUND- XLARGE
----------------------------------------------------------------- */
input.switch-rounded-xlarge.switch-toggle-round + label {
	width: 120px;
	height: 60px;
	-webkit-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}

input.switch-rounded-xlarge.switch-toggle-round + label:before {
	-webkit-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}

input.switch-rounded-xlarge.switch-toggle-round + label:after { width: 58px; }
input.switch-rounded-xlarge.switch-toggle-round:checked + label:after { margin-left: 60px; }


/* -----------------------------------------------------------
	SWITCH 2 - ROUND FLAT
-------------------------------------------------------------- */
input.switch-toggle-flat + label {
	padding: 2px;
	width: 60px;
	height: 30px;
	background-color: #DDD;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}

input.switch-toggle-flat + label:before,
input.switch-toggle-flat + label:after {
	display: block;
	position: absolute;
	content: "";
}

input.switch-toggle-flat + label:before {
	top: 2px;
	left: 2px;
	bottom: 2px;
	right: 2px;
	background-color: #FFF;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}

input.switch-toggle-flat + label:after {
	top: 4px;
	left: 4px;
	bottom: 4px;
	width: 22px;
	background-color: #DDD;
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	-ms-border-radius: 22px;
	-o-border-radius: 22px;
	border-radius: 22px;
	-webkit-transition: margin 0.4s, background 0.4s;
	-moz-transition: margin 0.4s, background 0.4s;
	-o-transition: margin 0.4s, background 0.4s;
	transition: margin 0.4s, background 0.4s;
}

input.switch-toggle-flat:checked + label { background-color: #1ABC9C; }

input.switch-toggle-flat:checked + label:after {
	margin-left: 30px;
	background-color: #1ABC9C;
}


/* -----------------------------------------------------------
	SWITCH 2 - FLAT - MINI
-------------------------------------------------------------- */
input.switch-flat-mini.switch-toggle-flat + label {
	padding: 1px;
	width: 32px;
	height: 16px;
	-webkit-border-radius: 16px;
	-o-border-radius: 16px;
	border-radius: 16px;
}

input.switch-flat-mini.switch-toggle-flat + label:before {
	top: 1px;
	left: 1px;
	bottom: 1px;
	right: 1px;
	-webkit-border-radius: 16px;
	-o-border-radius: 16px;
	border-radius: 16px;
}

input.switch-flat-mini.switch-toggle-flat + label:after {
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: 12px;
	-webkit-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
}

input.switch-flat-mini.switch-toggle-flat:checked + label:after { margin-left: 16px; }


/* -----------------------------------------------------------
	SWITCH 2 - FLAT - LARGE
-------------------------------------------------------------- */
input.switch-flat-large.switch-toggle-flat + label {
	width: 90px;
	height: 45px;
	-webkit-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
}

input.switch-flat-large.switch-toggle-flat + label:before {
	-webkit-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
}

input.switch-flat-large.switch-toggle-flat + label:after {
	width: 37px;
	-webkit-border-radius: 37px;
	-o-border-radius: 37px;
	border-radius: 37px;
}

input.switch-flat-large.switch-toggle-flat:checked + label:after { margin-left: 45px; }



/* -----------------------------------------------------------
	SWITCH 2 - FLAT - XLARGE
-------------------------------------------------------------- */
input.switch-flat-xlarge.switch-toggle-flat + label {
	padding: 2px;
	width: 120px;
	height: 60px;
	-webkit-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}

input.switch-flat-xlarge.switch-toggle-flat + label:before {
	-webkit-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
input.switch-flat-xlarge.switch-toggle-flat + label:after {
	width: 52px;
	-webkit-border-radius: 52px;
	-o-border-radius: 52px;
	border-radius: 52px;
}

input.switch-flat-xlarge.switch-toggle-flat:checked + label:after { margin-left: 60px; }
@charset "UTF-8";
/* import bootstrap-sprockets before bootstrap if using bootstrap >= 3.2  */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 110, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 118, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 127, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 136, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 145, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 154, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 162, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 170, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 174, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 185, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 204, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 212, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
hr {
  box-sizing: content-box;
  height: 0;
}

/* line 221, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 229, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 252, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 266, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 277, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 290, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 302, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 311, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 322, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 334, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 346, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 356, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/* line 367, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 376, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 387, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 396, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 405, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 416, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 421, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  a,
  a:visited {
    text-decoration: underline;
  }

  /* line 23, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  /* line 38, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 44, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 48, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  img {
    max-width: 100% !important;
  }

  /* line 57, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 72, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .navbar {
    display: none;
  }

  /* line 77, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  /* line 81, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .label {
    border: 1px solid #000;
  }

  /* line 85, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 88, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .table td,
  .table th {
    background-color: #fff !important;
  }

  /* line 94, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot");
  src: url("bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot#iefix") format("embedded-opentype"), url("bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff") format("woff2"), url("bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff") format("woff"), url("bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf") format("truetype"), url("bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg") format("svg");
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\002a";
}

/* line 38, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\002b";
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

/* line 41, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 42, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 43, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 44, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 46, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 47, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 48, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 49, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 51, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 52, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 54, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 56, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 57, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 58, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 59, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 61, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 62, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 63, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 65, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 66, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 67, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 68, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 69, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 70, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 71, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 72, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 73, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 74, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 75, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 76, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 77, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 78, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 79, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 80, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 81, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 82, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 83, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 84, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 85, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 86, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 87, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 88, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 89, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 90, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 91, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 92, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 93, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 94, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 95, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 96, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 97, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 98, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 99, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 100, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 101, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 102, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 103, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 104, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 105, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 106, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 107, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 108, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 109, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 110, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 111, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 112, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 113, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 114, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 115, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 116, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 117, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 118, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 119, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 120, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 121, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 122, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 123, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 124, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 125, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 126, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 127, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 128, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 129, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 130, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 131, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 132, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 133, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 134, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 135, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 136, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 137, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 138, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 139, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 140, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 141, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 142, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 143, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 144, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 145, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 146, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 147, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 148, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 149, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 150, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 151, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 152, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 153, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 154, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 155, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 156, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 157, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 158, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 159, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 160, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 161, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 162, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 163, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 164, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 165, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 166, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 167, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 168, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 169, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 170, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 171, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 172, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 173, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 174, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 175, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 176, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 177, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 178, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 179, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 180, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 181, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 182, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 183, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 184, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 185, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 186, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 187, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 188, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 189, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 190, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 191, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 192, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 194, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 195, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 196, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 197, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 198, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 199, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 200, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 201, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 202, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 203, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 204, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 205, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 206, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 207, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 208, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 209, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 210, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 211, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 212, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 213, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 214, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 215, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 216, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 217, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 218, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 219, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 220, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 221, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 222, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 223, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 224, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 225, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 226, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 227, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 228, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 229, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 230, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 231, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 232, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 233, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 234, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 235, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 236, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 237, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 238, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cd:before {
  content: "\e201";
}

/* line 239, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save-file:before {
  content: "\e202";
}

/* line 240, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open-file:before {
  content: "\e203";
}

/* line 241, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-level-up:before {
  content: "\e204";
}

/* line 242, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copy:before {
  content: "\e205";
}

/* line 243, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paste:before {
  content: "\e206";
}

/* line 252, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-alert:before {
  content: "\e209";
}

/* line 253, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-equalizer:before {
  content: "\e210";
}

/* line 254, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-king:before {
  content: "\e211";
}

/* line 255, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-queen:before {
  content: "\e212";
}

/* line 256, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pawn:before {
  content: "\e213";
}

/* line 257, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bishop:before {
  content: "\e214";
}

/* line 258, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-knight:before {
  content: "\e215";
}

/* line 259, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 260, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tent:before {
  content: "\26fa";
}

/* line 261, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-blackboard:before {
  content: "\e218";
}

/* line 262, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bed:before {
  content: "\e219";
}

/* line 263, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-apple:before {
  content: "\f8ff";
}

/* line 264, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-erase:before {
  content: "\e221";
}

/* line 265, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hourglass:before {
  content: "\231b";
}

/* line 266, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lamp:before {
  content: "\e223";
}

/* line 267, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-duplicate:before {
  content: "\e224";
}

/* line 268, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 269, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-scissors:before {
  content: "\e226";
}

/* line 270, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 271, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-btc:before {
  content: "\e227";
}

/* line 272, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-xbt:before {
  content: "\e227";
}

/* line 273, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-yen:before {
  content: "\00a5";
}

/* line 274, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-jpy:before {
  content: "\00a5";
}

/* line 275, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ruble:before {
  content: "\20bd";
}

/* line 276, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-rub:before {
  content: "\20bd";
}

/* line 277, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-scale:before {
  content: "\e230";
}

/* line 278, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 279, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 280, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-education:before {
  content: "\e233";
}

/* line 281, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 282, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 283, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 284, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-modal-window:before {
  content: "\e237";
}

/* line 285, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-oil:before {
  content: "\e238";
}

/* line 286, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-grain:before {
  content: "\e239";
}

/* line 287, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 288, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-size:before {
  content: "\e241";
}

/* line 289, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-color:before {
  content: "\e242";
}

/* line 290, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-background:before {
  content: "\e243";
}

/* line 291, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 292, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 293, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 294, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 295, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 296, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 297, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 298, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 299, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 300, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 301, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-console:before {
  content: "\e254";
}

/* line 302, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-superscript:before {
  content: "\e255";
}

/* line 303, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subscript:before {
  content: "\e256";
}

/* line 304, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-left:before {
  content: "\e257";
}

/* line 305, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-right:before {
  content: "\e258";
}

/* line 306, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-down:before {
  content: "\e259";
}

/* line 307, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-up:before {
  content: "\e260";
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #fff;
}

/* line 36, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
a {
  color: #337ab7;
  text-decoration: none;
}
/* line 52, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}
/* line 58, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 86, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 106, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

/* line 125, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
/* line 16, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}

/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 30, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 41, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 48, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 49, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 51, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 52, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 58, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  /* line 62, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 83, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 90, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-muted {
  color: #777777;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #337ab7;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 119, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #337ab7;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 138, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

/* line 149, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 153, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
/* line 177, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 185, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.428571429;
}

/* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 196, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 211, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 229, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

/* line 235, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
/* line 250, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 257, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}
/* line 265, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 274, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
/* line 286, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
/* line 287, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 294, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
/* line 32, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

/* line 41, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 66, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.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;
}

/* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.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;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }

  /* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
/* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
/* line 41, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 57, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 62, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table .table {
  background-color: #fff;
}

/* line 75, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 88, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ddd;
}
/* line 94, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
/* line 101, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 114, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 125, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

/* line 135, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

/* line 143, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 171, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  /* line 171, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 183, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 32, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 47, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 52, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 59, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 70, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 76, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 83, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

/* line 114, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
/* line 57, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
/* line 103, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
/* line 107, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control:-ms-input-placeholder {
  color: #999;
}
/* line 108, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-webkit-input-placeholder {
  color: #999;
}
/* line 136, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
/* line 146, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
/* line 153, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

/* line 162, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 174, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  /* line 197, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  /* line 202, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"], input[type="time"].input-lg, .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg input[type="time"], input[type="datetime-local"].input-lg, .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg input[type="datetime-local"], input[type="month"].input-lg, .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
/* line 215, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 224, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 231, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 239, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

/* line 248, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 254, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

/* line 264, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 276, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 285, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 295, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 307, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
/* line 315, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

/* line 71, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 79, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

/* line 84, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

/* line 333, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 340, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
/* line 344, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
/* line 348, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 71, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 79, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

/* line 84, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

/* line 359, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 366, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
/* line 370, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
/* line 374, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 388, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}
/* line 393, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 398, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

/* line 410, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 417, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}
/* line 21, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
/* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
/* line 21, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
/* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}
/* line 21, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
/* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 439, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
/* line 442, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 453, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 478, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 485, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 492, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 496, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 500, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  /* line 508, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 512, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 519, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 526, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 530, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 537, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 559, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
/* line 569, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
/* line 575, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 582, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
/* line 593, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  /* line 603, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  /* line 611, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 26, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 32, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}
/* line 39, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 46, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 58, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 68, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
/* line 17, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
/* line 29, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}
/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 71, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
/* line 17, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
/* line 29, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}
/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 75, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
/* line 17, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
/* line 29, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 79, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
/* line 17, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
/* line 29, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 83, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
/* line 17, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
/* line 29, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 87, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
/* line 17, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
/* line 29, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
/* line 37, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 96, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
/* line 101, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 109, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
/* line 115, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
/* line 123, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

/* line 135, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 139, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 143, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 151, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 157, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 165, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/* line 13, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}
/* line 21, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 26, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 28, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 30, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup,
.dropdown {
  position: relative;
}

/* line 26, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.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: #fff;
  border: 1px solid #ccc;
  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);
  background-clip: padding-box;
}
/* line 54, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 65, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

/* line 78, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

/* line 88, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

/* line 103, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
/* line 110, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.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;
}

/* line 123, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}
/* line 128, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 137, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  left: auto;
  right: 0;
}

/* line 147, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  left: 0;
  right: auto;
}

/* line 153, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

/* line 163, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 173, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 186, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
/* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 207, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 212, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 26, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:after {
  clear: both;
}
/* line 39, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
/* line 44, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 51, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 56, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}
/* line 58, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 63, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 69, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 72, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 76, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 81, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 86, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 105, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 109, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

/* line 116, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 120, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 127, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 131, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 136, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 145, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}
/* line 157, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
/* line 162, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 172, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 175, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 179, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 184, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 188, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 201, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
/* line 206, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
/* line 212, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
/* line 216, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 237, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 13, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
/* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:focus {
  z-index: 3;
}

/* line 58, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
/* line 63, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 68, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 77, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* line 89, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
/* line 94, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
/* line 101, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 108, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 117, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 120, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 129, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 135, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
/* line 144, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}
/* line 146, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
/* line 150, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
/* line 159, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
/* line 165, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:before, .nav:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:after {
  clear: both;
}
/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
/* line 23, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #777777;
}
/* line 34, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
/* line 46, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
/* line 59, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 66, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
/* line 78, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
/* line 84, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
/* line 89, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
/* line 96, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 118, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}
/* line 122, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}
/* line 125, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}
/* line 131, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 144, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}
/* line 146, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
/* line 163, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
/* line 165, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
/* line 171, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  /* line 177, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
/* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
/* line 199, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  /* line 206, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 224, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}
/* line 227, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}
/* line 59, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  /* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 92, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

/* line 108, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  /* line 108, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 128, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  /* line 128, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 138, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  /* line 138, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 150, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 154, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 163, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
/* line 170, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
/* line 175, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  /* line 180, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 206, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}
/* line 211, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
/* line 217, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  /* line 193, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 232, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 7.5px -15px;
}
/* line 235, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  /* line 243, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 251, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 255, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 257, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  /* line 232, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 270, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 272, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* line 286, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  /* line 478, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 485, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 492, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 496, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 500, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 508, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 512, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 519, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 526, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 530, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 537, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  /* line 298, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 302, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  /* line 286, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/* line 327, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 332, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 343, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
/* line 346, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 349, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 359, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  /* line 359, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  /* line 379, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }

  /* line 382, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 386, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
/* line 397, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
/* line 401, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #777;
}
/* line 403, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
/* line 410, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}
/* line 415, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #777;
}
/* line 418, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
/* line 425, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
/* line 433, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
/* line 442, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
/* line 444, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
/* line 448, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
/* line 453, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
/* line 462, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 767px) {
  /* line 473, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 475, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 482, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 490, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
/* line 506, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #777;
}
/* line 508, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}
/* line 513, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #777;
}
/* line 515, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}
/* line 521, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 531, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}
/* line 535, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
/* line 537, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
/* line 544, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
/* line 549, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
/* line 552, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
/* line 559, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}
/* line 567, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
/* line 577, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
/* line 579, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
/* line 583, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
/* line 588, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
/* line 596, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff;
}
@media (max-width: 767px) {
  /* line 607, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 610, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 613, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 615, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 622, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 630, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
/* line 641, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
/* line 643, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
/* line 648, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
/* line 650, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}
/* line 656, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
/* line 13, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}
/* line 16, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}
/* line 25, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 4, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
/* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}
/* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.428571429;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
/* line 25, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
/* line 32, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
/* line 41, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
/* line 52, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}
/* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
/* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
/* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:before, .pager:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:after {
  clear: both;
}
/* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
/* line 23, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}
/* line 38, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}
/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label:empty {
  display: none;
}
/* line 25, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-default {
  background-color: #777777;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 48, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-primary {
  background-color: #337ab7;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

/* line 52, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 56, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 60, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}
/* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}
/* line 32, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
/* line 41, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
/* line 47, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge {
  float: right;
}
/* line 51, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
/* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 62, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
/* line 13, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
/* line 28, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 35, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* line 49, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
/* line 17, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
/* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/* line 34, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

/* line 9, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 16, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 23, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}
/* line 28, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
/* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
/* line 47, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 63, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 67, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 71, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
/* line 8, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
/* line 26, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 36, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

/* line 54, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 73, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 77, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 81, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 85, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 1, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}
/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

/* line 16, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 21, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
/* line 31, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
/* line 34, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 46, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}
/* line 50, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
/* line 55, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

/* line 63, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 70, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
/* line 78, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
/* line 81, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
/* line 87, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
/* line 96, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
/* line 101, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

/* line 4, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 4, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 4, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 4, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
/* line 24, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 123, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 127, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:after {
  clear: both;
}

/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
/* line 39, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
/* line 67, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
/* line 74, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 82, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 89, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 96, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
/* line 115, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
/* line 121, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 127, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/* line 131, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
/* line 135, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
/* line 143, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 149, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
/* line 153, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
/* line 157, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
/* line 164, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
/* line 170, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
/* line 174, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
/* line 181, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
/* line 185, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
/* line 194, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
/* line 203, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
/* line 210, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

/* line 222, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 20px;
}
/* line 226, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
/* line 230, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}
/* line 235, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}
/* line 238, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
/* line 244, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}
/* line 246, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 254, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-default {
  border-color: #ddd;
}
/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 257, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-primary {
  border-color: #337ab7;
}
/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 260, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}
/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 263, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}
/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 266, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}
/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 269, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}
/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
/* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/* line 28, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_wells.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 30, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
/* line 32, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
/* line 36, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 38, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

/* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
/* line 73, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 74, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 79, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 85, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}
/* line 110, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 115, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 119, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  /* line 140, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  /* line 145, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 149, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}
/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
/* line 20, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
/* line 21, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 26, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 36, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 52, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 59, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 66, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
/* line 73, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
/* line 80, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 87, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 94, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
/* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}
/* line 28, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}
/* line 29, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}
/* line 30, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 42, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 51, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 61, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 70, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
/* line 77, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
/* line 85, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
/* line 92, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
/* line 100, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
/* line 107, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
/* line 116, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
/* line 123, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

/* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* line 16, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
/* line 22, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 16, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 34, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
/* line 59, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}
/* line 63, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 70, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}
/* line 73, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}
/* line 76, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
/* line 81, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}
/* line 84, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 93, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}
/* line 109, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
/* line 112, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
/* line 119, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 128, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
/* line 138, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
/* line 143, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
/* line 148, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
/* line 158, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: '\2039';
}
/* line 163, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: '\203a';
}

/* line 174, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
/* line 185, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
/* line 207, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

/* line 218, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
/* line 229, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 240, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 249, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 253, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }

  /* line 260, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  /* line 267, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}
/* line 14, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 19, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.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) {
  /* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }

  /* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 54, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 59, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 64, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }

  /* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }

  /* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }

  /* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }

  /* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  /* line 111, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 121, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}
/* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }

  /* line 10, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }

  /* line 11, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 12, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
/* line 155, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}
@media print {
  /* line 155, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}
@media print {
  /* line 162, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 169, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 18, /Users/KunKun/.rvm/gems/ruby-2.3.1/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}
/*@import 'https://www.wehome.fr/assets/chosen'; */
/* color */
/*bleu*/
/*vert*/
/*jaune*/
/*orange*/
/*gris*/
/* all background-color: #fff; ramplacé par background-color: #fafafa; */
/* color */
/* Custom font */
@font-face {
  font-family: "SofiaProBold";
  src: url(../fonts/SofiaProBold.otf) format("truetype");
}
@font-face {
  font-family: 'SofiaProRegular';
  src: url("../fonts/SofiaProRegular-webfont.eot") format("embedded-opentype"), url("../fonts/SofiaProRegular-webfont.woff") format("woff"), url("../fonts/SofiaProRegular-webfont.ttf") format("truetype"), url("../fonts/SofiaProRegular-webfont.svg") format("svg");
}
@font-face {
  font-family: "SofiaProLight";
  src: url(../fonts/SofiaProLight.otf) format("truetype");
}
/* Custom font */
/* Popup Map */
/* line 52, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mapboxgl-popup {
  max-width: 200px;
  font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

/* Popup Map */
/* Popup tjs en scroll */
/* line 59, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.modal {
  overflow-y: scroll;
}

/* Popup tjs en scroll */
/* Changement bootstrap */
/* line 66, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #fff;
  background-color: #4484CE;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

/* Changement bootstrap */
/* Center Navbar */
/* line 78, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.navbar-nav {
  width: 100%;
  text-align: center;
}
/* line 81, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.navbar-nav > li {
  float: none;
  display: inline-block;
}

/* line 87, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#navbar .nav > li > a {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: 'SofiaProRegular';
}

/* line 94, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.navbar-toggle {
  position: relative;
  float: left;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 107, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 113, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textplusgrand {
  font-size: 25px !important;
}

/* line 115, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.majuscule {
  text-transform: uppercase !important;
}

/* Center Navbar */
/* line 120, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.margepara {
  padding: 0 5%;
}

@media screen and (min-width: 980px) {
  /* line 125, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .margepara {
    padding: 0 5%;
  }
}
/* line 130, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.margepara2 {
  padding: 0 0  0 10%;
}

@media screen and (min-width: 980px) {
  /* line 135, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .margepara2 {
    padding: 0 0  0 10%;
  }
}
/* line 140, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.margetitle {
  padding: 0 15%;
}

@media screen and (min-width: 980px) {
  /* line 145, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .margetitle {
    padding: 0 0 0 20%;
  }
}
/* line 150, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.margeannonce {
  padding: 0 0;
}

@media screen and (min-width: 980px) {
  /* line 155, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .margeannonce {
    padding: 0 0 0 10%;
  }
}
/* line 161, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.barreannonce {
  border-left: 1px solid #4484CE;
}

/* Pastille de notification */
/* line 167, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.badge1 {
  position: relative;
}

/* line 170, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.badge1[data-badge]:after {
  content: attr(data-badge);
  position: absolute;
  top: 1px;
  right: 1px;
  font-size: .7em;
  background: #F19F4D;
  color: white;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
}

/* Pastille de notification */
/* Spacer */
/* line 188, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacerxxxx {
  margin-top: 250px;
}

/* line 192, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacerxxx {
  margin-top: 200px;
}

/* line 196, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacerxx {
  margin-top: 150px;
}

/* line 200, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacerx {
  margin-top: 100px;
}

/* line 204, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacerminix {
  margin-top: 85px;
}

/* line 208, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacerminix1 {
  margin-top: 75px;
}

/* line 212, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer {
  margin-top: 65px;
}

/* line 216, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer0 {
  margin-top: 60px;
}

/* line 220, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer05 {
  margin-top: 55px;
}

/* line 224, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer1 {
  margin-top: 45px;
}

/* line 228, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer15 {
  margin-top: 40px;
}

/* line 232, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer2 {
  margin-top: 30px;
}

/* line 236, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer3 {
  margin-top: 20px;
}

/* line 240, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer4 {
  margin-top: 10px;
}

/* line 244, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spacer5 {
  margin-top: 5px;
}

/* Spacer */
/* line 250, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mapfix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 256, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textred {
  color: #ff5a5f !important;
}

/* line 261, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textblack {
  color: #333333 !important;
}

/* line 265, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textwhite {
  color: #ffffff !important;
}

/* line 269, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textgrey {
  color: #eee !important;
}

/* line 273, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textgrey2 {
  color: #939393 !important;
}

/* line 277, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textgrey3 {
  color: #555 !important;
}

/* line 281, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textbleu {
  color: #4484CE !important;
}

/* line 285, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textorange {
  color: #F19F4D !important;
}

/* line 289, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textjaune {
  color: #F9CF00 !important;
}

/* line 293, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textgris {
  color: #D9D9D9 !important;
}

/* line 297, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textvert {
  color: #16e29c !important;
}

/* line 301, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textshadow {
  text-shadow: 1px 1px #333;
}

/* line 305, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.texttheme1 {
  color: #4484CE !important;
}

/* line 309, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.texttheme2 {
  color: #16e29c !important;
}

/* line 313, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.texttheme3 {
  color: #F9CF00 !important;
}

/* line 317, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.texttheme4 {
  color: #F19F4D !important;
}

/* line 321, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textnormal {
  font-weight: normal !important;
}

/* line 325, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fondgris {
  background-color: #f5f5f5 !important;
}

/* line 329, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fondbleu {
  background-color: #f2f6f7 !important;
}

/* line 333, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fondblanc {
  background-color: #ffffff !important;
}

/* line 337, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.coinarrondi {
  border-radius: 5px;
}

/* line 341, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.coinarrondi2 {
  border-radius: 10px;
}

/* line 345, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textecercle {
  border-color: #4484CE !important;
}

/* line 349, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textecercle:hover {
  border-color: #F19F4D !important;
}

/* Infinite carousel */
/* line 356, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-inner .active.left {
  left: -33%;
}

/* line 357, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-inner .next {
  left: 33%;
}

/* line 358, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-inner .prev {
  left: -33%;
}

/* line 359, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-control.left, .carousel-control.right {
  background-image: none;
}

/* line 360, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.item:not(.prev) {
  visibility: visible;
}

/* line 361, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.item.right:not(.prev) {
  visibility: hidden;
}

/* line 362, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.rightest {
  visibility: visible;
}

/* line 364, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-indicators .active {
  background-color: #4484CE !important;
}

/* line 368, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-indicators li {
  border: 1px solid #4484CE !important;
}

/* line 372, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-indicators {
  bottom: 2px;
}

/* Infinite carousel Fin */
/* images */
/* line 381, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imagematerial {
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  height: 300px;
  margin: 1rem;
  position: relative;
  width: 300px;
}

/* line 391, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imagematerial-1 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* line 396, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imagematerial-1:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* line 401, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image-home {
  border-width: 2px;
  border-style: solid;
  border-color: white;
  border-radius: 10px;
}

/* line 409, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.centerimage {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* line 414, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image100p-l {
  height: auto !important;
  width: 100% !important;
}

/* line 419, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image100p-h {
  height: 100% !important;
  width: auto !important;
}

/* line 424, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image80p-h {
  height: 80% !important;
  width: auto !important;
}

/* line 429, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image80p-l {
  height: auto !important;
  width: 80% !important;
}

/* line 434, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image30p-l {
  height: auto !important;
  width: 30% !important;
}

/* line 439, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image70p-h {
  height: 70% !important;
  width: auto !important;
}

/* line 444, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image70p-l {
  height: auto !important;
  width: 70% !important;
}

/* line 449, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image60p-l {
  height: auto !important;
  width: 60% !important;
}

/* line 454, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image50p-l {
  height: auto !important;
  width: 50% !important;
}

/* line 459, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image25p-l {
  height: auto !important;
  width: 25% !important;
}

/* line 464, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image450-h {
  height: 450px !important;
  width: auto !important;
}

/* line 469, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image200-h {
  height: 200px !important;
  width: auto !important;
}

/* line 474, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image180-h {
  height: 180px !important;
  width: auto !important;
}

/* line 479, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image150-h {
  height: 150px !important;
  width: auto !important;
}

/* line 484, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image60-h {
  height: 60px !important;
  width: auto !important;
}

/* line 489, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image40-h {
  height: 40px !important;
  width: auto !important;
}

/* line 494, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image20-h {
  height: 20px !important;
  width: auto !important;
}

/* line 499, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imageiconhome {
  height: 30px !important;
  width: auto !important;
  float: left;
  /*margin-top: 3px;*/
}

/* line 506, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imageiconannonce {
  height: 30px !important;
  width: auto !important;
}

/* line 511, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image50-l {
  height: auto !important;
  width: 50px !important;
}

/* line 516, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image75-l {
  height: auto !important;
  width: 75px !important;
}

/* line 521, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image100-l {
  height: auto !important;
  width: 100px !important;
}

/* line 526, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image-circle {
  border-radius: 50%;
}

/* line 530, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.image-annonce {
  width: 100%;
}

@media screen and (min-width: 980px) {
  /* line 535, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .image-annonce {
    width: 100%;
    position: relative;
    bottom: 100px;
  }
}
/* line 542, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.maxheightimage {
  max-height: 400px;
}

@media screen and (min-width: 1920px) {
  /* line 547, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .maxheightimage {
    max-height: 800px;
  }
}
/* line 552, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divimage-annonce {
  max-height: 100%;
}

@media screen and (min-width: 980px) {
  /* line 557, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .divimage-annonce {
    max-height: 400px;
  }
}
/* line 562, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-vendre {
  background-image: url(home/vendre-home-1-mobile-6c96f634c7c33be0f47049b8ad169eca8c82bb283481b875577b69f18b5ee1e9.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

@media screen and (min-width: 980px) {
  /* line 571, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .fond-image-vendre {
    background-image: url(home/vendre-home-1-c9cd6ed4f660b195108fe755a87358eb43c9f7644b1f6b45b6e8c07b162e01b9.jpg) !important;
    -webkit-background-size: cover;
    /* pour Chrome et Safari */
    -moz-background-size: cover;
    /* pour Firefox */
    -o-background-size: cover;
    /* pour Opera */
    background-size: cover;
    /* version standardisée */
  }
}
/* line 580, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-blog {
  background-image: url(fond/fond2-b7acc9a03689e3cfbdea92ae4eea36ee2910d053bedc2350fac85c11d28f42c5.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 588, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-blog1 {
  background-image: url(blog/blog1-1-7175428af77ca0afc9e216762689bb7ee7279920e47706eda150dfbf4467ae83.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 596, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-blog2 {
  background-image: url(blog/blog2-1-6f4a7934577b030128906a35e7a5480600c7316c527a9193f318e8e41e80878a.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 604, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-blog3 {
  background-image: url(blog/blog3-1-7a90415398a8234e1b9478447992e70f51a862b1e9e3d20fb83324fcf81a9c55.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 612, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-blog5 {
  background-image: url(blog/blog5-1-e3636ef162aba877d6d1c0fc99f7ea11540ee21bbebc5418bca62629436fda02.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 620, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-blog6 {
  background-image: url(blog/blog6-1-acbfd2801fe63c1d9b3d95ec4cb03fb0d10ad81921c0d21136002a42b3424406.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 628, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-news {
  background-image: url(fond/fond3-1b919a8a5982144c7d5fb608253961e4c3b51dcd68258fbf7908d6b01480d0b3.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 636, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-news1 {
  background-image: url(news/news1-2-0ab11f1d2eeebe590ca00900ede035ccf4b99b67d2b6d098d806fbe890cf9c4c.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 644, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-news2 {
  background-image: url(news/news2-1-33f291b8ac73efb50d5d1979e92c3bd03cb5d99466b4be349aa7e508c93d7ac3.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 652, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-news3 {
  background-image: url(news/news3-1-b9e80efcfbc7c7bcc4f05a749b4f3d87312577716b89c0f0c1855030dd8e5913.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 660, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-news4 {
  background-image: url(news/news4-1-afbd8ffc4be9b85eaec2a88fd0de2abfa49fe3ea1b24521b32f2e4502685db6b.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 668, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-news5 {
  background-image: url(news/news5-1-ff0fba49f8c006fd5e13db59c4144eacc39e951fc1367c2075596d12f4335f98.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 676, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fond-image-don {
  background-image: url(blog/don-2318b775017add410c78dd6bff48ea066e59054ce0a53b04d17ea60ef86e5479.jpg) !important;
  -webkit-background-size: cover;
  /* pour Chrome et Safari */
  -moz-background-size: cover;
  /* pour Firefox */
  -o-background-size: cover;
  /* pour Opera */
  background-size: cover;
  /* version standardisée */
}

/* line 684, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imageblog {
  position: relative;
}

/* line 688, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imageblogdark {
  filter: brightness(50%);
}

/* line 692, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imageblogdark2 {
  filter: brightness(75%);
}

/* line 696, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textblog {
  left: 0;
  position: absolute;
  text-align: center;
  top: 40%;
  width: 100%;
  padding: 0 5px;
}

/* line 705, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.textblog1 {
  left: 0;
  position: absolute;
  text-align: center;
  top: 35%;
  width: 100%;
  padding: 0 10px;
}

/* images */
/* line 717, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.card-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* line 722, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.card-1:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* line 727, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-control {
  padding-top: 100px;
  width: 10%;
}

/* Custom Button */
/* line 736, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-extrafull {
  display: block !important;
  width: 100% !important;
}

/* line 741, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-halffull {
  display: block !important;
  width: 45% !important;
}

/* Enlever les petites flêches sur les input number */
/* line 748, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Enlever les petites flêches sur les input number */
/* line 756, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green {
  color: #ffffff;
  background-color: #16e29c;
  border-color: #16e29c;
}

/* line 762, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green.active,
.open .dropdown-toggle.btn-green {
  color: #ffffff !important;
  background-color: #4484CE;
  border-color: #4484CE;
}

/* line 772, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green:active,
.btn-green.active,
.open .dropdown-toggle.btn-green {
  background-image: none;
}

/* line 778, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green.disabled,
.btn-green[disabled],
fieldset[disabled] .btn-green,
.btn-green.disabled:hover,
.btn-green[disabled]:hover,
fieldset[disabled] .btn-green:hover,
.btn-green.disabled:focus,
.btn-green[disabled]:focus,
fieldset[disabled] .btn-green:focus,
.btn-green.disabled:active,
.btn-green[disabled]:active,
fieldset[disabled] .btn-green:active,
.btn-green.disabled.active,
.btn-green[disabled].active,
fieldset[disabled] .btn-green.active {
  background-color: #16e29c;
  border-color: #16e29c;
}

/* line 797, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green .badge {
  color: #16e29c;
  background-color: #ffffff;
}

/* line 802, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green2 {
  color: #ffffff;
  background-color: #4484CE;
  border-color: #4484CE;
}

/* line 808, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green2:hover,
.btn-green2:focus,
.btn-green2:active,
.btn-green2.active,
.open .dropdown-toggle.btn-green2 {
  color: #ffffff !important;
  background-color: #F19F4D;
  border-color: #F19F4D;
}

/* line 818, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green2:active,
.btn-green2.active,
.open .dropdown-toggle.btn-green2 {
  background-image: none;
}

/* line 824, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green2.disabled,
.btn-green2[disabled],
fieldset[disabled] .btn-green2,
.btn-green2.disabled:hover,
.btn-green2[disabled]:hover,
fieldset[disabled] .btn-green2:hover,
.btn-green2.disabled:focus,
.btn-green2[disabled]:focus,
fieldset[disabled] .btn-green2:focus,
.btn-green2.disabled:active,
.btn-green2[disabled]:active,
fieldset[disabled] .btn-green2:active,
.btn-green2.disabled.active,
.btn-green2[disabled].active,
fieldset[disabled] .btn-green2.active {
  background-color: #4484CE;
  border-color: #4484CE;
}

/* line 843, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-green2 .badge {
  color: #4484CE;
  background-color: #ffffff;
}

/* line 849, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.alert {
  padding: 10px;
  margin-bottom: 0;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* Custom Button End */
/* Message */
/* line 861, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.messages {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 1em;
  margin-top: 1em;
}

/* Message End */
/* line 871, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #333;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 883, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.form-control {
  color: #333 !important;
}

/* line 887, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .form-control {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

/* line 891, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .selectpicker {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

/* line 896, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .btn-default {
  color: #333;
  background-color: rgba(255, 255, 255, 0.6);
  border-color: #ccc;
}

/* line 902, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.transparenthome {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

/* line 906, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.white-section {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* line 913, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.white-section label {
  margin-bottom: 30px;
}

/* line 915, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.dark .white-section {
  background-color: #333;
  -webkit-box-shadow: 0px 1px 1px 0px #444;
  box-shadow: 0px 1px 1px 0px #444;
}

/* line 921, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.input-group-addon {
  width: 0.1% !important;
}

/* ----------------------------------------------------------------

  - Basic
  - Typography
  - Basic Layout Styles
  - Helper Classes
  - Sections
  - Columns & Grids
  - Flex Slider
  - Swiper Slider
  - Top Bar
  - Header
    - Logo
    - Primary Menu
    - Mega Menu
    - Top Search
    - Top Cart
    - Sticky Header
    - Page Menu
    - Side Header
  - Side Panel
  - Slider
  - Page Title
  - Content
  - Portfolio
  - Blog
  - Shop
  - Events
  - Shortcodes
    - Countdown
    - Buttons
    - Promo Boxes
    - Featured Boxes
    - Process Steps
    - Styled Icons
    - Toggles
    - Accordions
    - Tabs
    - Side Navigation
    - FAQ List
    - Clients
    - Testimonials
    - Team
    - Pricing Boxes
    - Counter
    - Animated Rounded Skills
    - Skills Bar
    - Dropcaps & Highlights
    - Quotes & Blockquotes
    - Text Rotater
  - Owl Carousel
  - Overlays
  - Forms
  - Google Maps
  - Heading Styles
  - Divider
  - Magazine Specific Classes
  - Go To Top
  - Error 404
  - Landing Pages
  - Preloaders
  - Toastr Notifications
  - Footer
  - Widgets
    - Tag Cloud
    - Links
    - Testimonial & Twitter
    - Quick Contact Form
    - Newsletter
    - Twitter Feed
    - Navigation Tree
  - Wedding
  - Bootstrap Specific
  - Cookie Notification
  - Stretched Layout
  - Page Transitions
  - Youtube Video Backgrounds

---------------------------------------------------------------- */
/* ----------------------------------------------------------------
  Basic
-----------------------------------------------------------------*/
/* line 1012, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0;
}

/* line 1017, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clear {
  clear: both;
  display: block;
  font-size: 0px;
  height: 0px;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}

/*
::selection {
  background: $blue;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: $blue; /* Firefox *
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: $blue; /* Safari *
  color: #FFF;
  text-shadow: none;
} */
/* line 1046, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
:active,
:focus {
  outline: none !important;
}

/* ----------------------------------------------------------------
  Typography
-----------------------------------------------------------------*/
/* line 1054, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
html, body {
  height: 100%;
}

/* line 1059, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body {
  line-height: 1.5;
  color: #555;
  font-family: 'SofiaProRegular';
  background-color: #fafafa;
}

/* line 1066, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
a {
  text-decoration: none !important;
  color: #4484CE;
}

/* line 1071, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
a:hover {
  color: #4484CE;
}

/* line 1073, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
a:focus {
  color: #16e29c;
  text-decoration: underline;
}

/* line 1078, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
a img {
  border: none;
}

/* line 1080, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
img {
  max-width: 100%;
}

/* line 1082, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
iframe {
  border: none !important;
}

/* ----------------------------------------------------------------
  Basic Layout Styles
-----------------------------------------------------------------*/
/* line 1090, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 0 0;
  font-family: 'SofiaProRegular';
}

/* line 1103, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h5,
h6 {
  margin-bottom: 20px;
}

/* line 1106, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h1 {
  font-size: 36px;
}

/* line 1108, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h2 {
  font-size: 30px;
}

/* line 1110, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h3 {
  font-size: 24px;
}

/* line 1112, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h4 {
  font-size: 18px;
}

/* line 1114, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h5 {
  font-size: 14px;
}

/* line 1116, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h6 {
  font-size: 12px;
}

/* line 1118, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h4 {
  font-weight: normal !important;
}

/* line 1120, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h5,
h6 {
  font-weight: bold;
}

/* line 1123, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
h1 > span:not(.nocolor),
h2 > span:not(.nocolor),
h3 > span:not(.nocolor),
h4 > span:not(.nocolor),
h5 > span:not(.nocolor),
h6 > span:not(.nocolor) {
  color: #4484CE;
}

/* line 1130, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 30px;
}

/*form { margin-bottom: 30px; } */
/*p { margin-bottom: 15px; }*/
/* line 1144, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
p {
  margin: 0 0 0 !important;
}

/* line 1146, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
small {
  font-family: 'SofiaProRegular';
}

/* line 1148, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.table > thead > tr > th {
  vertical-align: middle;
}

/* line 1152, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.table > tbody > tr > th {
  font-weight: normal;
}

/* ----------------------------------------------------------------
  Helper Classes
-----------------------------------------------------------------*/
/* line 1160, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.uppercase {
  text-transform: uppercase !important;
}

/* line 1162, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.lowercase {
  text-transform: lowercase !important;
}

/* line 1164, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.capitalize {
  text-transform: capitalize !important;
}

/* line 1166, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nott {
  text-transform: none !important;
}

/* line 1168, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tright {
  text-align: right !important;
}

/* line 1170, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tleft {
  text-align: left !important;
}

/* line 1172, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fright {
  float: right !important;
}

/* line 1174, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fleft {
  float: left !important;
}

/* line 1176, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fnone {
  float: none !important;
}

/* line 1178, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ohidden {
  position: relative;
  overflow: hidden !important;
}

/* line 1183, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#wrapper {
  min-height: 100%;
  position: relative;
  float: none;
  width: 1220px;
  margin: 0 auto;
  background-color: #fafafa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* line 1195, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.line,
.double-line {
  clear: both;
  position: relative;
  width: 100%;
  margin: 60px 0;
  border-top: 1px solid #EEE;
}

/* line 1204, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.line.line-sm {
  margin: 30px 0;
}

/* line 1206, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
span.middot {
  display: inline-block;
  margin: 0 5px;
}

/* line 1211, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.double-line {
  border-top: 3px double #E5E5E5;
}

/* line 1213, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.emptydiv {
  display: block !important;
  position: relative !important;
}

/* line 1218, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.allmargin {
  margin: 50px !important;
}

/* line 1220, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.leftmargin {
  margin-left: 50px !important;
}

/* line 1222, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.rightmargin {
  margin-right: 50px !important;
}

/* line 1224, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.topmargin {
  margin-top: 50px !important;
}

/* line 1226, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bottommargin {
  margin-bottom: 50px !important;
}

/* line 1228, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clear-bottommargin {
  margin-bottom: -50px !important;
}

/* line 1230, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.allmargin-xxxs {
  margin: 1px !important;
}

/* line 1232, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.allmargin-xs {
  margin: 15px !important;
}

/* line 1234, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.allmargin2-xs {
  margin-bottom: 15px !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

/* line 1236, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.allmargin3-xs {
  margin-bottom: 15px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* line 1238, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bottommargin-xs {
  margin-bottom: 5px !important;
}

/* line 1240, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.allmargin-sm {
  margin: 30px !important;
}

/* line 1242, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.leftmargin-sm {
  margin-left: 30px !important;
}

/* line 1244, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.rightmargin-sm {
  margin-right: 30px !important;
}

/* line 1246, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.topmargin-sm {
  margin-top: 30px !important;
}

/* line 1248, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.topmargin-m {
  margin-top: 35px !important;
}

/* line 1250, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bottommargin-sm {
  margin-bottom: 30px !important;
}

/* line 1252, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clear-bottommargin-sm {
  margin-bottom: -30px !important;
}

/* line 1254, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.allmargin-lg {
  margin: 80px !important;
}

/* line 1256, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.leftmargin-lg {
  margin-left: 80px !important;
}

/* line 1258, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.rightmargin-lg {
  margin-right: 80px !important;
}

/* line 1260, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.topmargin-lg {
  margin-top: 80px !important;
}

/* line 1262, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bottommargin-lg {
  margin-bottom: 80px !important;
}

/* line 1264, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clear-bottommargin-lg {
  margin-bottom: -80px !important;
}

/* line 1266, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nomargin {
  margin: 0 !important;
}

/* line 1268, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.noleftmargin {
  margin-left: 0 !important;
}

/* line 1270, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.norightmargin {
  margin-right: 0 !important;
}

/* line 1272, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.notopmargin {
  margin-top: 0 !important;
}

/* line 1274, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nobottommargin {
  margin-bottom: 0 !important;
}

/* line 1276, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.header-stick {
  margin-top: -50px !important;
}

/* line 1278, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.content-wrap .header-stick {
  margin-top: -80px !important;
}

/* line 1280, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.footer-stick {
  margin-bottom: -50px !important;
}

/* line 1282, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.content-wrap .footer-stick {
  margin-bottom: -80px !important;
}

/* line 1284, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.noborder {
  border: none !important;
}

/* line 1286, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.noleftborder {
  border-left: none !important;
}

/* line 1288, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.norightborder {
  border-right: none !important;
}

/* line 1290, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.notopborder {
  border-top: none !important;
}

/* line 1292, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nobottomborder {
  border-bottom: none !important;
}

/* line 1294, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.noradius {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
}

/* line 1296, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col-padding {
  padding: 60px;
}

/* line 1298, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col-minipadding0 {
  padding: 40px;
}

/* line 1300, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col-minipadding {
  padding: 20px;
}

/* line 1302, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col-minipadding1 {
  padding: 15px;
}

/* line 1304, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col-minipadding2 {
  padding: 5px;
}

/* line 1306, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nopadding {
  padding: 0 !important;
}

/* line 1308, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.noleftpadding {
  padding-left: 0 !important;
}

/* line 1310, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.norightpadding {
  padding-right: 0 !important;
}

/* line 1312, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.notoppadding {
  padding-top: 0 !important;
}

/* line 1314, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nobottompadding {
  padding-bottom: 0 !important;
}

/* line 1316, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.noabsolute {
  position: relative !important;
}

/* line 1318, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.noshadow {
  box-shadow: none !important;
}

/* line 1320, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.hidden {
  display: none !important;
}

/* line 1322, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nothidden {
  display: block !important;
}

/* line 1324, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.inline-block {
  float: none !important;
  display: inline-block !important;
}

/* line 1329, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.center {
  text-align: center !important;
}

/* line 1331, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divcenter {
  position: relative !important;
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* line 1338, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bgcolor,
.bgcolor #header-wrap {
  background-color: #4484CE !important;
}

/* line 1341, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.color {
  color: #4484CE !important;
}

/* line 1343, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.border-color {
  border-color: #4484CE !important;
}

/* line 1345, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nobg {
  background: none !important;
}

/* line 1347, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nobgcolor {
  background-color: transparent !important;
}

/* line 1349, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.t300 {
  font-weight: 300 !important;
}

/* line 1351, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.t400 {
  font-weight: 400 !important;
}

/* line 1353, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.t500 {
  font-weight: 500 !important;
}

/* line 1355, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.t600 {
  font-weight: 600 !important;
}

/* line 1357, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.t700 {
  font-weight: 700 !important;
}

/* line 1359, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ls0 {
  letter-spacing: 0px !important;
}

/* line 1361, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ls1 {
  letter-spacing: 1px !important;
}

/* line 1363, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ls2 {
  letter-spacing: 2px !important;
}

/* line 1365, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ls3 {
  letter-spacing: 3px !important;
}

/* line 1367, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ls4 {
  letter-spacing: 4px !important;
}

/* line 1369, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ls5 {
  letter-spacing: 5px !important;
}

/* line 1371, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.noheight {
  height: 0 !important;
}

/* line 1373, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nolineheight {
  line-height: 0 !important;
}

/* line 1375, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.font-body {
  font-family: 'SofiaProRegular';
}

/* line 1377, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.font-primary {
  font-family: 'SofiaProRegular';
}

/* line 1379, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.font-secondary {
  font-family: 'Crete Round', serif;
}

/* line 1381, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bgicon {
  display: block;
  position: absolute;
  bottom: -60px;
  right: -50px;
  font-size: 210px;
  color: rgba(0, 0, 0, 0.1);
}

/* line 1390, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imagescale,
.imagescalein {
  display: block;
  overflow: hidden;
}

/* line 1396, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imagescale img,
.imagescalein img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

/* line 1404, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imagescale:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* line 1409, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imagescalein img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* line 1414, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.imagescalein:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* line 1419, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.grayscale {
  filter: brightness(80%) grayscale(1) contrast(90%);
  -webkit-filter: brightness(80%) grayscale(1) contrast(90%);
  -moz-filter: brightness(80%) grayscale(1) contrast(90%);
  -o-filter: brightness(80%) grayscale(1) contrast(90%);
  -ms-filter: brightness(80%) grayscale(1) contrast(90%);
  transition: 1s filter ease;
  -webkit-transition: 1s -webkit-filter ease;
  -moz-transition: 1s -moz-filter ease;
  -ms-transition: 1s -ms-filter ease;
  -o-transition: 1s -o-filter ease;
}

/* line 1432, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.grayscale:hover {
  filter: brightness(100%) grayscale(0);
  -webkit-filter: brightness(100%) grayscale(0);
  -moz-filter: brightness(100%) grayscale(0);
  -o-filter: brightness(100%) grayscale(0);
  -ms-filter: brightness(100%) grayscale(0);
}

/* MOVING BG -  TESTIMONIALS */
/* line 1441, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bganimate {
  -webkit-animation: BgAnimated 30s infinite linear;
  -moz-animation: BgAnimated 30s infinite linear;
  -ms-animation: BgAnimated 30s infinite linear;
  -o-animation: BgAnimated 30s infinite linear;
  animation: BgAnimated 30s infinite linear;
}

@-webkit-keyframes BgAnimated {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 400px;
  }
}
@-moz-keyframes BgAnimated {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 400px;
  }
}
@-ms-keyframes BgAnimated {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 400px;
  }
}
@-o-keyframes BgAnimated {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 400px;
  }
}
@keyframes BgAnimated {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 400px;
  }
}
/* line 1470, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.input-block-level {
  display: block;
  width: 100% !important;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1479, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.vertical-middle {
  height: auto !important;
  left: 0;
}

/* line 1484, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.magnific-max-width .mfp-content {
  max-width: 800px;
}

/* ----------------------------------------------------------------
  Sections
-----------------------------------------------------------------*/
/* line 1492, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section {
  position: relative;
  margin: 60px 0;
  padding: 60px 0;
  background-color: #f5f5f5;
  overflow: hidden;
}

/* line 1500, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section2 {
  position: relative;
  margin: 60px 0;
  padding: 60px 0;
  background-color: #F9F9F9;
  overflow: hidden;
}

/* line 1508, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax {
  background-color: transparent;
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* line 1516, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mobile-parallax,
.video-placeholder {
  background-size: cover !important;
  background-attachment: scroll !important;
  background-position: center center;
}

/* line 1523, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section .container {
  z-index: 2;
}

/* line 1525, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section .container + .video-wrap {
  z-index: 1;
}

/* line 1527, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.revealer-image {
  position: relative;
  bottom: -100px;
  transition: bottom .3s ease-in-out;
  -webkit-transition: bottom .3s ease-in-out;
  -o-transition: bottom .3s ease-in-out;
}

/* line 1535, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section:hover .revealer-image {
  bottom: -50px;
}

/* ----------------------------------------------------------------
  Columns & Grids
-----------------------------------------------------------------*/
/* line 1543, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent {
  width: 860px;
}

/* line 1544, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent.bothsidebar {
  width: 580px;
}

/* line 1545, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidebar {
  width: 240px;
}

/* line 1546, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_full {
  width: 100%;
}

/* line 1547, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_half {
  width: 48%;
}

/* line 1548, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_one_third {
  width: 30.63%;
}

/* line 1549, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_two_third {
  width: 65.33%;
}

/* line 1550, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_one_fourth {
  width: 22%;
}

/* line 1551, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_three_fourth {
  width: 74%;
}

/* line 1552, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_one_fifth {
  width: 16.8%;
}

/* line 1553, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_two_fifth {
  width: 37.6%;
}

/* line 1554, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_three_fifth {
  width: 58.4%;
}

/* line 1555, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_four_fifth {
  width: 79.2%;
}

/* line 1556, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_one_sixth {
  width: 13.33%;
}

/* line 1557, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_five_sixth {
  width: 82.67%;
}

/* line 1558, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.stretched .container-fullwidth {
  position: relative;
  padding: 0 60px;
  width: 100%;
}

/* line 1564, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent,
.sidebar,
.col_full,
.col_half,
.col_one_third,
.col_two_third,
.col_three_fourth,
.col_one_fourth,
.col_one_fifth,
.col_two_fifth,
.col_three_fifth,
.col_four_fifth,
.col_one_sixth,
.col_five_sixth {
  display: block;
  position: relative;
  margin-right: 4%;
  margin-bottom: 50px;
  float: left;
}

/* line 1585, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent,
.sidebar {
  margin-right: 40px;
}

/* line 1588, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_full {
  clear: both;
  float: none;
  margin-right: 0;
}

/* line 1594, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent.col_last,
.sidebar.col_last {
  float: right;
}

/* line 1597, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.col_last {
  margin-right: 0 !important;
  clear: right;
}

/* ----------------------------------------------------------------
  Flex Slider
-----------------------------------------------------------------*/
/* line 1608, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider,
.fslider .flexslider,
.fslider .slider-wrap,
.fslider .slide,
.fslider .slide > a,
.fslider .slide > img,
.fslider .slide > a > img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
}

/* line 1623, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider {
  min-height: 32px;
}

/* line 1626, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
  border: none;
}

/* line 1630, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-wrap,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
}

/* line 1634, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flexslider {
  position: relative;
  margin: 0;
  padding: 0;
}

/* line 1635, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flexslider .slider-wrap > .slide {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* line 1636, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flexslider .slider-wrap img {
  width: 100%;
  display: block;
}

/* line 1637, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-pauseplay span {
  text-transform: capitalize;
}

/* line 1639, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-wrap:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 1640, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
html[xmlns] .slider-wrap {
  display: block;
}

/* line 1641, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
* html .slider-wrap {
  height: 1%;
}

/* line 1643, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.no-js .slider-wrap > .slide:first-child {
  display: block;
}

/* line 1645, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

/* line 1652, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav {
  position: absolute;
  z-index: 10;
  text-align: center;
  top: 14px;
  right: 10px;
  margin: 0;
}

/* line 1661, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav li {
  float: left;
  display: block;
  margin: 0 3px;
  width: 10px;
  height: 10px;
}

/* line 1669, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav li a {
  display: block;
  cursor: pointer;
  text-indent: -9999px;
  width: 10px !important;
  height: 10px !important;
  border: 1px solid #FFF;
  border-radius: 50%;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

/* line 1682, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav li:hover a,
.flex-control-nav li a.flex-active {
  background-color: #fafafa;
}

/* ----------------------------------------------------------------
  Top Bar
-----------------------------------------------------------------*/
/* line 1691, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-bar {
  position: relative;
  border-bottom: 1px solid #EEE;
  height: 45px;
  line-height: 44px;
  font-size: 13px;
}

/* line 1700, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-bar .col_half {
  width: auto;
}

/* Top Links
---------------------------------*/
/* line 1707, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links {
  position: relative;
  float: left;
}

/* line 1712, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul {
  margin: 0;
  list-style: none;
}

/* line 1717, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul li {
  float: left;
  position: relative;
  height: 44px;
  border-left: 1px solid #EEE;
}

/* line 1724, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul li:first-child,
.top-links ul ul li {
  border-left: 0 !important;
}

/* line 1727, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links li > a {
  display: block;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  /*text-transform: uppercase;*/
  height: 44px;
  color: #666;
}

/* line 1737, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links li i {
  vertical-align: top;
}

/* line 1739, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links li i.icon-angle-down {
  margin: 0 0 0 5px !important;
}

/* line 1741, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links li i:first-child {
  margin-right: 3px;
}

/* line 1743, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links li.full-icon i {
  top: 2px;
  font-size: 14px;
  margin: 0;
}

/* line 1749, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links li:hover {
  background-color: #EEE;
}

/* line 1751, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul ul,
.top-links ul div.top-link-section {
  display: none;
  pointer-events: none;
  position: absolute;
  z-index: 210;
  line-height: 1.5;
  background: #FFF;
  border: 0;
  top: 44px;
  left: 0;
  width: 140px;
  margin: 0;
  border-top: 1px solid #4484CE;
  border-bottom: 1px solid #EEE;
  box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.2);
}

/* line 1771, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links li:hover ul,
.top-links li:hover div.top-link-section {
  pointer-events: auto;
}

/* line 1774, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul ul li {
  float: none;
  height: 36px;
  border-top: 1px solid #F5F5F5;
  border-left: 1px solid #EEE;
}

/* line 1781, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul ul li:hover {
  background-color: #F9F9F9;
}

/* line 1783, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul ul li:first-child {
  border-top: none !important;
  border-left: 1px solid #EEE;
}

/* line 1788, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul ul a {
  height: 36px;
  line-height: 36px;
  font-size: 12px;
}

/* line 1794, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul ul img {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

/* line 1803, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul ul.top-demo-lang img {
  top: 4px;
  width: 16px;
  height: 16px;
}

/* line 1809, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-links ul div.top-link-section {
  padding: 25px;
  left: 0;
  width: 280px;
}

/* line 1815, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fright .top-links ul div.top-link-section,
.top-links.fright ul div.top-link-section {
  left: auto;
  right: 0;
}

/* Top Social
-----------------------------------------------------------------*/
/* line 1825, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-social,
#top-social ul {
  margin: 0;
}

/* line 1828, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-social li,
#top-social li a,
#top-social li .ts-icon,
#top-social li .ts-text {
  display: block;
  position: relative;
  float: left;
  width: auto;
  overflow: hidden;
  height: 44px;
  line-height: 44px;
}

/* line 1841, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-social li {
  border-left: 1px solid #EEE;
}

/* line 1843, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-social li:first-child {
  border-left: 0 !important;
}

/* line 1845, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-social li a {
  float: none;
  width: 40px;
  font-weight: bold;
  color: #666;
  -webkit-transition: color .3s ease-in-out, background-color .3s ease-in-out, width .3s ease-in-out;
  -o-transition: color .3s ease-in-out, background-color .3s ease-in-out, width .3s ease-in-out;
  transition: color .3s ease-in-out, background-color .3s ease-in-out, width .3s ease-in-out;
}

/* line 1855, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-social li a:hover {
  color: #FFF !important;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* line 1860, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-social li .ts-icon {
  width: 40px;
  text-align: center;
  font-size: 14px;
}

/* Top Login
-----------------------------------------------------------------*/
/* line 1870, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-login {
  margin-bottom: 0;
}

/* line 1872, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-login .checkbox {
  margin-bottom: 10px;
}

/* line 1874, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-login .form-control {
  position: relative;
}

/* line 1876, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-login .form-control:focus {
  border-color: #CCC;
}

/* line 1878, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-login .input-group#top-login-username {
  margin-bottom: -1px;
}

/* line 1880, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-login #top-login-username input,
#top-login #top-login-username .input-group-addon {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 1886, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-login .input-group#top-login-password {
  margin-bottom: 10px;
}

/* line 1888, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-login #top-login-password input,
#top-login #top-login-password .input-group-addon {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* ----------------------------------------------------------------
  Header
-----------------------------------------------------------------*/
/* line 1900, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header {
  position: relative;
  background-color: #fafafa;
  border-bottom: 1px solid #F5F5F5;
}

/* line 1906, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header .container {
  position: relative;
}

/* line 1908, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header {
  background: rgba(255, 255, 255, 0);
  /* 0.6 avant*/
  border-bottom: none;
  z-index: 199;
}

/* line 1914, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.semi-transparent {
  background-color: rgba(255, 255, 255, 0.8);
}

/* line 1916, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header.floating-header {
  margin-top: 60px;
}

/* line 1918, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header.floating-header .container {
  width: 1220px;
  background-color: #fafafa;
  padding: 0 30px;
  border-radius: 2px;
}

/* line 1925, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header.floating-header.sticky-header .container {
  width: 1170px;
  padding: 0 15px;
}

/* line 1930, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header + #slider,
#header.transparent-header + #page-title.page-title-parallax,
#header.transparent-header + #google-map,
#slider + #header.transparent-header {
  top: -100px;
  margin-bottom: -100px;
}

/* line 1938, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header.floating-header + #slider,
#header.transparent-header.floating-header + #google-map {
  top: -160px;
  margin-bottom: -160px;
}

/* line 1944, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header + #page-title.page-title-parallax .container {
  z-index: 5;
  padding-top: 100px;
}

/* line 1949, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.full-header {
  border-bottom-color: #EEE;
}

/* line 1951, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.stretched #header.full-header .container {
  width: 100%;
  padding: 0 30px;
}

/* line 1956, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header.full-header #header-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 1958, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider + #header.transparent-header.full-header #header-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: none;
}

/* ----------------------------------------------------------------
  Logo
-----------------------------------------------------------------*/
/* line 1969, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#logo {
  position: relative;
  float: left;
  font-family: 'SofiaProRegular';
  font-size: 36px;
  line-height: 100%;
  margin-right: 40px;
}

/* line 1978, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.full-header #logo {
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #EEE;
}

/* line 1984, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header.full-header #logo {
  border-right-color: rgba(0, 0, 0, 0.1);
}

/* line 1986, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#logo a {
  display: block;
  color: #000;
}

/* line 1991, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#logo img {
  display: block;
  max-width: 100%;
}

/* line 1996, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#logo a.standard-logo {
  display: block;
}

/* line 1998, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#logo a.retina-logo {
  display: none;
}

/* ----------------------------------------------------------------
  Header Right Area
-----------------------------------------------------------------*/
/* line 2006, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.header-extras {
  float: right;
  margin: 30px 0 0;
}

/* line 2011, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.header-extras li {
  float: left;
  margin-left: 20px;
  height: 40px;
  overflow: hidden;
  list-style: none;
}

/* line 2019, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.header-extras li i {
  margin-top: 3px !important;
}

/* line 2021, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.header-extras li:first-child {
  margin-left: 0;
}

/* line 2023, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.header-extras li .he-text {
  float: left;
  padding-left: 10px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.43;
}

/* line 2031, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.header-extras li .he-text span {
  display: block;
  font-weight: 400;
  color: #4484CE;
}

/* ----------------------------------------------------------------
  Primary Menu
-----------------------------------------------------------------*/
/* line 2043, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu {
  float: right;
}

/* line 2045, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul.mobile-primary-menu {
  display: none;
}

/* line 2047, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.full-header #primary-menu > ul {
  float: left;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #EEE;
}

/* line 2054, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header.full-header #primary-menu > ul {
  border-right-color: rgba(0, 0, 0, 0.1);
}

/* line 2056, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu-trigger,
#page-submenu-trigger {
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  font-size: 14px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

/* line 2074, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul {
  list-style: none;
  margin: 0;
}

/* line 2079, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu > ul {
  float: left;
}

/* line 2081, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li {
  position: relative;
}

/* line 2083, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li.mega-menu {
  position: inherit;
}

/* line 2085, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul > li {
  float: left;
  margin-left: 2px;
}

/* line 2090, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu > ul > li:first-child {
  margin-left: 0;
}

/* line 2092, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li > a {
  display: block;
  line-height: 22px;
  padding: 39px 15px;
  color: #555555;
  font-weight: bold;
  font-size: 13px;
  /*letter-spacing: 1px;*/
  /*text-transform: uppercase;*/
  font-family: 'SofiaProRegular';
  -webkit-transition: margin .4s ease, padding .4s ease;
  -o-transition: margin .4s ease, padding .4s ease;
  transition: margin .4s ease, padding .4s ease;
}

/* line 2107, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li > a span {
  display: none;
}

/* line 2109, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li > a i {
  position: relative;
  top: -1px;
  font-size: 14px;
  width: 16px;
  text-align: center;
  margin-right: 6px;
  vertical-align: top;
}

/* line 2119, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li > a i.icon-angle-down:last-child {
  font-size: 12px;
  margin: 0 0 0 5px;
}

/* line 2124, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li:hover > a,
#primary-menu ul li.current > a {
  color: #16e29c !important;
}

/* line 2129, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.no-superfish #primary-menu li:hover > ul:not(.mega-menu-column),
body.no-superfish #primary-menu li:hover > .mega-menu-content {
  display: block;
}

/* line 2132, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul:not(.mega-menu-column),
#primary-menu ul li .mega-menu-content {
  display: none;
  position: absolute;
  width: 220px;
  background-color: #fafafa;
  box-shadow: 0px 13px 42px 11px rgba(0, 0, 0, 0.05);
  border: 1px solid #EEE;
  border-top: 2px solid #4484CE;
  height: auto;
  z-index: 199;
  top: 100%;
  left: 0;
  margin: 0;
}

/* line 2148, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul:not(.mega-menu-column) ul {
  top: -2px !important;
  left: 218px;
}

/* line 2153, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul.menu-pos-invert:not(.mega-menu-column),
#primary-menu ul li .mega-menu-content.menu-pos-invert {
  left: auto;
  right: 0;
}

/* line 2159, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul:not(.mega-menu-column) ul.menu-pos-invert {
  right: 218px;
}

/* line 2161, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul li {
  float: none;
  margin: 0;
}

/* line 2166, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul li:first-child {
  border-top: 0;
}

/* line 2168, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul li > a {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
  letter-spacing: 0;
  font-family: 'SofiaProRegular';
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2182, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul li > a i {
  vertical-align: middle;
}

/* line 2184, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul li:hover > a {
  background-color: #F9F9F9;
  padding-left: 18px;
  color: #4484CE;
}

/* line 2190, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul ul > li.sub-menu > a,
#primary-menu ul ul > li.sub-menu:hover > a {
  background-image: url("https://www.wehome.fr/assets/images/icons/submenu.png");
  background-position: right center;
  background-repeat: no-repeat;
}

/* ----------------------------------------------------------------
  Mega Menu
-----------------------------------------------------------------*/
/* line 2203, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content,
#primary-menu ul li.mega-menu-small .mega-menu-content {
  width: 720px;
  max-width: 400px;
}

/* line 2209, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li.mega-menu .mega-menu-content,
.floating-header.sticky-header #primary-menu ul li.mega-menu .mega-menu-content {
  margin: 0 15px;
  width: 1140px;
  max-width: none;
}

/* line 2216, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.floating-header #primary-menu ul li.mega-menu .mega-menu-content {
  margin: 0;
  width: 1220px;
}

/* line 2221, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.stretched .container-fullwidth #primary-menu ul li.mega-menu .mega-menu-content {
  margin: 0 60px;
}

/* line 2223, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.stretched #header.full-header #primary-menu ul li.mega-menu .mega-menu-content {
  margin: 0 30px;
}

/* line 2225, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li.mega-menu .mega-menu-content.style-2 {
  padding: 0 10px;
}

/* line 2227, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content ul {
  display: block;
  position: relative;
  top: 0;
  min-width: inherit;
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

/* line 2237, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content ul:not(.megamenu-dropdown) {
  display: block !important;
  opacity: 1 !important;
  top: 0;
  left: 0;
}

/* line 2244, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content ul.mega-menu-column {
  float: left;
  margin: 0;
}

/* line 2249, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content ul.mega-menu-column.col-5 {
  width: 20%;
}

/* line 2251, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content ul:not(.mega-menu-column) {
  width: 100%;
}

/* line 2253, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content ul.mega-menu-column:not(:first-child) {
  border-left: 1px solid #F2F2F2;
}

/* line 2255, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column {
  padding: 30px 20px;
}

/* line 2257, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title {
  margin-top: 20px;
}

/* line 2259, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title:first-child {
  margin-top: 0;
}

/* line 2261, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title > a {
  font-size: 13px;
  font-weight: bold;
  font-family: 'SofiaProRegular';
  letter-spacing: 1px;
  text-transform: uppercase !important;
  margin-bottom: 15px;
  color: #444;
  padding: 0 !important;
  line-height: 1.3 !important;
}

/* line 2273, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title:hover > a {
  background-color: transparent;
}

/* line 2275, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title > a:hover {
  color: #4484CE;
}

/* line 2277, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title.sub-menu > a,
#primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title.sub-menu:hover > a {
  background: none;
}

/* line 2280, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 li {
  border: 0;
}

/* line 2282, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul li > a {
  padding-left: 5px;
  padding-top: 7px;
  padding-bottom: 7px;
}

/* line 2288, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu ul li .mega-menu-content.style-2 ul li > a:hover {
  padding-left: 12px;
}

/* line 2291, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mega-menu-column .entry-meta {
  margin: 8px -10px 0 0 !important;
  border: none !important;
  padding: 0 !important;
}

/* line 2297, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mega-menu-column .entry-meta li {
  float: left !important;
  border: none !important;
  margin: 0 10px 0 0 !important;
}

/* Primary Menu - Style 2
-----------------------------------------------------------------*/
/* line 2308, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-2 {
  float: none;
  max-width: none;
  border-top: 1px solid #F5F5F5;
}

/* line 2314, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-2 > div > ul {
  float: left;
}

/* line 2316, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-2 > div > ul > li > a {
  padding-top: 19px;
  padding-bottom: 19px;
}

/* line 2321, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#logo + #primary-menu.style-2 {
  border-top: 0;
}

/* line 2323, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-2 > div #top-search,
#primary-menu.style-2 > div #top-cart,
#primary-menu.style-2 > div #side-panel-trigger {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 2330, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-sm):not(.device-xs):not(.device-xxs) #primary-menu.style-2.center > ul,
body:not(.device-sm):not(.device-xs):not(.device-xxs) #primary-menu.style-2.center > div {
  float: none;
  display: inline-block !important;
  width: auto;
  text-align: left;
}

/* Primary Menu - Style 3
-----------------------------------------------------------------*/
/* line 2342, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-3 > ul > li > a {
  margin: 28px 0;
  padding-top: 11px;
  padding-bottom: 11px;
  border-radius: 2px;
}

/* line 2349, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-3 > ul > li:hover > a {
  color: #444;
  background-color: #F5F5F5;
}

/* line 2354, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-3 > ul > li.current > a {
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
  background-color: #4484CE;
}

/* Primary Menu - Style 4
-----------------------------------------------------------------*/
/* line 2364, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-4 > ul > li > a {
  margin: 10px 0;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 2px;
  /*border: 1px solid transparent;*/
}

/* line 2372, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-4 > ul > li:hover > a,
#primary-menu.style-4 > ul > li.current > a {
  color: #F19F4D;
}

/* Primary Menu - Style 5
-----------------------------------------------------------------*/
/* line 2379, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-5 > ul {
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid #EEE;
}

/* line 2385, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-5 > ul > li:not(:first-child) {
  margin-left: 15px;
}

/* line 2387, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-5 > ul > li > a {
  padding-top: 25px;
  padding-bottom: 25px;
  line-height: 14px;
}

/* line 2393, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-5 > ul > li > a i {
  display: block;
  width: auto;
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1;
}

/* Primary Menu - Style 6
-----------------------------------------------------------------*/
/* line 2405, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-6 ul > li > a {
  position: relative;
}

/* line 2407, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-6 > ul > li > a:after,
#primary-menu.style-6 > ul > li.current > a:after,
#primary-menu.style-6 > div > ul > li > a:after,
#primary-menu.style-6 > div > ul > li.current > a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  border-top: 2px solid #4484CE;
  -webkit-transition: width .3s ease;
  -o-transition: width .3s ease;
  transition: width .3s ease;
}

/* line 2423, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.style-6 > ul > li.current > a:after,
#primary-menu.style-6 > ul > li:hover > a:after,
#primary-menu.style-6 > div > ul > li.current > a:after,
#primary-menu.style-6 > div > ul > li:hover > a:after {
  width: 100%;
}

/* Primary Menu - Sub Title
-----------------------------------------------------------------*/
/* line 2432, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title > ul > li,
#primary-menu.sub-title.style-2 > div > ul > li {
  background: url("https://www.wehome.fr/assets/images/icons/menu-divider.png") no-repeat right center;
  margin-left: 1px;
}

/* line 2438, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title ul li:first-child {
  padding-left: 0;
  margin-left: 0;
}

/* line 2443, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title > ul > li > a,
#primary-menu.sub-title > div > ul > li > a {
  line-height: 14px;
  padding: 27px 20px 32px;
  /*text-transform: uppercase;*/
  border-top: 5px solid transparent;
}

/* line 2451, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title > ul > li > a span,
#primary-menu.sub-title > div > ul > li > a span {
  display: block;
  margin-top: 10px;
  line-height: 12px;
  font-size: 11px;
  font-weight: 400;
  color: #888;
  text-transform: capitalize;
}

/* line 2462, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title > ul > li:hover > a,
#primary-menu.sub-title > ul > li.current > a,
#primary-menu.sub-title > div > ul > li:hover > a,
#primary-menu.sub-title > div > ul > li.current > a {
  background-color: #4484CE;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
  border-top-color: rgba(0, 0, 0, 0.1);
}

/* line 2472, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title > ul > li:hover > a span,
#primary-menu.sub-title > ul > li.current > a span,
#primary-menu.sub-title.style-2 > div > ul > li:hover > a span,
#primary-menu.sub-title.style-2 > div > ul > li.current > a span {
  color: #EEE;
}

/* line 2477, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title.style-2 ul ul span {
  display: none;
}

/* Primary Menu - Style 2 with Sub Title
-----------------------------------------------------------------*/
/* line 2483, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title.style-2 > div > ul > li {
  background-position: left center;
}

/* line 2485, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title.style-2 > div #top-search,
#primary-menu.sub-title.style-2 > div #top-cart,
#primary-menu.sub-title.style-2 > div #side-panel-trigger {
  float: right;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* line 2493, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title.style-2 div ul li:first-child,
#primary-menu.sub-title.style-2 > div > ul > li:hover + li,
#primary-menu.sub-title.style-2 > div > ul > li.current + li {
  background-image: none;
}

/* line 2497, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu.sub-title.style-2 > div > ul > li > a {
  padding-top: 17px;
  padding-bottom: 22px;
}

/* Primary Menu - Split Menu
-----------------------------------------------------------------*/
@media (min-width: 992px) {
  /* line 2508, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  #header.split-menu #logo {
    position: absolute;
    width: 100%;
    text-align: center;
    margin: 0;
    float: none;
    height: 100px;
  }

  /* line 2517, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  #header.split-menu #logo a.standard-logo {
    display: inline-block;
  }
}
/* line 2521, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.split-menu #primary-menu {
  float: none;
  margin: 0;
}

/* line 2526, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.split-menu #primary-menu > ul {
  z-index: 199;
}

/* line 2528, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.split-menu #primary-menu > ul:first-child {
  float: left;
}

/* line 2530, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.split-menu #primary-menu > ul:last-child {
  float: right;
}

/* Primary Menu - Overlay Menu
-----------------------------------------------------------------*/
@media (min-width: 992px) {
  /* line 2539, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu:not(.top-search-open) #primary-menu-trigger {
    opacity: 1;
    pointer-events: auto;
    left: auto;
    right: 75px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-top: -10px;
  }

  /* line 2550, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu:not(.top-search-open) .full-header #primary-menu-trigger {
    right: 90px;
  }

  /* line 2552, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu #primary-menu > #overlay-menu-close {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 25px;
    left: auto;
    right: 25px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 24px;
    text-align: center;
    color: #444;
    z-index: 300;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    -o-transform: translateY(-80px);
    transform: translateY(-80px);
    -webkit-transition: opacity .4s ease, transform .45s .15s ease;
    -o-transition: opacity .4s ease, transform .45s .15s ease;
    transition: opacity .4s ease, transform .45s .15s ease;
  }

  /* line 2575, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu #primary-menu > ul {
    opacity: 0 !important;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100% !important;
    z-index: 299;
    background: rgba(255, 255, 255, 0.95);
    -webkit-transition: opacity .7s ease;
    -o-transition: opacity .7s ease;
    transition: opacity .7s ease;
  }

  /* line 2590, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu #primary-menu > ul.show {
    opacity: 1 !important;
    display: inherit !important;
    pointer-events: auto;
  }

  /* line 2596, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu #primary-menu > ul.show ~ #overlay-menu-close {
    opacity: 1;
    -webkit-transition: opacity .7s .4s ease, transform .45s .15s ease;
    -o-transition: opacity .7s .4s ease, transform .45s .15s ease;
    transition: opacity .7s .4s ease, transform .45s .15s ease;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
  }

  /* line 2608, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu #primary-menu > ul > li {
    float: none;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }

  /* line 2615, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu #primary-menu > ul > li > a {
    font-size: 24px;
    padding-top: 19px;
    padding-bottom: 19px;
    letter-spacing: 2px;
    text-transform: none;
    opacity: 0;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    -o-transform: translateY(-80px);
    transform: translateY(-80px);
    -webkit-transition: opacity .7s .15s ease, transform .45s .15s ease, color .2s linear;
    -o-transition: opacity .7s .15s ease, transform .45s .15s ease, color .2s linear;
    transition: opacity .7s .15s ease, transform .45s .15s ease, color .2s linear;
  }

  /* line 2631, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .overlay-menu #primary-menu > ul.show > li > a {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
/* ----------------------------------------------------------------
  Top Search
-----------------------------------------------------------------*/
/* line 2647, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search,
#top-cart,
#side-panel-trigger,
#top-account {
  float: right;
  margin: 40px 0 40px 15px;
}

/* line 2655, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-cart {
  position: relative;
}

/* line 2657, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search a,
#top-cart a,
#side-panel-trigger a,
#top-account a {
  display: block;
  position: relative;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #333;
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

/* line 2674, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search a {
  z-index: 11;
}

/* line 2676, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search a i {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

/* line 2685, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.top-search-open #top-search a i.icon-search3,
#top-search a i.icon-line-cross {
  opacity: 0;
}

/* line 2688, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.top-search-open #top-search a i.icon-line-cross {
  opacity: 1;
  z-index: 11;
  font-size: 16px;
}

/* line 2694, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-cart a:hover {
  color: #4484CE;
}

/* line 2696, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search form {
  opacity: 0;
  z-index: -2;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  padding: 0 15px;
  margin: 0;
  top: 0;
  left: 0;
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

/* line 2711, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.top-search-open #top-search form {
  opacity: 1;
  z-index: 10;
}

/* line 2716, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search form input {
  box-shadow: none !important;
  pointer-events: none;
  border-radius: 0;
  border: 0;
  outline: 0 !important;
  font-size: 32px;
  padding: 10px 80px 10px 0;
  height: 100%;
  background-color: transparent;
  color: #333;
  font-weight: 700;
  margin-top: 0 !important;
  font-family: 'SofiaProRegular';
  letter-spacing: 2px;
}

/* line 2733, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-sm):not(.device-xs):not(.device-xxs) #header.full-header #top-search form input {
  padding-left: 40px;
}

/* line 2735, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-sm):not(.device-xs):not(.device-xxs) .container-fullwidth #top-search form input {
  padding-left: 60px;
}

/* line 2737, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.top-search-open #top-search form input {
  pointer-events: auto;
}

/* line 2739, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-sm):not(.device-xs):not(.device-xxs) #header.transparent-header:not(.sticky-header):not(.full-header):not(.floating-header) #top-search form input {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* line 2741, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search form input::-moz-placeholder {
  color: #555;
  opacity: 1;
  /*text-transform: uppercase;*/
}

/* line 2746, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search form input:-ms-input-placeholder {
  color: #555;
  /*text-transform: uppercase;*/
}

/* line 2750, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search form input::-webkit-input-placeholder {
  color: #555;
  /*text-transform: uppercase;*/
}

/* line 2755, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu .container #top-search form input,
.sticky-header #top-search form input {
  border: none !important;
}

/* ----------------------------------------------------------------
  Top Cart
-----------------------------------------------------------------*/
/* line 2764, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-cart {
  margin-right: 0;
}

/* line 2766, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-cart > a > span {
  display: block;
  position: absolute;
  top: -7px;
  left: auto;
  right: -14px;
  font-size: 10px;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background-color: #4484CE;
  border-radius: 50%;
}

/* line 2783, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-cart .top-cart-content {
  opacity: 0;
  z-index: -2;
  position: absolute;
  width: 280px;
  background-color: #fafafa;
  box-shadow: 0px 20px 50px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #EEE;
  border-top: 2px solid #4484CE;
  top: 60px;
  right: -15px;
  left: auto;
  margin: -10000px 0 0;
  -webkit-transition: opacity .5s ease, top .4s ease;
  -o-transition: opacity .5s ease, top .4s ease;
  transition: opacity .5s ease, top .4s ease;
}

/* line 2801, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-2 .container #top-cart .top-cart-content {
  top: 40px;
}

/* line 2803, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-2.sub-title .container #top-cart .top-cart-content {
  top: 50px;
}

/* line 2805, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-cart.top-cart-open .top-cart-content {
  opacity: 1;
  z-index: 11;
  margin-top: 0;
}

/* line 2811, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-title {
  padding: 12px 15px;
  border-bottom: 1px solid #EEE;
}

/* line 2816, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-title h4 {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: bold;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
}

/* line 2824, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-items {
  padding: 15px;
}

/* line 2826, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #F5F5F5;
}

/* line 2832, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

/* line 2838, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item-image {
  float: left;
  margin-right: 15px;
  width: 48px !important;
  height: 48px !important;
  border: 2px solid #EEE;
  -webkit-transition: border-color .2s linear;
  -o-transition: border-color .2s linear;
  transition: border-color .2s linear;
}

/* line 2849, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item-image a,
.top-cart-item-image img {
  display: block;
  width: 44px !important;
  height: 44px !important;
}

/* line 2856, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item-image:hover {
  border-color: #4484CE;
}

/* line 2858, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item-desc {
  position: relative;
  overflow: hidden;
}

/* line 2863, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item-desc a {
  text-align: left !important;
  font-size: 13px !important;
  width: auto !important;
  height: auto !important;
  font-weight: 600;
}

/* line 2871, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item-desc a:hover {
  color: #4484CE !important;
}

/* line 2873, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item-desc span.top-cart-item-price {
  display: block;
  line-height: 20px;
  font-size: 12px !important;
  color: #999;
}

/* line 2880, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-item-desc span.top-cart-item-quantity {
  display: block;
  position: absolute;
  font-size: 12px !important;
  right: 0;
  top: 2px;
  color: #444;
}

/* line 2889, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-action {
  padding: 15px;
  border-top: 1px solid #EEE;
}

/* line 2894, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-cart-action span.top-checkout-price {
  font-size: 20px;
  color: #4484CE;
}

/* ----------------------------------------------------------------
  Top Account
-----------------------------------------------------------------*/
/* line 2905, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-account {
  margin: 32px 0 33px 20px;
}

/* line 2907, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-account a {
  width: auto;
  height: auto;
}

/* line 2912, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-account a span {
  margin-left: 5px;
  font-weight: 600;
}

/* line 2917, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-account a i.icon-angle-down {
  margin-left: 5px;
  font-size: 12px;
}

/* line 2922, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-account .dropdown-menu {
  padding: 10px 0;
}

/* line 2924, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-account .dropdown-menu li a {
  font-family: 'SofiaProRegular';
  font-weight: 400;
  text-align: left;
  line-height: 22px;
}

/* line 2931, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-account .dropdown-menu li a .badge {
  display: block;
  float: right;
  margin: 2px 0 0 0;
}

/* line 2937, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-account .dropdown-menu li a i:last-child {
  position: relative;
  top: 1px;
  margin-left: 5px;
}

/* ----------------------------------------------------------------
  Sticky Header
-----------------------------------------------------------------*/
/* line 2948, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header,
#header-wrap,
#logo img {
  height: 60px;
  -webkit-transition: height .4s ease, opacity .3s ease;
  -o-transition: height .4s ease, opacity .3s ease;
  transition: height .4s ease, opacity .3s ease;
}

/* line 2957, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-style-2 {
  height: 161px;
}

/* line 2959, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-style-3 {
  height: 181px;
}

/* line 2961, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-style-2 #header-wrap {
  height: 60px;
}

/* line 2963, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-style-3 #header-wrap {
  height: 80px;
}

/* line 2965, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#primary-menu > ul > li > ul,
#primary-menu > ul > li > .mega-menu-content,
#primary-menu > ul > li.mega-menu > .mega-menu-content {
  -webkit-transition: top .4s ease;
  -o-transition: top .4s ease;
  transition: top .4s ease;
}

/* line 2973, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#top-search,
#top-cart {
  -webkit-transition: margin .4s ease, opacity .3s ease;
  -o-transition: margin .4s ease, opacity .3s ease;
  transition: margin .4s ease, opacity .3s ease;
}

/* line 2980, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.top-search-open) #header-wrap #logo,
body:not(.top-search-open) #primary-menu > ul,
body:not(.top-search-open) #primary-menu > .container > ul,
body:not(.top-search-open) #top-cart,
body:not(.top-search-open) #side-panel-trigger,
body:not(.top-search-open) #top-account {
  opacity: 1;
  -webkit-transition: height .4s ease, margin .4s ease, opacity .2s .2s ease;
  -o-transition: height .4s ease, margin .4s ease, opacity .2s .2s ease;
  transition: height .4s ease, margin .4s ease, opacity .2s .2s ease;
}

/* line 2992, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.top-search-open #header-wrap #logo,
body.top-search-open #primary-menu > ul,
body.top-search-open #primary-menu > .container > ul,
body.top-search-open #top-cart,
body.top-search-open #side-panel-trigger,
body.top-search-open #top-account {
  opacity: 0;
}

/* line 2999, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header.semi-transparent {
  background-color: transparent;
}

/* line 3001, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header-wrap {
  position: relative;
  z-index: 199;
  -webkit-backface-visibility: hidden;
}

/* line 3007, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header #header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fafafa;
  border-bottom: 1px solid #F5F5F5;
}

/* line 3016, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.semi-transparent.sticky-header #header-wrap {
  background-color: rgba(255, 255, 255, 0.8);
}

/* line 3018, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky),
#header.sticky-header:not(.static-sticky) #header-wrap,
#header.sticky-header:not(.static-sticky):not(.sticky-style-2):not(.sticky-style-3) #logo img {
  height: 60px;
}

/* line 3022, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu > ul > li > a {
  padding-top: 19px;
  padding-bottom: 19px;
}

/* line 3027, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky).sticky-style-2,
#header.sticky-header:not(.static-sticky).sticky-style-3 {
  height: 161px;
}

/* line 3030, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky).sticky-style-2 #primary-menu,
#header.sticky-header:not(.static-sticky).sticky-style-3 #primary-menu {
  border-top: 0;
}

/* line 3033, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #top-search,
#header.sticky-header:not(.static-sticky) #top-cart,
#header.sticky-header:not(.static-sticky) #side-panel-trigger {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

/* line 3040, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #top-account {
  margin-top: 12px !important;
  margin-bottom: 13px !important;
}

/* line 3045, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #top-cart .top-cart-content {
  top: 40px;
}

/* line 3047, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header.sticky-style-2 #primary-menu {
  border-top: 0;
}

/* Primary Menu - Style 3
-----------------------------------------------------------------*/
/* line 3052, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.style-3 > ul > li > a {
  margin: 0;
  border-radius: 0;
}

/* Primary Menu - Style 4
-----------------------------------------------------------------*/
/* line 3060, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.style-4 > ul > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin: 10px 0;
}

/* Primary Menu - Style 5
-----------------------------------------------------------------*/
/* line 3069, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li {
  margin-left: 2px;
}

/* line 3071, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li:first-child {
  margin-left: 0;
}

/* line 3073, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li > a {
  line-height: 22px;
  padding-top: 19px;
  padding-bottom: 19px;
}

/* line 3079, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li > a > div {
  padding: 0;
}

/* line 3081, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li > a i {
  display: inline-block;
  width: 16px;
  top: -1px;
  margin: 0 6px 0 0;
  font-size: 14px;
  line-height: 22px;
}

/* Primary Menu - Sub Title
-----------------------------------------------------------------*/
/* line 3093, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.sub-title > ul > li,
#header.sticky-header:not(.static-sticky) #primary-menu.sub-title.style-2 > div > ul > li {
  background: none !important;
  margin-left: 2px;
}

/* line 3099, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.sub-title > ul > li:first-child,
#header.sticky-header:not(.static-sticky) #primary-menu.sub-title.style-2 > div > ul > li:first-child {
  margin-left: 0;
}

/* line 3102, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.sub-title > ul > li > a,
#header.sticky-header:not(.static-sticky) #primary-menu.sub-title > div > ul > li > a {
  line-height: 22px;
  padding: 19px 15px;
  text-transform: none;
  font-size: 14px;
  border-top: 0;
}

/* line 3111, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header:not(.static-sticky) #primary-menu.sub-title ul li span {
  display: none;
}

/* ----------------------------------------------------------------
  Page Menu
-----------------------------------------------------------------*/
/* line 3118, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu,
#page-menu-wrap {
  position: relative;
  height: 44px;
  line-height: 44px;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.1);*/
}

/* line 3126, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu-wrap {
  z-index: 99;
  background-color: #4484CE;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
}

/* line 3136, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.sticky-page-menu #page-menu-wrap {
  position: fixed;
  z-index: 99;
  left: 0;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* line 3144, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.static-sticky ~ #page-menu.sticky-page-menu #page-menu-wrap,
#header.static-sticky ~ #content #page-menu.sticky-page-menu #page-menu-wrap {
  top: 100px;
}

/* line 3147, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header ~ #page-menu.sticky-page-menu #page-menu-wrap,
#header.no-sticky ~ #page-menu.sticky-page-menu #page-menu-wrap,
#header ~ #content #page-menu.sticky-page-menu #page-menu-wrap,
#header.no-sticky ~ #content #page-menu.sticky-page-menu #page-menu-wrap {
  top: 0;
}

/* line 3152, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.sticky-header ~ #page-menu.sticky-page-menu #page-menu-wrap,
#header.sticky-header ~ #content #page-menu.sticky-page-menu #page-menu-wrap {
  top: 60px;
}

/* line 3155, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-submenu-trigger {
  top: 0;
  margin-top: 0;
  left: auto;
  right: 15px;
  width: 40px;
  height: 44px;
  line-height: 44px;
}

/* line 3165, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu .menu-title {
  float: left;
  color: #FFF;
  font-size: 20px;
  font-weight: 300;
}

/* line 3172, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu .menu-title span {
  font-weight: 600;
}

/* line 3174, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu nav {
  position: relative;
  float: right;
}

/* line 3179, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu nav ul {
  margin-bottom: 0;
  height: 44px;
}

/* line 3184, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu nav li {
  position: relative;
  float: left;
  list-style: none;
}

/* line 3190, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu nav li a {
  display: block;
  height: 28px;
  line-height: 28px;
  margin: 8px 4px;
  padding: 0 14px;
  color: #FFF;
  font-size: 14px;
  border-radius: 14px;
}

/* line 3201, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu nav li a .icon-angle-down {
  margin-left: 5px;
}

/* line 3203, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) #page-menu nav li a {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 3209, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu nav li:hover a,
#page-menu nav li.current a {
  background-color: rgba(0, 0, 0, 0.15);
}

/* line 3212, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu li:hover ul {
  display: block;
}

/* line 3214, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu ul ul {
  display: none;
  position: absolute;
  width: 150px;
  top: 44px;
  left: 0;
  z-index: 149;
  height: auto;
  background-color: #4484CE;
}

/* line 3225, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu ul ul ul {
  display: none !important;
}

/* Disable Multi-Level Links */
/* line 3227, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu ul ul li {
  float: none;
}

/* line 3229, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu ul ul a {
  height: auto;
  line-height: 22px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

/* line 3238, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu ul ul li:hover a,
#page-menu ul ul li.current a {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Page Menu - Dots Style */
/* line 3244, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu,
#page-menu.dots-menu #page-menu-wrap {
  position: fixed;
  z-index: 99;
  top: 50%;
  left: auto;
  right: 20px;
  width: 24px;
  height: auto;
  line-height: 1.5;
  background-color: transparent;
  text-shadow: none;
}

/* line 3258, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu #page-menu-wrap {
  position: relative;
  box-shadow: none;
}

/* line 3263, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu .menu-title {
  display: none;
}

/* line 3265, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav {
  float: none;
  width: 24px;
}

/* line 3270, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav ul {
  height: auto;
}

/* line 3272, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav ul li {
  float: none;
  width: 14px;
  height: 14px;
  margin: 10px 6px;
}

/* line 3279, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav li a {
  position: relative;
  width: 10px;
  height: 10px;
  line-height: 1.5;
  padding: 0;
  margin: 0 2px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  color: #777;
}

/* line 3291, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav li a:hover {
  background-color: #4484CE;
}

/* line 3293, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav li.current a {
  background-color: #4484CE;
}

/* line 3295, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav li .dots-menu-caption {
  position: absolute;
  width: auto;
  top: -11px;
  right: 25px;
  background-color: #4484CE;
  color: #FFF;
  padding: 5px 14px;
  white-space: nowrap;
  pointer-events: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  opacity: 0;
}

/* line 3310, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) #page-menu.dots-menu nav li .dots-menu-caption {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 3316, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav li .dots-menu-caption:after {
  position: absolute;
  content: '';
  top: 50%;
  margin-top: -6px;
  left: auto;
  right: -5px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 6px solid #4484CE;
}

/* line 3330, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-menu.dots-menu nav li a:hover + .dots-menu-caption {
  opacity: 1;
  right: 30px;
}

/* Page Menu - Dots Style */
/* ----------------------------------------------------------------
  One Page
-----------------------------------------------------------------*/
/* line 3342, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.one-page-arrow {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  margin-left: -16px;
  width: 32px;
  height: 32px;
  font-size: 32px;
  text-align: center;
  color: #222;
}

/* ----------------------------------------------------------------
  Side Header
-----------------------------------------------------------------*/
@media (min-width: 992px) {
  /* line 3363, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 260px;
    height: 100%;
    height: calc(100vh);
    background-color: #fafafa;
    border: none;
    border-right: 1px solid #EEE;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.065);
  }

  /* line 3378, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #header-wrap {
    width: 300px;
    height: 100%;
    overflow: auto;
    padding-right: 40px;
  }

  /* line 3385, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #header .container {
    width: 260px !important;
    padding: 0 30px !important;
    margin: 0 !important;
  }

  /* line 3391, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #logo {
    float: none;
    margin: 60px 0 40px;
  }

  /* line 3396, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #logo img {
    height: auto !important;
  }

  /* line 3398, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #logo:not(.nobottomborder):after,
  .side-header #primary-menu:not(.nobottomborder):after {
    display: block;
    content: '';
    width: 20%;
    border-bottom: 1px solid #E5E5E5;
  }

  /* line 3406, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header .center #logo:after {
    margin: 0 auto;
  }

  /* line 3408, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu {
    margin-bottom: 30px;
  }

  /* line 3410, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu:not(.nobottomborder):after {
    margin-top: 40px;
  }

  /* line 3412, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu,
  .side-header #primary-menu ul {
    float: none;
    height: auto;
  }

  /* line 3418, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul li {
    float: none;
    margin: 15px 0 0;
  }

  /* line 3423, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul li:first-child {
    margin-top: 0;
  }

  /* line 3425, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul li a {
    height: 25px;
    line-height: 25px;
    padding: 0;
    /*text-transform: uppercase;*/
  }

  /* line 3432, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul li i {
    line-height: 24px;
  }

  /* line 3434, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul ul {
    position: relative;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    border: none;
    height: auto;
    z-index: 1;
    top: 0;
    left: 0;
    margin: 5px 0;
    padding-left: 12px;
  }

  /* line 3448, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul ul ul {
    top: 0 !important;
    left: 0;
  }

  /* line 3453, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul ul.menu-pos-invert {
    left: 0;
    right: auto;
  }

  /* line 3458, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul ul ul.menu-pos-invert {
    right: auto;
  }

  /* line 3460, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul ul li {
    margin: 0;
    border: 0;
  }

  /* line 3465, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul ul li:first-child {
    border-top: 0;
  }

  /* line 3467, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul ul a {
    font-size: 12px;
    height: auto !important;
    line-height: 24px !important;
    padding: 2px 0 !important;
  }

  /* line 3474, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul ul li:hover > a {
    background-color: transparent !important;
    color: #444 !important;
  }

  /* line 3479, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul > li.sub-menu > a,
  .side-header #primary-menu ul > li.sub-menu:hover > a {
    background-image: none !important;
  }

  /* line 3482, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul > li.sub-menu > a:after {
    position: absolute;
    content: '\e7a5';
    top: 1px;
    right: 0;
    -webkit-transition: transform .2s linear;
    -o-transition: transform .2s linear;
    transition: transform .2s linear;
  }

  /* line 3492, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header #primary-menu ul > li.sub-menu:hover > a:after {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  /* line 3501, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header:not(.open-header) #wrapper {
    margin: 0 0 0 260px !important;
    width: auto !important;
  }

  /* line 3506, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header:not(.open-header) #wrapper .container {
    width: auto;
    margin: 0 40px;
  }

  /* Side Header - Push Header
  -----------------------------------------------------------------*/
  /* line 3515, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header.push-wrapper {
    overflow-x: hidden;
  }

  /* line 3517, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header #header {
    left: -260px;
  }

  /* line 3519, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header.side-header-open #header {
    left: 0;
  }

  /* line 3521, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header #wrapper {
    left: 0;
  }

  /* line 3523, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header.push-wrapper.side-header-open #wrapper {
    left: 260px;
  }

  /* line 3525, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  #header-trigger {
    display: none;
  }

  /* line 3527, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header #header-trigger {
    display: block;
    position: fixed;
    cursor: pointer;
    top: 20px;
    left: 20px;
    z-index: 11;
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: #fafafa;
    text-align: center;
    border-radius: 2px;
  }

  /* line 3543, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header.side-header-open #header-trigger {
    left: 280px;
  }

  /* line 3545, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header #header-trigger i:nth-child(1),
  .side-header.open-header.side-header-open #header-trigger i:nth-child(2) {
    display: block;
  }

  /* line 3548, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header.side-header-open #header-trigger i:nth-child(1),
  .side-header.open-header #header-trigger i:nth-child(2) {
    display: none;
  }

  /* line 3552, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.open-header #header,
  .side-header.open-header #header-trigger,
  .side-header.open-header.push-wrapper #wrapper {
    -webkit-transition: left .4s ease;
    -o-transition: left .4s ease;
    transition: left .4s ease;
  }

  /* Side Header - Right Aligned
  -----------------------------------------------------------------*/
  /* line 3564, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.side-header-right #header {
    left: auto;
    right: 0;
    border: none;
    border-left: 1px solid #EEE;
  }

  /* line 3571, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.side-header-right:not(.open-header) #wrapper {
    margin: 0 260px 0 0 !important;
  }

  /* line 3573, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.side-header-right.open-header #header {
    left: auto;
    right: -260px;
  }

  /* line 3578, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.side-header-right.open-header.side-header-open #header {
    left: auto;
    right: 0;
  }

  /* line 3583, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.side-header-right.open-header.push-wrapper.side-header-open #wrapper {
    left: -260px;
  }

  /* line 3585, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.side-header-right.open-header #header-trigger {
    left: auto;
    right: 20px;
  }

  /* line 3590, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.side-header-right.open-header.side-header-open #header-trigger {
    left: auto;
    right: 280px;
  }

  /* line 3595, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  .side-header.side-header-right.open-header #header,
  .side-header.side-header-right.open-header #header-trigger {
    -webkit-transition: right .4s ease;
    -o-transition: right .4s ease;
    transition: right .4s ease;
  }
}
/* ----------------------------------------------------------------
  Side Push Panel
-----------------------------------------------------------------*/
/* line 3610, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-push-panel {
  overflow-x: hidden;
}

/* line 3612, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#side-panel {
  position: fixed;
  top: 0;
  right: -300px;
  z-index: 399;
  width: 300px;
  height: 100%;
  background-color: #F5F5F5;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
}

/* line 3624, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-panel-left #side-panel {
  left: -300px;
  right: auto;
}

/* line 3629, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-push-panel.stretched #wrapper,
body.side-push-panel.stretched #header.sticky-header .container {
  right: 0;
}

/* line 3632, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-panel-left.side-push-panel.stretched #wrapper,
body.side-panel-left.side-push-panel.stretched #header.sticky-header .container {
  left: 0;
  right: auto;
}

/* line 3638, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#side-panel .side-panel-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 330px;
  height: 100%;
  overflow: auto;
  padding: 50px 70px 50px 40px;
}

/* line 3649, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.device-touch #side-panel .side-panel-wrap {
  overflow-y: scroll;
}

/* line 3651, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#side-panel .widget {
  margin-top: 40px;
  padding-top: 40px;
  width: 220px;
  border-top: 1px solid #E5E5E5;
}

/* line 3658, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#side-panel .widget:first-child {
  padding-top: 0;
  border-top: 0;
  margin: 0;
}

/* line 3664, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-panel-open #side-panel {
  right: 0;
}

/* line 3666, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-panel-left.side-panel-open #side-panel {
  left: 0;
  right: auto;
}

/* line 3671, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-push-panel.side-panel-open.stretched #wrapper,
body.side-push-panel.side-panel-open.stretched #header.sticky-header .container {
  right: 300px;
}

/* line 3674, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-push-panel.side-panel-open.stretched .slider-parallax-inner {
  left: -300px;
}

/* line 3676, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-panel-left.side-push-panel.side-panel-open.stretched #wrapper,
body.side-panel-left.side-push-panel.side-panel-open.stretched #header.sticky-header .container,
body.side-panel-left.side-push-panel.side-panel-open.stretched .slider-parallax-inner {
  left: 300px;
  right: auto;
}

/* line 3683, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#side-panel-trigger {
  display: block;
  cursor: pointer;
  z-index: 11;
  margin-right: 5px;
}

/* line 3690, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#side-panel-trigger-close a {
  display: none;
}

/* line 3692, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#side-panel,
body.side-push-panel.stretched #wrapper,
body.side-push-panel.stretched #header .container {
  -webkit-transition: right .4s ease;
  -o-transition: right .4s ease;
  transition: right .4s ease;
}

/* line 3700, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-panel-left #side-panel,
body.side-panel-left.side-push-panel.stretched #wrapper,
body.side-panel-left.side-push-panel.stretched #header .container,
body.side-push-panel.stretched .slider-parallax-inner {
  -webkit-transition: left .4s ease;
  -o-transition: left .4s ease;
  transition: left .4s ease;
}

/* line 3709, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.body-overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

/* line 3725, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-panel-open .body-overlay {
  opacity: 1;
  z-index: 298;
  pointer-events: auto;
}

/* line 3731, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.side-panel-open:not(.device-xxs):not(.device-xs):not(.device-sm) .body-overlay:hover {
  cursor: url("https://www.wehome.fr/assets/images/icons/close.png") 15 15, default;
}

/* ----------------------------------------------------------------
  Slider
-----------------------------------------------------------------*/
/* line 3739, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 3745, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-parallax {
  position: relative;
}

/* line 3747, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-parallax,
.slider-parallax .swiper-container {
  visibility: visible;
  -webkit-backface-visibility: hidden;
}

/* line 3753, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-parallax .slider-parallax-inner {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* line 3759, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.device-touch .slider-parallax .slider-parallax-inner {
  position: relative;
}

/* line 3761, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.side-header) .slider-parallax .slider-parallax-inner {
  left: 0;
}

/* line 3763, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.stretched) .slider-parallax .slider-parallax-inner {
  left: auto;
}

/* line 3765, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header + .slider-parallax .slider-parallax-inner {
  top: 0;
}

/* line 3767, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-parallax .slider-parallax-inner,
.slider-parallax .slider-caption,
.slider-parallax .ei-title {
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: transform 0s linear;
  -webkit-backface-visibility: hidden;
}

/* Boxed Slider
-----------------------------------------------------------------*/
/* line 3780, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.boxed-slider {
  padding-top: 40px;
}

/* Flex Slider - Thumbs
-----------------------------------------------------------------*/
/* line 3786, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider[data-animation="fade"][data-thumbs="true"] .flexslider,
.fslider.testimonial[data-animation="fade"] .flexslider {
  height: auto !important;
}

/* line 3789, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav.flex-control-thumbs {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: 2px -2px -2px 0;
  height: 75px;
}

/* line 3798, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav.flex-control-thumbs li {
  margin: 0 2px 2px 0;
}

/* line 3800, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav.flex-control-thumbs li img {
  cursor: pointer;
  text-indent: -9999px;
  border: 0;
  border-radius: 0;
  margin: 0;
  opacity: 0.5;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* line 3812, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav.flex-control-thumbs li,
.flex-control-nav.flex-control-thumbs li img {
  display: block;
  width: 100px !important;
  height: auto !important;
}

/* line 3819, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-control-nav.flex-control-thumbs li:hover img,
.flex-control-nav.flex-control-thumbs li img.flex-active {
  border-width: 0;
  opacity: 1;
}

/* Flex Thumbs - Flexible
-----------------------------------------------------------------*/
/* line 3829, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid .flex-control-nav.flex-control-thumbs {
  margin: 2px -2px -2px 0;
  height: auto;
}

/* line 3834, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid .flex-control-nav.flex-control-thumbs li {
  width: 25% !important;
  height: auto !important;
  margin: 0;
  padding: 0 2px 2px 0;
}

/* line 3841, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid.grid-3 .flex-control-nav.flex-control-thumbs li {
  width: 33.30% !important;
}

/* line 3842, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid.grid-5 .flex-control-nav.flex-control-thumbs li {
  width: 20% !important;
}

/* line 3843, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid.grid-6 .flex-control-nav.flex-control-thumbs li {
  width: 16.66% !important;
}

/* line 3844, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid.grid-8 .flex-control-nav.flex-control-thumbs li {
  width: 12.5% !important;
}

/* line 3845, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid.grid-10 .flex-control-nav.flex-control-thumbs li {
  width: 10% !important;
}

/* line 3846, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid.grid-12 .flex-control-nav.flex-control-thumbs li {
  width: 8.33% !important;
}

/* line 3848, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider.flex-thumb-grid .flex-control-nav.flex-control-thumbs li img {
  width: 100% !important;
  height: auto !important;
}

/* Swiper Slider
-----------------------------------------------------------------*/
/* line 3857, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.swiper_wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* line 3863, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.full-screen .swiper_wrapper {
  height: auto;
}

/* line 3865, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.swiper_wrapper .swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  background: url("https://www.wehome.fr/assets/images/pattern2.png") repeat;
}

/* line 3873, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.swiper_wrapper .swiper-slide {
  position: relative;
  margin: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

/* line 3882, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.swiper-slide [data-caption-animate] {
  -webkit-backface-visibility: hidden;
}

/* line 3884, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.swiper-slide .video-wrap,
.section .video-wrap,
.swiper-slide .yt-bg-player,
.section .yt-bg-player {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

/* line 3896, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .container {
  position: relative;
  height: 100%;
}

/* line 3901, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider.canvas-slider .swiper-slide img {
  width: 100%;
}

/* line 3903, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider.canvas-slider a {
  display: block;
  height: 100%;
}

/* line 3909, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.swiper-pagination {
  position: absolute;
  width: 100%;
  z-index: 20;
  margin: 0;
  top: auto;
  bottom: 20px !important;
  text-align: center;
  line-height: 1;
}

/* line 3920, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.swiper-pagination span {
  display: inline-block;
  cursor: pointer;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #FFF;
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* line 3935, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.swiper-pagination span:hover,
.swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #FFF !important;
}

/* Revolution Slider
-----------------------------------------------------------------*/
/* line 3942, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tp-banner .button {
  height: auto !important;
}

/* Video Overlay
-----------------------------------------------------------------*/
/* line 3948, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.video-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* line 3954, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.video-wrap video {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* line 3960, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.video-overlay,
.video-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background: transparent url("https://www.wehome.fr/assets/images/grid.png") repeat;
  -webkit-backface-visibility: hidden;
}

/* line 3972, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.video-placeholder {
  z-index: 4;
  background-repeat: no-repeat !important;
}

/* Slider Caption
-----------------------------------------------------------------*/
/* line 3981, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption,
.nivo-caption,
.flex-caption {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 20;
  max-width: 550px;
  color: #EEE;
  font-size: 22px;
  font-weight: 300;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  -webkit-transition: top .3s ease;
  -o-transition: top .3s ease;
  transition: top .3s ease;
}

/* line 3998, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption:not(.dark),
.slider-caption:not(.dark) h2 {
  color: #222;
  text-shadow: none;
}

/* line 4004, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption h2 {
  font-size: 64px;
  letter-spacing: 2px;
  /*text-transform: uppercase;*/
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}

/* line 4013, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption p {
  margin-bottom: 10px;
  font-size: 24px;
}

/* line 4018, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption.slider-caption-right {
  left: auto;
  right: 15px;
}

/* line 4023, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption.slider-caption-center {
  position: relative;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
}

/* line 4032, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption-bg {
  padding: 5px 12px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.6);
  top: auto;
  bottom: 50px;
  left: 50px;
}

/* line 4041, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption-bg.slider-caption-bg-light {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  font-weight: 400;
  text-shadow: none;
}

/* line 4048, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption-top-left {
  top: 50px;
  bottom: auto;
}

/* line 4053, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption-top-right {
  top: 50px;
  bottom: auto;
  left: auto;
  right: 50px;
}

/* line 4060, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-caption-bottom-right {
  left: auto;
  right: 50px;
}

/* Slider Arrows
-----------------------------------------------------------------*/
/* line 4069, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-carousel {
  margin: 0;
}

/* line 4071, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider-arrow-left,
#slider-arrow-right,
.camera_prev,
.camera_next,
#slider .owl-prev,
#slider .owl-next,
.flex-prev,
.flex-next,
.nivo-prevNav,
.nivo-nextNav,
.slider-arrow-top-sm,
.slider-arrow-bottom-sm {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  top: 50%;
  left: 0;
  margin-top: -26px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0 3px 3px 0;
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

/* line 4099, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-arrow-top-sm,
.slider-arrow-bottom-sm {
  top: auto;
  bottom: 57px;
  left: auto;
  right: 20px;
  margin: 0;
  width: 32px;
  height: 32px;
  border-radius: 3px 3px 0 0;
}

/* line 4111, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-arrow-bottom-sm {
  bottom: 20px;
  border-radius: 0 0 3px 3px;
}

/* line 4116, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fslider[data-thumbs="true"] .flex-prev,
.fslider[data-thumbs="true"] .flex-next {
  margin-top: -64px;
}

/* line 4119, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-prev,
#slider .owl-next {
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

/* line 4126, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider-arrow-right,
.camera_next,
#slider .owl-next,
.flex-next,
.nivo-nextNav {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* line 4136, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider-arrow-left i,
#slider-arrow-right i,
.camera_prev i,
.camera_next i,
#slider .owl-prev i,
#slider .owl-next i,
.flex-prev i,
.flex-next i,
.nivo-prevNav i,
.nivo-nextNav i,
.slider-arrow-top-sm i,
.slider-arrow-bottom-sm i {
  line-height: 50px;
  width: 34px;
  height: 52px;
  color: #DDD;
  color: rgba(255, 255, 255, 0.8);
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.1);*/
  font-size: 34px;
  text-align: center;
  margin-left: 7px;
}

/* line 4160, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.slider-arrow-top-sm i,
.slider-arrow-bottom-sm i {
  width: 32px;
  height: 32px;
  margin: 0;
  line-height: 30px;
  font-size: 18px;
  color: #FFF;
  color: white;
}

/* line 4171, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-prev i {
  margin-left: 9px;
}

/* line 4173, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-prev i {
  margin-left: 0;
}

/* line 4175, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider-arrow-right i,
.camera_next i,
.nivo-nextNav i {
  margin-left: 10px;
}

/* line 4179, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flex-next i {
  margin-left: 11px;
}

/* line 4181, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-next i {
  margin-right: 4px;
}

/* line 4183, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-nav {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/* line 4190, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-nav div,
#slider:hover .owl-nav {
  opacity: 1;
}

/* line 4193, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider-arrow-left:hover,
#slider-arrow-right:hover,
.camera_prev:hover,
.camera_next:hover,
#slider .owl-prev:hover,
#slider .owl-next:hover,
.flex-prev:hover,
.flex-next:hover,
.nivo-prevNav:hover,
.nivo-nextNav:hover,
.slider-arrow-top-sm:hover,
.slider-arrow-bottom-sm:hover {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

/* Slide Number
-----------------------------------------------------------------*/
/* line 4210, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slide-number {
  position: absolute;
  opacity: 0;
  top: auto;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  width: 36px;
  height: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  font-weight: 300;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

/* line 4229, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider:hover #slide-number {
  opacity: 1;
}

/* line 4231, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slide-number-current,
#slide-number-total {
  position: absolute;
  line-height: 1;
  top: 5px;
  left: 0;
}

/* line 4239, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slide-number-total {
  top: auto;
  bottom: 5px;
  left: auto;
  right: 0;
}

/* line 4246, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slide-number span {
  display: block;
  font-size: 32px;
  line-height: 40px;
}

/* Pagination
-----------------------------------------------------------------*/
/* line 4256, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-dots {
  position: absolute;
  width: 100%;
  z-index: 20;
  margin: 0;
  top: auto;
  bottom: 15px;
}

/* line 4265, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-dots span {
  width: 10px;
  height: 10px;
  margin: 0 3px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #FFF;
}

/* line 4274, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-dots .owl-dot.active span,
#slider .owl-dots .owl-dot:hover span {
  background-color: #FFF !important;
}

/* ----------------------------------------------------------------
  Page Title
-----------------------------------------------------------------*/
/* line 4283, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title {
  position: relative;
  padding: 50px 0;
  background-color: #F5F5F5;
  border-bottom: 1px solid #EEE;
}

/* line 4290, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title .container {
  position: relative;
}

/* line 4292, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title h1 {
  padding: 0;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  font-size: 28px;
  /*text-transform: uppercase;*/
}

/* line 4303, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title span {
  display: block;
  margin-top: 10px;
  font-weight: 300;
  color: #777;
  font-size: 18px;
}

/* line 4311, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.breadcrumb {
  position: absolute !important;
  width: auto !important;
  top: 50% !important;
  left: auto !important;
  right: 15px !important;
  margin: -10px 0 0 0 !important;
  background-color: transparent !important;
  padding: 0 !important;
  font-size: 12px;
}

/* line 4323, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.stretched .container-fullwidth .breadcrumb {
  right: 60px !important;
}

/* line 4325, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#header.transparent-header + #page-title.page-title-parallax .breadcrumb {
  margin-top: 35px !important;
}

/* line 4327, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.breadcrumb a {
  color: #555;
}

/* line 4329, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.breadcrumb a:hover {
  color: #4484CE;
}

/* line 4331, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.breadcrumb i {
  width: auto !important;
}

/* Page Title - Dark
-----------------------------------------------------------------*/
/* line 4336, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-dark {
  background-color: #333;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15) !important;
  border-bottom: none;
}

/* line 4342, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-dark h1 {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* line 4344, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-dark span {
  color: rgba(255, 255, 255, 0.7);
}

/* line 4346, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-dark .breadcrumb > .active {
  color: rgba(255, 255, 255, 0.6);
}

/* line 4348, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-dark .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

/* line 4350, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-dark .breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* Page Title - Right Aligned
-----------------------------------------------------------------*/
/* line 4355, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-right {
  text-align: right;
}

/* line 4357, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-right .breadcrumb {
  left: 15px !important;
  right: auto !important;
}

/* Page Title - Center Aligned
-----------------------------------------------------------------*/
/* line 4365, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-center {
  text-align: center;
}

/* line 4367, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-center span {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* line 4373, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-center .breadcrumb {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: 20px 0 0 !important;
}

/* Page Title - Background Pattern
-----------------------------------------------------------------*/
/* line 4384, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-pattern {
  background-image: url("https://www.wehome.fr/assets/images/pattern.png");
  background-repeat: repeat;
  background-attachment: fixed;
}

/* Page Title - Parallax Background
-----------------------------------------------------------------*/
/* line 4393, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-parallax {
  padding: 100px 0;
  text-shadow: none;
  border-bottom: none;
}

/* line 4399, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-parallax h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* line 4405, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-parallax span {
  font-size: 22px;
}

/* line 4407, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-parallax .breadcrumb {
  font-size: 13px;
}

/* line 4409, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-parallax {
  background-color: transparent;
  background-image: url("https://www.wehome.fr/assets/images/parallax/parallax-bg.jpg");
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

/* Page Title - Mini
-----------------------------------------------------------------*/
/* line 4421, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-mini {
  padding: 20px 0;
}

/* line 4423, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-mini h1 {
  font-weight: 600;
  font-size: 18px;
  color: #444;
}

/* line 4429, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-mini span {
  display: none;
}

/* Page Title - No Background
-----------------------------------------------------------------*/
/* line 4435, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-nobg {
  background: transparent !important;
  border-bottom: 1px solid #F5F5F5;
}

/* Page Title - Video
-----------------------------------------------------------------*/
/* line 4444, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-video {
  background: none;
  position: relative;
  overflow: hidden;
}

/* line 4450, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-video .container {
  z-index: 3;
}

/* line 4452, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-video .video-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* line 4460, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#page-title.page-title-video .video-wrap video {
  width: 100%;
}

/* ----------------------------------------------------------------
  Content
-----------------------------------------------------------------*/
/* line 4468, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content {
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}

/* line 4474, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content p {
  line-height: 1.5;
}

/* line 4476, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.content-wrap {
  position: relative;
  padding: 80px 0;
}

/* line 4481, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content .container {
  position: relative;
}

/* line 4483, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.grid-container {
  position: relative;
  overflow: hidden;
}

/* line 4488, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .grid-container {
  -webkit-transition: height .4s ease;
  -o-transition: height .4s ease;
  transition: height .4s ease;
}

/* ----------------------------------------------------------------
  Portfolio
-----------------------------------------------------------------*/
/* Portfolio - Filter
-----------------------------------------------------------------*/
/* line 4503, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter {
  position: relative;
  margin: 0 0 40px 0;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.07);
  float: left;
  border-radius: 4px;
}

/* line 4512, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter li {
  float: left;
  position: relative;
}

/* line 4517, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter li a {
  display: block;
  position: relative;
  padding: 12px 18px;
  font-size: 13px;
  line-height: 15px;
  color: #666;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}

/* line 4527, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter li:first-child a {
  border-left: none;
  border-radius: 4px 0 0 4px;
}

/* line 4532, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter li:last-child a {
  border-radius: 0 4px 4px 0;
}

/* line 4534, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter li a:hover {
  color: #4484CE;
}

/* line 4536, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter li.activeFilter a {
  color: #FFF !important;
  background-color: #4484CE;
  margin: -1px 0;
  padding: 13px 18px;
  font-weight: bold;
}

/* line 4545, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-filter li a {
  padding: 12px 14px;
}

/* line 4547, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-filter li.activeFilter a {
  padding: 13px 18px;
}

/* Portfolio - Filter: Style 2
-----------------------------------------------------------------*/
/* line 4553, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-2,
.portfolio-filter.style-3,
.portfolio-filter.style-4 {
  border: none;
  border-radius: 0;
}

/* line 4560, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-2 li,
.portfolio-filter.style-3 li,
.portfolio-filter.style-4 li {
  margin-bottom: 10px;
}

/* line 4564, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-2 li:not(:first-child),
.portfolio-filter.style-3 li:not(:first-child) {
  margin-left: 10px;
}

/* line 4567, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-2 li a,
.portfolio-filter.style-3 li a,
.portfolio-filter.style-4 li a {
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 14px;
  line-height: 16px;
  border-radius: 22px;
  border: none;
}

/* line 4578, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-2 li.activeFilter a {
  color: #FFF !important;
  margin: 0;
}

/* Portfolio - Filter: Style 3
-----------------------------------------------------------------*/
/* line 4587, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-3 li a {
  border: 1px solid transparent;
}

/* line 4589, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-3 li.activeFilter a {
  color: #4484CE !important;
  border-color: #4484CE;
  background-color: transparent;
  margin: 0;
}

/* Portfolio - Filter: Style 4
-----------------------------------------------------------------*/
/* line 4600, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-4 li:not(:first-child) {
  margin-left: 30px;
}

/* line 4602, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-4 li a {
  padding: 13px 5px;
  font-size: 15px;
  border-radius: 0;
}

/* line 4608, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-4 li a:after {
  content: '';
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* line 4621, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-4 li.activeFilter a {
  color: #444 !important;
  background-color: transparent;
  margin: 0;
}

/* line 4627, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.style-4 li.activeFilter a:after {
  width: 100%;
  left: 0%;
  background-color: #4484CE;
}

/* Portfolio - Center Aligned
-----------------------------------------------------------------*/
/* line 4637, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-filter.center.style-2 li,
.portfolio-filter.center.style-3 li,
.portfolio-filter.center.style-4 li {
  display: inline-block;
  float: none;
}

/* Portfolio - Shuffle Icon
-----------------------------------------------------------------*/
/* line 4648, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-shuffle {
  float: right;
  width: 41px;
  height: 41px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 14px;
  text-align: center;
  line-height: 41px;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

/* line 4664, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-shuffle:hover {
  background-color: #4484CE;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* Portfolio - Items
-----------------------------------------------------------------*/
/* line 4674, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio {
  position: relative;
  margin: 0 -12px -12px 0;
}

/* line 4679, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .portfolio {
  -webkit-transition: height .4s linear;
  -o-transition: height .4s linear;
  transition: height .4s linear;
}

/* line 4685, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-item {
  float: left;
  position: relative;
  width: 25%;
  height: auto;
  padding: 0 12px 12px 0;
}

/* line 4693, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-notitle .portfolio-item,
.portfolio-notitle .iportfolio {
  overflow: hidden;
}

/* line 4696, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-item .portfolio-image {
  position: relative;
  overflow: hidden;
}

/* line 4701, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-item .portfolio-image,
.portfolio-item .portfolio-image a,
.portfolio-item .portfolio-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* line 4709, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-notitle .portfolio-image img {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* Portfolio - Item Title
-----------------------------------------------------------------*/
/* line 4719, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-desc {
  z-index: 3;
  padding: 15px 5px 10px;
}

/* line 4724, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-desc h3 {
  margin: 0;
  padding: 0;
  font-size: 19px;
}

/* line 4730, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-desc h3 a {
  color: #222;
}

/* line 4732, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-desc h3 a:hover {
  color: #4484CE;
}

/* line 4734, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-desc span {
  display: block;
  margin-top: 3px;
  color: #888;
}

/* line 4740, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-desc span a {
  color: #888;
}

/* line 4742, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-desc span a:hover {
  color: #000;
}

/* line 4744, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-notitle .portfolio-desc {
  position: absolute;
  display: block !important;
  width: 100%;
  height: 78px;
  padding: 15px 5px;
  top: auto;
  bottom: -79px;
  left: 0;
  background-color: #fafafa;
  border-bottom: 1px solid #EEE;
}

/* line 4757, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-notitle .portfolio-desc {
  -webkit-transition: bottom .2s ease-in-out;
  -o-transition: bottom .2s ease-in-out;
  transition: bottom .2s ease-in-out;
}

/* line 4763, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-full.portfolio-notitle .portfolio-desc,
.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -78px;
  border-bottom: 0;
}

/* line 4769, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-notitle .portfolio-item:hover .portfolio-desc,
.portfolio-notitle .iportfolio:hover .portfolio-desc {
  bottom: 0 !important;
}

/* line 4772, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-notitle .portfolio-item:hover .portfolio-image img {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* line 4780, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-notitle .portfolio-item:hover .portfolio-image img,
body:not(.device-touch):not(.device-xs):not(.device-xxs) .bothsidebar .portfolio-3.portfolio-notitle .portfolio-item:hover .portfolio-image img,
body:not(.device-touch):not(.device-xs):not(.device-xxs) .bothsidebar .portfolio-2.portfolio-notitle .portfolio-item:hover .portfolio-image img,
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-notitle .iportfolio:hover .portfolio-image img {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
}

/* line 4791, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.device-touch.device-xs .portfolio-notitle .portfolio-desc,
body.device-touch.device-xxs .portfolio-notitle .portfolio-desc {
  display: none !important;
}

/* Portfolio - No Margin
-----------------------------------------------------------------*/
/* line 4798, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-nomargin,
.portfolio.portfolio-full {
  margin: 0 !important;
}

/* line 4801, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-nomargin .portfolio-item,
.portfolio-full .portfolio-item {
  padding: 0 !important;
}

/* line 4804, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-nomargin .portfolio-desc {
  padding: 15px 10px 15px;
}

/* Portfolio - 100% Full Width
-----------------------------------------------------------------*/
/* line 4810, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-full {
  margin: 0 !important;
  width: 100.4%;
}

/* line 4815, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-full .portfolio-item {
  overflow: hidden !important;
}

/* line 4817, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-full .portfolio-desc {
  padding: 15px;
}

/* Portfolio - Sidebar
-----------------------------------------------------------------*/
/* line 4823, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-desc h3 {
  font-size: 17px;
}

/* line 4825, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-desc span {
  font-size: 12px;
}

/* Portfolio - Sidebar - No Title
-----------------------------------------------------------------*/
/* line 4831, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-notitle .portfolio-desc {
  height: 70px;
  bottom: -71px;
}

/* line 4836, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-full.portfolio-notitle .portfolio-desc,
.postcontent .portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -70px;
}

/* line 4839, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-notitle .portfolio-item:hover .portfolio-overlay a {
  margin-top: -50px !important;
}

/* Portfolio - Both Sidebars
-----------------------------------------------------------------*/
/* line 4845, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio {
  margin: 0;
}

/* line 4847, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-item {
  padding: 0;
}

/* line 4849, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-desc {
  display: none !important;
}

/* Portfolio - Items - 3 Columns
-----------------------------------------------------------------*/
/* line 4855, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-3 {
  margin: 0 -15px -15px 0;
}

/* line 4857, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-3 .portfolio-item {
  width: 33.33333333%;
  padding: 0 15px 15px 0;
}

/* Portfolio - Sidebar - Items - 3 Columns
-----------------------------------------------------------------*/
/* line 4866, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-3 .portfolio-desc h3 {
  font-size: 18px;
}

/* line 4868, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-3 .portfolio-desc span {
  font-size: 13px;
}

/* Portfolio - Sidebar - Items - 3 Columns - No Title
-----------------------------------------------------------------*/
/* line 4874, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-3.portfolio-notitle .portfolio-desc {
  height: 72px;
  bottom: -73px;
}

/* line 4879, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-3.portfolio-full.portfolio-notitle .portfolio-desc,
.postcontent .portfolio-3.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -72px;
}

/* line 4882, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-3.portfolio-notitle .portfolio-item:hover .portfolio-overlay a {
  margin-top: -40px !important;
}

/* Portfolio - Both Sidebars - Items - 3 Columns
-----------------------------------------------------------------*/
/* line 4888, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio.portfolio-3 {
  margin: 0 -11px -11px 0;
}

/* line 4890, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-3 .portfolio-item {
  padding: 0 11px 11px 0;
}

/* line 4892, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-3 .portfolio-desc {
  display: block !important;
}

/* line 4894, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-3 .portfolio-desc h3 {
  font-size: 15px;
}

/* line 4896, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-3 .portfolio-desc span {
  font-size: 12px;
}

/* Portfolio - Both Sidebars - Items - 3 Columns - No Title
-----------------------------------------------------------------*/
/* line 4902, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-3.portfolio-notitle .portfolio-desc {
  height: 68px;
  bottom: -69px;
}

/* line 4907, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-3.portfolio-full.portfolio-notitle .portfolio-desc,
.bothsidebar .portfolio-3.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -68px;
}

/* line 4910, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-3.portfolio-notitle .portfolio-item:hover .portfolio-overlay a {
  margin-top: -50px !important;
}

/* Portfolio - Items - 2 Columns
-----------------------------------------------------------------*/
/* line 4916, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-2 {
  margin: 0 -20px -20px 0;
}

/* line 4918, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-2 .portfolio-item {
  width: 50%;
  padding: 0 20px 20px 0;
}

/* line 4923, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-2 .portfolio-desc {
  padding: 20px 5px 10px;
}

/* line 4925, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-2 .portfolio-desc h3 {
  font-size: 21px;
}

/* line 4927, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-2 .portfolio-desc span {
  margin-top: 4px;
  font-size: 14px;
}

/* Portfolio - Items - 2 Columns - No Margin
-----------------------------------------------------------------*/
/* line 4936, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-2.portfolio-nomargin .portfolio-desc {
  padding: 20px 15px 20px;
}

/* Portfolio - Items - 2 Columns - No Title
-----------------------------------------------------------------*/
/* line 4942, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-2.portfolio-notitle .portfolio-desc {
  height: 90px;
  bottom: -91px;
}

/* line 4947, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-2.portfolio-full.portfolio-notitle .portfolio-desc,
.portfolio-2.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -90px;
}

/* Portfolio - Sidebar - Items - 2 Columns
-----------------------------------------------------------------*/
/* line 4954, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-2 .portfolio-desc h3 {
  font-size: 21px;
}

/* line 4956, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-2 .portfolio-desc span {
  font-size: 14px;
}

/* Portfolio - Sidebar - Items - 2 Columns - No Margin
-----------------------------------------------------------------*/
/* line 4962, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-2.portfolio-nomargin .portfolio-desc {
  padding-bottom: 20px;
}

/* Portfolio - Sidebar - Items - 2 Columns - No Title
-----------------------------------------------------------------*/
/* line 4968, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-2.portfolio-notitle .portfolio-desc {
  height: 90px;
  bottom: -91px;
}

/* line 4973, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-2.portfolio-full.portfolio-notitle .portfolio-desc,
.postcontent .portfolio-2.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -90px;
}

/* line 4976, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-2.portfolio-notitle .portfolio-item:hover .portfolio-overlay a {
  margin-top: -40px !important;
}

/* Portfolio - Both Sidebars - Items - 2 Columns
-----------------------------------------------------------------*/
/* line 4982, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-2 .portfolio-desc {
  display: block !important;
  padding-top: 15px;
  padding-bottom: 0;
}

/* line 4988, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-2 .portfolio-desc h3 {
  font-size: 19px;
}

/* line 4990, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-2 .portfolio-desc span {
  font-size: 13px;
}

/* Portfolio - Both Sidebars - Items - 2 Columns - No Margin
-----------------------------------------------------------------*/
/* line 4996, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-2.portfolio-nomargin .portfolio-desc {
  padding-bottom: 15px;
}

/* Portfolio - Both Sidebars - Items - 2 Columns - No Title
-----------------------------------------------------------------*/
/* line 5002, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-2.portfolio-notitle .portfolio-desc {
  height: 75px;
  bottom: -76px;
}

/* line 5007, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-2.portfolio-full.portfolio-notitle .portfolio-desc,
.bothsidebar .portfolio-2.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -75px;
}

/* line 5010, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-2.portfolio-notitle .portfolio-item:hover .portfolio-overlay a {
  margin-top: -40px !important;
}

/* Portfolio - Items - 5 Columns
-----------------------------------------------------------------*/
/* line 5016, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-5 {
  margin: 0 -10px -10px 0;
}

/* line 5018, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-5 .portfolio-item {
  width: 20%;
  padding: 0 10px 10px 0;
}

/* line 5023, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-5 .portfolio-desc h3 {
  font-size: 17px;
}

/* Portfolio - Items - 5 Columns - No Title
-----------------------------------------------------------------*/
/* line 5029, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-5.portfolio-notitle .portfolio-desc {
  height: 71px;
  bottom: -72px;
}

/* line 5034, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-5.portfolio-full.portfolio-notitle .portfolio-desc,
.portfolio-5.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -71px;
}

/* line 5037, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-5.portfolio-notitle .portfolio-item:hover .portfolio-overlay a {
  margin-top: -30px !important;
}

/* Portfolio - Sidebar - Items - 5 Columns
-----------------------------------------------------------------*/
/* line 5043, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio.portfolio-5 {
  margin: 0;
}

/* line 5045, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-5 .portfolio-item {
  padding: 0;
}

/* line 5047, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-5 .portfolio-desc h3 {
  font-size: 15px;
}

/* line 5049, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-5 .portfolio-desc span {
  font-size: 12px;
}

/* line 5051, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-5 .portfolio-desc {
  padding: 15px 10px;
}

/* Portfolio - Sidebar - Items - 5 Columns - No Title
-----------------------------------------------------------------*/
/* line 5057, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-5.portfolio-notitle .portfolio-desc {
  height: 68px;
  bottom: -69px;
}

/* line 5062, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-5.portfolio-full.portfolio-notitle .portfolio-desc,
.postcontent .portfolio-5.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -68px;
}

/* line 5065, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-5.portfolio-notitle .portfolio-item:hover .portfolio-overlay a {
  margin-top: -50px !important;
}

/* Portfolio - Items - 6 Columns
-----------------------------------------------------------------*/
/* line 5071, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-6 {
  margin: 0 -6px -6px 0;
}

/* line 5073, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-6 .portfolio-item {
  width: 16.66666667%;
  padding: 0 6px 6px 0;
}

/* line 5078, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-6 .portfolio-desc h3 {
  font-size: 15px;
}

/* line 5080, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-6 .portfolio-desc span {
  font-size: 12px;
}

/* Portfolio - Items - 6 Columns - No Title
-----------------------------------------------------------------*/
/* line 5086, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-6.portfolio-notitle .portfolio-desc {
  height: 68px;
  bottom: -69px;
}

/* line 5091, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-6.portfolio-full.portfolio-notitle .portfolio-desc,
.portfolio-6.portfolio-nomargin.portfolio-notitle .portfolio-desc {
  bottom: -68px;
}

/* line 5094, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-6.portfolio-notitle .portfolio-item:hover .portfolio-overlay a {
  margin-top: -40px !important;
}

/* Portfolio - Items - 1 Column
-----------------------------------------------------------------*/
/* line 5100, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-1 {
  margin: 0 0px -40px 0;
}

/* line 5102, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-item {
  float: none;
  width: 100%;
  margin: 0 0 40px 0;
  padding-bottom: 40px;
  padding-right: 0;
  border-bottom: 1px solid #EEE;
}

/* line 5111, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-item .portfolio-image {
  float: left;
  margin-right: 40px;
}

/* line 5116, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-item.alt .portfolio-image {
  float: right;
  margin: 0 0 0 40px;
}

/* line 5121, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-item .portfolio-image,
.portfolio-1 .portfolio-item .portfolio-image a,
.portfolio-1 .portfolio-item .portfolio-image img {
  display: block;
  width: 720px;
  height: 400px;
}

/* line 5129, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-desc {
  float: left;
  width: 380px;
  padding: 10px 0;
}

/* line 5135, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .alt .portfolio-desc {
  float: right;
}

/* line 5137, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-desc h3 {
  font-size: 22px;
}

/* line 5139, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-desc span {
  margin-top: 6px;
  font-size: 14px;
}

/* line 5144, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-desc p {
  margin: 20px 0 25px;
  font-size: 14px;
}

/* line 5149, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1 .portfolio-desc li {
  margin: 3px 0;
}

/* Portfolio - Items - 1 Column - Sidebar
-----------------------------------------------------------------*/
/* line 5155, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1 .portfolio-item .portfolio-image,
.postcontent .portfolio-1 .portfolio-item .portfolio-image a,
.postcontent .portfolio-1 .portfolio-item .portfolio-image img {
  width: 540px;
  height: 300px;
}

/* line 5162, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1 .portfolio-desc {
  width: 280px;
}

/* Portfolio - Items - 1 Column - Both Sidebar
-----------------------------------------------------------------*/
/* line 5168, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1 .portfolio-item .portfolio-image {
  margin-right: 20px;
}

/* line 5170, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1 .portfolio-item.alt .portfolio-image {
  margin: 0 0 0 20px;
}

/* line 5172, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1 .portfolio-item .portfolio-image,
.bothsidebar .portfolio-1 .portfolio-item .portfolio-image a,
.bothsidebar .portfolio-1 .portfolio-item .portfolio-image img {
  width: 320px;
  height: 178px;
}

/* line 5179, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1 .portfolio-desc {
  display: block !important;
  width: 240px;
  padding: 0;
}

/* line 5185, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1 .portfolio-desc h3 {
  font-size: 19px;
}

/* line 5187, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1 .portfolio-desc span {
  margin-top: 5px;
  font-size: 13px;
}

/* line 5192, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1 .portfolio-desc p {
  margin: 15px 0 0 0;
  font-size: 13px;
}

/* line 5197, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1 .portfolio-desc ul,
.bothsidebar .portfolio-1 .portfolio-desc .btn {
  display: none;
}

/* Portfolio - Items - 1 Column - Full Width
-----------------------------------------------------------------*/
/* line 5204, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-1.portfolio-fullwidth {
  margin: 0 0 -60px 0;
}

/* line 5206, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-item {
  margin-bottom: 60px;
  padding: 0;
  border-bottom: 0;
  overflow: hidden;
}

/* line 5213, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image {
  float: none;
  margin: 0 !important;
}

/* line 5218, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image,
.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image a,
.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image img {
  width: 1140px;
  height: 500px;
}

/* line 5225, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image img {
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* line 5231, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-item:hover .portfolio-image img {
  -webkit-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
  -o-transform: translateX(-60px);
  transform: translateX(-60px);
}

/* line 5239, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-item.alt:hover .portfolio-image img {
  -webkit-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -ms-transform: translateX(60px);
  -o-transform: translateX(60px);
  transform: translateX(60px);
}

/* line 5247, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-desc {
  position: absolute;
  float: none;
  width: 380px;
  height: 100%;
  padding: 30px;
  background-color: #F9F9F9;
  top: 0;
  left: auto;
  right: -380px;
}

/* line 5259, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-1.portfolio-fullwidth .portfolio-desc {
  -webkit-transition: right .3s ease-in-out;
  -o-transition: right .3s ease-in-out;
  transition: right .3s ease-in-out;
}

/* line 5265, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-item:hover .portfolio-desc {
  right: 0;
}

/* line 5267, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .alt .portfolio-desc {
  left: -380px;
  right: auto;
}

/* line 5272, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-1.portfolio-fullwidth .alt .portfolio-desc {
  -webkit-transition: left .3s ease-in-out;
  -o-transition: left .3s ease-in-out;
  transition: left .3s ease-in-out;
}

/* line 5278, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-item.alt:hover .portfolio-desc {
  left: 0;
}

/* line 5280, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .portfolio-overlay a {
  left: 33%;
}

/* line 5282, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-1.portfolio-fullwidth .alt .portfolio-overlay a {
  left: auto;
  right: 33%;
}

/* Portfolio - Items - 1 Column - Full Width - Sidebar
-----------------------------------------------------------------*/
/* line 5291, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio.portfolio-1.portfolio-fullwidth {
  margin: 0 0 -40px 0;
}

/* line 5293, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1.portfolio-fullwidth .portfolio-item {
  margin-bottom: 40px;
}

/* line 5295, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image,
.postcontent .portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image a,
.postcontent .portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image img {
  width: 860px;
  height: 377px;
}

/* line 5302, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1.portfolio-fullwidth .portfolio-item:hover .portfolio-image img {
  -webkit-transform: translateX(-40px);
  -moz-transform: translateX(-40px);
  -ms-transform: translateX(-40px);
  -o-transform: translateX(-40px);
  transform: translateX(-40px);
}

/* line 5310, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1.portfolio-fullwidth .portfolio-item.alt:hover .portfolio-image img {
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
}

/* line 5318, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1.portfolio-fullwidth .portfolio-desc {
  width: 320px;
  padding: 25px;
  right: -320px;
}

/* line 5324, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1.portfolio-fullwidth .alt .portfolio-desc {
  left: -320px;
  right: auto;
}

/* line 5329, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1.portfolio-fullwidth .portfolio-overlay a {
  left: 32%;
}

/* line 5331, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .portfolio-1.portfolio-fullwidth .alt .portfolio-overlay a {
  left: auto;
  right: 32%;
}

/* Portfolio - Items - 1 Column - Full Width - Both Sidebar
-----------------------------------------------------------------*/
/* line 5340, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio.portfolio-1.portfolio-fullwidth {
  margin: 0 0 -40px 0;
}

/* line 5342, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1.portfolio-fullwidth .portfolio-item {
  margin-bottom: 40px;
}

/* line 5344, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image,
.bothsidebar .portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image a,
.bothsidebar .portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image img {
  width: 580px;
  height: 254px;
}

/* line 5351, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1.portfolio-fullwidth .portfolio-item:hover .portfolio-image img {
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  transform: translateX(-20px);
}

/* line 5359, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1.portfolio-fullwidth .portfolio-item.alt:hover .portfolio-image img {
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
  transform: translateX(20px);
}

/* line 5367, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1.portfolio-fullwidth .portfolio-desc {
  width: 240px;
  padding: 15px 20px;
  right: -240px;
}

/* line 5373, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1.portfolio-fullwidth .alt .portfolio-desc {
  left: -240px;
  right: auto;
}

/* line 5378, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1.portfolio-fullwidth .portfolio-overlay a {
  left: 29%;
}

/* line 5380, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .portfolio-1.portfolio-fullwidth .alt .portfolio-overlay a {
  left: auto;
  right: 29%;
}

/* Portfolio - Parallax
-----------------------------------------------------------------*/
/* line 5389, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax {
  margin: 0 !important;
}

/* line 5391, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-item {
  float: none;
  width: 100% !important;
  height: 500px !important;
  margin: 0 !important;
}

/* line 5398, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-item .portfolio-image {
  width: 100% !important;
  height: 500px !important;
  background-attachment: fixed;
}

/* line 5404, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -57px;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  padding: 0;
  opacity: 0;
}

/* line 5416, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio.portfolio-parallax .portfolio-desc {
  -webkit-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
}

/* line 5422, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-item:hover .portfolio-desc {
  opacity: 1;
}

/* line 5424, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc h3 {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -1px;
}

/* line 5430, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc h3 a {
  color: #FFF;
}

/* line 5432, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc h3 a:hover {
  color: #DDD;
}

/* line 5434, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc span {
  margin-top: 12px;
  font-size: 16px;
  color: #CCC;
}

/* line 5440, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc span a {
  color: #DDD;
}

/* line 5442, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc span a:hover {
  color: #BBB;
}

/* line 5444, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc .portfolio-divider {
  width: 100%;
  text-align: center;
  margin: 15px 0 0;
}

/* line 5450, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-desc .portfolio-divider div {
  display: inline-block;
  width: 50px;
  height: 0;
  border-bottom: 1px solid #FFF;
}

/* line 5457, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio.portfolio-parallax .portfolio-desc .portfolio-divider div {
  -webkit-transition: width .5s ease-in-out;
  -o-transition: width .5s ease-in-out;
  transition: width .5s ease-in-out;
}

/* line 5463, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-item:hover .portfolio-desc .portfolio-divider div {
  width: 120px;
}

/* line 5465, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio.portfolio-parallax .portfolio-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Portfolio - Overlay
-----------------------------------------------------------------*/
/* line 5471, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/* line 5483, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-overlay {
  -webkit-transition: opacity .4s ease-in-out;
  -o-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
}

/* line 5489, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-item:hover .portfolio-overlay,
.iportfolio:hover .portfolio-overlay {
  opacity: 1;
}

/* line 5492, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay a {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #F5F5F5;
  width: 40px !important;
  height: 40px !important;
  margin: -28px 0 0 -44px;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  color: #444;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
}

/* line 5508, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-overlay a {
  -webkit-transition: color .2s linear, background-color .2s linear, margin-top .2s linear, opacity .2s linear;
  -o-transition: color .2s linear, background-color .2s linear, margin-top .2s linear, opacity .2s linear;
  transition: color .2s linear, background-color .2s linear, margin-top .2s linear, opacity .2s linear;
}

/* line 5516, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay a.right-icon {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -44px;
}

/* line 5523, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay a.center-icon {
  display: block;
  margin: -20px 0 0 -20px;
  opacity: 0;
}

/* line 5529, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-item:hover a.center-icon,
.iportfolio:hover a.center-icon {
  opacity: 1;
}

/* line 5532, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay a:hover {
  color: #4484CE;
  background-color: #EEE;
}

/* line 5537, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-item:hover .portfolio-overlay a.left-icon,
.portfolio-item:hover .portfolio-overlay a.right-icon,
.iportfolio:hover .portfolio-overlay a.left-icon,
.iportfolio:hover .portfolio-overlay a.right-icon {
  margin-top: -18px;
}

/* line 5542, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay a i.icon-line-play {
  position: relative;
  left: 2px;
}

/* line 5548, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc {
  position: relative;
  padding: 0 !important;
  margin: 0;
  text-align: center;
}

/* line 5555, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc a {
  display: inline;
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  font-size: inherit;
  width: auto !important;
  height: auto !important;
  line-height: 1;
  background-color: transparent !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

/* line 5569, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc h3 {
  font-weight: 600;
  color: #F5F5F5 !important;
  line-height: 1;
}

/* line 5575, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc h3 a {
  color: #F5F5F5 !important;
}

/* line 5577, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc span {
  margin-top: 7px;
  color: #DDD !important;
}

/* line 5582, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc span a {
  color: #DDD !important;
  font-size: inherit;
}

/* line 5587, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc ~ a {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  margin: 20px 0 0 !important;
}

/* line 5595, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-overlay .portfolio-desc ~ a {
  -webkit-transition: color .2s linear, background-color .2s linear, opacity .2s linear;
  -o-transition: color .2s linear, background-color .2s linear, opacity .2s linear;
  transition: color .2s linear, background-color .2s linear, opacity .2s linear;
}

/* line 5601, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc ~ a.right-icon {
  left: 0;
  right: 0;
  margin-left: 5px !important;
  margin-right: 0 !important;
}

/* line 5608, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-overlay .portfolio-desc a:hover {
  background: transparent;
}

/* line 5610, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body.device-touch.device-xs .portfolio-notitle .portfolio-overlay,
body.device-touch.device-xxs .portfolio-notitle .portfolio-overlay {
  display: none !important;
}

/* Portfolio Single
-----------------------------------------------------------------*/
/* Portfolio Single - Image
-----------------------------------------------------------------*/
/* line 5623, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-image > a,
.portfolio-single-image .slide a,
.portfolio-single-image img,
.portfolio-single-image iframe,
.portfolio-single-image video {
  display: block;
  width: 100%;
}

/* line 5632, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-image-full {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin: -80px 0 80px !important;
}

/* line 5639, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-video {
  height: auto !important;
}

/* Portfolio Single - Gallery Thumbs
-----------------------------------------------------------------*/
/* line 5645, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-image-full .swiper-container {
  width: 100%;
  height: 600px;
  background-color: #333;
}

/* line 5651, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-image-full .swiper-nested-1,
.portfolio-single-image-full .swiper-nested-2 {
  width: 100%;
}

/* line 5654, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-image-full .swiper-slide {
  overflow: hidden;
}

/* line 5656, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-image-full .swiper-slide img {
  width: 100%;
  height: auto;
}

/* Portfolio & Blog Single - Masonry
-----------------------------------------------------------------*/
/* line 5665, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs {
  position: relative;
}

/* line 5667, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs a {
  position: relative;
  float: left;
  width: 25%;
  max-width: 100% !important;
  overflow: hidden;
}

/* line 5675, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs.col-2 a {
  width: 50%;
}

/* line 5677, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs.col-3 a {
  width: 33.30%;
}

/* line 5679, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs.col-4 a {
  width: 25%;
}

/* line 5681, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs.col-5 a {
  width: 20%;
}

/* line 5683, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs.col-6 a {
  width: 16.60%;
}

/* line 5685, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs a,
.masonry-thumbs img {
  display: block;
  height: auto !important;
}

/* line 5691, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs img {
  width: 100%;
  border-radius: 0 !important;
  padding: 0 1px 1px 0;
}

/* line 5697, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.masonry-thumbs .overlay {
  padding: 0 1px 1px 0;
}

/* Portfolio Single - Content
-----------------------------------------------------------------*/
/* line 5703, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-content {
  font-size: 14px;
}

/* line 5705, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-single-content h2 {
  margin: 0 0 20px;
  padding: 0;
  font-size: 20px;
  font-weight: 600 !important;
}

/* line 5713, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-ajax-modal {
  width: 1000px !important;
}

/* line 5715, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.modal-padding {
  padding: 40px;
}

/* line 5717, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ajax-modal-title {
  background-color: #F9F9F9;
  border-bottom: 1px solid #EEE;
  padding: 25px 40px;
}

/* line 5723, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ajax-modal-title h2 {
  font-size: 26px;
  margin-bottom: 0;
}

/* line 5729, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-ajax-wrap {
  position: relative;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .4s ease;
  -o-transition: max-height .4s ease;
  transition: max-height .4s ease;
}

/* line 5738, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-ajax-wrap.portfolio-ajax-opened {
  max-height: 1200px;
}

/* line 5740, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-ajax-container {
  display: none;
  padding-bottom: 60px;
}

/* line 5745, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-ajax-single h2 {
  font-size: 26px;
}

/* Portfolio Single - Meta
-----------------------------------------------------------------*/
/* line 5751, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-meta,
.portfolio-share {
  list-style: none;
  font-size: 14px;
}

/* line 5757, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-meta li {
  margin: 10px 0;
  color: #666;
}

/* line 5762, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-meta li:first-child {
  margin-top: 0;
}

/* line 5764, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-meta li span {
  display: inline-block;
  width: 150px;
  font-weight: bold;
  color: #333;
}

/* line 5771, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.portfolio-meta li span i {
  position: relative;
  top: 1px;
  width: 14px;
  text-align: center;
  margin-right: 7px;
}

/* line 5779, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.well .line {
  margin: 20px 0;
  border-color: #E5E5E5;
}

/* Portfolio Single Navigation
-----------------------------------------------------------------*/
/* line 5788, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-navigation {
  position: absolute;
  top: 50%;
  left: auto;
  right: 10px;
  max-width: 96px;
  height: 24px;
  margin-top: -12px;
}

/* line 5798, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.page-title-right #portfolio-navigation {
  left: 10px;
  right: auto;
}

/* line 5803, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.page-title-center #portfolio-navigation {
  position: relative;
  top: 0;
  left: 0;
  margin: 20px auto 0;
}

/* line 5810, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-navigation a {
  display: block;
  float: left;
  margin-left: 12px;
  width: 24px;
  height: 24px;
  text-align: center;
  color: #444;
  transition: color .3s linear;
  -webkit-transition: color .3s linear;
  -o-transition: color .3s linear;
}

/* line 5823, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.page-title-dark #portfolio-navigation a {
  color: #EEE;
}

/* line 5825, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.page-title-parallax #portfolio-navigation a {
  color: #FFF;
}

/* line 5827, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-navigation a i {
  position: relative;
  top: -1px;
  font-size: 24px;
  line-height: 1;
}

/* line 5834, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-navigation a i.icon-angle-left,
#portfolio-navigation a i.icon-angle-right {
  font-size: 32px;
  top: -6px;
}

/* line 5840, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-navigation a i.icon-angle-right {
  left: -1px;
}

/* line 5842, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-navigation a:first-child {
  margin-left: 0;
}

/* line 5844, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-navigation a:hover {
  color: #4484CE;
}

/* line 5846, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-ajax-show #portfolio-navigation {
  top: 0;
  margin-top: 0;
}

/* Individual Portfolio Item
-----------------------------------------------------------------*/
/* line 5855, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.iportfolio {
  position: relative;
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* line 5863, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.iportfolio .portfolio-image {
  position: relative;
  overflow: hidden;
}

/* line 5868, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.iportfolio .portfolio-image,
.iportfolio .portfolio-image a,
.iportfolio .portfolio-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* line 5876, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.iportfolio .portfolio-overlay {
  height: 100% !important;
}

/* ----------------------------------------------------------------
  Blog
-----------------------------------------------------------------*/
/* line 5884, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#posts {
  position: relative;
}

/* line 5886, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry {
  position: relative;
  margin: 0 0 50px;
  padding: 0 0 50px;
  border-bottom: 2px solid #F5F5F5;
}

/* line 5893, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-image {
  margin-bottom: 30px;
}

/* line 5895, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-image,
.entry-image > a,
.entry-image .slide a,
.entry-image img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

/* line 5905, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-image iframe {
  display: block;
}

/* line 5907, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-image img {
  border-radius: 3px;
}

/* line 5909, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
}

/* line 5917, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-title h2 a {
  color: #333;
}

/* line 5919, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-title h2 a:hover {
  color: #4484CE;
}

/* line 5921, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-meta {
  margin: 10px -10px -15px 0;
  list-style: none;
}

/* line 5926, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-post .entry-meta {
  margin-bottom: 20px;
}

/* line 5928, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-meta li {
  float: left;
  font-size: 13px;
  line-height: 14px;
  margin: 0 10px 15px 0;
  color: #999;
  font-family: 'Crete Round', serif;
  font-style: italic;
}

/* line 5938, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-meta li:before {
  content: '/';
  display: inline-block;
  margin-right: 10px;
  opacity: 0.5;
}

/* line 5945, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-meta li i {
  position: relative;
  top: 1px;
  font-size: 14px;
  margin-right: 3px;
}

/* line 5952, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-meta li a {
  color: #999;
}

/* line 5954, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-meta li a:hover {
  color: #4484CE;
}

/* line 5956, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-meta li:first-child:before {
  display: none;
}

/* line 5958, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-meta li ins {
  font-weight: 600;
  text-decoration: none;
}

/* line 5963, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-c {
  position: relative;
  overflow: hidden;
}

/* line 5968, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#posts .entry-content {
  margin-top: 30px;
}

/* line 5970, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-post .entry-content .entry-image {
  max-width: 350px;
}

/* line 5972, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-content {
  position: relative;
}

/* line 5974, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-link {
  display: block;
  width: 100%;
  background-color: #F5F5F5;
  padding: 30px 0;
  text-align: center;
  color: #444;
  font-family: 'SofiaProRegular';
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 3px;
}

/* line 5989, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .entry-link {
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

/* line 5995, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-link:hover {
  color: #FFF;
  background-color: #4484CE;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* line 6001, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-link span {
  display: block;
  margin-top: 5px;
  font-family: 'Crete Round', serif;
  font-style: italic;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: #AAA;
}

/* line 6013, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry-link:hover span {
  color: #EEE;
}

/* line 6015, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry blockquote p {
  font-weight: 400;
  font-family: 'Crete Round', serif;
  font-style: italic;
}

/* Small Thumbs
-----------------------------------------------------------------*/
/* line 6025, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.small-thumbs .entry-image,
.ievent .entry-image {
  float: left;
  width: 300px;
  margin: 0 30px 0 0;
}

/* line 6032, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.small-thumbs .entry-image img,
.ievent .entry-image img {
  border-radius: 0;
}

/* line 6035, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.small-thumbs .entry-c .entry-image,
.ievent .entry-c .entry-image {
  float: none;
  width: 100%;
  margin: 0 0 20px 0;
}

/* line 6042, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.small-thumbs .entry-c .entry-image img,
.ievent .entry-c .entry-image img {
  border-radius: 5px;
}

/* line 6045, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.small-thumbs .entry-title h2,
.ievent .entry-title h2 {
  font-size: 20px;
  font-weight: 600;
}

/* Small Thumbs - Right
-----------------------------------------------------------------*/
/* line 6055, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.small-thumbs.alt .entry-image {
  float: right;
  margin: 0 0 0 30px;
}

/* line 6060, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.small-thumbs.alt .entry-c .entry-image {
  float: none;
  margin: 0 0 20px 0;
}

/* Small Thumbs - Both Sidebar
-----------------------------------------------------------------*/
/* line 6069, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .small-thumbs .entry-image {
  width: 200px;
  margin: 0 25px 0 0;
}

/* line 6074, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .small-thumbs.alt .entry-image {
  margin: 0 0 0 25px;
}

/* line 6076, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .small-thumbs .entry-c .entry-image {
  width: 100%;
  margin: 0 0 20px 0;
}

/* line 6081, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .small-thumbs .entry-title h2 {
  font-size: 18px;
}

/* Blog - Grid
-----------------------------------------------------------------*/
/* line 6087, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid {
  margin-right: -28px;
}

/* line 6089, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid .entry {
  float: left;
  width: 264px;
  margin-right: 28px;
}

/* line 6095, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid .entry-image img {
  border-radius: 0;
}

/* line 6097, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid .entry-title h2 {
  font-size: 17px;
  font-weight: 600;
}

/* line 6102, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid .entry-link {
  font-size: 24px;
}

/* line 6104, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid .entry-link span {
  font-size: 13px;
}

/* Blog - Grid - 3 Columns
-----------------------------------------------------------------*/
/* line 6110, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid.grid-3 {
  margin-right: -30px;
}

/* line 6112, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid.grid-3 .entry {
  width: 360px;
  margin-right: 30px;
}

/* line 6117, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid.grid-3 .entry-title h2 {
  font-size: 18px;
}

/* Blog - Grid - 3 Columns - Sidebar
-----------------------------------------------------------------*/
/* line 6123, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-grid.grid-3 {
  margin-right: -25px;
}

/* line 6125, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-grid.grid-3 .entry {
  width: 270px;
  margin-right: 25px;
}

/* line 6130, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-grid.grid-3 .entry-title h2 {
  font-size: 16px;
}

/* Blog - Grid - 2 Columns
-----------------------------------------------------------------*/
/* line 6136, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid.grid-2 {
  margin-right: -40px;
}

/* line 6138, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid.grid-2 .entry {
  width: 550px;
  margin-right: 40px;
}

/* line 6143, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-grid.grid-2 .entry-title h2 {
  font-size: 20px;
}

/* Blog - Grid - 2 Columns - Sidebar
-----------------------------------------------------------------*/
/* line 6149, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-grid.grid-2 .entry {
  width: 410px;
}

/* line 6151, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-grid.grid-2 .entry-title h2 {
  font-size: 18px;
}

/* Blog - Grid - 2 Columns - Both Sidebar
-----------------------------------------------------------------*/
/* line 6157, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .post-grid.grid-2 .entry {
  width: 270px;
}

/* line 6159, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .post-grid.grid-2 .entry-title h2 {
  font-size: 16px;
}

/* Blog - Masonry
-----------------------------------------------------------------*/
/* line 6165, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-masonry .entry-image,
.post-masonry .entry-image img {
  height: auto !important;
}

/* Blog - Masonry Full
-----------------------------------------------------------------*/
/* line 6172, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-masonry-full {
  margin: -80px 0 -80px -1px !important;
}

/* line 6174, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-masonry-full .entry {
  width: 24.9% !important;
  margin: 0 !important;
  padding: 40px 30px;
  border-bottom: 1px dashed;
  border-left: 1px dashed;
  border-color: #E5E5E5;
}

/* line 6183, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-masonry-full.grid-3 .entry {
  width: 33.30% !important;
}

/* Blog - Timeline
-----------------------------------------------------------------*/
/* line 6189, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.timeline-border {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -71px;
  width: 0;
  border-left: 1px dashed #CCC;
  height: 100%;
}

/* line 6199, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-timeline {
  margin-right: -140px !important;
}

/* line 6201, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-timeline .entry {
  width: 500px !important;
  margin-right: 140px !important;
}

/* line 6206, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry.entry-date-section {
  width: 100% !important;
  margin: 50px -70px 80px;
  padding: 0;
  border: 0;
  text-align: center;
}

/* line 6214, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry.entry-date-section span {
  display: inline-block;
  padding: 10px 15px;
  background-color: #fafafa;
  border: 2px solid #EEE;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/
  font-family: 'SofiaProRegular';
}

/* line 6226, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-timeline .entry-timeline {
  display: none;
  position: absolute;
  border: 2px solid #CCC;
  background-color: #fafafa;
  padding-top: 0;
  text-indent: -9999px;
  top: 40px;
  left: auto;
  right: -76px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  font-size: 26px;
  font-weight: bold;
  color: #AAA;
  text-align: center;
  line-height: 1;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* line 6249, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.entry.entry-date-section + .entry .entry-timeline {
  top: 70px;
}

/* line 6251, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-timeline .entry-timeline div.timeline-divider {
  position: absolute;
  top: 4px;
  left: -58px;
  width: 50px;
  height: 0;
  border-top: 1px dashed #CCC;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* line 6263, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-timeline .alt .entry-timeline {
  right: auto;
  left: -77px;
}

/* line 6268, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-timeline .alt .entry-timeline div.timeline-divider {
  left: auto;
  right: -58px;
}

/* line 6273, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-timeline .entry-timeline span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  font-weight: normal;
}

/* line 6280, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-timeline .entry:hover .entry-timeline,
.post-timeline .entry:hover .timeline-divider {
  border-color: #4484CE;
  color: #4484CE;
}

/* Blog - Timeline - Sidebar
-----------------------------------------------------------------*/
/* line 6290, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .timeline-border {
  left: 32px;
  margin-left: 0;
}

/* line 6295, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-timeline {
  padding-left: 100px;
  margin-right: 0 !important;
}

/* line 6300, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-timeline .entry {
  width: 100% !important;
  margin-right: 140px !important;
}

/* line 6305, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-timeline .entry-timeline {
  display: block;
  border: 3px solid #CCC;
  background-color: #fafafa;
  padding-top: 10px;
  text-indent: 0;
  top: 20px;
  left: -100px;
  right: auto;
  width: 64px;
  height: 64px;
  font-size: 24px;
}

/* line 6319, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .post-timeline .entry-timeline div.timeline-divider {
  top: 29px;
  left: 64px;
  width: 32px;
}

/* Individual Post
-----------------------------------------------------------------*/
/* line 6329, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-image img {
  border-radius: 0;
}

/* line 6331, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-title h3,
.ipost .entry-title h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

/* line 6338, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-title h4 {
  font-size: 15px;
}

/* line 6340, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-title h3 a,
.ipost .entry-title h4 a {
  color: #333;
}

/* line 6343, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-title h3 a:hover,
.ipost .entry-title h4 a:hover {
  color: #4484CE;
}

/* line 6346, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-meta {
  margin-right: -10px;
}

/* line 6348, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-meta li {
  font-size: 13px;
  margin-right: 10px;
}

/* line 6353, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-content {
  margin-top: 20px;
}

/* line 6355, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ipost .entry-content p {
  margin-bottom: 0;
}

/* line 6358, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.more-link {
  display: inline-block;
  border-bottom: 1px solid #4484CE;
  padding: 0 2px;
  font-family: 'Crete Round', serif;
  font-style: italic;
}

/* line 6366, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.more-link:hover {
  border-bottom-color: #555;
}

/* Related Posts
-----------------------------------------------------------------*/
/* line 6372, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.overlay-icon {
  position: absolute;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* line 6384, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.overlay-icon i {
  line-height: 48px;
  font-size: 28px;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* Small Post
-----------------------------------------------------------------*/
/* line 6395, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost,
.mpost {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #E5E5E5;
}

/* line 6402, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost {
  margin-top: 25px;
  padding-top: 25px;
}

/* line 6407, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost:first-child,
.mpost:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* line 6414, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost .entry-image,
.mpost .entry-image {
  float: left;
  margin: 0 15px 0 0;
  text-align: center;
}

/* line 6421, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost .entry-image,
.spost .entry-image a,
.spost .entry-image img,
.spost .entry-image i {
  width: 48px;
  height: 48px;
}

/* line 6429, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost .entry-image a i,
.mpost .entry-image a i {
  font-size: 28px;
  line-height: 48px;
  color: #666;
  background-color: #EEE;
}

/* line 6437, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost .entry-title h4,
.mpost .entry-title h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

/* line 6444, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost .entry-title h4 a,
.mpost .entry-title h4 a {
  color: #333;
}

/* line 6447, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost .entry-title h4 a:hover,
.mpost .entry-title h4 a:hover {
  color: #4484CE;
}

/* line 6450, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost .entry-meta {
  margin: 8px -10px 0 0;
}

/* line 6452, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.spost .entry-meta li,
.mpost .entry-meta li {
  font-size: 13px;
  margin: 0 10px 0 0;
}

/* Medium Post
-----------------------------------------------------------------*/
/* line 6462, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost .entry-image {
  margin-right: 20px;
}

/* line 6464, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost .entry-image,
.mpost .entry-image a,
.mpost .entry-image img,
.mpost .entry-image i {
  width: 170px;
  height: 128px;
}

/* line 6472, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost .entry-image a,
.mpost .entry-image img {
  border-radius: 2px;
}

/* line 6475, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost .entry-image a i {
  font-size: 42px;
  line-height: 128px;
}

/* line 6480, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost .entry-title h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

/* line 6486, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost .entry-meta {
  margin-top: 5px;
}

/* line 6488, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost .entry-meta li i {
  margin-right: 2px;
}

/* line 6490, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mpost .entry-content {
  margin-top: 15px;
}

/* line 6492, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.post-navigation + .line {
  margin: 40px 0 50px;
}

/* ----------------------------------------------------------------
  Blog - Author
-----------------------------------------------------------------*/
/* line 6499, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.author-image {
  float: left;
  width: 84px;
  height: 84px;
  margin-right: 15px;
}

/* line 6506, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.author-image img {
  width: 84px;
  height: 84px;
}

/* ----------------------------------------------------------------
  Comments List
-----------------------------------------------------------------*/
/* line 6517, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#comments {
  position: relative;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #EEE;
}

/* line 6524, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist {
  list-style: none;
  padding-bottom: 50px;
  margin: 0 0 50px;
  border-bottom: 1px solid #EEE;
}

/* line 6531, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#reviews .commentlist {
  padding-bottom: 30px;
  margin: 0 0 20px;
}

/* line 6536, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist ul {
  list-style: none;
}

/* line 6538, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li,
.commentlist li ul,
.commentlist li ul li {
  margin: 30px 0 0 0;
}

/* line 6542, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist ul:first-child {
  margin-top: 0;
}

/* line 6544, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li {
  position: relative;
  margin: 30px 0 0 30px;
}

/* line 6549, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#reviews .commentlist li {
  margin-top: 20px;
}

/* line 6551, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-wrap {
  position: relative;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  padding: 20px 20px 20px 35px;
}

/* line 6558, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist ul .comment-wrap {
  margin-left: 25px;
  padding-left: 20px;
}

/* line 6563, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#reviews .comment-wrap {
  border: 0;
  padding: 10px 0 0 35px;
}

/* line 6568, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist > li:first-child,
#reviews .commentlist > li:first-child {
  padding-top: 0;
  margin-top: 0;
}

/* line 6574, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li .children {
  margin-top: 0;
}

/* line 6576, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li li .children {
  margin-left: 30px;
}

/* line 6578, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li .comment-content,
.pingback {
  position: relative;
  overflow: hidden;
}

/* line 6584, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li .comment-content p,
.pingback p {
  margin: 20px 0 0 0;
}

/* line 6587, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li .comment-content {
  padding: 0 0 0 15px;
}

/* line 6589, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li .comment-meta {
  float: left;
  margin-right: 0;
  line-height: 1;
}

/* line 6595, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-avatar {
  position: absolute;
  top: 15px;
  left: -35px;
  padding: 4px;
  background: #FFF;
  border: 1px solid #E5E5E5;
  border-radius: 50%;
}

/* line 6605, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-avatar img {
  display: block;
  border-radius: 50%;
}

/* line 6610, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li .children .comment-avatar {
  left: -25px;
}

/* line 6612, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-content .comment-author {
  margin-bottom: -10px;
  font-size: 16px;
  font-weight: bold;
  color: #555;
}

/* line 6619, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-content .comment-author a {
  border: none;
  color: #333;
}

/* line 6624, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-content .comment-author a:hover {
  color: #4484CE;
}

/* line 6626, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-content .comment-author span {
  display: block;
}

/* line 6628, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-content .comment-author span,
.comment-content .comment-author span a {
  font-size: 12px;
  font-weight: normal;
  font-family: 'Crete Round', serif;
  font-style: italic;
  color: #AAA;
}

/* line 6637, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-content .comment-author span a:hover {
  color: #888;
}

/* line 6639, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-reply-link,
.review-comment-ratings {
  display: block;
  position: absolute;
  top: 4px;
  left: auto;
  text-align: center;
  right: 0px;
  width: 14px;
  height: 14px;
  color: #CCC;
  font-size: 14px;
  line-height: 1;
}

/* line 6654, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.review-comment-ratings {
  width: auto;
  color: #333;
}

/* line 6659, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.comment-reply-link:hover {
  color: #888;
}

/* ----------------------------------------------------------------
  Comment Form
-----------------------------------------------------------------*/
/* line 6667, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#respond,
#respond form {
  margin-bottom: 0;
}

/* line 6670, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li #respond {
  margin: 30px 0 0;
}

/* line 6672, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.commentlist li li #respond {
  margin-left: 30px;
}

/* line 6674, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#respond p {
  margin: 10px 0 0 0;
}

/* line 6676, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#respond p:first-child {
  margin-top: 0;
}

/* line 6678, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#respond label small {
  color: #999;
  font-weight: normal;
}

/* line 6683, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#respond input[type="text"],
#respond textarea {
  margin-bottom: 0;
}

/* line 6686, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#respond .col_one_third,
#respond .col_full {
  margin-bottom: 20px;
}

/* line 6689, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fb-comments,
.fb_iframe_widget,
.fb-comments > span,
.fb_iframe_widget > span,
.fb-comments > span > iframe,
.fb_iframe_widget > span > iframe {
  display: block !important;
  width: 100% !important;
  margin: 0;
}

/* Post Elements
-----------------------------------------------------------------*/
/* line 6704, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
img.alignleft,
div.alignleft {
  float: left;
  margin: 5px 20px 13px 0;
  max-width: 100%;
}

/* line 6711, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
div.alignleft > img,
div.alignnone > img,
div.aligncenter > img,
div.alignright > img {
  display: block;
  float: none;
}

/* line 6719, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
img.alignnone,
img.aligncenter,
div.alignnone,
div.aligncenter {
  display: block;
  margin: 10px 0;
  float: none;
}

/* line 6728, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
img.aligncenter,
div.aligncenter,
div.aligncenter img {
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

/* line 6736, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
img.alignright,
div.alignright {
  float: right;
  margin: 5px 0 13px 20px;
}

/* line 6742, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.wp-caption {
  text-align: center;
  margin: 10px 20px 13px 20px;
  font-family: 'Lato', Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}

/* line 6749, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.wp-caption img,
.wp-caption img a {
  display: block;
  margin: 0;
}

/* line 6755, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
p.wp-caption-text {
  display: inline-block;
  margin: 10px 0 0 0;
  padding: 5px 10px;
  background-color: #EEE;
  border-radius: 50px;
}

/* line 6763, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.wp-smiley {
  max-height: 13px;
  margin: 0 !important;
}

/* Infinity Scroll - Message Style
-----------------------------------------------------------------*/
/* line 6772, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#infscr-loading,
#portfolio-ajax-loader {
  position: fixed;
  z-index: 20;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  line-height: 48px;
  font-size: 24px;
  color: #FFF;
  text-align: center;
}

/* line 6789, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#infscr-loading img,
#portfolio-ajax-loader img {
  display: none;
  width: 24px;
  height: 24px;
  margin: 12px;
}

/* line 6797, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-ajax-loader {
  display: none;
}

/* line 6799, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#portfolio-ajax-loader img {
  display: block;
}

/* ----------------------------------------------------------------
  Shop
-----------------------------------------------------------------*/
/* line 6807, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.shop {
  position: relative;
  margin: 0 -20px -20px 0;
}

/* line 6812, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product {
  position: relative;
}

/* line 6814, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.shop .product {
  float: left;
  padding: 0 20px 20px 0;
  width: 25%;
}

/* line 6820, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* line 6827, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-image > a,
.product-image .slide a,
.product-image img {
  display: block;
  width: 100%;
  height: 100%;
}

/* line 6835, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .product-image > a {
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

/* line 6841, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-image > a:nth-of-type(2) {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

/* line 6849, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-image:hover > a:nth-of-type(2) {
  opacity: 1;
  z-index: 2;
}

/* line 6854, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-desc {
  padding: 15px 0;
  font-size: 14px;
}

/* line 6859, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-title {
  margin-bottom: 7px;
}

/* line 6861, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-title h3 {
  margin: 0;
  font-size: 20px;
}

/* line 6866, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-title h3 a,
.single-product .product-title h2 a {
  color: #333;
}

/* line 6869, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-title h3 a:hover,
.single-product .product-title h2 a:hover {
  color: #4484CE;
}

/* line 6872, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-price {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
}

/* line 6879, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-price del {
  font-weight: 400;
  font-size: 90%;
  color: #888;
}

/* line 6885, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-price ins {
  text-decoration: none;
  color: #4484CE;
}

/* line 6890, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-overlay {
  position: absolute;
  width: 100%;
  height: 44px;
  line-height: 44px;
  top: auto;
  bottom: -44px;
  left: 0;
  z-index: 6;
}

/* line 6901, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .product-overlay {
  -webkit-transition: bottom .3s ease-in-out;
  -o-transition: bottom .3s ease-in-out;
  transition: bottom .3s ease-in-out;
}

/* line 6907, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product:hover .product-overlay {
  bottom: 0;
}

/* line 6909, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-overlay a {
  display: block;
  float: left;
  width: 50%;
  font-size: 13px;
  color: #333;
  background-color: #F5F5F5;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 6920, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch):not(.device-xs):not(.device-xxs) .product-overlay a {
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* line 6926, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-overlay a.item-quick-view {
  border-right: 0;
}

/* line 6928, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-overlay a i {
  position: relative;
  top: 1px;
  font-size: 14px;
  margin-right: 3px;
}

/* line 6935, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-overlay a:hover {
  background-color: #333;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* line 6941, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sale-flash {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  background-color: #4484CE;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
  border-radius: 2px;
  z-index: 5;
}

/* line 6953, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sale-flash.out-of-stock {
  background-color: #777;
}

/* Shop - 3 Columns
-----------------------------------------------------------------*/
/* line 6959, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.shop.product-3 {
  margin: 0 -30px -30px 0;
}

/* line 6961, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-3 .product {
  padding: 0 30px 30px 0;
  width: 33.33333333%;
}

/* Shop - 3 Columns - Sidebar
-----------------------------------------------------------------*/
/* line 6970, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .shop.product-3 {
  margin: 0 -25px -25px 0;
}

/* line 6972, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .product-3 .product {
  padding: 0 25px 25px 0;
}

/* Shop - 2 Columns - Sidebar
-----------------------------------------------------------------*/
/* line 6978, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .shop.product-2 {
  margin: 0 -40px -40px 0;
}

/* line 6980, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.postcontent .product-2 .product {
  padding: 0 40px 40px 0;
  width: 50%;
}

/* Shop - 2 Columns - Both Sidebar
-----------------------------------------------------------------*/
/* line 6989, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .shop.product-2 {
  margin: 0 -40px -20px 0;
}

/* line 6991, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .product-2 .product {
  padding: 0 40px 20px 0;
}

/* Shop - 1 Column
-----------------------------------------------------------------*/
/* line 6997, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.shop.product-1 {
  margin: 0 0 -40px 0;
}

/* line 6999, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-1 .product {
  float: none;
  margin: 0 0 40px 0;
  padding: 0;
  width: 100%;
}

/* line 7006, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-1 .product-image {
  float: left;
  width: 300px;
  height: 400px;
  margin-right: 30px;
}

/* line 7013, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-1 .product.alt .product-image {
  float: right;
  margin: 0 0 0 30px;
}

/* line 7018, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-1 .product-desc {
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* line 7024, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-1 .product-title h3 {
  font-size: 22px;
}

/* line 7026, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-1 .product-desc .product-price {
  font-size: 20px;
}

/* line 7028, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-1 .product-desc .product-rating {
  margin-bottom: 15px;
}

/* Shop - 1 Column - Both Sidebar
-----------------------------------------------------------------*/
/* line 7034, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .product-1 .product {
  border-top: 1px solid #F5F5F5;
  padding-top: 40px;
}

/* line 7039, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .product-1 .product:first-child {
  border-top: 0;
  padding-top: 0;
}

/* line 7044, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .product-1 .product-image {
  width: 240px;
  height: 320px;
}

/* line 7049, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .product-1 .product-title h3 {
  font-size: 20px;
}

/* line 7051, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bothsidebar .product-1 .product-desc .product-price {
  font-size: 16px;
}

/* Shop - Single
-----------------------------------------------------------------*/
/* line 7057, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .product {
  width: 100%;
  margin: 0;
}

/* line 7062, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.shop-quick-view-ajax,
.portfolio-ajax-modal {
  position: relative;
  background-color: #fafafa;
  width: 800px;
  margin: 0 auto;
}

/* line 7070, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .product-image,
.single-product .product-image img {
  height: auto;
}

/* line 7073, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .product-desc {
  padding: 0;
}

/* line 7075, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .product-title h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

/* line 7080, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .product-price {
  float: left;
  font-size: 24px;
  color: #4484CE;
  margin-bottom: 0;
}

/* line 7087, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .product-rating {
  float: right;
  position: relative;
  top: 9px;
}

/* line 7093, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .product-desc .line {
  margin: 20px 0;
}

/* line 7095, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quantity {
  float: left;
  margin-right: 30px;
}

/* line 7100, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quantity .qty {
  float: left;
  width: 50px;
  height: 40px;
  line-height: 40px;
  border: 0;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  background-color: #EEE;
  text-align: center;
  margin-bottom: 0;
}

/* line 7113, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quantity .plus,
.quantity .minus {
  display: block;
  float: left;
  cursor: pointer;
  border: 0px transparent;
  padding: 0;
  width: 36px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #EEE;
  font-size: 16px;
  font-weight: bold;
  transition: background-color .2s linear;
  -webkit-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
}

/* line 7132, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quantity .plus:hover,
.quantity .minus:hover {
  background-color: #DDD;
}

/* line 7135, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quantity .qty:focus,
.quantity .plus:focus,
.quantity .minus:focus {
  box-shadow: none !important;
  outline: 0 !important;
}

/* line 7142, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .add-to-cart.button {
  height: 40px;
  line-height: 40px;
}

/* line 7147, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-meta {
  font-size: 13px;
  color: #777;
}

/* line 7152, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-meta > .panel-body {
  margin-bottom: -5px;
}

/* line 7154, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product-meta > .panel-body > span {
  display: block;
  margin-bottom: 5px;
}

/* line 7160, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .feature-box.fbox-plain.fbox-small {
  padding-left: 26px;
}

/* line 7162, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .feature-box.fbox-plain.fbox-small .fbox-icon {
  width: 20px;
}

/* line 7164, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .feature-box.fbox-plain.fbox-small h3 {
  font-size: 15px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 7px;
}

/* line 7171, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .feature-box.fbox-plain.fbox-small p {
  margin-left: -26px;
}

/* line 7173, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-product .feature-box.fbox-plain.fbox-small .fbox-icon i {
  font-size: 18px;
}

/* Individual Product
-----------------------------------------------------------------*/
/* line 7179, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.product.iproduct {
  float: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* line 7186, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.iproduct .product-image,
.iproduct .product-image a,
.iproduct .product-image img {
  height: auto;
}

/* ----------------------------------------------------------------
  Cart
-----------------------------------------------------------------*/
/* line 7196, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart .remove {
  font-size: 14px;
  color: #FF0000;
}

/* line 7201, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart .remove:hover {
  color: #000;
}

/* line 7203, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart th {
  padding: 12px 15px !important;
  font-size: 14px;
  color: #555;
}

/* line 7209, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart td {
  padding: 12px 15px !important;
  vertical-align: middle !important;
  border-color: #E5E5E5 !important;
}

/* line 7215, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart-product-thumbnail a {
  display: block;
  width: 68px;
}

/* line 7220, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart-product-thumbnail img {
  display: block;
  width: 64px;
  height: 64px;
  border: 2px solid #EEE;
}

/* line 7227, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart-product-thumbnail img:hover {
  border-color: #4484CE;
}

/* line 7229, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart-product-name a,
.product-name a {
  font-weight: bold;
  font-size: 13px;
  color: #333;
}

/* line 7236, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart-product-name a:hover,
.product-name a:hover {
  color: #666;
}

/* line 7239, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart-product-price,
.cart-product-quantity,
.cart-product-subtotal {
  text-align: center !important;
}

/* line 7243, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.cart-product-quantity .quantity {
  display: inline-block;
  margin: 0;
  float: none;
}

/* line 7249, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
td.actions {
  padding: 20px 15px !important;
  vertical-align: top !important;
  background-color: #F5F5F5;
}

/* ----------------------------------------------------------------
  Events
-----------------------------------------------------------------*/
/* line 7261, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.events .entry,
.ievent {
  padding: 20px;
  background-color: #F9F9F9;
  border-bottom: 3px solid #EEE;
}

/* line 7268, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.events .entry-image .entry-date,
.ievent .entry-image .entry-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
  width: 60px;
  height: 64px;
  text-align: center;
  padding-top: 7px;
  font-size: 26px;
  line-height: 1;
}

/* line 7284, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.events .entry-image .entry-date span,
.ievent .entry-image .entry-date span {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}

/* line 7291, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.events .entry-c,
.ievent .entry-c {
  padding: 5px 0;
}

/* line 7294, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-event .entry-image img {
  border-radius: 0;
}

/* line 7296, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-event .events-meta {
  font-size: 14px;
}

/* line 7298, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-event .events-meta .iconlist li,
.parallax .iconlist li {
  margin: 5px 0;
}

/* line 7301, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-event .entry-overlay,
.parallax .entry-overlay-meta {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
  line-height: 80px;
  font-size: 22px;
  color: #FFF;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

/* line 7318, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-event .countdown {
  display: inline-block;
  position: relative;
  top: 7px;
}

/* line 7324, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-event .countdown-section {
  padding: 0 15px;
  border-left-color: rgba(255, 255, 255, 0.3);
  color: #CCC;
}

/* line 7330, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.single-event .countdown-amount {
  color: #FFF;
}

/* line 7332, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax .entry-overlay,
.parallax .entry-overlay-meta {
  background: transparent;
  width: auto;
  text-align: right;
  bottom: 30px;
  left: auto;
  right: 30px;
}

/* line 7342, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax .entry-overlay-meta {
  padding: 20px;
  font-size: 14px;
  text-align: left;
  right: 38px;
  bottom: 130px;
  width: 368px;
  height: auto;
  line-height: inherit;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}

/* line 7355, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax.overlay-left .entry-overlay,
.parallax.overlay-left .entry-overlay-meta {
  right: auto;
  left: 30px;
}

/* line 7361, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax.overlay-left .entry-overlay-meta {
  left: 38px;
}

/* line 7363, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax.overlay-center .entry-overlay,
.parallax.overlay-center .entry-overlay-meta {
  bottom: 100px;
  right: auto;
  left: 50%;
  margin-left: -192px;
}

/* line 7371, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax.overlay-center .entry-overlay-meta {
  top: 100px;
  bottom: auto;
  margin-left: -184px;
}

/* line 7377, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax .entry-overlay-meta h2 {
  font-size: 20px;
  /*text-transform: uppercase;*/
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 17px;
}

/* line 7384, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax .entry-overlay-meta h2 a {
  color: #FFF;
}

/* line 7386, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax .entry-overlay-meta h2 a:hover {
  color: #DDD;
}

/* line 7388, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax .countdown {
  top: 0;
}

/* line 7390, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax .countdown-section {
  border-left: 0;
  width: 80px;
  height: 80px;
  margin: 0 8px;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  padding-top: 14px;
}

/* line 7401, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.parallax .countdown-amount {
  font-size: 28px;
  margin-bottom: 6px;
}

/* Individual Events
-----------------------------------------------------------------*/
/* line 7410, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ievent {
  position: relative;
  margin-top: 20px;
}

/* line 7415, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ievent:first-child {
  margin-top: 0;
}

/* line 7417, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ievent .entry-image {
  width: 30%;
  margin-right: 20px;
}

/* line 7422, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ievent .entry-content {
  margin-top: 20px;
}

/* line 7424, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ievent .entry-title h2 {
  font-size: 18px;
}

/* line 7426, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ievent .entry-meta {
  margin-right: -10px;
}

/* line 7428, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ievent .entry-meta li {
  font-size: 13px;
  margin-right: 10px;
  padding-left: 10px;
}

/* line 7434, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ievent .entry-meta li:first-child {
  padding-left: 0;
}

/* ----------------------------------------------------------------

  Countdown

-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
  Countdown
-----------------------------------------------------------------*/
/* line 7447, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown {
  display: block;
}

/* line 7449, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-row {
  display: block;
  position: relative;
  text-align: center;
}

/* line 7455, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-section {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  width: 25%;
  border-left: 1px dotted #BBB;
  color: #888;
  text-transform: capitalize;
}

/* line 7466, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-section:first-child {
  border-left: 0;
}

/* line 7468, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-amount {
  display: block;
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

/* line 7475, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-descr {
  display: block;
  width: 100%;
}

/* Countdown - Medium
-----------------------------------------------------------------*/
/* line 7484, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-medium .countdown-section {
  font-size: 14px;
}

/* line 7486, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-medium .countdown-amount {
  font-size: 30px;
  margin-bottom: 7px;
}

/* Countdown - Large
-----------------------------------------------------------------*/
/* line 7495, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-large .countdown-section {
  font-size: 18px;
}

/* line 7497, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown-large .countdown-amount {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Countdown - Inline
-----------------------------------------------------------------*/
/* line 7507, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown.countdown-inline {
  display: inline-block;
}

/* line 7509, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown.countdown-inline .countdown-row {
  display: inline-block;
  text-align: center;
}

/* line 7514, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown.countdown-inline .countdown-section {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  width: auto;
  border: none;
  color: inherit;
  margin-left: 7px;
  text-transform: inherit;
}

/* line 7525, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown.countdown-inline .countdown-section:first-child {
  margin-left: 0;
}

/* line 7527, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown.countdown-inline .countdown-amount {
  display: inline-block;
  font-size: inherit;
  color: inherit;
  font-weight: bold;
  margin: 0 3px 0 0;
}

/* line 7535, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.countdown.countdown-inline .countdown-descr {
  display: inline-block;
  width: auto;
}

/* Countdown - Coming Soon
-----------------------------------------------------------------*/
/* line 7544, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-xs):not(.device-xxs) .countdown.countdown-large.coming-soon .countdown-section {
  border: none;
  padding: 15px;
}

/* line 7549, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-xs):not(.device-xxs) .countdown.countdown-large.coming-soon .countdown-amount {
  height: 140px;
  line-height: 140px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 15px !important;
}

/* ----------------------------------------------------------------
  Buttons
-----------------------------------------------------------------*/
/* line 7563, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  margin: 5px;
  padding: 0 22px;
  font-size: 14px;
  /*height: 40px;*/
  line-height: 40px;
  background-color: #4484CE;
  color: #FFF;
  font-weight: 600;
  /*text-transform: uppercase;*/
  /*letter-spacing: 1px;*/
  border: none;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* line 7583, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .button {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 7589, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-dark {
  background-color: #444;
}

/* line 7591, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-dark2 {
  background-color: #4484CE;
}

/* line 7593, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-light {
  background-color: #EEE;
  color: #333;
  text-shadow: none !important;
}

/* line 7599, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button:hover {
  background-color: #4484CE;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* line 7605, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-dark:hover {
  background-color: #4484CE;
}

/* line 7607, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-dark2:hover {
  background-color: #444;
}

/* line 7609, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-dark3:hover {
  background-color: #f4ad3d;
}

/* line 7611, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-mini {
  padding: 0 14px;
  font-size: 11px;
  height: 28px;
  line-height: 28px;
}

/* line 7618, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-small {
  padding: 0 17px;
  font-size: 12px;
  height: 34px;
  line-height: 34px;
}

/* line 7625, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-large {
  padding: 0 26px;
  font-size: 16px;
  height: 46px;
  line-height: 46px;
}

/* line 7632, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-xlarge {
  padding: 0 32px;
  font-size: 18px;
  letter-spacing: 2px;
  height: 52px;
  line-height: 52px;
}

/* line 7640, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-desc {
  text-align: left;
  padding: 24px 34px;
  font-size: 22px;
  height: auto;
  line-height: 1;
  font-family: 'SofiaProRegular';
}

/* line 7649, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-desc span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'Crete Round', serif;
  font-style: italic;
  text-transform: none;
}

/* line 7660, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button i {
  position: relative;
  top: 1px;
  line-height: 1;
  margin-right: 5px;
  width: 16px;
  text-align: center;
}

/* line 7669, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.tright i {
  margin: 0 0 0 5px;
}

/* line 7671, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-mini i {
  margin-right: 3px;
}

/* line 7673, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-mini.tright i {
  margin: 0 0 0 3px;
}

/* line 7675, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-small i {
  margin-right: 4px;
}

/* line 7677, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-small.tright i {
  margin: 0 0 0 4px;
}

/* line 7679, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-xlarge i {
  top: 2px;
  margin-right: 8px;
}

/* line 7684, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-xlarge.tright i {
  margin: 0 0 0 8px;
}

/* line 7686, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-desc i {
  top: 1px;
  font-size: 48px;
  width: 48px;
  text-align: center;
  margin-right: 12px;
}

/* line 7694, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-desc.tright i {
  margin: 0 0 0 12px;
}

/* line 7696, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-desc div {
  display: inline-block;
}

/* line 7698, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-rounded {
  border-radius: 3px;
}

/* Buttons - Border
-----------------------------------------------------------------*/
/* line 7704, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border {
  border: 2px solid #444;
  background-color: transparent;
  color: #333;
  line-height: 36px;
  font-weight: 600;
  text-shadow: none;
}

/* line 7713, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border-thin {
  border-width: 1px;
  line-height: 38px;
}

/* line 7718, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-mini {
  line-height: 24px;
}

/* line 7720, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-small {
  line-height: 30px;
}

/* line 7722, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-large {
  line-height: 42px;
}

/* line 7724, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-xlarge {
  line-height: 48px;
}

/* line 7726, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border-thin.button-mini {
  line-height: 26px;
}

/* line 7728, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border-thin.button-small {
  line-height: 32px;
}

/* line 7730, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border-thin.button-large {
  line-height: 44px;
}

/* line 7732, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border-thin.button-xlarge {
  line-height: 50px;
}

/* line 7734, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-desc {
  line-height: 1;
}

/* line 7736, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border:not(.button-fill):hover {
  background-color: #444;
  color: #FFF;
  border-color: transparent !important;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* line 7743, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-light {
  border-color: #EEE;
  color: #EEE;
}

/* line 7748, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-light:hover {
  background-color: #EEE;
  color: #333;
  text-shadow: none;
}

/* Buttons - Border
-----------------------------------------------------------------*/
/* line 7758, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-3d {
  border-radius: 3px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.15);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

/* line 7766, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-3d:hover {
  background-color: #4484CE !important;
  opacity: 0.9;
}

/* line 7771, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-3d.button-light:hover,
.button.button-reveal.button-light:hover {
  text-shadow: none;
  color: #333;
}

/* Buttons - Icon Reveal
-----------------------------------------------------------------*/
/* line 7781, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal {
  padding: 0 28px;
  overflow: hidden;
}

/* line 7786, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal i {
  display: block;
  position: absolute;
  top: 0;
  left: -32px;
  width: 32px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 7799, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-border i {
  top: -2px;
}

/* line 7801, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.tright i {
  left: auto;
  right: -32px;
}

/* line 7806, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-3d i,
.button.button-reveal.button-rounded i {
  border-radius: 3px 0 0 3px;
}

/* line 7809, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-3d.tright i,
.button.button-reveal.button-rounded.tright i {
  border-radius: 0 3px 3px 0;
}

/* line 7812, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal span {
  display: inline-block;
  position: relative;
  left: 0;
}

/* line 7818, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .button.button-reveal i,
body:not(.device-touch) .button.button-reveal span {
  -webkit-transition: left 0.3s ease, right 0.3s ease;
  -o-transition: left 0.3s ease, right 0.3s ease;
  transition: left 0.3s ease, right 0.3s ease;
}

/* line 7825, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-mini {
  padding: 0 17px;
}

/* line 7827, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-mini i {
  left: -22px;
  width: 22px;
  height: 28px;
  line-height: 28px;
}

/* line 7834, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-mini.tright i {
  left: auto;
  right: -22px;
}

/* line 7839, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-small {
  padding: 0 22px;
}

/* line 7841, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-small i {
  left: -26px;
  width: 26px;
  height: 34px;
  line-height: 34px;
}

/* line 7848, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-small.tright i {
  left: auto;
  right: -26px;
}

/* line 7853, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-large {
  padding: 0 32px;
}

/* line 7855, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-large i {
  left: -38px;
  width: 38px;
  height: 46px;
  line-height: 46px;
}

/* line 7862, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-large.tright i {
  left: auto;
  right: -38px;
}

/* line 7867, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-xlarge {
  padding: 0 40px;
}

/* line 7869, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-xlarge i {
  left: -44px;
  width: 44px;
  height: 52px;
  line-height: 52px;
}

/* line 7876, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-xlarge.tright i {
  left: auto;
  right: -44px;
}

/* line 7881, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal:hover i {
  left: 0;
}

/* line 7883, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.tright:hover i {
  left: auto;
  right: 0;
}

/* line 7888, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal:hover span {
  left: 16px;
}

/* line 7890, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-mini:hover span {
  left: 11px;
}

/* line 7892, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-small:hover span {
  left: 13px;
}

/* line 7894, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-large:hover span {
  left: 19px;
}

/* line 7896, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-xlarge:hover span {
  left: 22px;
}

/* line 7898, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.tright:hover span {
  left: -16px;
}

/* line 7900, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-mini.tright:hover span {
  left: -11px;
}

/* line 7902, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-small.tright:hover span {
  left: -13px;
}

/* line 7904, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-large.tright:hover span {
  left: -19px;
}

/* line 7906, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-reveal.button-xlarge.tright:hover span {
  left: -22px;
}

/* Buttons - Promo 100% Width
-----------------------------------------------------------------*/
/* line 7912, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-full {
  display: block !important;
  white-space: normal;
  margin: 0;
  height: auto;
  line-height: 1.6;
  padding: 30px 0;
  font-size: 15px;
  font-weight: 300;
  text-transform: none;
  border-radius: 0;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.1);*/
}

/* line 7926, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-full.button-light {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* line 7928, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-full strong {
  font-weight: 600;
  border-bottom: 2px solid #EEE;
}

/* line 7933, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .button.button-full strong {
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
}

/* line 7939, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-full.button-light strong {
  border-bottom-color: #333;
}

/* line 7941, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-full.button-light:hover strong {
  border-bottom-color: #EEE;
}

/* Buttons - Circle
-----------------------------------------------------------------*/
/* line 7947, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-circle {
  border-radius: 20px;
}

/* line 7949, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-mini.button-circle {
  border-radius: 14px;
}

/* line 7951, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-small.button-circle {
  border-radius: 17px;
}

/* line 7953, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-large.button-circle {
  border-radius: 23px;
}

/* line 7955, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-xlarge.button-circle {
  border-radius: 26px;
}

/* Buttons - Fill Effect
-----------------------------------------------------------------*/
/* line 7961, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill {
  overflow: hidden;
  transform-style: preserve-3d;
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
  -webkit-backface-visibility: hidden;
}

/* line 7968, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill span {
  position: relative;
}

/* line 7970, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill:hover {
  background-color: transparent !important;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* line 7976, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill.button-light:hover {
  border-color: #EEE !important;
  color: #333 !important;
  text-shadow: none;
}

/* line 7982, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill:before {
  content: '';
  position: absolute;
  background-color: #444;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-backface-visibility: hidden;
}

/* line 7996, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill.button-light:before {
  background-color: #EEE;
}

/* line 7998, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill.fill-from-right:before {
  left: auto;
  right: 0;
}

/* line 8003, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill:hover:before {
  width: 100%;
}

/* line 8005, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill.fill-from-top:before,
.button.button-border.button-fill.fill-from-bottom:before {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* line 8012, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill.fill-from-top:before {
  width: 100%;
  height: 0;
}

/* line 8017, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill.fill-from-top:hover:before {
  height: 100%;
}

/* line 8019, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill.fill-from-bottom:before {
  width: 100%;
  height: 0;
  top: auto;
  bottom: 0;
}

/* line 8026, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-border.button-fill.fill-from-bottom:hover:before {
  height: 100%;
}

/* Buttons - Colors
-----------------------------------------------------------------*/
/* line 8032, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-red {
  background-color: #C02942;
}

/* line 8033, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-red:hover,
.button-reveal.button-red:hover,
.button-border.button-red:hover,
.button-border.button-red.button-fill:before {
  background-color: #C02942 !important;
}

/* line 8038, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-red {
  color: #C02942;
  border-color: #C02942;
}

/* line 8043, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-teal {
  background-color: #53777A;
}

/* line 8044, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-teal:hover,
.button-reveal.button-teal:hover,
.button-border.button-teal:hover,
.button-border.button-teal.button-fill:before {
  background-color: #53777A !important;
}

/* line 8049, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-teal {
  color: #53777A;
  border-color: #53777A;
}

/* line 8054, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-yellow {
  background-color: #ECD078;
}

/* line 8055, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-yellow:hover,
.button-reveal.button-yellow:hover,
.button-border.button-yellow:hover,
.button-border.button-yellow.button-fill:before {
  background-color: #ECD078 !important;
}

/* line 8060, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-yellow,
.button-border.button-yellow.button-fill.button-light:hover {
  color: #ECD078 !important;
  border-color: #ECD078 !important;
}

/* line 8066, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-yellow:hover,
.button-border.button-yellow.button-fill.button-light:hover {
  color: #333 !important;
}

/* line 8069, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-green {
  background-color: #59BA41;
}

/* line 8070, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-green:hover,
.button-reveal.button-green:hover,
.button-border.button-green:hover,
.button-border.button-green.button-fill:before {
  background-color: #59BA41 !important;
}

/* line 8075, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-green {
  color: #59BA41;
  border-color: #59BA41;
}

/* line 8080, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-green2 {
  background-color: #16e29c;
}

/* line 8081, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-green2:hover,
.button-reveal.button-green2:hover,
.button-border.button-green2:hover,
.button-border.button-green2.button-fill:before {
  background-color: #4484CE !important;
}

/* line 8086, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-green2 {
  color: #16e29c;
  border-color: #16e29c;
}

/*$orange;
border-color: $blue; */
/* line 8094, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-brown {
  background-color: #774F38;
}

/* line 8095, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-brown:hover,
.button-reveal.button-brown:hover,
.button-border.button-brown:hover,
.button-border.button-brown.button-fill:before {
  background-color: #774F38 !important;
}

/* line 8100, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-brown {
  color: #774F38;
  border-color: #774F38;
}

/* line 8105, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-aqua {
  background-color: #40C0CB;
}

/* line 8106, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-aqua:hover,
.button-reveal.button-aqua:hover,
.button-border.button-aqua:hover,
.button-border.button-aqua.button-fill:before {
  background-color: #40C0CB !important;
}

/* line 8111, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-aqua {
  color: #40C0CB;
  border-color: #40C0CB;
}

/* line 8116, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-lime {
  background-color: #AEE239;
}

/* line 8117, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-lime:hover,
.button-reveal.button-lime:hover,
.button-border.button-lime:hover,
.button-border.button-lime.button-fill:before {
  background-color: #AEE239 !important;
}

/* line 8122, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-lime {
  color: #AEE239;
  border-color: #AEE239;
}

/* line 8127, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-purple {
  background-color: #5D4157;
}

/* line 8128, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-purple:hover,
.button-reveal.button-purple:hover,
.button-border.button-purple:hover,
.button-border.button-purple.button-fill:before {
  background-color: #5D4157 !important;
}

/* line 8133, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-purple {
  color: #5D4157;
  border-color: #5D4157;
}

/* line 8138, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-leaf {
  background-color: #A8CABA;
}

/* line 8139, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-leaf:hover,
.button-reveal.button-leaf:hover,
.button-border.button-leaf:hover,
.button-border.button-leaf.button-fill:before {
  background-color: #A8CABA !important;
}

/* line 8144, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-leaf {
  color: #A8CABA;
  border-color: #A8CABA;
}

/* line 8149, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-pink {
  background-color: #F89FA1;
}

/* line 8150, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-pink:hover,
.button-reveal.button-pink:hover,
.button-border.button-pink:hover,
.button-border.button-pink.button-fill:before {
  background-color: #F89FA1 !important;
}

/* line 8155, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-pink {
  color: #F89FA1;
  border-color: #F89FA1;
}

/* line 8160, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-dirtygreen {
  background-color: #1693A5;
}

/* line 8161, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-dirtygreen:hover,
.button-reveal.button-dirtygreen:hover,
.button-border.button-dirtygreen:hover,
.button-border.button-dirtygreen.button-fill:before {
  background-color: #1693A5 !important;
}

/* line 8166, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-dirtygreen {
  color: #1693A5;
  border-color: #1693A5;
}

/* line 8171, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-blue {
  background-color: #1265A8;
}

/* line 8172, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-blue:hover,
.button-reveal.button-blue:hover,
.button-border.button-blue:hover,
.button-border.button-blue.button-fill:before {
  background-color: #1265A8 !important;
}

/* line 8177, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-blue {
  color: #1265A8;
  border-color: #1265A8;
}

/* line 8182, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-amber {
  background-color: #EB9C4D;
}

/* line 8183, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-amber:hover,
.button-reveal.button-amber:hover,
.button-border.button-amber:hover,
.button-border.button-amber.button-fill:before {
  background-color: #EB9C4D !important;
}

/* line 8188, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-amber {
  color: #EB9C4D;
  border-color: #EB9C4D;
}

/* line 8193, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-black {
  background-color: #111;
}

/* line 8194, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-black:hover,
.button-reveal.button-black:hover,
.button-border.button-black:hover,
.button-border.button-black.button-fill:before {
  background-color: #111 !important;
}

/* line 8199, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-black {
  color: #111;
  border-color: #111;
}

/* line 8204, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-white {
  background-color: #F9F9F9;
}

/* line 8205, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-white:hover,
.button-reveal.button-white:hover {
  background-color: #F9F9F9 !important;
}

/* line 8208, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-theme1 {
  background-color: #4484CE;
}

/* line 8209, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-theme1:hover,
.button-reveal.button-theme1:hover,
.button-border.button-theme1:hover,
.button-border.button-theme1.button-fill:before {
  background-color: #4484CE !important;
}

/* line 8214, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-theme1:hover {
  background-color: #16e29c !important;
}

/* line 8216, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-theme1 {
  color: #4484CE;
  border-color: #4484CE;
}

/* line 8221, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-theme2 {
  background-color: #16e29c;
}

/* line 8222, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-theme2:hover,
.button-reveal.button-theme2:hover,
.button-border.button-theme2:hover,
.button-border.button-theme2.button-fill:before {
  background-color: #16e29c !important;
}

/* line 8227, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-theme2 {
  color: #16e29c;
  border-color: #16e29c;
}

/* line 8232, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-theme3 {
  background-color: #F9CF00;
}

/* line 8233, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-theme3:hover,
.button-reveal.button-theme3:hover,
.button-border.button-theme3:hover,
.button-border.button-theme3.button-fill:before {
  background-color: #F9CF00 !important;
}

/* line 8238, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-theme3 {
  color: #F9CF00;
  border-color: #F9CF00;
}

/* line 8243, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-theme4 {
  background-color: #F19F4D;
}

/* line 8244, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-theme4:hover,
.button-reveal.button-theme4:hover,
.button-border.button-theme4:hover,
.button-border.button-theme4.button-fill:before {
  background-color: #F19F4D !important;
}

/* line 8249, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-theme4 {
  color: #F19F4D;
  border-color: #F19F4D;
}

/* line 8254, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-theme5 {
  background-color: #555555;
}

/* line 8255, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-3d.button-theme5:hover,
.button-reveal.button-theme5:hover,
.button-border.button-theme5:hover,
.button-border.button-theme5.button-fill:before {
  background-color: #555555 !important;
}

/* line 8260, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-rounded.button-theme5:hover {
  background-color: #4484CE !important;
}

/* line 8262, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button-border.button-theme5 {
  color: #555555;
  border-color: #555555;
}

/* Buttons - No Hover
-----------------------------------------------------------------*/
/* line 8271, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.button.button-nohover:hover {
  opacity: inherit !important;
  background-color: inherit !important;
  color: inherit !important;
  border-color: inherit !important;
}

/* line 8278, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.not-active {
  pointer-events: none;
  cursor: default;
}

/* ----------------------------------------------------------------
  Promo Boxes
-----------------------------------------------------------------*/
/* line 8289, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo {
  position: relative;
  padding: 30px 200px 30px 0;
}

/* line 8294, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo h3 {
  font-weight: bold;
  margin-bottom: 0;
}

/* line 8299, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo > span,
.promo > .container > span {
  display: block;
  color: #444;
  font-weight: 300;
  font-size: 16px;
  margin-top: 6px;
}

/* line 8308, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo a.button {
  position: absolute;
  top: 50%;
  margin: 0;
  margin-top: -18px;
  left: auto;
  right: 0;
}

/* line 8317, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo a.button.button-mini {
  margin-top: -12px;
}

/* line 8319, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo a.button.button-small {
  margin-top: -15px;
}

/* line 8321, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo a.button.button-large {
  margin-top: -22px;
}

/* line 8323, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo a.button.button-xlarge {
  margin-top: -25px;
}

/* line 8325, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo a.button.button-desc {
  margin-top: -40px;
}

/* Promo Uppercase
-----------------------------------------------------------------*/
/* line 8331, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo-uppercase {
  /*text-transform: uppercase;*/
}

/* line 8333, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo-uppercase h3 {
  font-size: 22px;
}

/* line 8335, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo-uppercase > span,
.promo-uppercase > .container > span {
  font-size: 15px;
}

/* Promo - with Border
-----------------------------------------------------------------*/
/* line 8342, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-border {
  border: 1px solid #E5E5E5;
  border-radius: 3px;
  padding-left: 30px;
}

/* line 8348, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-border a.button {
  right: 30px;
}

/* Promo - Light
-----------------------------------------------------------------*/
/* line 8354, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-light {
  background-color: #F5F5F5;
  border-radius: 3px;
  padding-left: 30px;
}

/* line 8360, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-light a.button {
  right: 30px;
}

/* Promo - Dark
-----------------------------------------------------------------*/
/* line 8366, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-dark {
  border: 0 !important;
  background-color: #333;
  padding: 30px 200px 30px 30px;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
  border-radius: 3px;
}

/* line 8374, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-dark h3 {
  color: #FFF;
}

/* line 8376, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-dark > h3 span,
.promo.promo-dark > .container > h3 span {
  padding: 2px 8px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.15);
  color: #FFF;
  font-weight: 400;
}

/* line 8385, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-dark > span,
.promo.promo-dark > .container > span {
  color: #CCC;
  margin-top: 8px;
}

/* line 8391, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-dark a.button {
  right: 30px;
}

/* Promo - Flat
-----------------------------------------------------------------*/
/* line 8397, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-flat {
  background-color: #4484CE;
}

/* line 8399, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-flat > span,
.promo.promo-flat > .container > span {
  color: rgba(255, 255, 255, 0.9);
}

/* line 8402, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-flat a.button:not(.button-border) {
  background-color: rgba(0, 0, 0, 0.2);
  color: #FFF;
}

/* line 8407, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-flat a.button:hover {
  background-color: #fafafa;
  border-color: #FFF;
  color: #444;
  text-shadow: none;
}

/* Promo - 100% Full Width
-----------------------------------------------------------------*/
/* line 8418, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo-full {
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  padding: 40px 0 !important;
}

/* line 8425, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo-full a.button {
  right: 15px !important;
}

/* line 8427, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo-full.promo-right a.button {
  right: auto !important;
  left: 15px !important;
}

/* Promo - Parallax
-----------------------------------------------------------------*/
/* line 8435, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.parallax {
  padding: 80px 0 !important;
}

/* Promo - Right Align
-----------------------------------------------------------------*/
/* line 8441, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-right {
  text-align: right;
  padding: 30px 0 30px 200px;
}

/* line 8446, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-right a.button {
  left: 0;
  right: auto;
}

/* Promo - with Border & Right Align
-----------------------------------------------------------------*/
/* line 8455, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-right.promo-border:not(.promo-mini),
.promo.promo-dark.promo-right:not(.promo-mini) {
  padding-right: 30px;
}

/* line 8458, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-right.promo-border a.button,
.promo.promo-dark.promo-right a.button {
  left: 30px;
}

/* Promo - Center Align
-----------------------------------------------------------------*/
/* line 8465, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-center {
  text-align: center;
  padding: 30px 20px;
}

/* line 8470, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-center a.button {
  position: relative;
  top: 0;
  margin: 20px 0 0;
  left: 0 !important;
  right: 0;
}

/* Promo - Mini
-----------------------------------------------------------------*/
/* line 8482, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-mini {
  text-align: left;
  padding: 20px 25px;
}

/* line 8487, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-mini h3 {
  font-size: 20px;
  line-height: 1.5;
}

/* line 8492, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-mini.promo-uppercase h3 {
  font-size: 18px;
}

/* line 8494, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-mini.promo-dark h3 {
  line-height: 1.7;
}

/* line 8496, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-mini a.button {
  position: relative;
  top: 0;
  margin: 20px 0 0;
  left: 0 !important;
  right: 0;
}

/* Promo - Mini - Center Align
-----------------------------------------------------------------*/
/* line 8508, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-mini.promo-center {
  text-align: center;
}

/* Promo - Mini - Right Align
-----------------------------------------------------------------*/
/* line 8514, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.promo.promo-mini.promo-right {
  text-align: right;
}

/* ----------------------------------------------------------------
  Featured Boxes
-----------------------------------------------------------------*/
/* line 8522, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box {
  position: relative;
  margin-top: 20px;
  padding: 0 0 0 80px;
}

/* line 8528, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box:first-child {
  margin-top: 0;
}

/* line 8530, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box .fbox-icon {
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  top: 0;
  left: 0;
}

/* line 8539, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box .fbox-icon a,
.feature-box .fbox-icon i,
.feature-box .fbox-icon img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #FFF;
}

/* line 8549, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box .fbox-icon i,
.feature-box .fbox-icon img {
  border-radius: 50%;
  background-color: #4484CE;
}

/* line 8555, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box .fbox-icon i {
  font-style: normal;
  font-size: 28px;
  text-align: center;
  line-height: 64px;
}

/* line 8562, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box h3 {
  font-size: 16px;
  font-weight: 700;
  /*text-transform: uppercase;*/
  /*letter-spacing: 1px;*/
  margin-bottom: 0;
  color: #333;
}

/* line 8571, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box p {
  margin: 8px 0 0 0;
  color: #333;
}

/* line 8576, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box .before-heading {
  font-size: 14px;
}

/* Feature Box - Icon Large
-----------------------------------------------------------------*/
/* line 8582, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-large {
  padding: 0 0 0 115px;
}

/* line 8584, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-large .fbox-icon {
  width: 96px;
  height: 96px;
}

/* line 8589, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-large .fbox-icon i {
  font-size: 42px;
  line-height: 96px;
}

/* Feature Box - Icon Outline
-----------------------------------------------------------------*/
/* line 8598, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-outline .fbox-icon {
  border: 1px solid #4484CE;
  border-radius: 50%;
  padding: 3px;
}

/* line 8604, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-outline .fbox-icon i {
  line-height: 56px;
}

/* Feature Box - Icon Outline Large
-----------------------------------------------------------------*/
/* line 8610, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-outline.fbox-large .fbox-icon {
  padding: 4px;
}

/* line 8612, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-outline.fbox-large .fbox-icon i {
  line-height: 86px;
}

/* Feature Box - Icon Rounded
-----------------------------------------------------------------*/
/* line 8618, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-rounded .fbox-icon {
  border-radius: 3px !important;
}

/* line 8620, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-rounded .fbox-icon i,
.feature-box.fbox-rounded .fbox-icon img {
  border-radius: 3px !important;
}

/* Feature Box - Icon Rounded & Large
-----------------------------------------------------------------*/
/* line 8627, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-rounded.fbox-large .fbox-icon {
  border-radius: 4px !important;
}

/* line 8629, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-rounded.fbox-large .fbox-icon i,
.feature-box.fbox-rounded.fbox-large .fbox-icon img {
  border-radius: 4px !important;
}

/* Feature Box - Light Background
-----------------------------------------------------------------*/
/* line 8636, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-light.fbox-outline .fbox-icon {
  border-color: #E5E5E5;
}

/* line 8638, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-light .fbox-icon i,
.feature-box.fbox-light .fbox-icon img {
  border: 1px solid #E5E5E5;
  background-color: #F5F5F5;
  color: #444;
}

/* line 8645, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-light .fbox-icon i {
  line-height: 62px;
}

/* line 8647, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-light.fbox-outline .fbox-icon i {
  line-height: 54px;
}

/* line 8649, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-light.fbox-large .fbox-icon i {
  line-height: 96px;
}

/* line 8651, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-light.fbox-outline.fbox-large .fbox-icon i {
  line-height: 84px;
}

/* Feature Box - Dark Background
-----------------------------------------------------------------*/
/* line 8657, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-dark.fbox-outline .fbox-icon {
  border-color: #444;
}

/* line 8659, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-dark .fbox-icon i,
.feature-box.fbox-dark .fbox-icon img {
  background-color: #333;
}

/* Feature Box - Border
-----------------------------------------------------------------*/
/* line 8666, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border .fbox-icon {
  border: 1px solid #4484CE;
  border-radius: 50%;
}

/* line 8671, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border .fbox-icon i,
.feature-box.fbox-border .fbox-icon img {
  border: none;
  background-color: transparent !important;
  color: #4484CE;
}

/* line 8678, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border .fbox-icon {
  padding: 0;
}

/* line 8680, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border .fbox-icon i {
  line-height: 62px !important;
}

/* line 8682, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border.fbox-large .fbox-icon i {
  line-height: 94px !important;
}

/* Feature Box - Border - Light
-----------------------------------------------------------------*/
/* line 8688, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border.fbox-light .fbox-icon {
  border-color: #E5E5E5;
}

/* line 8690, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border.fbox-light .fbox-icon i,
.feature-box.fbox-border.fbox-light .fbox-icon img {
  color: #888;
}

/* Feature Box - Border - Dark
-----------------------------------------------------------------*/
/* line 8697, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border.fbox-dark .fbox-icon {
  border-color: #333;
}

/* line 8699, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-border.fbox-dark .fbox-icon i,
.feature-box.fbox-border.fbox-dark .fbox-icon img {
  color: #444;
}

/* Feature Box - Plain
-----------------------------------------------------------------*/
/* line 8706, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain .fbox-icon {
  border: none !important;
  height: auto !important;
}

/* line 8711, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain .fbox-icon i,
.feature-box.fbox-plain .fbox-icon img {
  border: none !important;
  background-color: transparent !important;
  color: #4484CE;
  border-radius: 0;
}

/* line 8719, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain .fbox-icon i {
  font-size: 48px;
  line-height: 1 !important;
}

/* line 8724, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain .fbox-icon img {
  height: 64px;
}

/* line 8726, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-image .fbox-icon {
  width: auto;
}

/* line 8728, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-image .fbox-icon img {
  width: auto;
  display: inline-block;
}

/* line 8733, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-small {
  padding-left: 42px;
}

/* line 8735, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-small .fbox-icon {
  width: 28px;
}

/* line 8737, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-small h3 {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 10px;
}

/* line 8743, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-small p {
  margin-left: -42px;
}

/* line 8745, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-small .fbox-icon i {
  font-size: 28px;
}

/* line 8747, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-small .fbox-icon img {
  height: 28px;
}

/* line 8749, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-large .fbox-icon i {
  font-size: 72px;
}

/* line 8751, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-large .fbox-icon img {
  height: 96px;
}

/* line 8753, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-light .fbox-icon i,
.feature-box.fbox-plain.fbox-light .fbox-icon img {
  color: #888;
}

/* line 8756, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-plain.fbox-dark .fbox-icon i,
.feature-box.fbox-plain.fbox-dark .fbox-icon img {
  color: #444;
}

/* Feature Box - Center
-----------------------------------------------------------------*/
/* line 8763, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center {
  padding: 0;
  text-align: center;
}

/* line 8768, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-small {
  padding-left: 0 !important;
}

/* line 8770, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center .fbox-icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 30px;
}

/* line 8777, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center .fbox-icon i {
  font-size: 42px;
  line-height: 96px;
}

/* line 8782, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-outline .fbox-icon i {
  line-height: 88px;
}

/* line 8784, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center p {
  font-size: 14px;
  margin-top: 15px;
}

/* Feature Box - Center & Large Icons
-----------------------------------------------------------------*/
/* line 8793, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-large .fbox-icon {
  width: 128px;
  height: 128px;
}

/* line 8798, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-large .fbox-icon i {
  font-size: 70px;
  line-height: 128px;
}

/* line 8803, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-large.fbox-outline .fbox-icon i {
  line-height: 118px;
}

/* line 8805, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-light .fbox-icon i {
  line-height: 94px;
}

/* line 8807, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-light.fbox-outline .fbox-icon i {
  line-height: 86px;
}

/* line 8809, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-light.fbox-outline.fbox-large .fbox-icon i {
  line-height: 114px;
}

/* line 8811, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-border .fbox-icon i {
  line-height: 94px !important;
}

/* line 8813, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-large.fbox-border .fbox-icon i {
  line-height: 126px !important;
}

/* line 8815, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-plain .fbox-icon i {
  font-size: 84px;
}

/* line 8817, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-plain .fbox-icon img {
  height: 96px;
}

/* line 8819, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-large.fbox-plain .fbox-icon i {
  font-size: 112px;
}

/* line 8821, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-large.fbox-plain .fbox-icon img {
  height: 128px;
}

/* Feature Box - Center & Large Icons
-----------------------------------------------------------------*/
/* line 8827, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-small .fbox-icon {
  width: 64px;
  height: 64px;
}

/* line 8832, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-small .fbox-icon i {
  font-size: 28px;
  line-height: 64px;
}

/* line 8837, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-small.fbox-outline .fbox-icon i {
  line-height: 58px;
}

/* line 8839, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-light.fbox-outline.fbox-small .fbox-icon i {
  line-height: 54px;
}

/* line 8841, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-small.fbox-border .fbox-icon i {
  line-height: 62px !important;
}

/* line 8843, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-small.fbox-plain .fbox-icon i {
  font-size: 56px;
}

/* line 8845, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-small.fbox-plain .fbox-icon img {
  height: 64px;
}

/* line 8847, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-small p {
  font-size: 14px;
  margin-top: 10px;
}

/* line 8852, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-plain.fbox-small p {
  margin-left: 0;
}

/* Feature Box - Right
-----------------------------------------------------------------*/
/* line 8858, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-right {
  padding: 0 80px 0 0;
  text-align: right;
}

/* line 8863, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-right.fbox-large {
  padding-right: 115px;
}

/* line 8865, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-right .fbox-icon {
  left: auto;
  right: 0;
}

/* line 8870, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-right.fbox-plain.fbox-small {
  padding: 0 42px 0 0;
}

/* line 8872, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-right.fbox-plain.fbox-small p {
  margin: 0 -42px 0 0;
}

/* Feature Box - Subtitle
-----------------------------------------------------------------*/
/* line 8878, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box h3 + .fbox-icon {
  margin-top: 20px !important;
}

/* line 8880, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box h3 span.subtitle {
  display: block;
  margin-top: 5px;
  color: #444;
  font-weight: 300;
  text-transform: none;
}

/* line 8888, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center:not(.fbox-bg) h3:after {
  content: '';
  display: block;
  margin: 20px auto;
  width: 30px;
  border-top: 2px solid #555;
  -webkit-transition: width .3s ease;
  -o-transition: width .3s ease;
  transition: width .3s ease;
}

/* line 8899, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center:not(.fbox-bg):hover h3:after {
  width: 50px;
}

/* line 8901, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.noborder:not(.fbox-bg) h3:after,
.feature-box.fbox-center.nobottomborder:not(.fbox-bg) h3:after {
  display: none;
}

/* line 8904, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-center.fbox-italic p {
  font-style: italic;
  font-family: 'SofiaProRegular';
}

/* Feature Box - Background
-----------------------------------------------------------------*/
/* line 8913, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-bg.fbox-center {
  margin-top: 68px;
  padding: 15px 5px 15px;
  background-color: #fafafa;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
}

/* line 8921, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-bg.fbox-center:first-child {
  margin-top: 48px;
}

/* line 8923, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-bg.fbox-center.fbox-large {
  margin-top: 84px;
  padding-top: 84px;
}

/* line 8928, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-bg.fbox-center.fbox-large:first-child {
  margin-top: 64px;
}

/* line 8930, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-bg.fbox-center .fbox-icon {
  position: absolute;
  top: -48px;
  left: 50%;
  margin: 0 0 0 -48px;
}

/* line 8937, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-bg.fbox-center.fbox-large .fbox-icon {
  top: -64px;
  left: 50%;
  margin-left: -64px;
}

/* line 8943, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.fbox-bg.fbox-center.fbox-plain .fbox-icon,
.feature-box.fbox-bg.fbox-center.fbox-border .fbox-icon,
.feature-box.fbox-bg.fbox-center.fbox-outline .fbox-icon {
  background-color: #fafafa;
}

/* Animated Icon Hovers
-----------------------------------------------------------------*/
/* line 8951, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-effect .fbox-icon i {
  z-index: 1;
}

/* line 8953, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-effect .fbox-icon i:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 8965, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-rounded.fbox-effect .fbox-icon i:after {
  border-radius: 3px;
}

/* line 8967, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-effect .fbox-icon i {
  -webkit-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

/* line 8973, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-effect .fbox-icon i:after {
  top: -3px;
  left: -3px;
  padding: 3px;
  box-shadow: 0 0 0 2px #333;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transform: scale(0.8);
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transition: transform 0.3s, opacity 0.3s;
  transform: scale(0.8);
  opacity: 0;
}

/* line 8988, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-effect .fbox-icon i:hover,
.fbox-effect:hover .fbox-icon i {
  background-color: #333;
  color: #FFF;
}

/* line 8994, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-effect.fbox-dark .fbox-icon i:after {
  box-shadow: 0 0 0 2px #4484CE;
}

/* line 8996, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-effect.fbox-dark .fbox-icon i:hover,
.fbox-effect.fbox-dark:hover .fbox-icon i {
  background-color: #4484CE;
}

/* line 8999, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-effect .fbox-icon i:hover:after,
.fbox-effect:hover .fbox-icon i:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* Icon Effects - Bordered
-----------------------------------------------------------------*/
/* line 9011, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-border.fbox-effect .fbox-icon i {
  -webkit-transition: color 0.5s, box-shadow 0.5s, background-color 0.5s;
  -o-transition: color 0.5s, box-shadow 0.5s, background-color 0.5s;
  transition: color 0.5s, box-shadow 0.5s, background-color 0.5s;
}

/* line 9017, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-border.fbox-effect .fbox-icon i:after {
  top: -2px;
  left: -2px;
  padding: 2px;
  z-index: -1;
  box-shadow: none;
  background-image: url("https://www.wehome.fr/assets/images/icons/iconalt.svg");
  background-position: center center;
  background-size: 100% 100%;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s, background-color 0.5s;
  -o-transition: -moz-transform 0.5s, opacity 0.5s, background-color 0.5s;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}

/* line 9031, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-border.fbox-rounded.fbox-effect .fbox-icon i:after {
  border-radius: 3px;
}

/* line 9033, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-border.fbox-effect .fbox-icon i:hover,
.fbox-border.fbox-effect:hover .fbox-icon i {
  color: #FFF;
  box-shadow: 0 0 0 1px #333;
}

/* line 9039, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-border.fbox-effect .fbox-icon i:after {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
  background-color: #333;
}

/* line 9048, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-border.fbox-effect.fbox-dark .fbox-icon i:hover,
.fbox-border.fbox-effect.fbox-dark:hover .fbox-icon i {
  box-shadow: 0 0 0 1px #4484CE;
}

/* line 9051, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-border.fbox-effect.fbox-dark .fbox-icon i:after {
  background-color: #4484CE;
}

/* line 9053, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fbox-border.fbox-effect .fbox-icon i:hover:after,
.fbox-border.fbox-effect:hover .fbox-icon i:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* Media Featured Box
-----------------------------------------------------------------*/
/* line 9066, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.media-box {
  padding: 0;
}

/* line 9068, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.media-box .fbox-media {
  margin: 0 0 25px;
}

/* line 9070, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.media-box .fbox-media,
.feature-box.media-box .fbox-media a,
.feature-box.media-box .fbox-media img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

/* line 9079, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.media-box .fbox-media iframe {
  display: block;
}

/* line 9081, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.media-box p {
  margin-top: 17px;
}

/* line 9083, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.media-box.fbox-bg .fbox-media {
  margin: 0;
}

/* line 9085, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.media-box.fbox-bg .fbox-desc {
  padding: 25px;
  background-color: #fafafa;
  border: 1px solid #E5E5E5;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

/* line 9093, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.feature-box.media-box.fbox-bg .fbox-media img {
  border-radius: 5px 5px 0 0;
}

/* ----------------------------------------------------------------
  Flipbox
-----------------------------------------------------------------*/
/* line 9100, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox {
  perspective: 1000px;
}

/* line 9102, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox-inner {
  transition: 0.5s;
  transition-timing-function: ease;
  position: relative;
  transform-style: preserve-3d;
}

/* line 9109, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox-front,
.flipbox-back {
  -webkit-backface-visibility: hidden;
}

/* line 9114, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox-front {
  z-index: 2;
}

/* line 9116, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* line 9124, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox:not(.flipbox-vertical) .flipbox-front {
  transform: rotateY(0deg);
}

/* line 9125, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox:not(.flipbox-vertical) .flipbox-back {
  transform: rotateY(-180deg);
}

/* line 9127, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox.flipbox-vertical .flipbox-front {
  transform: rotateX(0deg);
}

/* line 9128, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox.flipbox-vertical .flipbox-back {
  transform: rotateX(-180deg);
}

/* line 9130, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox:not(.flipbox-vertical):hover .flipbox-inner,
.flipbox:not(.flipbox-vertical).hover .flipbox-inner {
  transform: rotateY(180deg);
}

/* line 9133, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.flipbox.flipbox-vertical:hover .flipbox-inner,
.flipbox.flipbox-vertical.hover .flipbox-inner {
  transform: rotateX(180deg);
}

/* ----------------------------------------------------------------
  Process Steps
-----------------------------------------------------------------*/
/* line 9141, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps {
  margin: 0 0 40px;
  list-style: none;
}

/* line 9146, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li {
  float: left;
  position: relative;
  width: 25%;
  text-align: center;
  overflow: hidden;
}

/* line 9154, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps.process-2 li {
  width: 50%;
}

/* line 9155, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps.process-3 li {
  width: 33.33%;
}

/* line 9156, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps.process-5 li {
  width: 20%;
}

/* line 9158, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li .i-circled {
  margin-bottom: 0 !important;
}

/* line 9160, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li .i-bordered {
  background-color: #fafafa;
}

/* line 9162, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li h5 {
  margin: 15px 0 0 0;
  font-size: 16px;
  font-weight: 300;
}

/* line 9168, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li.active h5,
.process-steps li.ui-tabs-active h5 {
  font-weight: 600;
  color: #4484CE;
}

/* line 9174, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li.active a,
.process-steps li.ui-tabs-active a {
  background-color: #4484CE !important;
  color: #FFF;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
  border-color: #4484CE !important;
}

/* line 9182, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li:before,
.process-steps li:after {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  margin-left: -26px;
  width: 50%;
  border-top: 1px dashed #DDD;
}

/* line 9193, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li:after {
  left: auto;
  right: 0;
  margin: 0 -26px 0 0;
}

/* line 9199, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.process-steps li:first-child:before,
.process-steps li:last-child:after {
  display: none;
}

/* ----------------------------------------------------------------
  Alerts
-----------------------------------------------------------------*/
/* line 9208, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg,
.style-msg2 {
  position: relative;
  display: block;
  color: #444;
  border-left: 4px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* line 9217, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg2 {
  border-left: 4px solid rgba(0, 0, 0, 0.2);
}

/* line 9219, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.successmsg {
  background: #16e29c;
  color: #184B21;
}

/* line 9224, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.errormsg {
  background: #FFCCCC;
  color: #740D0A;
}

/* line 9229, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.infomsg {
  background: #4484CE;
  color: #224267;
}

/* line 9234, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.alertmsg {
  background: #F19F4D;
  color: #784f26;
}

/* line 9239, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg .sb-msg,
.style-msg2 .msgtitle,
.style-msg2 .sb-msg {
  display: block;
  padding: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}

/* line 9249, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg2 .msgtitle {
  background: rgba(0, 0, 0, 0.15);
  border-top: none;
  border-bottom: none;
  font-size: 15px;
  font-weight: bold;
}

/* line 9257, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg-light .sb-msg,
.style-msg-light .msgtitle {
  color: #FFF;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

/* line 9263, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg2 .sb-msg {
  font-weight: normal;
}

/* line 9265, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg2 ol,
.style-msg2 ul {
  margin: 0 0 0 30px;
}

/* line 9268, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg2 ol {
  list-style-type: decimal;
}

/* line 9270, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg2 ul {
  list-style-type: disc;
}

/* line 9272, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.alert i,
.sb-msg i,
.msgtitle i {
  position: relative;
  top: 1px;
  font-size: 14px;
  width: 14px;
  text-align: center;
  margin-right: 5px;
}

/* line 9283, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.style-msg .close {
  position: absolute;
  top: 10px;
  left: auto;
  right: 10px;
}

/* ----------------------------------------------------------------
  Styled Icons
-----------------------------------------------------------------*/
/* line 9296, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-rounded,
.i-plain,
.i-circled,
.i-bordered,
.social-icon {
  display: block;
  float: left;
  margin: 4px 11px 7px 0;
  text-align: center !important;
  font-size: 28px;
  color: #FFF;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-style: normal;
}

/* line 9312, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .i-rounded,
body:not(.device-touch) .i-plain,
body:not(.device-touch) .i-circled,
body:not(.device-touch) .i-bordered,
body:not(.device-touch) .social-icon {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* line 9322, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-rounded,
.i-circled,
.i-bordered {
  width: 52px !important;
  height: 52px !important;
  line-height: 52px !important;
  background-color: #444;
  border-radius: 3px;
}

/* line 9332, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-bordered {
  border: 1px solid #555;
  line-height: 50px !important;
  background-color: transparent !important;
  color: #444;
  text-shadow: none;
}

/* line 9340, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-plain {
  width: 36px !important;
  height: 36px !important;
  font-size: 28px;
  line-height: 36px !important;
  color: #444;
  text-shadow: 1px 1px 1px #FFF;
}

/* line 9349, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-plain:hover {
  color: #777;
}

/* line 9351, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-circled {
  border-radius: 50%;
}

/* line 9353, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-light {
  background-color: #F5F5F5;
  color: #444;
  text-shadow: 1px 1px 1px #FFF;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

/* line 9360, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-alt {
  background-image: url("https://www.wehome.fr/assets/images/icons/iconalt.svg");
  background-position: center center;
  background-size: 100% 100%;
}

/* line 9367, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-rounded:hover,
.i-circled:hover {
  background-color: #4484CE;
  color: #FFF;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

/* line 9375, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-bordered:hover {
  background-color: #444 !important;
  color: #FFF;
  border-color: #444;
}

/* Icon Size - Small
-----------------------------------------------------------------*/
/* line 9385, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-small.i-rounded,
.i-small.i-plain,
.i-small.i-circled,
.i-small.i-bordered {
  margin: 4px 11px 7px 0;
  font-size: 14px;
}

/* line 9393, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-small.i-rounded,
.i-small.i-circled,
.i-small.i-bordered {
  width: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
}

/* line 9401, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-small.i-bordered {
  line-height: 26px !important;
}

/* line 9403, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-small.i-plain {
  width: 18px !important;
  height: 18px !important;
  font-size: 14px;
  line-height: 18px !important;
}

/* Icon Size - Small
-----------------------------------------------------------------*/
/* line 9414, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-medium.i-rounded,
.i-medium.i-plain,
.i-medium.i-circled,
.i-medium.i-bordered {
  margin: 6px 13px 9px 0;
  font-size: 21px;
}

/* line 9422, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-medium.i-rounded,
.i-medium.i-circled,
.i-medium.i-bordered {
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
}

/* line 9430, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-medium.i-bordered {
  line-height: 34px !important;
}

/* line 9432, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-medium.i-plain {
  width: 28px !important;
  height: 28px !important;
  font-size: 20px;
  line-height: 28px !important;
}

/* Icon Size - Large
-----------------------------------------------------------------*/
/* line 9443, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-large.i-rounded,
.i-large.i-plain,
.i-large.i-circled,
.i-large.i-bordered {
  margin: 4px 11px 7px 0;
  font-size: 42px;
}

/* line 9451, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-large.i-rounded,
.i-large.i-circled,
.i-large.i-bordered {
  width: 64px !important;
  height: 64px !important;
  line-height: 64px !important;
}

/* line 9459, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-large.i-bordered {
  line-height: 62px !important;
}

/* line 9461, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-large.i-plain {
  width: 48px !important;
  height: 48px !important;
  font-size: 42px;
  line-height: 48px !important;
}

/* Icon Size - Extra Large
-----------------------------------------------------------------*/
/* line 9472, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-xlarge.i-rounded,
.i-xlarge.i-plain,
.i-xlarge.i-circled,
.i-xlarge.i-bordered {
  margin: 4px 11px 7px 0;
  font-size: 56px;
}

/* line 9480, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-xlarge.i-rounded,
.i-xlarge.i-circled,
.i-xlarge.i-bordered {
  width: 84px !important;
  height: 84px !important;
  line-height: 84px !important;
}

/* line 9488, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-xlarge.i-bordered {
  line-height: 82px !important;
}

/* line 9490, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-xlarge.i-plain {
  width: 64px !important;
  height: 64px !important;
  font-size: 56px;
  line-height: 64px !important;
}

/* Icon Size - Extra Extra Large
-----------------------------------------------------------------*/
/* line 9501, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-xxlarge.i-rounded,
.i-xxlarge.i-plain,
.i-xxlarge.i-circled,
.i-xxlarge.i-bordered {
  margin: 6px 15px 10px 0;
  font-size: 64px;
}

/* line 9509, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-xxlarge.i-rounded,
.i-xxlarge.i-circled,
.i-xxlarge.i-bordered {
  width: 96px !important;
  height: 96px !important;
  line-height: 96px !important;
}

/* line 9517, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-xxlarge.i-bordered {
  line-height: 94px !important;
}

/* line 9519, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-xxlarge.i-plain {
  width: 80px !important;
  height: 80px !important;
  font-size: 64px;
  line-height: 80px !important;
}

/* ----------------------------------------------------------------
  Icon Overlay
-----------------------------------------------------------------*/
/* line 9531, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-overlay,
.i-overlay a {
  display: block;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2) url("https://www.wehome.fr/assets/images/grid.png") repeat;
}

/* line 9543, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-overlay a {
  background: transparent;
}

/* line 9545, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-overlay img,
.i-overlay i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
  width: 48px !important;
  height: 48px !important;
  font-size: 48px;
  line-height: 1;
  color: #E5E5E5;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

/* line 9560, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.i-overlay i {
  margin: -18px 0 0 -18px;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px;
  font-size: 24px;
}

/* line 9568, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.on-hover.i-overlay {
  opacity: 0;
}

/* line 9570, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .on-hover.i-overlay {
  -webkit-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

/* line 9576, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.on-hover.i-overlay:hover {
  opacity: 1;
}

/* ----------------------------------------------------------------
  Social Icons
-----------------------------------------------------------------*/
/* line 9584, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon {
  margin: 0 5px 5px 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 38px !important;
  color: #555;
  text-shadow: none;
  border: 1px solid #AAA;
  border-radius: 3px;
  overflow: hidden;
}

/* Social Icons - Rounded
-----------------------------------------------------------------*/
/* line 9601, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-rounded {
  border-radius: 50%;
}

/* Social Icons - Borderless
-----------------------------------------------------------------*/
/* line 9606, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-borderless {
  border-color: transparent !important;
}

/* Social Icons - Dark
-----------------------------------------------------------------*/
/* line 9611, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-dark {
  background-color: #444;
  color: #FFF !important;
  border-color: transparent;
}

/* Social Icons - Light
-----------------------------------------------------------------*/
/* line 9620, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-light {
  background-color: rgba(0, 0, 0, 0.05);
  color: #666 !important;
  border-color: transparent;
}

/* Social Icons - Colored
-----------------------------------------------------------------*/
/* line 9629, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-colored {
  border-color: transparent !important;
}

/* line 9631, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-colored i {
  color: #FFF;
}

/* Social Icons - Large
-----------------------------------------------------------------*/
/* line 9636, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon.si-large {
  margin: 0 10px 10px 0;
  width: 56px;
  height: 56px;
  font-size: 30px;
  line-height: 54px !important;
}

/* Social Icons - Small
-----------------------------------------------------------------*/
/* line 9647, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon.si-small {
  width: 32px;
  height: 32px;
  font-size: 14px;
  line-height: 30px !important;
}

/* line 9654, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon i {
  display: block;
  position: relative;
}

/* line 9659, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .social-icon i {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* line 9665, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon i:last-child {
  color: #FFF !important;
}

/* line 9667, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon:hover i:first-child {
  margin-top: -38px;
}

/* line 9669, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon.si-large:hover i:first-child {
  margin-top: -54px;
}

/* line 9671, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon.si-small:hover i:first-child {
  margin-top: -30px;
}

/* line 9673, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.social-icon:hover {
  color: #555;
  border-color: transparent;
}

/* line 9678, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-colored.social-icon {
  border-color: transparent;
}

/* Social Icons - Sticky
-----------------------------------------------------------------*/
/* line 9683, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-sticky {
  position: fixed;
  top: 50%;
  left: 5px;
  width: 36px;
  z-index: 100;
}

/* Social Icons - Sticky Right
-----------------------------------------------------------------*/
/* line 9694, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-sticky.si-sticky-right {
  left: auto;
  right: 8px;
}

/* Social Icons - Share
-----------------------------------------------------------------*/
/* line 9702, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-share {
  position: relative;
  padding-left: 5px;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}

/* line 9709, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-share span {
  line-height: 36px;
  font-weight: bold;
  font-size: 13px;
}

/* line 9715, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-share div {
  float: right;
}

/* line 9717, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-share .social-icon {
  margin: -1px 0;
  border-radius: 0;
  font-size: 15px;
}

/* line 9723, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-facebook:hover,
.si-colored.si-facebook {
  background-color: #3B5998 !important;
}

/* line 9725, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-delicious:hover,
.si-colored.si-delicious {
  background-color: #205CC0 !important;
}

/* line 9727, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-paypal:hover,
.si-colored.si-paypal {
  background-color: #00588B !important;
}

/* line 9729, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-flattr:hover,
.si-colored.si-flattr {
  background-color: #F67C1A !important;
}

/* line 9731, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-android:hover,
.si-colored.si-android {
  background-color: #A4C639 !important;
}

/* line 9733, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-smashmag:hover,
.si-colored.si-smashmag {
  background-color: #E53B2C !important;
}

/* line 9735, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-gplus:hover,
.si-colored.si-gplus {
  background-color: #DD4B39 !important;
}

/* line 9737, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-wikipedia:hover,
.si-colored.si-wikipedia {
  background-color: #333 !important;
}

/* line 9739, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-stumbleupon:hover,
.si-colored.si-stumbleupon {
  background-color: #F74425 !important;
}

/* line 9741, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-foursquare:hover,
.si-colored.si-foursquare {
  background-color: #25A0CA !important;
}

/* line 9743, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-call:hover,
.si-colored.si-call {
  background-color: #444 !important;
}

/* line 9745, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-ninetyninedesigns:hover,
.si-colored.si-ninetyninedesigns {
  background-color: #F26739 !important;
}

/* line 9747, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-forrst:hover,
.si-colored.si-forrst {
  background-color: #5B9A68 !important;
}

/* line 9749, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-digg:hover,
.si-colored.si-digg {
  background-color: #191919 !important;
}

/* line 9751, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-spotify:hover,
.si-colored.si-spotify {
  background-color: #81B71A !important;
}

/* line 9753, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-reddit:hover,
.si-colored.si-reddit {
  background-color: #C6C6C6 !important;
}

/* line 9755, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-blogger:hover,
.si-colored.si-blogger {
  background-color: #FC4F08 !important;
}

/* line 9757, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-cc:hover,
.si-colored.si-cc {
  background-color: #688527 !important;
}

/* line 9759, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-dribbble:hover,
.si-colored.si-dribbble {
  background-color: #EA4C89 !important;
}

/* line 9761, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-evernote:hover,
.si-colored.si-evernote {
  background-color: #5BA525 !important;
}

/* line 9763, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-flickr:hover,
.si-colored.si-flickr {
  background-color: #FF0084 !important;
}

/* line 9765, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-google:hover,
.si-colored.si-google {
  background-color: #DD4B39 !important;
}

/* line 9767, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-instapaper:hover,
.si-colored.si-instapaper {
  background-color: #333 !important;
}

/* line 9769, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-klout:hover,
.si-colored.si-klout {
  background-color: #FF5F52 !important;
}

/* line 9771, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-linkedin:hover,
.si-colored.si-linkedin {
  background-color: #0E76A8 !important;
}

/* line 9773, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-vk:hover,
.si-colored.si-vk {
  background-color: #2B587A !important;
}

/* line 9775, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-rss:hover,
.si-colored.si-rss {
  background-color: #EE802F !important;
}

/* line 9777, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-skype:hover,
.si-colored.si-skype {
  background-color: #00AFF0 !important;
}

/* line 9779, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-twitter:hover,
.si-colored.si-twitter {
  background-color: #00ACEE !important;
}

/* line 9781, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-youtube:hover,
.si-colored.si-youtube {
  background-color: #C4302B !important;
}

/* line 9783, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-vimeo:hover,
.si-colored.si-vimeo {
  background-color: #86C9EF !important;
}

/* line 9785, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-aim:hover,
.si-colored.si-aim {
  background-color: #FCD20B !important;
}

/* line 9787, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-yahoo:hover,
.si-colored.si-yahoo {
  background-color: #720E9E !important;
}

/* line 9789, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-email3:hover,
.si-colored.si-email3 {
  background-color: #6567A5 !important;
}

/* line 9791, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-macstore:hover,
.si-colored.si-macstore {
  background-color: #333333 !important;
}

/* line 9793, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-myspace:hover,
.si-colored.si-myspace {
  background-color: #666666 !important;
}

/* line 9795, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-podcast:hover,
.si-colored.si-podcast {
  background-color: #E4B21B !important;
}

/* line 9797, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-cloudapp:hover,
.si-colored.si-cloudapp {
  background-color: #525557 !important;
}

/* line 9799, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-dropbox:hover,
.si-colored.si-dropbox {
  background-color: #3D9AE8 !important;
}

/* line 9801, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-ebay:hover,
.si-colored.si-ebay {
  background-color: #89C507 !important;
}

/* line 9803, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-github:hover,
.si-colored.si-github {
  background-color: #171515 !important;
}

/* line 9805, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-googleplay:hover,
.si-colored.si-googleplay {
  background-color: #DD4B39 !important;
}

/* line 9807, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-itunes:hover,
.si-colored.si-itunes {
  background-color: #222 !important;
}

/* line 9809, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-plurk:hover,
.si-colored.si-plurk {
  background-color: #CF5A00 !important;
}

/* line 9811, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-pinboard:hover,
.si-colored.si-pinboard {
  background-color: #0000E6 !important;
}

/* line 9813, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-soundcloud:hover,
.si-colored.si-soundcloud {
  background-color: #FF7700 !important;
}

/* line 9815, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-tumblr:hover,
.si-colored.si-tumblr {
  background-color: #34526F !important;
}

/* line 9817, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-wordpress:hover,
.si-colored.si-wordpress {
  background-color: #1E8CBE !important;
}

/* line 9819, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-yelp:hover,
.si-colored.si-yelp {
  background-color: #C41200 !important;
}

/* line 9821, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-intensedebate:hover,
.si-colored.si-intensedebate {
  background-color: #009EE4 !important;
}

/* line 9823, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-eventbrite:hover,
.si-colored.si-eventbrite {
  background-color: #F16924 !important;
}

/* line 9825, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-scribd:hover,
.si-colored.si-scribd {
  background-color: #666666 !important;
}

/* line 9827, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-stripe:hover,
.si-colored.si-stripe {
  background-color: #008CDD !important;
}

/* line 9829, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-print:hover,
.si-colored.si-print {
  background-color: #111 !important;
}

/* line 9831, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-dwolla:hover,
.si-colored.si-dwolla {
  background-color: #FF5C03 !important;
}

/* line 9833, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-statusnet:hover,
.si-colored.si-statusnet {
  background-color: #131A30 !important;
}

/* line 9835, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-acrobat:hover,
.si-colored.si-acrobat {
  background-color: #D3222A !important;
}

/* line 9837, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-drupal:hover,
.si-colored.si-drupal {
  background-color: #27537A !important;
}

/* line 9839, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-buffer:hover,
.si-colored.si-buffer {
  background-color: #333333 !important;
}

/* line 9841, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-pocket:hover,
.si-colored.si-pocket {
  background-color: #EE4056 !important;
}

/* line 9843, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-bitbucket:hover,
.si-colored.si-bitbucket {
  background-color: #0E4984 !important;
}

/* line 9845, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-stackoverflow:hover,
.si-colored.si-stackoverflow {
  background-color: #EF8236 !important;
}

/* line 9847, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-hackernews:hover,
.si-colored.si-hackernews {
  background-color: #FF6600 !important;
}

/* line 9849, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-xing:hover,
.si-colored.si-xing {
  background-color: #126567 !important;
}

/* line 9851, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-instagram:hover,
.si-colored.si-instagram {
  background-color: #3F729B !important;
}

/* line 9853, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-quora:hover,
.si-colored.si-quora {
  background-color: #A82400 !important;
}

/* line 9855, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-openid:hover,
.si-colored.si-openid {
  background-color: #E16309 !important;
}

/* line 9857, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-steam:hover,
.si-colored.si-steam {
  background-color: #111 !important;
}

/* line 9859, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-amazon:hover,
.si-colored.si-amazon {
  background-color: #E47911 !important;
}

/* line 9861, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-disqus:hover,
.si-colored.si-disqus {
  background-color: #E4E7EE !important;
}

/* line 9863, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-plancast:hover,
.si-colored.si-plancast {
  background-color: #222 !important;
}

/* line 9865, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-appstore:hover,
.si-colored.si-appstore {
  background-color: #000 !important;
}

/* line 9867, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-pinterest:hover,
.si-colored.si-pinterest {
  background-color: #C8232C !important;
}

/* line 9869, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-fivehundredpx:hover,
.si-colored.si-fivehundredpx {
  background-color: #111 !important;
}

/* Social Icons Text Color
-----------------------------------------------------------------*/
/* line 9876, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-facebook i {
  color: #3B5998;
}

/* line 9877, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-delicious i {
  color: #205CC0;
}

/* line 9878, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-paypal i {
  color: #00588B;
}

/* line 9879, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-flattr i {
  color: #F67C1A;
}

/* line 9880, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-android i {
  color: #A4C639;
}

/* line 9881, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-smashmag i {
  color: #E53B2C;
}

/* line 9882, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-gplus i {
  color: #DD4B39;
}

/* line 9883, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-wikipedia i {
  color: #333;
}

/* line 9884, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-stumbleupon i {
  color: #F74425;
}

/* line 9885, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-foursquare i {
  color: #25A0CA;
}

/* line 9886, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-call i {
  color: #444;
}

/* line 9887, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-ninetyninedesigns i {
  color: #F26739;
}

/* line 9888, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-forrst i {
  color: #5B9A68;
}

/* line 9889, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-digg i {
  color: #191919;
}

/* line 9890, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-spotify i {
  color: #81B71A;
}

/* line 9891, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-reddit i {
  color: #C6C6C6;
}

/* line 9892, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-blogger i {
  color: #FC4F08;
}

/* line 9893, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-cc i {
  color: #688527;
}

/* line 9894, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-dribbble i {
  color: #EA4C89;
}

/* line 9895, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-evernote i {
  color: #5BA525;
}

/* line 9896, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-flickr i {
  color: #FF0084;
}

/* line 9897, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-google i {
  color: #DD4B39;
}

/* line 9898, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-instapaper i {
  color: #333;
}

/* line 9899, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-klout i {
  color: #FF5F52;
}

/* line 9900, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-linkedin i {
  color: #0E76A8;
}

/* line 9901, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-vk i {
  color: #2B587A;
}

/* line 9902, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-rss i {
  color: #EE802F;
}

/* line 9903, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-skype i {
  color: #00AFF0;
}

/* line 9904, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-twitter i {
  color: #00ACEE;
}

/* line 9905, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-youtube i {
  color: #C4302B;
}

/* line 9906, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-vimeo i {
  color: #86C9EF;
}

/* line 9907, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-aim i {
  color: #FCD20B;
}

/* line 9908, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-yahoo i {
  color: #720E9E;
}

/* line 9909, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-email3 i {
  color: #6567A5;
}

/* line 9910, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-macstore i {
  color: #333333;
}

/* line 9911, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-myspace i {
  color: #666666;
}

/* line 9912, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-podcast i {
  color: #E4B21B;
}

/* line 9913, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-cloudapp i {
  color: #525557;
}

/* line 9914, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-dropbox i {
  color: #3D9AE8;
}

/* line 9915, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-ebay i {
  color: #89C507;
}

/* line 9916, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-github i {
  color: #171515;
}

/* line 9917, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-googleplay i {
  color: #DD4B39;
}

/* line 9918, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-itunes i {
  color: #222;
}

/* line 9919, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-plurk i {
  color: #CF5A00;
}

/* line 9920, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-pinboard i {
  color: #0000E6;
}

/* line 9921, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-soundcloud i {
  color: #FF7700;
}

/* line 9922, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-tumblr i {
  color: #34526F;
}

/* line 9923, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-wordpress i {
  color: #1E8CBE;
}

/* line 9924, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-yelp i {
  color: #C41200;
}

/* line 9925, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-intensedebate i {
  color: #009EE4;
}

/* line 9926, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-eventbrite i {
  color: #F16924;
}

/* line 9927, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-scribd i {
  color: #666666;
}

/* line 9928, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-stripe i {
  color: #008CDD;
}

/* line 9929, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-print i {
  color: #111;
}

/* line 9930, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-dwolla i {
  color: #FF5C03;
}

/* line 9931, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-statusnet i {
  color: #131A30;
}

/* line 9932, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-acrobat i {
  color: #D3222A;
}

/* line 9933, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-drupal i {
  color: #27537A;
}

/* line 9934, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-buffer i {
  color: #333333;
}

/* line 9935, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-pocket i {
  color: #EE4056;
}

/* line 9936, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-bitbucket i {
  color: #0E4984;
}

/* line 9937, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-stackoverflow i {
  color: #EF8236;
}

/* line 9938, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-hackernews i {
  color: #FF6600;
}

/* line 9939, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-xing i {
  color: #126567;
}

/* line 9940, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-instagram i {
  color: #3F729B;
}

/* line 9941, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-quora i {
  color: #A82400;
}

/* line 9942, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-openid i {
  color: #E16309;
}

/* line 9943, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-steam i {
  color: #111;
}

/* line 9944, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-amazon i {
  color: #E47911;
}

/* line 9945, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-disqus i {
  color: #E4E7EE;
}

/* line 9946, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-plancast i {
  color: #222;
}

/* line 9947, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-appstore i {
  color: #000;
}

/* line 9948, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-pinterest i {
  color: #C8232C;
}

/* line 9949, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color.si-fivehundredpx i {
  color: #111;
}

/* line 9951, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.si-text-color:hover {
  color: #FFF;
}

/* ----------------------------------------------------------------
  Toggle
-----------------------------------------------------------------*/
/* line 9959, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle {
  display: block;
  position: relative;
  margin: 0 0 20px 0;
}

/* line 9965, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle .togglet,
.toggle .toggleta {
  display: block;
  position: relative;
  line-height: 24px;
  padding: 0 0 0 24px;
  margin: 0;
  font-size: 14px;
  /*font-weight: 600;*/
  color: #444;
  cursor: pointer;
}

/* line 9978, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle .togglet i {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

/* line 9988, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle .toggleta {
  font-weight: bold;
}

/* line 9990, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle .togglet i.toggle-open,
.toggle .toggleta i.toggle-closed {
  display: none;
}

/* line 9993, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle .toggleta i.toggle-open {
  display: block;
}

/* line 9995, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle .togglec {
  display: block;
  position: relative;
  /*padding: 10px 0 0 24px;*/
}

/* Toggle - with Title Background
-----------------------------------------------------------------*/
/* line 10005, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle.toggle-bg .togglet,
.toggle.toggle-bg .toggleta {
  background-color: #4484CE;
  line-height: 44px;
  padding: 0 0 0 36px;
  border-radius: 2px;
}

/* line 10013, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle.toggle-bg .togglet i {
  left: 14px;
  line-height: 44px;
}

/* line 10018, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle.toggle-bg .togglec {
  padding: 12px 0 0 36px;
}

/* Toggle - Bordered
-----------------------------------------------------------------*/
/* line 10024, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle.toggle-border {
  border: 1px solid #CCC;
  border-radius: 4px;
}

/* line 10029, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle.toggle-border .togglet,
.toggle.toggle-border .toggleta {
  line-height: 44px;
  padding: 0 15px 0 36px;
}

/* line 10035, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle.toggle-border .togglet i {
  left: 14px;
  line-height: 44px;
}

/* line 10040, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toggle.toggle-border .togglec {
  padding: 0 15px 15px 36px;
}

/* Toggle - FAQs
-----------------------------------------------------------------*/
/* line 10046, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.faqs .toggle {
  border-bottom: 1px solid #EEE;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

/* line 10052, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.faqs .toggle .togglet,
.faqs .toggle .toggleta {
  font-size: 15px;
}

/* line 10055, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.faqs .toggle .togglet i {
  top: 1px;
  font-size: 14px;
}

/* line 10060, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.faqs .toggle .togglec {
  padding-bottom: 10px;
}

/* ----------------------------------------------------------------
  Accordions
-----------------------------------------------------------------*/
/* line 10067, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion {
  margin-bottom: 20px;
}

/* line 10069, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.acctitle {
  display: block;
  position: relative;
  line-height: 24px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  border-top: 1px dotted #DDD;
  padding: 10px 0 10px 20px;
}

/* line 10082, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.acctitlec {
  cursor: auto;
}

/* line 10084, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.acctitle:first-child {
  border-top: none;
}

/* line 10086, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.acctitle i {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  text-align: center;
  font-size: 14px;
  line-height: 44px;
}

/* line 10096, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.acctitle i.acc-open,
.acctitlec i.acc-closed {
  display: none;
}

/* line 10099, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.acctitlec i.acc-open {
  display: block;
}

/* line 10101, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.acc_content {
  position: relative;
  padding: 0 0 15px 20px;
}

/* Accordion - with Title Background
-----------------------------------------------------------------*/
/* line 10110, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-bg .acctitle,
.accordion.accordion-bg .acctitlec {
  background-color: #EEE;
  line-height: 44px;
  padding: 0 0 0 36px;
  margin-bottom: 5px;
  border-top: 0;
}

/* line 10119, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-bg .acctitle i {
  left: 14px;
  line-height: 44px;
}

/* line 10124, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-bg .acc_content {
  padding: 10px 0 15px 36px;
}

/* Accordion - Bordered
-----------------------------------------------------------------*/
/* line 10130, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-border {
  border: 1px solid #DDD;
  border-radius: 4px;
}

/* line 10135, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-border .acctitle,
.accordion.accordion-border .acctitlec {
  border-color: #CCC;
  line-height: 44px;
  padding: 0 15px 0 36px;
}

/* line 10142, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-border .acctitle i {
  left: 14px;
  line-height: 44px;
}

/* line 10147, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-border .acc_content {
  padding: 0 15px 15px 36px;
}

/* Accordion - Large
-----------------------------------------------------------------*/
/* line 10153, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-lg .acctitle {
  font-size: 23px;
  line-height: 44px;
  padding-left: 30px;
  font-weight: 400;
}

/* line 10160, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-lg .acctitle i {
  width: 20px;
  font-size: 20px;
  line-height: 64px;
}

/* line 10166, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.accordion.accordion-lg .acc_content {
  padding: 10px 0 30px 30px;
}

/* ----------------------------------------------------------------
  Tabs
-----------------------------------------------------------------*/
/* line 10174, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs {
  position: relative;
  margin: 0 0 30px 0;
}

/* line 10179, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav:not(.tab-nav-lg) {
  margin: 0;
  border-bottom: 1px solid #DDD;
  list-style: none;
}

/* line 10185, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav:not(.tab-nav-lg) li {
  float: left;
  border: 1px solid #DDD;
  border-bottom: 0;
  border-left: 0;
  height: 41px;
  text-align: center;
}

/* line 10194, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav:not(.tab-nav-lg) li:first-child {
  margin-left: 15px;
  border-left: 1px solid #DDD;
}

/* line 10199, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav:not(.tab-nav-lg) li a {
  display: block;
  padding: 0 15px;
  color: #444;
  height: 40px;
  line-height: 40px;
  background-color: #F2F2F2;
  font-size: 14px;
  font-weight: bold;
}

/* line 10210, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav:not(.tab-nav-lg) li.ui-tabs-active a {
  position: relative;
  top: 1px;
  background-color: #fafafa;
}

/* Tabs - Alternate Nav
-----------------------------------------------------------------*/
/* line 10220, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-alt ul.tab-nav li {
  border-color: transparent;
}

/* line 10222, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-alt ul.tab-nav li:first-child {
  border-left: 0;
}

/* line 10224, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-alt ul.tab-nav li a {
  background-color: #fafafa;
}

/* line 10226, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-alt ul.tab-nav li.ui-tabs-active a {
  border: 1px solid #DDD;
  border-bottom: 0;
}

/* Tabs - Top Border
-----------------------------------------------------------------*/
/* line 10235, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-tb ul.tab-nav li.ui-tabs-active a {
  top: -1px;
  height: 43px;
  line-height: 38px;
  border-top: 2px solid #4484CE;
}

/* line 10242, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-alt.tabs-tb ul.tab-nav li.ui-tabs-active a {
  height: 42px;
}

/* Tabs - Bottom Border
-----------------------------------------------------------------*/
/* line 10248, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-bb ul.tab-nav li {
  border: 0;
  margin: 0;
}

/* line 10253, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-bb ul.tab-nav li a {
  background-color: transparent;
  border-bottom: 2px solid transparent;
}

/* line 10258, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs.tabs-bb ul.tab-nav li.ui-tabs-active a {
  border-bottom: 2px solid #4484CE;
  top: -2px;
  height: 44px;
  line-height: 44px;
}

/* Tabs - Navigation Style 2
-----------------------------------------------------------------*/
/* line 10270, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav.tab-nav2 {
  border-bottom: 0;
}

/* line 10274, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav.tab-nav2 li {
  border: 0;
  margin-left: 10px;
}

/* line 10279, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav.tab-nav2 li:first-child {
  margin-left: 0;
  border-left: 0;
}

/* line 10284, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav.tab-nav2 li a {
  background-color: #F5F5F5;
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 10290, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav.tab-nav2 li.ui-state-active a {
  top: 0;
  background-color: #4484CE;
  color: #FFF;
}

/* Tabs - Large Navigation
-----------------------------------------------------------------*/
/* line 10301, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav-lg {
  margin-bottom: 20px;
  list-style: none;
}

/* line 10306, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav-lg li {
  float: left;
  position: relative;
  text-align: center;
  padding: 15px;
}

/* line 10313, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav-lg li a {
  display: inline-block;
  color: #444;
  font-family: 'SofiaProRegular';
  font-size: 13px;
  font-weight: bold;
  /*text-transform: uppercase;*/
  letter-spacing: 2px;
}

/* line 10323, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav.tab-nav-lg li i {
  display: block;
  font-size: 28px;
  margin: 0 0 7px;
}

/* line 10329, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav-lg li.ui-tabs-active a {
  color: #4484CE;
}

/* line 10335, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav-lg.tab-nav-section li.ui-tabs-active:before,
ul.tab-nav-lg.tab-nav-section li.ui-tabs-active:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: -50px;
  border: solid transparent;
}

/* line 10345, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav-lg.tab-nav-section li.ui-tabs-active:after {
  border-top-color: #FFF;
  border-width: 16px;
  left: 50%;
  margin-left: -16px;
}

/* line 10352, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav-lg.tab-nav-section li.ui-tabs-active:before {
  border-top-color: #FFF;
  border-width: 16px;
  left: 50%;
  margin-left: -16px;
}

/* Tabs - Content Area
-----------------------------------------------------------------*/
/* line 10363, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tab-container {
  position: relative;
  padding: 20px 0 0;
}

/* line 10368, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
ul.tab-nav li a i {
  position: relative;
  top: 1px;
  font-size: 14px;
  margin-right: 3px;
}

/* Tabs - Bordered
-----------------------------------------------------------------*/
/* line 10378, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs-bordered ul.tab-nav li:first-child {
  margin-left: 0;
}

/* line 10380, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs-bordered .tab-container {
  border: 1px solid #DDD;
  border-top: 0;
  padding: 20px;
}

/* Tabs - Side Tabs
-----------------------------------------------------------------*/
/* line 10390, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav {
  float: left;
  width: 200px;
  padding: 20px 0;
  border-bottom: 0;
  border-right: 1px solid #DDD;
}

/* line 10398, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav li {
  float: none;
  border: 1px solid #DDD;
  border-right: 0;
  border-top: 0;
  height: auto;
  text-align: left;
}

/* line 10407, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav li:first-child {
  margin-left: 0;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
}

/* line 10413, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav li a {
  height: auto;
  line-height: 44px;
}

/* line 10418, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav li.ui-tabs-active a {
  top: 0;
  right: -1px;
}

/* line 10423, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs .tab-container {
  overflow: hidden;
  padding: 15px 0 0 20px;
}

/* line 10428, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.ui-tabs .ui-tabs-hide {
  position: absolute !important;
  left: -10000px !important;
  display: block !important;
}

/* Tabs - Side Tabs & Nav Style 2
-----------------------------------------------------------------*/
/* line 10438, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav.tab-nav2 {
  border: 0;
}

/* line 10440, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav.tab-nav2 li {
  border: 0;
  margin: 6px 0 0;
}

/* line 10445, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav.tab-nav2 li:first-child {
  margin-top: 0;
}

/* line 10447, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav.tab-nav2 li a {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* line 10449, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.side-tabs ul.tab-nav.tab-nav2 li.ui-state-active a {
  right: 0;
}

/* Tabs - Side Tabs & Bordered
-----------------------------------------------------------------*/
/* line 10455, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs-bordered.side-tabs ul.tab-nav {
  position: relative;
  padding: 0;
  z-index: 2;
  margin-right: -1px;
}

/* line 10462, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs-bordered.side-tabs ul.tab-nav li a {
  height: auto;
  line-height: 44px;
}

/* line 10467, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs-bordered.side-tabs ul.tab-nav li.ui-tabs-active a {
  right: -1px;
  border-right: 1px solid #FFF;
}

/* line 10472, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tabs-bordered.side-tabs .tab-container {
  overflow: hidden;
  padding: 20px;
  border-top: 1px solid #DDD;
}

/* ----------------------------------------------------------------
  Side Navigation
-----------------------------------------------------------------*/
/* line 10484, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav {
  width: 100%;
  padding: 0;
  background-color: #fafafa;
  border-radius: 4px;
}

/* line 10491, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav li {
  list-style-type: none;
}

/* line 10493, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav li a {
  display: block;
  position: relative;
  margin: 0 0 -1px;
  padding: 11px 20px 11px 14px;
  font-size: 14px;
  border: 1px solid #E5E5E5;
  border-right-width: 2px;
  color: #666;
}

/* line 10504, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav > li:first-child > a {
  border-radius: 4px 4px 0 0;
}

/* line 10506, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav > li:last-child > a {
  border-radius: 0 0 4px 4px;
  border-bottom-width: 2px;
}

/* line 10511, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav > .ui-tabs-active > a,
.sidenav > .ui-tabs-active > a:hover {
  position: relative;
  z-index: 2;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #FFF !important;
  font-weight: 600;
  background-color: #4484CE !important;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
}

/* line 10522, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav li ul {
  display: none;
}

/* line 10524, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav li.ui-tabs-active ul {
  display: block;
}

/* line 10526, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav li li a {
  padding: 6px 20px 6px 35px;
  font-size: 14px;
  border-top: none;
  border-bottom: none;
}

/* line 10533, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav li li:first-child a {
  padding-top: 20px;
}

/* line 10535, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav li li:last-child a {
  padding-bottom: 20px;
}

/* line 10537, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav li i {
  position: relative;
  top: 1px;
  margin-right: 6px;
  font-size: 14px;
  text-align: center;
  width: 16px;
}

/* Chevrons */
/* line 10547, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav .icon-chevron-right {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: auto;
  right: 6px;
  margin-top: -8px;
  margin-right: 0;
  opacity: .4;
  font-size: 12px !important;
}

/* line 10560, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav > li > a:hover {
  background-color: #F5F5F5;
  color: #222;
}

/* line 10565, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav a:hover .icon-chevron-right {
  opacity: .5;
}

/* line 10567, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidenav .ui-tabs-active .icon-chevron-right,
.sidenav .ui-tabs-active a:hover .icon-chevron-right {
  opacity: 1;
}

/* ----------------------------------------------------------------
  FAQ List
-----------------------------------------------------------------*/
/* line 10576, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.faqlist li {
  margin-bottom: 5px;
  font-size: 15px;
}

/* line 10581, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.faqlist li a {
  color: #444;
}

/* line 10583, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.faqlist li a:hover {
  color: #4484CE !important;
}

/* ----------------------------------------------------------------
  Clients
-----------------------------------------------------------------*/
/* line 10591, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid,
.testimonials-grid {
  list-style: none;
  overflow: hidden;
}

/* line 10597, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid li,
.testimonials-grid li {
  float: left;
  position: relative;
  width: 20%;
  padding: 20px 0;
  -webkit-backface-visibility: hidden;
}

/* line 10606, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid.grid-2 li {
  width: 50%;
  padding: 25px 0;
}

/* line 10611, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid.grid-3 li {
  width: 33.33%;
}

/* line 10613, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid.grid-4 li {
  width: 25%;
}

/* line 10615, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid.grid-6 li {
  width: 16.66%;
}

/* line 10617, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid li a {
  opacity: 0.6;
}

/* line 10619, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .clients-grid li a {
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

/* line 10625, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid li a:hover {
  opacity: 1;
}

/* line 10627, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid li a,
.clients-grid li img {
  display: block;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

/* line 10635, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid li a img {
  width: 100%;
}

/* line 10637, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid li:before,
.clients-grid li:after,
.testimonials-grid li:before,
.testimonials-grid li:after {
  content: '';
  position: absolute;
}

/* line 10645, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid li:before,
.testimonials-grid li:before {
  height: 100%;
  top: 0;
  left: -1px;
  border-left: 1px dashed #DDD;
}

/* line 10653, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.clients-grid li:after,
.testimonials-grid li:after {
  width: 100%;
  height: 0;
  top: auto;
  left: 0;
  bottom: -1px;
  border-bottom: 1px dashed #DDD;
}

/* ----------------------------------------------------------------
  Testimonials
-----------------------------------------------------------------*/
/* Testimonials - Grid
-----------------------------------------------------------------*/
/* line 10671, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonials-grid li {
  width: 50%;
  padding: 25px;
}

/* line 10676, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonials-grid.grid-3 li {
  width: 33.33%;
}

/* line 10678, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonials-grid.grid-1 li {
  width: 100%;
}

/* line 10680, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonials-grid li .testimonial {
  padding: 0;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Testimonials - Item
-----------------------------------------------------------------*/
/* line 10691, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial {
  position: relative;
  padding: 20px;
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* line 10700, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-image {
  float: left;
  margin-right: 15px;
}

/* line 10705, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-image,
.testi-image a,
.testi-image img,
.testi-image i {
  display: block;
  width: 64px;
  height: 64px;
}

/* line 10714, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-image i {
  text-align: center;
  background-color: #EEE;
  border-radius: 50%;
  line-height: 64px;
  font-size: 28px;
  color: #888;
  text-shadow: 1px 1px 1px #FFF;
}

/* line 10724, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-image img {
  border-radius: 50%;
}

/* line 10726, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-content {
  position: relative;
  overflow: hidden;
}

/* line 10731, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-content p {
  margin-bottom: 0;
  font-family: 'Crete Round', serif;
  font-style: italic;
}

/* line 10737, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-content p:before,
.testi-content p:after {
  content: '"';
}

/* line 10740, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-meta {
  margin-top: 10px;
  font-size: 13px;
  font-weight: bold;
  /*text-transform: uppercase;*/
}

/* line 10747, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-meta:before {
  content: '\2013';
}

/* line 10749, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testi-meta span {
  display: block;
  font-weight: normal;
  color: #999;
  font-size: 12px;
  text-transform: none;
  padding-left: 10px;
}

/* Twitter - Small Scroller
-----------------------------------------------------------------*/
/* line 10762, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.twitter-scroll .testi-content p:before,
.testimonial.twitter-scroll .testi-content p:after,
.testimonial.twitter-scroll .testi-meta:before {
  content: '';
}

/* line 10766, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.twitter-scroll .testi-meta span {
  padding-left: 0;
}

/* line 10768, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.twitter-scroll .testi-meta span a {
  color: #999;
}

/* line 10770, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.twitter-scroll .testi-meta span a:hover {
  color: #222;
}

/* Testimonials - Full Width
-----------------------------------------------------------------*/
/* line 10776, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.testimonial-full {
  padding: 30px;
}

/* line 10778, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.testimonial-full[data-animation="fade"] {
  padding: 30px;
}

/* line 10780, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.testimonial-full[data-animation="fade"] .flexslider {
  overflow: visible !important;
}

/* line 10782, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial-full .testi-image {
  float: none;
  margin: 0 auto 20px;
}

/* line 10787, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial-full .testi-image,
.testimonial-full .testi-image a,
.testimonial-full .testi-image img,
.testimonial-full .testi-image i {
  display: block;
  width: 72px;
  height: 72px;
}

/* line 10796, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial-full .testi-image i {
  line-height: 72px;
}

/* line 10798, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial-full .testi-content {
  text-align: center;
  font-size: 18px;
}

/* line 10803, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial-full .testi-meta {
  margin-top: 15px;
}

/* line 10805, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial-full .testi-meta span {
  padding-left: 0;
}

/* Testimonial - Section Scroller
-----------------------------------------------------------------*/
/* line 10811, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section > .testimonial {
  padding: 0;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: 800px;
  margin: 0 auto;
}

/* line 10820, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section > .testimonial[data-animation="fade"] {
  padding: 0;
}

/* line 10822, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section > .testimonial .testi-content {
  font-size: 22px;
}

/* line 10824, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.section > .testimonial .testi-meta,
.section > .testimonial .testi-meta span {
  font-size: 14px;
}

/* Testimonial - Pagination
-----------------------------------------------------------------*/
/* line 10831, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial .flex-control-nav {
  top: auto;
  bottom: 6px;
  right: 0;
}

/* line 10837, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial .flex-control-nav li {
  margin: 0 2px;
  width: 6px;
  height: 6px;
}

/* line 10843, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial .flex-control-nav li a {
  width: 6px !important;
  height: 6px !important;
  border: none;
  background-color: #4484CE;
  opacity: 0.5;
}

/* line 10851, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial .flex-control-nav li:hover a {
  opacity: 0.75;
}

/* line 10852, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial .flex-control-nav li a.flex-active {
  opacity: 1;
}

/* Testimonial - Full Scroller
-----------------------------------------------------------------*/
/* line 10858, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.testimonial-full .flex-control-nav {
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 6px;
  margin-top: 20px;
}

/* line 10868, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.testimonial.testimonial-full .flex-control-nav li {
  display: inline-block;
  float: none;
}

/* ----------------------------------------------------------------
  Team
-----------------------------------------------------------------*/
/* line 10879, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team,
.team-image {
  position: relative;
}

/* line 10882, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-image > a,
.team-image img {
  display: block;
  width: 100%;
}

/* line 10888, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-desc {
  text-align: center;
}

/* line 10890, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-desc.team-desc-bg {
  background-color: #fafafa;
  padding: 10px 0 30px;
}

/* line 10895, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team .si-share {
  margin-top: 30px;
  text-align: left;
}

/* line 10900, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team .si-share .social-icon {
  font-size: 14px;
  width: 34px;
}

/* line 10905, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-title {
  position: relative;
  padding-top: 20px;
}

/* line 10910, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-title h4 {
  display: block;
  margin-bottom: 0;
  font-size: 19px;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  font-weight: 700;
}

/* line 10919, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-title span {
  display: block;
  color: #4484CE;
  font-weight: 400;
  font-family: 'Crete Round', serif;
  font-style: italic;
  font-size: 15px;
  margin-top: 5px;
}

/* line 10929, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-content {
  margin-top: 15px;
  color: #777;
}

/* line 10934, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-content p:last-child {
  margin-bottom: 0;
}

/* line 10936, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-overlay,
.team-overlay:before {
  opacity: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

/* line 10948, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .team-overlay {
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

/* line 10954, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-overlay:before {
  content: '';
  z-index: auto;
  background-color: #fafafa;
  opacity: 0.75;
}

/* line 10961, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team-overlay .social-icon {
  float: none;
  position: relative;
  z-index: 3;
  margin: 0 3px !important;
  display: inline-block;
}

/* line 10969, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team:hover .team-overlay {
  opacity: 1;
}

/* Team Center
-----------------------------------------------------------------*/
/* line 10975, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team.center .team-title:after {
  left: 50%;
  margin-left: -40px;
}

/* Team List
-----------------------------------------------------------------*/
/* line 10984, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team.team-list .team-image {
  float: left;
  width: 250px;
  margin-right: 30px;
}

/* line 10990, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team.team-list .team-desc {
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* line 10996, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team.team-list .team-title {
  padding-top: 0;
}

/* line 10998, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team .team-desc > .social-icon {
  margin-top: 20px;
}

/* line 11000, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team .team-content ~ .social-icon {
  margin-top: 30px;
}

/* line 11002, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.team:not(.team-list) .social-icon {
  display: inline-block;
  float: none;
  margin-left: 6px;
  margin-right: 6px;
}

/* ----------------------------------------------------------------
  Pricing Boxes
-----------------------------------------------------------------*/
/* line 11014, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing {
  position: relative;
}

/* line 11016, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing [class^=col-] {
  padding: 0;
  margin-top: 20px;
}

/* Pricing Boxes
-----------------------------------------------------------------*/
/* line 11025, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.075);
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}

/* Pricing Boxes - Title
-----------------------------------------------------------------*/
/* line 11038, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-title {
  padding: 15px 0;
  background-color: #F9F9F9;
  border-radius: 3px 3px 0 0;
  text-shadow: 1px 1px 1px #FFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* line 11046, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-title h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: bold;
  /*text-transform: uppercase;*/
  color: #555;
}

/* line 11055, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-title span {
  display: block;
  color: #999;
  font-weight: 300;
  font-size: 14px;
  margin-top: 3px;
  /*text-transform: uppercase;*/
}

/* Pricing Boxes - Price
-----------------------------------------------------------------*/
/* line 11068, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-price {
  position: relative;
  padding: 25px 0;
  color: #333;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
}

/* line 11077, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-price:after {
  content: '';
  position: absolute;
  width: 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  top: auto;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
}

/* line 11088, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-price span {
  display: inline-block;
  vertical-align: top;
  margin: 7px 3px 0 0;
  font-size: 28px;
  font-weight: normal;
}

/* line 11096, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-price span.price-tenure {
  vertical-align: baseline;
  font-size: 16px;
  font-weight: normal;
  color: #999;
  margin: 0 0 0 3px;
}

/* Pricing Boxes - Features
-----------------------------------------------------------------*/
/* line 11108, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-features {
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}

/* line 11110, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-features ul {
  margin: 0;
  padding: 15px 0;
  list-style: none;
}

/* line 11116, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-features li {
  padding: 6px 0;
  font-size: 14px;
}

/* Pricing Boxes - Action
-----------------------------------------------------------------*/
/* line 11125, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-action {
  padding: 15px 30px;
}

/* Pricing Boxes - Best Price
-----------------------------------------------------------------*/
/* line 11131, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.best-price {
  background-color: #fafafa;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* line 11137, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.best-price {
  margin: -20px -1px 0 -1px;
}

/* line 11139, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.best-price .pricing-title {
  background-color: #fafafa;
  padding: 20px 0;
}

/* line 11144, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.best-price .pricing-title h3 {
  font-size: 22px;
}

/* line 11146, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.best-price .pricing-price {
  color: #4484CE;
  font-size: 72px;
}

/* Pricing Boxes - Minimal
-----------------------------------------------------------------*/
/* line 11155, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-minimal .pricing-price {
  background-color: #fafafa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}

/* line 11160, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-minimal .pricing-price:after {
  display: none;
}

/* Pricing Boxes - 5 Columns
-----------------------------------------------------------------*/
/* line 11166, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing.pricing-5 .pricing-box {
  float: left;
  width: 20%;
  margin-top: 20px;
}

/* line 11172, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing.pricing-5 .pricing-box.best-price {
  margin-top: 0;
}

/* line 11174, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing.pricing-5 .pricing-box:nth-child(5) {
  margin-left: -1px;
}

/* line 11176, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing.pricing-5 .pricing-title h3 {
  font-size: 18px;
}

/* line 11178, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing.pricing-5 .best-price .pricing-title h3 {
  font-size: 20px;
}

/* Pricing Boxes - Extended
-----------------------------------------------------------------*/
/* line 11184, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended {
  background-color: #fafafa;
  text-align: left;
}

/* line 11189, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-desc {
  float: left;
  width: 75%;
  padding: 25px;
}

/* line 11195, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-title {
  background-color: transparent;
  padding-top: 0;
  text-align: left;
}

/* line 11201, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-features {
  border: 0;
}

/* line 11203, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-features ul {
  padding: 15px 0 0 0;
}

/* line 11205, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-features li {
  padding: 6px 0;
  font-size: 15px;
  width: 50%;
  float: left;
}

/* line 11212, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-features ul li i {
  position: relative;
  top: 1px;
  width: 16px;
  margin-right: 2px;
}

/* line 11219, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-action-area {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 25%;
  height: 100%;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #F9F9F9;
  padding: 30px;
  border-radius: 0 3px 3px 0;
  text-align: center;
}

/* line 11233, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-action-area .pricing-price,
.pricing-box.pricing-extended .pricing-action-area .pricing-action {
  padding: 0;
}

/* line 11236, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-action-area .pricing-price {
  padding-bottom: 20px;
}

/* line 11238, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-action-area .pricing-price:after {
  display: none;
}

/* line 11240, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-action-area .pricing-price span.price-tenure {
  display: block;
  margin: 10px 0 0 0;
  font-weight: 300;
  /*text-transform: uppercase;*/
  font-size: 14px;
}

/* line 11248, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pricing-box.pricing-extended .pricing-meta {
  color: #999;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/
  padding-bottom: 10px;
}

/* line 11257, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.table-comparison,
.table-comparison th {
  text-align: center;
}

/* line 11260, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.table-comparison th:first-child,
.table-comparison td:first-child {
  text-align: left;
  font-weight: bold;
}

/* ----------------------------------------------------------------
  Counter
-----------------------------------------------------------------*/
/* line 11272, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter {
  font-size: 42px;
  font-weight: 600;
  font-family: 'SofiaProRegular';
}

/* line 11278, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter.counter-small {
  font-size: 28px;
}

/* line 11280, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter.counter-large {
  font-size: 56px;
}

/* line 11282, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter.counter-xlarge {
  font-size: 64px;
  font-weight: 400;
}

/* line 11287, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter.counter-inherit {
  font-size: inherit;
  font-weight: inherit;
}

/* line 11292, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter + h5 {
  font-weight: 400;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  margin-top: 10px;
}

/* line 11299, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter.counter-lined + h5:before {
  display: block;
  position: relative;
  margin: 20px auto 25px auto;
  content: '';
  width: 15%;
  border-top: 2px solid #444;
  opacity: 0.9;
}

/* line 11309, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter.counter-small + h5 {
  font-size: 13px;
}

/* line 11311, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.counter.counter-large + h5,
.counter.counter-xlarge + h5 {
  font-size: 15px;
  font-weight: 300;
}

/* line 11317, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget .counter + h5 {
  opacity: 0.7;
}

/* ----------------------------------------------------------------
  Animated Rounded Skills
-----------------------------------------------------------------*/
/* line 11325, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.rounded-skill {
  display: inline-block;
  margin: 0 15px 15px;
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

/* line 11336, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .rounded-skill {
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

/* line 11342, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.rounded-skill + h5 {
  margin-bottom: 0;
}

/* line 11344, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.rounded-skill i {
  font-size: 42px;
}

/* line 11346, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.rounded-skill canvas {
  position: absolute;
  top: 0;
  left: 0;
}

/* ----------------------------------------------------------------
  Skills Bar
-----------------------------------------------------------------*/
/* line 11358, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.skills {
  margin: 0;
  list-style: none;
  padding-top: 25px;
}

/* line 11364, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.skills li {
  position: relative;
  margin-top: 38px;
  height: 4px;
  background-color: #F5F5F5;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

/* line 11373, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.skills li:first-child {
  margin-top: 0;
}

/* line 11375, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.skills li .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #4484CE;
  overflow: visible !important;
  border-radius: 2px;
  -webkit-transition: width 1.2s ease-in-out;
  -o-transition: width 1.2s ease-in-out;
  transition: width 1.2s ease-in-out;
}

/* line 11389, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.skills li .progress-percent {
  position: absolute;
  top: -28px;
  right: 0;
  background-color: #333;
  color: #F9F9F9;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.2);*/
  height: 22px;
  line-height: 22px;
  padding: 0px 5px;
  font-size: 11px;
  border-radius: 2px;
}

/* line 11403, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.skills li .progress-percent .counter {
  font-weight: 400;
  font-family: 'SofiaProRegular';
}

/* line 11408, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.progress-percent:after, .progress-percent:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

/* line 11418, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.progress-percent:after {
  border-top-color: #333;
  border-width: 4px;
  left: 50%;
  margin-left: -4px;
}

/* line 11425, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.progress-percent:before {
  border-top-color: #333;
  border-width: 5px;
  left: 50%;
  margin-left: -5px;
}

/* line 11432, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.skills li > span {
  position: absolute;
  z-index: 1;
  top: -23px;
  left: 0;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
  /*text-transform: uppercase;*/
  color: #222;
}

/* ----------------------------------------------------------------
  Quotes & Blockquotes
-----------------------------------------------------------------*/
/* line 11447, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
blockquote p {
  margin-bottom: 15px;
}

/* line 11449, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
blockquote.pull-left {
  max-width: 300px;
  margin: 5px 20px 10px 0;
  padding-right: 0;
}

/* line 11455, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
blockquote.pull-right {
  max-width: 300px;
  margin: 5px 0 10px 20px;
  padding-left: 0;
}

/* line 11461, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quote {
  border: none !important;
  position: relative;
}

/* line 11466, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quote p {
  position: relative;
}

/* line 11468, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quote:before {
  font-family: 'font-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  content: "\e7ad";
  position: absolute;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 42px;
  top: 0;
  left: 0;
  color: #EEE;
}

/* line 11485, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quote.blockquote-reverse:before {
  content: "\e7ae";
  left: auto;
  right: 0;
}

/* ----------------------------------------------------------------
  Dropcaps & Highlights
-----------------------------------------------------------------*/
/* line 11497, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.dropcap {
  float: left;
  font-size: 42px;
  line-height: 1;
  margin: 0 5px 0 0;
  /*text-transform: uppercase;*/
}

/* line 11505, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.highlight {
  padding: 2px 5px;
  background-color: #444;
  color: #FFF;
  border-radius: 2px;
}

/* ----------------------------------------------------------------
  Text Rotater
-----------------------------------------------------------------*/
/* line 11518, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.text-rotater > .t-rotate > .animated {
  display: inline-block;
}

/* ----------------------------------------------------------------
  Owl Carousel CSS
-----------------------------------------------------------------*/
/* line 11525, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 11532, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 11534, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* line 11536, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 11551, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* line 11557, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel {
  display: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* line 11565, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

/* line 11570, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 11579, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 11585, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 11587, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-loading {
  display: block;
  min-height: 100px;
  background: url("https://www.wehome.fr/assets/images/preloader.gif") no-repeat center center;
}

/* line 11593, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-refresh .owl-item {
  display: none;
}

/* line 11595, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 11603, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

/* line 11609, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#slider .owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
}

/* line 11611, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  display: none;
}

/* line 11613, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 11625, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 11627, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 11632, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 11634, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mega-menu-content .owl-carousel.owl-hidden {
  opacity: 1;
}

/* line 11636, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-refresh .owl-item {
  display: none;
}

/* line 11638, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 11645, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

/* line 11653, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 11655, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* line 11657, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.no-js .owl-carousel {
  display: block;
}

/* line 11659, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 11666, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* line 11668, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #111;
}

/* line 11674, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 64px;
  width: 64px;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  background: url("https://www.wehome.fr/assets/images/icons/play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

/* line 11691, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

/* line 11697, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

/* line 11700, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 11714, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* Owl Carousel - Controls
-----------------------------------------------------------------*/
/* line 11725, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}

/* Owl Carousel - Controls - Arrows
-----------------------------------------------------------------*/
/* line 11735, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-nav [class*=owl-] {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  left: -36px;
  zoom: 1;
  width: 36px;
  height: 36px;
  line-height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #666;
  background-color: #fafafa;
  font-size: 18px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* line 11755, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel.with-carousel-dots .owl-nav [class*=owl-] {
  margin-top: -38px;
}

/* line 11757, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel-full .owl-nav [class*=owl-] {
  margin-top: -30px;
  left: 0 !important;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #EEE;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 28px;
  border-radius: 0 3px 3px 0;
}

/* line 11769, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel-full .with-carousel-dots .owl-nav [class*=owl-] {
  margin-top: -50px;
}

/* line 11771, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -36px;
}

/* line 11776, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel-full .owl-nav .owl-next {
  left: auto !important;
  right: 0 !important;
  border-radius: 3px 0 0 3px;
}

/* line 11782, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel:hover .owl-nav [class*=owl-] {
  opacity: 1;
  left: -18px;
}

/* line 11787, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel:hover .owl-nav .owl-next {
  left: auto;
  right: -18px;
}

/* line 11792, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-nav [class*=owl-]:hover {
  background-color: #4484CE !important;
  color: #FFF !important;
  text-decoration: none;
}

/* line 11798, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-nav .disabled {
  display: none !important;
}

/* Owl Carousel - Controls - Dots
-----------------------------------------------------------------*/
/* line 11804, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  margin-top: 30px;
  *display: inline;
}

/* line 11811, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  opacity: 0.5;
  border-radius: 50%;
  background-color: #4484CE;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* line 11824, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  opacity: 1;
}

/* ----------------------------------------------------------------
  21. Overlays
-----------------------------------------------------------------*/
/* line 11833, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 11841, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.overlay .overlay-wrap,
.text-overlay {
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* line 11850, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .overlay .overlay-wrap,
body:not(.device-touch) .text-overlay {
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* line 11857, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.overlay .overlay-wrap i {
  position: absolute;
  opacity: 0.8;
  font-size: 24px;
  line-height: 1;
  width: 24px;
  height: 24px;
  text-align: center;
  top: 50%;
  margin-top: -12px;
  left: 50%;
  margin-left: -12px;
  color: #FFF;
}

/* line 11872, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.overlay:hover .overlay-wrap,
.overlay:hover .text-overlay {
  opacity: 1;
}

/* line 11876, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.text-overlay {
  position: absolute;
  opacity: 0.85;
  top: auto;
  bottom: 0;
  height: auto;
  padding: 40px 15px 15px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.85)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  /* IE6-9 */
}

/* line 11893, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.text-overlay-title h2,
.text-overlay-title h3,
.text-overlay-title h4 {
  margin: 0;
  color: #F5F5F5;
}

/* line 11900, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.text-overlay-title h2 {
  font-size: 28px;
}

/* line 11902, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.text-overlay-title h3 {
  font-size: 17px;
  font-weight: 600;
}

/* line 11907, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.text-overlay-title h2,
.text-overlay-title h3,
.text-overlay-title h4,
.text-overlay-meta {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* line 11917, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.text-overlay-meta {
  color: #CCC;
  font-size: 13px;
}

/* line 11922, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.text-overlay-meta span i {
  position: relative;
  top: 1px;
  font-size: 14px;
}

/* News Carousel Overlays
-----------------------------------------------------------------*/
/* line 11932, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.news-carousel .text-overlay {
  padding: 40px 30px 25px;
}

/* line 11934, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.news-carousel .text-overlay-title {
  margin: 15px 0 10px;
}

/* line 11936, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.news-carousel .text-overlay-title h2,
.news-carousel .text-overlay-title h3,
.news-carousel .text-overlay-title h4 {
  line-height: 1.2;
  text-overflow: none;
  white-space: normal;
}

/* line 11944, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.news-carousel .text-overlay-meta {
  font-size: 14px;
}

/* line 11946, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.news-carousel .rounded-skill {
  position: absolute;
  margin: 0 !important;
  top: 30px;
  right: 30px;
  color: #FFF;
  font-weight: 600;
}

/* ----------------------------------------------------------------
  22. Forms
-----------------------------------------------------------------*/
/* line 11960, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sm-form-controllg {
  height: 40px !important;
}

/* line 11962, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sm-form-control {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 14px;
  font-size: 15px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 2px solid #DDD;
  border-radius: 0 !important;
  -webkit-transition: border-color ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s;
  transition: border-color ease-in-out .15s;
}

/* line 11979, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sm-form-control:focus {
  border-color: #AAA;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 11986, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sm-form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* line 11991, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sm-form-control:-ms-input-placeholder {
  color: #999;
}

/* line 11992, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sm-form-control::-webkit-input-placeholder {
  color: #999;
}

/* line 11994, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sm-form-control[disabled],
.sm-form-control[readonly],
fieldset[disabled] .sm-form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

/* line 12002, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sm-form-control {
  height: auto;
}

/* line 12004, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.form-control {
  border-radius: 3px;
}

/* line 12006, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.form-control:active,
.form-control:focus {
  border-color: #999;
  box-shadow: none;
}

/* line 12012, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  font-family: 'SofiaProRegular';
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 10px;
  /*cursor: pointer;*/
}

/* line 12024, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
label.label-muted {
  color: #999;
  font-weight: normal;
  margin-right: 5px;
}

/* line 12030, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
form .col_full,
form .col_half,
form .col_one_third,
form .col_two_third,
form .col_three_fourth,
form .col_one_fourth,
form .col_one_fifth,
form .col_two_fifth,
form .col_three_fifth,
form .col_four_fifth,
form .col_one_sixth,
form .col_five_sixth {
  margin-bottom: 25px;
}

/* ----------------------------------------------------------------
  Contact Form
-----------------------------------------------------------------*/
/* line 12049, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#contact-form-overlay,
#contact-form-overlay-mini {
  position: relative;
  max-width: 800px;
  background-color: #fafafa;
  padding: 40px;
  margin: 0 auto;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

/* line 12061, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#contact-form-overlay-mini {
  float: right;
  width: 380px;
  margin: 0;
}

/* line 12067, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
label.error {
  margin-top: 5px;
  color: #E42C3E;
  font-weight: 400;
}

/* line 12073, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
label.error {
  display: none !important;
}

/* line 12075, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.show-error-msg + label.error {
  display: block !important;
}

/* line 12077, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.form-control.error,
.sm-form-control.error {
  border-color: #E42C3E;
}

/* ----------------------------------------------------------------
  23. Google Maps
-----------------------------------------------------------------*/
/* line 12086, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#google-map {
  position: relative;
  width: 100%;
  height: 450px;
}

/* line 12092, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.gmap img {
  max-width: none !important;
}

/* line 12094, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.gm-style .gm-style-iw h3 span {
  font-size: inherit;
  font-family: inherit;
}

/* line 12099, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#map-overlay {
  position: relative;
  padding: 100px 0;
}

/* line 12104, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#map-overlay #google-map {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}

/* ----------------------------------------------------------------
  Google Custom Search
-----------------------------------------------------------------*/
/* line 12117, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content .cse .gsc-control-cse,
#content .gsc-control-cse,
#content .gsc-above-wrapper-area,
#content .gsc-adBlock,
#content .gsc-thumbnail-inside,
#content .gsc-url-top,
#content .gsc-table-result,
#content .gsc-webResult,
#content .gsc-result {
  padding: 0 !important;
}

/* line 12127, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content .gsc-selected-option-container {
  width: auto !important;
}

/* line 12129, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content .gsc-result-info {
  padding-left: 0 !important;
}

/* line 12131, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content .gsc-above-wrapper-area-container,
#content .gsc-table-result {
  margin-bottom: 10px;
}

/* line 12134, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content .gcsc-branding {
  display: none;
}

/* line 12136, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content .gsc-results,
#content .gsc-webResult {
  width: 100% !important;
}

/* line 12139, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#content .gs-no-results-result .gs-snippet,
#content .gs-error-result .gs-snippet {
  margin: 0 !important;
}

/* ----------------------------------------------------------------
  24. Heading Styles
-----------------------------------------------------------------*/
/* Block Titles
-----------------------------------------------------------------*/
/* line 12151, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-block {
  padding: 2px 0 3px 20px;
  border-left: 7px solid #4484CE;
  margin-bottom: 30px;
}

/* line 12157, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-block-right {
  padding: 2px 20px 3px 0;
  border-left: 0;
  border-right: 7px solid #4484CE;
  text-align: right;
}

/* line 12164, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-block h1,
.title-block h2,
.title-block h3,
.title-block h4 {
  margin-bottom: 0;
}

/* line 12169, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-block > span {
  display: block;
  margin-top: 4px;
  color: #555;
  font-weight: 300;
}

/* line 12176, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-block h1 + span {
  font-size: 22px;
}

/* line 12178, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-block h2 + span {
  font-size: 19px;
}

/* line 12180, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-block h3 + span {
  font-size: 17px;
}

/* line 12182, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-block h4 + span {
  font-size: 15px;
  margin-top: 3px;
}

/* Heading Block - with Subtitle
-----------------------------------------------------------------*/
/* line 12191, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block {
  margin-bottom: 50px;
}

/* line 12193, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block h1,
.heading-block h2,
.heading-block h3,
.heading-block h4,
.emphasis-title h1,
.emphasis-title h2 {
  margin-bottom: 0;
  font-weight: 600;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  color: #333;
}

/* line 12206, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.emphasis-title h1,
.emphasis-title h2 {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* line 12213, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block h1 {
  font-size: 32px;
}

/* line 12215, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block h2 {
  font-size: 30px;
}

/*.heading-block h3 { font-size: 26px; }*/
/* line 12219, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block h4 {
  font-size: 20px;
  font-weight: 700;
}

/* line 12224, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block > span:not(.before-heading) {
  display: block;
  margin-top: 10px;
  font-weight: 300;
  color: #777;
}

/* line 12231, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block .before-heading {
  margin-bottom: 7px;
}

/* line 12233, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block.center > span,
.heading-block.title-center > span,
.center .heading-block > span {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* line 12241, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block h1 + span {
  font-size: 24px;
}

/* line 12243, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block h2 + span {
  font-size: 22px;
}

/* line 12245, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block h3 + span,
.heading-block h4 + span {
  font-size: 20px;
}

/* line 12248, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block ~ p:not(.lead) {
  font-size: 15px;
}

/* line 12250, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block:after {
  content: '';
  display: block;
  margin-top: 30px;
  width: 40px;
  border-top: 2px solid #444;
}

/* line 12258, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.center .heading-block:after,
.heading-block.center:after,
.heading-block.title-center:after {
  margin: 30px auto 0;
}

/* line 12262, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tright .heading-block,
.heading-block.tright,
.heading-block.title-right {
  direction: rtl;
}

/* line 12266, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block.noborder:after,
.heading-block.nobottomborder:after {
  display: none;
}

/* line 12269, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.heading-block.border-color:after {
  border-color: #4484CE;
}

/* Emphasis Title
-----------------------------------------------------------------*/
/* line 12275, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.emphasis-title {
  margin: 0 0 50px;
}

/* line 12277, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.emphasis-title h1,
.emphasis-title h2 {
  font-size: 64px;
  letter-spacing: -2px;
}

/* line 12283, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.emphasis-title h1 strong,
.emphasis-title h2 strong {
  font-weight: 700;
}

/* Justify Border Title
-----------------------------------------------------------------*/
/* line 12290, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fancy-title {
  position: relative;
  margin-bottom: 30px;
}

/* line 12295, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fancy-title h1,
.fancy-title h2,
.fancy-title h3,
.fancy-title h4,
.fancy-title h5,
.fancy-title h6 {
  position: relative;
  display: inline-block;
  background-color: #fafafa;
  padding-right: 15px;
  margin-bottom: 0;
}

/* line 12308, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fancy-title h4,
.fancy-title h5,
.fancy-title h6 {
  padding-right: 10px;
}

/* line 12312, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fancy-title.title-double-border:before,
.fancy-title.title-border:before,
.fancy-title.title-border-color:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  border-top: 3px double #E5E5E5;
  left: auto;
  top: 46%;
  right: 0;
}

/* line 12325, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fancy-title.title-border:before {
  top: 49%;
  border-top: 1px solid #EEE;
}

/* line 12330, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fancy-title.title-border-color:before {
  top: 49%;
  border-top: 1px solid #4484CE;
  opacity: 0.6;
}

/* Fancy Title - Center Align
-----------------------------------------------------------------*/
/* line 12340, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-center {
  text-align: center;
}

/* line 12342, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-center h1,
.title-center h2,
.title-center h3 {
  padding: 0 15px;
}

/* line 12346, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-center h4,
.title-center h5,
.title-center h6 {
  padding: 0 10px;
}

/* Fancy Title - Right Align
-----------------------------------------------------------------*/
/* line 12354, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-right {
  text-align: right;
}

/* line 12356, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-right h1,
.title-right h2,
.title-right h3 {
  padding: 0 0 0 15px;
}

/* line 12360, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.title-right h4,
.title-right h5,
.title-right h6 {
  padding: 0 0 0 10px;
}

/* Fancy Title - Bottom Short Border
-----------------------------------------------------------------*/
/* line 12368, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fancy-title.title-bottom-border h1,
.fancy-title.title-bottom-border h2,
.fancy-title.title-bottom-border h3,
.fancy-title.title-bottom-border h4,
.fancy-title.title-bottom-border h5,
.fancy-title.title-bottom-border h6 {
  display: block;
  background: transparent;
  padding: 0 0 10px;
  border-bottom: 2px solid #4484CE;
}

/* Fancy Title - Bottom Short Border
-----------------------------------------------------------------*/
/* line 12384, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.fancy-title.title-dotted-border {
  background: url("https://www.wehome.fr/assets/images/icons/dotted.png") repeat-x center;
}

/* Sub Heading
-----------------------------------------------------------------*/
/* line 12390, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.before-heading {
  display: block;
  margin: 0 0 5px;
  font-size: 16px;
  font-family: 'Crete Round', serif;
  font-style: italic;
  font-weight: 400;
  color: #999;
}

/* ----------------------------------------------------------------
  25. Divider
-----------------------------------------------------------------*/
/* line 12405, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #dce0e1;
}

/* line 12412, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider {
  position: relative;
  overflow: hidden;
  margin: 10px 0;
  color: #E5E5E5;
  width: 100%;
}

/* line 12420, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-margin {
  margin: 70px 0;
}

/* line 12422, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider:after,
.divider.divider-center:before,
.divider.divider-center.divider-short:before {
  content: '';
  position: absolute;
  width: 100%;
  top: 8px;
  left: 30px;
  height: 0;
  border-top: 1px solid #dce0e1;
}

/* line 12434, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-thick:after,
.divider.divider-center.divider-thick:before,
.divider.divider-center.divider-short.divider-thick:before {
  border-top-width: 3px;
}

/* line 12438, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-short:after {
  width: 30%;
}

/* line 12440, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-vshort:after {
  width: 12%;
}

/* line 12442, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider i {
  position: relative;
  width: 18px;
  height: 18px;
  line-height: 1;
  font-size: 18px !important;
  text-align: center;
}

/* line 12451, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider a {
  position: relative;
  display: inline-block;
  color: inherit;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* line 12460, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider a:hover {
  color: #888;
}

/* Divider - Icon Align Right
-----------------------------------------------------------------*/
/* line 12466, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-right {
  text-align: right;
}

/* line 12468, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-right:after {
  left: auto;
  right: 30px;
}

/* Divider - Icon Align Center
-----------------------------------------------------------------*/
/* line 12477, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-center,
.divider.divider-center.divider-short {
  text-align: center;
}

/* line 12480, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-center:before {
  left: -50% !important;
  right: 0;
  margin-left: -20px;
}

/* line 12486, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-center:after {
  left: 50% !important;
  right: 0;
  margin-left: 20px;
}

/* Short Divider - Icon Align Center
-----------------------------------------------------------------*/
/* line 12496, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-center.divider-short:before {
  left: auto !important;
  right: 50%;
  margin-right: 20px;
  width: 15%;
}

/* line 12503, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-center.divider-short:after {
  left: 50% !important;
  right: auto !important;
  margin-left: 20px;
  width: 15%;
}

/* line 12510, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-center.divider-vshort:before,
.divider.divider-center.divider-vshort:after {
  width: 6%;
}

/* Divider - Rounded Icon
-----------------------------------------------------------------*/
/* line 12517, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-rounded {
  color: #BBB;
}

/* line 12519, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-rounded:after,
.divider.divider-rounded.divider-center:before,
.divider.divider-rounded.divider-short:before,
.divider.divider-border:after,
.divider.divider-border.divider-center:before,
.divider.divider-border.divider-short:before {
  top: 19px;
  left: 40px;
}

/* line 12529, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-rounded i,
.divider.divider-border i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #F5F5F5;
  border-radius: 50%;
}

/* line 12538, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-rounded.divider-right:after,
.divider.divider-border.divider-right:after {
  left: auto;
  right: 40px;
}

/* Divider - Rounded & Border
-----------------------------------------------------------------*/
/* line 12548, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-border {
  color: #E5E5E5;
}

/* line 12550, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-border i {
  line-height: 38px;
  background-color: transparent;
  border: 1px solid #EEE;
}

/* Divider - Line Only
-----------------------------------------------------------------*/
/* line 12560, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.divider.divider-line:before,
.divider.divider-line:after {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ----------------------------------------------------------------
  26. Magazine Specific Classes
-----------------------------------------------------------------*/
/* line 12571, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-advert {
  float: right;
  padding: 5px;
  border-left: 1px solid #EEE;
  border-right: 1px solid #EEE;
}

/* line 12578, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.top-advert a,
.top-advert img {
  display: block;
}

/* line 12581, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bnews-title {
  display: block;
  float: left;
  margin-top: 2px;
  padding-top: .3em;
  /*text-transform: uppercase;*/
}

/* line 12589, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.bnews-slider {
  float: left;
  width: 970px;
  margin-left: 20px;
  min-height: 0;
}

/* ----------------------------------------------------------------
  27. Go To Top
-----------------------------------------------------------------*/
/* line 12601, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#gotoTop {
  display: none;
  z-index: 299;
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  color: #FFF;
  top: auto;
  left: auto;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
  border-radius: 2px;
}

/* line 12621, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) #gotoTop {
  transition: background-color .2s linear;
  -webkit-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
}

/* line 12627, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.stretched #gotoTop {
  bottom: 30px;
}

/* line 12629, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#gotoTop:hover {
  background-color: #4484CE;
}

/* ----------------------------------------------------------------
  28. Error 404
-----------------------------------------------------------------*/
/* line 12637, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.error404 {
  display: block;
  font-size: 216px;
  font-weight: 600;
  color: #DDD;
  line-height: 1.35;
  letter-spacing: 4px;
}

/* line 12646, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.error404-wrap .container {
  z-index: 7;
}

/* line 12648, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.error404-wrap .error404 {
  line-height: 0.9;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 244px;
  color: #FFF !important;
  opacity: 0.2;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

/* line 12658, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.error404-wrap .heading-block h4 {
  font-weight: 300;
  margin-bottom: 8px;
}

/* line 12663, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.error404-wrap .heading-block span {
  font-size: 17px;
}

/* line 12665, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.error404-wrap form {
  max-width: 500px;
}

/* ----------------------------------------------------------------
  29. Landing Pages
-----------------------------------------------------------------*/
/* line 12672, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.landing-wide-form {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 3px;
}

/* line 12678, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.landing-form-overlay {
  position: absolute;
  z-index: 10;
  top: auto;
  left: auto;
  right: 0;
  bottom: -154px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 3px 3px 0 0;
}

/* line 12689, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.landing-video {
  z-index: 1;
  width: 560px;
  height: 315px;
  margin: 22px 0 0 95px;
  overflow: hidden;
}

/* line 12697, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.landing-promo h3 {
  font-size: 26px;
}

/* line 12699, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.landing-promo > .container > span {
  font-size: 17px;
}

/* ----------------------------------------------------------------
  30. Preloaders
-----------------------------------------------------------------*/
/* line 12707, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.preloader,
.preloader2,
.form-process {
  display: block;
  width: 100%;
  height: 100%;
  background: url("https://www.wehome.fr/assets/images/preloader.gif") center center no-repeat #FFF;
}

/* line 12716, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.preloader2 {
  background-color: transparent;
}

/* line 12718, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.form-process {
  display: none;
  position: absolute;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------------------------------
  31. Toastr Notifications
-----------------------------------------------------------------*/
/* line 12731, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-title {
  font-weight: bold;
}

/* line 12733, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/* line 12738, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-message a,
.toast-message label {
  color: #ffffff;
}

/* line 12741, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

/* line 12746, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-close-button {
  position: absolute;
  right: 5px;
  top: 3px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

/* line 12757, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  filter: alpha(opacity=50);
}

/* line 12768, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 12776, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-top-full-width {
  top: 10px;
  right: 0;
  width: 100%;
}

/* line 12782, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-bottom-full-width {
  bottom: 10px;
  right: 0;
  width: 100%;
}

/* line 12788, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-top-left {
  top: 12px;
  left: 12px;
}

/* line 12793, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-top-right {
  top: 12px;
  right: 12px;
}

/* line 12798, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

/* line 12803, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* line 12808, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#toast-container {
  position: fixed;
  z-index: 1999;
}

/* line 12813, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 12819, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#toast-container > div {
  margin: 0 0 6px;
  padding: 15px;
  width: 300px;
  border-radius: 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

/* line 12832, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#toast-container > div i {
  position: relative;
  top: 1px;
  width: 16px;
  text-align: center;
  margin-right: 3px;
}

/* line 12840, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#toast-container > :hover {
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

/* line 12847, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin: auto;
}

/* line 12853, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast {
  background-color: #030303;
}

/* line 12855, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-success {
  background-color: #16e29c;
}

/* line 12857, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-error {
  background-color: #bd362f;
}

/* line 12859, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-info {
  background-color: #4484CE;
}

/* line 12861, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.toast-warning {
  background-color: #F19F4D;
}

@media all and (min-width: 240px) and (max-width: 479px) {
  /* line 12865, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  #toast-container > div {
    padding: 8px;
    width: 18em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 12872, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
  #toast-container > div {
    padding: 15px;
    width: 25em;
  }
}
/* ----------------------------------------------------------------
  32. Footer
-----------------------------------------------------------------*/
/* line 12884, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#footer {
  position: relative;
  background-color: #EEE;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
}

/* line 12890, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#footer.stick-footer {
  margin-top: -100px;
  /* negative value of footer height */
  clear: both;
  width: 100%;
}

/* line 12896, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.device-lg.sticky-footer #top-bar,
.device-md.sticky-footer #top-bar {
  z-index: 299;
}

/* line 12899, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.device-lg.sticky-footer #header,
.device-md.sticky-footer #header {
  z-index: 199;
}

/* line 12902, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.device-lg.sticky-footer #slider,
.device-lg.sticky-footer #page-submenu,
.device-lg.sticky-footer #page-title,
.device-lg.sticky-footer #content,
.device-md.sticky-footer #slider,
.device-md.sticky-footer #page-submenu,
.device-md.sticky-footer #page-title,
.device-md.sticky-footer #content {
  z-index: 2;
}

/* line 12911, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.device-lg.sticky-footer #footer,
.device-md.sticky-footer #footer {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* line 12921, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.device-lg.sticky-footer:not(.stretched) #footer,
.device-md.sticky-footer:not(.stretched) #footer {
  left: 50%;
  margin-left: -610px;
  width: 1220px;
}

/* line 12928, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.device-md.sticky-footer:not(.stretched) #footer {
  margin-left: -500px;
  width: 1000px;
}

/* line 12933, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#footer .footer-widgets-wrap {
  position: relative;
  padding: 80px 0;
}

/* line 12938, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.footer-widgets-wrap .col_full,
.footer-widgets-wrap .col_half,
.footer-widgets-wrap .col_one_third,
.footer-widgets-wrap .col_two_third,
.footer-widgets-wrap .col_three_fourth,
.footer-widgets-wrap .col_one_fourth,
.footer-widgets-wrap .col_one_fifth,
.footer-widgets-wrap .col_two_fifth,
.footer-widgets-wrap .col_three_fifth,
.footer-widgets-wrap .col_four_fifth,
.footer-widgets-wrap .col_one_sixth,
.footer-widgets-wrap .col_five_sixth {
  margin-bottom: 0;
}

/* line 12951, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#copyrights {
  padding: 40px 0;
  background-color: #DDD;
  font-size: 14px;
  line-height: 1.8;
}

/* line 12958, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#copyrights i.footer-icon {
  position: relative;
  top: 1px;
  font-size: 14px;
  width: 14px;
  text-align: center;
  margin-right: 3px;
}

/* line 12967, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.copyright-links a {
  display: inline-block;
  margin: 0 3px;
  color: #333;
  border-bottom: 1px dotted #444;
}

/* line 12974, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.copyright-links a:hover {
  color: #555;
  border-bottom: 1px solid #666;
}

/* line 12979, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.copyrights-menu {
  margin-bottom: 10px;
}

/* line 12981, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.copyrights-menu a {
  font-size: 14px;
  margin: 0 10px;
  border-bottom: 0 !important;
}

/* line 12987, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#copyrights .col_half {
  margin-bottom: 0 !important;
}

/* line 12989, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#copyrights a:first-child {
  margin-left: 0;
}

/* line 12991, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#copyrights .tright a:last-child {
  margin-right: 0;
}

/* line 12993, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.footer-logo {
  display: block;
  margin-bottom: 30px;
}

/* ----------------------------------------------------------------
  33. Widgets
-----------------------------------------------------------------*/
/* line 13004, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget {
  position: relative;
  margin-top: 50px;
}

/* line 13009, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget p {
  line-height: 1.7;
}

/* line 13011, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidebar-widgets-wrap .widget {
  padding-top: 50px;
  border-top: 1px solid #EEE;
}

/* line 13016, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget:first-child {
  margin-top: 0;
}

/* line 13018, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidebar-widgets-wrap .widget:first-child {
  padding-top: 0;
  border-top: 0;
}

/* line 13023, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget > h4 {
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  /*text-transform: uppercase;*/
}

/* line 13031, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.sidebar-widgets-wrap .widget > h4 {
  letter-spacing: 1px;
}

/* line 13033, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget p:not(.lead) {
  font-size: 14px;
}

/* Tag Cloud
-----------------------------------------------------------------*/
/* line 13040, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tagcloud {
  margin-bottom: -2px;
}

/* line 13042, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tagcloud a {
  display: block;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  padding: 3px 6px;
  border: 1px solid #E5E5E5;
  font-size: 13px !important;
  color: #666;
  border-radius: 2px;
}

/* line 13054, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.device-touch) .tagcloud a {
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* line 13060, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.tagcloud a:hover {
  border-color: #4484CE !important;
  color: #4484CE !important;
}

/* Widget - Links
-----------------------------------------------------------------*/
/* line 13069, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_nav_menu ul,
.widget_nav_menu li,
.widget_links ul,
.widget_links li,
.widget_meta ul,
.widget_meta li,
.widget_archive ul,
.widget_archive li,
.widget_recent_comments ul,
.widget_recent_comments li,
.widget_recent_entries ul,
.widget_recent_entries li,
.widget_categories ul,
.widget_categories li,
.widget_pages ul,
.widget_pages li,
.widget_rss ul,
.widget_rss li {
  list-style: none;
  margin: 0;
}

/* line 13091, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_nav_menu li,
.widget_links li,
.widget_meta li,
.widget_archive li,
.widget_recent_comments li,
.widget_recent_entries li,
.widget_categories li,
.widget_pages li,
.widget_rss li {
  padding: 4px;
}

/* line 13101, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_nav_menu li a,
.widget_links li a,
.widget_meta li a,
.widget_archive li a,
.widget_recent_entries li a,
.widget_categories li a,
.widget_pages li a,
.widget_rss li a,
.widget_recent_comments li {
  display: inline-block;
  padding: 0 3px 0 12px;
}

/* line 13114, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_recent_comments li {
  display: block;
  background: url("https://www.wehome.fr/assets/images/icons/widget-comment.png") left top no-repeat;
  padding: 4px 0 4px 20px;
}

/* line 13120, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_nav_menu li a,
.widget_links li a,
.widget_meta li a,
.widget_archive li a,
.widget_recent_entries li a,
.widget_categories li a,
.widget_pages li a,
.widget_rss li a,
.widget_recent_comments li a {
  background: url("https://www.wehome.fr/assets/images/icons/widget-link.png") left top no-repeat;
  border: none !important;
  color: #444;
  font-size: 14px;
}

/* line 13135, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_nav_menu li a:hover,
.widget_links li a:hover,
.widget_meta li a:hover,
.widget_archive li a:hover,
.widget_recent_entries li a:hover,
.widget_categories li a:hover,
.widget_pages li a:hover,
.widget_rss li a:hover,
.widget_recent_comments li a:hover {
  color: #000;
}

/* line 13145, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_recent_comments li a {
  display: inline;
  padding: 0;
  background: none !important;
}

/* line 13151, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_nav_menu > ul > li:first-child,
.widget_links > ul > li:first-child,
.widget_meta > ul > li:first-child,
.widget_archive > ul > li:first-child,
.widget_recent_comments > ul > li:first-child,
.widget_recent_entries > ul > li:first-child,
.widget_categories > ul > li:first-child,
.widget_pages > ul > li:first-child,
.widget_rss > ul > li:first-child {
  border-top: 0 !important;
}

/* line 13161, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_nav_menu > ul,
.widget_links > ul,
.widget_meta > ul,
.widget_archive > ul,
.widget_recent_comments > ul,
.widget_recent_entries > ul,
.widget_categories > ul,
.widget_pages > ul,
.widget_rss > ul {
  margin-top: -4px !important;
}

/* line 13171, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget_nav_menu ul ul,
.widget_links ul ul,
.widget_meta ul ul,
.widget_archive ul ul,
.widget_recent_comments ul ul,
.widget_recent_entries ul ul,
.widget_categories ul ul,
.widget_pages ul ul,
.widget_rss ul ul {
  margin-left: 15px;
}

/* Widget - Testimonial & Twitter
-----------------------------------------------------------------*/
/* line 13185, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget .testimonial.no-image .testi-image {
  display: none;
}

/* line 13187, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget .testimonial.twitter-scroll .testi-image {
  margin-right: 10px;
}

/* line 13189, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget .testimonial:not(.twitter-scroll) .testi-image,
.widget .testimonial:not(.twitter-scroll) .testi-image a,
.widget .testimonial:not(.twitter-scroll) .testi-image img {
  width: 42px;
  height: 42px;
}

/* line 13196, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget .testimonial.twitter-scroll .testi-image,
.widget .testimonial.twitter-scroll .testi-image a,
.widget .testimonial.twitter-scroll .testi-image img,
.widget .testimonial.twitter-scroll .testi-image i {
  width: 28px;
  height: 28px;
}

/* line 13204, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget .testimonial.twitter-scroll .testi-image i {
  background-color: #EEE;
  line-height: 28px;
  font-size: 14px;
  color: #888;
}

/* line 13211, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget .testimonial p {
  font-size: 14px;
}

/* Widget - Quick Contact Form
-----------------------------------------------------------------*/
/* line 13217, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quick-contact-widget .form-control,
.quick-contact-widget .input-group,
.quick-contact-widget .sm-form-control {
  margin-bottom: 10px;
}

/* line 13221, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quick-contact-widget .input-group .form-control {
  margin-bottom: 0;
}

/* line 13223, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.quick-contact-widget form,
#template-contactform {
  position: relative;
}

/* Newsletter Widget
-----------------------------------------------------------------*/
/* line 13230, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.subscribe-widget h5 {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}

/* Twitter Feed Widget
-----------------------------------------------------------------*/
/* line 13240, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-twitter-feed li {
  margin: 15px 0 0 0;
}

/* line 13242, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-twitter-feed li:first-child {
  margin-top: 0;
}

/* line 13244, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-twitter-feed small {
  display: block;
  margin-top: 3px;
}

/* line 13249, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-twitter-feed small a {
  color: #999;
}

/* line 13251, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-twitter-feed .twitter-feed:not(.twitter-feed-avatar) a.twitter-avatar {
  display: none;
}

/* line 13253, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-twitter-feed .twitter-feed.twitter-feed-avatar i.icon-twitter {
  display: none;
}

/* line 13255, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-twitter-feed .twitter-feed-avatar {
  margin-left: 44px;
}

/* line 13257, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-twitter-feed .twitter-feed-avatar > li a.twitter-avatar {
  display: block;
  position: absolute;
  left: -44px;
  text-align: center;
  top: 2px;
  width: 32px;
  height: 32px;
}

/* line 13267, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.twitter-feed-avatar a.twitter-avatar img {
  border-radius: 50%;
}

/* Widget Filter Links
-----------------------------------------------------------------*/
/* line 13273, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links ul {
  list-style: none;
  margin-bottom: 0;
}

/* line 13278, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links .widget-filter-reset {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  font-size: 12px;
  line-height: 22px;
}

/* line 13287, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget:not(:first-child) .widget-filter-reset {
  top: 50px;
}

/* line 13289, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links .widget-filter-reset a {
  color: red;
}

/* line 13291, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links .widget-filter-reset.active-filter {
  display: none;
}

/* line 13293, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links li {
  position: relative;
  font-size: 15px;
  line-height: 24px;
}

/* line 13299, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links li:not(:first-child) {
  margin-top: 10px;
}

/* line 13301, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links li a {
  display: block;
  color: #444;
  font-family: 'SofiaProRegular';
  font-weight: 500;
}

/* line 13308, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links li span {
  position: absolute;
  top: 1px;
  left: auto;
  right: 0;
  font-size: 11px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  color: #777;
  background-color: #EEE;
  border-radius: 50%;
}

/* line 13323, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links li:hover a {
  color: #777;
}

/* line 13325, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links li.active-filter a {
  font-weight: 700;
}

/* line 13327, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.widget-filter-links li.active-filter span {
  color: #FFF;
  background-color: #4484CE;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,0.1);*/
}

/* Navigation Tree
-----------------------------------------------------------------*/
/* line 13338, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree {
  position: relative;
  margin-bottom: 40px;
}

/* line 13343, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree ul {
  margin-bottom: 0;
  list-style: none;
}

/* line 13348, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree > ul {
  margin: -8px 0;
}

/* line 13350, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree li {
  position: relative;
}

/* line 13352, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree li a {
  display: block;
  padding: 8px 0;
  color: #333;
  /*text-transform: uppercase;*/
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'SofiaProRegular';
}

/* line 13363, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree li i {
  font-size: 14px;
  width: 16px;
  text-align: center;
}

/* line 13369, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree li i:not(.icon-angle-down) {
  margin-right: 8px;
  position: relative;
  top: 1px;
}

/* line 13375, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree li a i.icon-angle-down {
  width: auto;
  font-size: 12px;
  margin-left: 2px;
}

/* line 13381, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree li:hover > a,
.nav-tree li.current > a,
.nav-tree li.active > a {
  color: #4484CE !important;
}

/* line 13385, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree ul ul {
  display: none;
}

/* line 13387, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree li.current > ul {
  display: block;
}

/* line 13389, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree ul ul a {
  font-size: 12px;
  padding: 6px 0;
  letter-spacing: 1px;
  font-family: 'SofiaProRegular';
}

/* line 13396, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree ul ul a i.icon-angle-down {
  font-size: 12px;
}

/* line 13398, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree ul ul a {
  padding-left: 20px;
}

/* line 13399, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree ul ul ul a {
  padding-left: 40px;
}

/* line 13400, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree ul ul ul ul a {
  padding-left: 60px;
}

/* line 13401, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-tree ul ul ul ul ul a {
  padding-left: 80px;
}

/* ----------------------------------------------------------------
  34. Wedding
-----------------------------------------------------------------*/
/* line 13409, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.wedding-head {
  position: relative;
  line-height: 1;
  font-size: 80px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

/* line 13416, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.wedding-head .first-name,
.wedding-head .last-name,
.wedding-head .and {
  display: inline-block;
  margin-right: 15px;
  font-weight: bold;
  text-align: right;
  /*text-transform: uppercase;*/
  font-family: 'SofiaProRegular';
  letter-spacing: 2px;
}

/* line 13428, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.wedding-head .last-name {
  margin: 0 0 0 15px;
  text-align: left;
}

/* line 13433, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.wedding-head .first-name span,
.wedding-head .last-name span {
  display: block;
  margin-top: 10px;
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Crete Round', serif;
  text-transform: none;
}

/* line 13444, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.wedding-head .and {
  margin: 0;
  font-size: 200px;
  font-family: 'Times New Roman', serif;
}

/* ----------------------------------------------------------------
  35. Bootstrap Specific
-----------------------------------------------------------------*/
/* line 13455, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.table .success {
  color: #16e29c;
}

/* line 13457, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.table .info {
  color: #4484CE;
}

/* line 13459, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.table .warning {
  color: #8a6d3b;
}

/* line 13461, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.table .danger {
  color: #F19F4D;
}

/* line 13463, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-link,
.pagination > li > a, .pagination > li > span,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #4484CE;
}

/* line 13470, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.btn-link:hover,
.btn-link:focus {
  color: #222;
}

/* line 13473, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.boot-tabs {
  margin-bottom: 20px !important;
}

/* line 13475, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-control .icon-chevron-left,
.carousel-control .icon-chevron-right {
  position: absolute;
  top: 47.5%;
  z-index: 5;
  display: inline-block;
}

/* line 13483, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-control .icon-chevron-left {
  left: 50%;
}

/* line 13485, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.carousel-control .icon-chevron-right {
  right: 50%;
}

/* line 13487, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.responsive-utilities th small {
  display: block;
  font-weight: 400;
  color: #999;
}

/* line 13493, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.show-grid [class^=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #EEE;
  border: 1px solid #DDD;
}

/* line 13500, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.img-circle {
  border-radius: 50% !important;
}

/* line 13502, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  color: #FFF !important;
  background-color: #4484CE !important;
  border-color: #4484CE !important;
}

/* line 13513, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  background-color: #4484CE;
}

/* line 13517, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
label.radio,
label.checkbox {
  padding-left: 20px;
}

/* line 13520, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.input-group-lg > .input-group-addon {
  line-height: 1;
}

/* ----------------------------------------------------------------
  36. Cookie Notification
-----------------------------------------------------------------*/
/* line 13528, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
#cookie-notification {
  position: fixed;
  top: auto;
  bottom: -70px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  line-height: 24px;
  background-color: #EEE;
  color: #444;
  z-index: 99;
  -webkit-box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: bottom .4s ease;
  -o-transition: bottom .4s ease;
  transition: bottom .4s ease;
}

/* ----------------------------------------------------------------
  37. Stretched Layout
-----------------------------------------------------------------*/
/* line 13555, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.stretched #wrapper {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

/* ----------------------------------------------------------------
  38. Page Transitions
-----------------------------------------------------------------*/
/* line 13566, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
body:not(.no-transition) #wrapper,
.animsition-overlay {
  position: relative;
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 13574, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  text-align: center;
  background-color: #fafafa;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 13587, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > div {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: 13px;
  width: 18px;
  height: 18px;
  background-color: #DDD;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 13604, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner .css3-spinner-bounce1 {
  margin-left: -31px;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

/* line 13610, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner .css3-spinner-bounce2 {
  margin-left: -9px;
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/* line 13632, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-flipper {
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 0;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
/* line 13661, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-double-bounce1,
.css3-spinner > .css3-spinner-double-bounce2 {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border-radius: 50%;
  opacity: 0.6;
  -webkit-animation: cssspinnerbounce 2.0s infinite ease-in-out;
  animation: cssspinnerbounce 2.0s infinite ease-in-out;
}

/* line 13673, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes cssspinnerbounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes cssspinnerbounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/* line 13693, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-rect1,
.css3-spinner > .css3-spinner-rect2,
.css3-spinner > .css3-spinner-rect3,
.css3-spinner > .css3-spinner-rect4,
.css3-spinner > .css3-spinner-rect5 {
  height: 30px;
  width: 6px;
  margin-top: -15px;
  margin-left: -21px;
  border-radius: 0;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}

/* line 13707, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-rect2 {
  margin-left: -12px;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

/* line 13713, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-rect3 {
  margin-left: -3px;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

/* line 13719, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-rect4 {
  margin-left: 6px;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

/* line 13725, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-rect5 {
  margin-left: 15px;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
/* line 13747, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-cube1,
.css3-spinner > .css3-spinner-cube2 {
  width: 16px;
  height: 16px;
  border-radius: 0;
  margin-top: -20px;
  margin-left: -20px;
  -webkit-animation: cubemove 1.8s infinite ease-in-out;
  animation: cubemove 1.8s infinite ease-in-out;
}

/* line 13758, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
/* line 13790, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-scaler {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  -webkit-animation: scaleout 1.0s infinite ease-in-out;
  animation: scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
/* line 13819, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-grid-pulse {
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
  background-color: transparent !important;
  -webkit-animation: none;
  animation: none;
}

/* line 13829, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div {
  background-color: #DDD;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-pulse;
  animation-name: ball-grid-pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

/* line 13847, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(1) {
  -webkit-animation-delay: 0.73s;
  animation-delay: 0.73s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

/* line 13854, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(2) {
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

/* line 13861, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(3) {
  -webkit-animation-delay: 0.71s;
  animation-delay: 0.71s;
  -webkit-animation-duration: 0.88s;
  animation-duration: 0.88s;
}

/* line 13868, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(4) {
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
  -webkit-animation-duration: 1.06s;
  animation-duration: 1.06s;
}

/* line 13875, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(5) {
  -webkit-animation-delay: 0.31s;
  animation-delay: 0.31s;
  -webkit-animation-duration: 0.62s;
  animation-duration: 0.62s;
}

/* line 13882, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(6) {
  -webkit-animation-delay: -0.14s;
  animation-delay: -0.14s;
  -webkit-animation-duration: 1.48s;
  animation-duration: 1.48s;
}

/* line 13889, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(7) {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
  -webkit-animation-duration: 1.47s;
  animation-duration: 1.47s;
}

/* line 13896, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 1.49s;
  animation-duration: 1.49s;
}

/* line 13903, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-grid-pulse > div:nth-child(9) {
  -webkit-animation-delay: 0.73s;
  animation-delay: 0.73s;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* line 13943, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-clip-rotate {
  width: 33px;
  height: 33px;
  margin-top: -17px;
  margin-left: -17px;
  background-color: transparent !important;
  -webkit-animation: none;
  animation: none;
}

/* line 13953, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-clip-rotate > div {
  border-radius: 100%;
  border: 2px solid #DDD;
  border-bottom-color: transparent !important;
  height: 33px;
  width: 33px;
  background: transparent !important;
  -webkit-animation: rotate 1s 0s linear infinite;
  animation: rotate 1s 0s linear infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
/* line 13979, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-ball-rotate {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  background-color: transparent !important;
  -webkit-animation: ballrotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  animation: ballrotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
}

/* line 13989, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-rotate > div {
  background-color: #DDD;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: relative;
}

/* line 13997, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-rotate > div:nth-child(1), .css3-spinner-ball-rotate > div:nth-child(3) {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  content: "";
  position: absolute;
  opacity: 0.7;
}

/* line 14006, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-rotate > div:nth-child(1) {
  top: 0px;
  left: -22px;
}

/* line 14011, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-rotate > div:nth-child(3) {
  top: 0px;
  left: 22px;
}

@-webkit-keyframes ballrotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ballrotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 14046, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-zig-zag {
  background-color: transparent !important;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
  -webkit-animation: none;
  animation: none;
}

/* line 14055, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-zig-zag > div {
  background-color: #DDD;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 14068, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-zig-zag > div:first-child {
  -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
  animation: ball-zig-deflect 1.5s 0s infinite linear;
}

/* line 14073, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-zig-zag > div:last-child {
  -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
  animation: ball-zag-deflect 1.5s 0s infinite linear;
}

@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* line 14184, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-ball-scale-multiple {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  background-color: transparent !important;
  -webkit-animation: none;
  animation: none;
}

/* line 14194, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-scale-multiple > div {
  background-color: #DDD;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 60px;
  height: 60px;
  -webkit-animation: ball-scale-multiple 1.25s 0s linear infinite;
  animation: ball-scale-multiple 1.25s 0s linear infinite;
}

/* line 14207, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

/* line 14212, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/* line 14246, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-triangle-path {
  background-color: transparent !important;
  -webkit-transform: translate(-29.994px, -37.50938px);
  -ms-transform: translate(-29.994px, -37.50938px);
  transform: translate(-29.994px, -37.50938px);
  -webkit-animation: none;
  animation: none;
}

/* line 14255, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-triangle-path > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #DDD;
}

/* line 14265, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-triangle-path > div:nth-child(1) {
  -webkit-animation: ball-triangle-path-1 2s 0s ease-in-out infinite;
  animation: ball-triangle-path-1 2s 0s ease-in-out infinite;
}

/* line 14270, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-triangle-path > div:nth-child(2) {
  -webkit-animation: ball-triangle-path-2 2s 0s ease-in-out infinite;
  animation: ball-triangle-path-2 2s 0s ease-in-out infinite;
}

/* line 14275, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-triangle-path > div:nth-child(3) {
  -webkit-animation: ball-triangle-path-3 2s 0s ease-in-out infinite;
  animation: ball-triangle-path-3 2s 0s ease-in-out infinite;
}

/* line 14280, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-triangle-path > div:nth-of-type(1) {
  top: 50px;
}

/* line 14282, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-triangle-path > div:nth-of-type(2) {
  left: 25px;
}

/* line 14284, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-triangle-path > div:nth-of-type(3) {
  top: 50px;
  left: 50px;
}

@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }
  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }
  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
/* line 14374, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-ball-pulse-sync {
  width: 70px;
  height: 34px;
  margin-left: -35px;
  margin-top: -17px;
  background-color: transparent !important;
  -webkit-animation: none;
  animation: none;
}

/* line 14384, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-pulse-sync > div {
  display: inline-block;
  background-color: #DDD;
  width: 14px;
  height: 14px;
  margin: 10px 3px 0;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 14395, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-pulse-sync > div:nth-child(0) {
  -webkit-animation: ball-pulse-sync 0.7s -0.21s infinite ease-in-out;
  animation: ball-pulse-sync 0.7s -0.21s infinite ease-in-out;
}

/* line 14400, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.7s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.7s -0.14s infinite ease-in-out;
}

/* line 14405, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.7s -0.07s infinite ease-in-out;
  animation: ball-pulse-sync 0.7s -0.07s infinite ease-in-out;
}

/* line 14410, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.7s 0s infinite ease-in-out;
  animation: ball-pulse-sync 0.7s 0s infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0.85;
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0.85;
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* line 14457, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner > .css3-spinner-scale-ripple {
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  background-color: transparent !important;
  -webkit-animation: none;
  animation: none;
}

/* line 14467, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-scale-ripple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #DDD;
  -webkit-animation: ball-scale-ripple-multiple 1.4s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.4s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

/* line 14480, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-scale-ripple > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

/* line 14485, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-scale-ripple > div:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

/* line 14490, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-scale-ripple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

/* line 14495, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.css3-spinner-scale-ripple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0.0;
  }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0.0;
  }
}
/* ----------------------------------------------------------------
  39. HTML5 Youtube Video Backgrounds
-----------------------------------------------------------------*/
/* line 14538, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mb_YTVPlayer :focus {
  outline: 0;
}

/* line 14540, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mb_YTVPlayer {
  display: block;
  transform: translateZ(0);
  transform-style: preserve-3d;
  perspective: 1000;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation-timing-function: linear;
}

/* line 14550, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mb_YTVPlayer.fullscreen {
  display: block !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  border: none !important;
}

/* line 14561, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mb_YTVPlayer.fullscreen .mbYTP_wrapper {
  opacity: 1 !important;
}

/* line 14564, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.mbYTP_wrapper iframe {
  max-width: 4000px !important;
}

/* line 14566, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.inline_YTPlayer {
  margin-bottom: 20px;
  vertical-align: top;
  position: relative;
  left: 0;
  overflow: hidden;
  border-radius: 4px;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.5);
}

/* line 14579, /Users/KunKun/Dropbox/sites_www/wehome/wwwrails/app/assets/stylesheets/custom.scss */
.inline_YTPlayer img {
  border: none !important;
  -moz-transform: none !important;
  -webkit-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* ----------------------------------------------------------------
	Dark Scheme
-----------------------------------------------------------------*/



.dark,
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 { color: #EEE; }

.dark a:hover { color: #EEE; }

body.dark,
.dark #wrapper,
.dark #content,
.dark .shop-quick-view-ajax,
.dark .portfolio-ajax-modal,
.dark .modal-content,
.dark .css3-spinner,
body.dark #side-panel,
body #side-panel.dark { background-color: #383838; }

.dark .css3-spinner > div,
.dark .css3-spinner-grid-pulse > div,
.dark .css3-spinner-ball-rotate > div,
.dark .css3-spinner-zig-zag > div,
.dark .css3-spinner-ball-scale-multiple > div,
.dark .css3-spinner-triangle-path > div,
.dark .css3-spinner-ball-pulse-sync > div { background-color: rgba(255,255,255,0.35); }


.dark .css3-spinner-clip-rotate > div,
.dark .css3-spinner-scale-ripple > div { border-color: rgba(255,255,255,0.35); }

.dark .line,
.dark .double-line { border-top-color: rgba(255,255,255,0.1); }

.dark .section,
.section.dark {
	background-color: #4484CE;
}

.dark #top-bar,
#top-bar.dark {
	border-bottom-color: rgba(255,255,255,0.1);
	background-color: #282828;
}

.dark .top-links ul li { border-left-color: rgba(255,255,255,0.1); }

.dark .top-links li > a { color: #AAA; }

.dark .top-links li:hover {
	background-color: #333;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.dark .top-links ul ul,
.dark .top-links ul div.top-link-section {
	background: #333;
	border-bottom: none;
}

.dark .top-links ul ul li {
	border-top: 1px solid #444;
	border-left: 1px solid #444;
}

.dark .top-links ul ul li:hover { background-color: #383838; }

.dark .top-links ul ul li:first-child { border-left: 1px solid #444; }

.dark #top-social li { border-left: 1px solid rgba(255,255,255,0.1); }

.dark #top-social li a { color: #BBB; }

.dark #header:not(.transparent-header),
#header.dark:not(.transparent-header) {
	background-color: #333;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dark #header.sticky-header:not(.transparent-header) #header-wrap:not(.not-dark),
.dark #header.sticky-header.transparent-header #header-wrap:not(.not-dark),
.dark #header.transparent-header.floating-header .container,
.dark #header.transparent-header.floating-header.sticky-header .container,
#header.dark.sticky-header:not(.transparent-header) #header-wrap:not(.not-dark),
#header.dark.sticky-header.transparent-header #header-wrap:not(.not-dark),
#header.dark.transparent-header.floating-header .container,
#header.dark.transparent-header.floating-header.sticky-header .container,
.dark .responsive-sticky-header #header-wrap,
.responsive-sticky-header.dark #header-wrap { background-color: #333; }

.dark #header.full-header #header-wrap:not(.not-dark),
#header.full-header.dark #header-wrap:not(.not-dark) { border-bottom-color: rgba(255,255,255,0.15); }

.dark #slider + #header.full-header #header-wrap:not(.not-dark),
#slider + #header.full-header.dark #header-wrap:not(.not-dark) { border-top-color: rgba(255,255,255,0.15); }

.dark #header.transparent-header.full-header:not(.sticky-header) #header-wrap:not(.not-dark),
#header.transparent-header.full-header.dark:not(.sticky-header) #header-wrap:not(.not-dark) { border-bottom-color: rgba(255,255,255,0.2); }

.dark #slider + #header.transparent-header.full-header:not(.sticky-header) #header-wrap:not(.not-dark),
#slider + #header.transparent-header.full-header.dark:not(.sticky-header) #header-wrap:not(.not-dark) { border-top-color: rgba(255,255,255,0.2); }

.dark #header.semi-transparent,
.dark #header.semi-transparent.floating-header .container,
#header.dark.semi-transparent,
#header.dark.semi-transparent.floating-header .container { background-color: rgba(0,0,0,0.6); }

.dark #header.sticky-header.semi-transparent,
.dark #header.semi-transparent.floating-header,
.dark #header.semi-transparent.floating-header.sticky-header .container,
#header.dark.sticky-header.semi-transparent,
#header.dark.semi-transparent.floating-header,
#header.dark.semi-transparent.floating-header.sticky-header .container { background-color: transparent; }

.dark #header.semi-transparent.sticky-header #header-wrap,
#header.dark.semi-transparent.sticky-header #header-wrap { background-color: rgba(0,0,0,0.6); }

.dark #logo a { color: #CCC; }

.dark #header.full-header #header-wrap:not(.not-dark) #logo,
#header.full-header.dark #header-wrap:not(.not-dark) #logo { border-right-color: rgba(255,255,255,0.15); }

.dark #header.transparent-header.full-header:not(.sticky-header) #header-wrap:not(.not-dark) #logo,
#header.transparent-header.full-header.dark:not(.sticky-header) #header-wrap:not(.not-dark) #logo { border-right-color: rgba(255,255,255,0.2); }


.dark #header-wrap:not(.not-dark) #primary-menu > ul > li > a,
.dark #header-wrap:not(.not-dark) #primary-menu > .container > ul > li > a,
.dark.overlay-menu #header-wrap:not(.not-dark) #primary-menu > ul > li > a,
.overlay-menu #primary-menu.dark > ul > li > a,
.dark.overlay-menu #header-wrap:not(.not-dark) #primary-menu > #overlay-menu-close,
.overlay-menu #primary-menu.dark > #overlay-menu-close,
.dark #header-wrap:not(.not-dark) #top-search a,
.dark #header-wrap:not(.not-dark) #top-cart a,
.dark #header-wrap:not(.not-dark) #side-panel-trigger a,
.dark #top-cart .top-cart-item-desc a,
body.top-search-open .dark #header-wrap:not(.not-dark) #top-search a,
.dark #header-wrap:not(.not-dark) #top-search a:hover,
.dark #header-wrap:not(.not-dark) #top-cart a:hover,
.dark #header-wrap:not(.not-dark) #side-panel-trigger a:hover,
.dark #header-wrap:not(.not-dark) #top-search form input {
	color: #4484CE;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,0.1);*/
}

.dark #header.full-header #header-wrap:not(.not-dark) #primary-menu > ul,
#header.full-header.dark #header-wrap:not(.not-dark) #primary-menu > ul { border-right-color: rgba(255,255,255,0.15); }

.dark #header.transparent-header.full-header:not(.sticky-header) #header-wrap:not(.not-dark) #primary-menu > ul,
#header.transparent-header.full-header.dark:not(.sticky-header) #header-wrap:not(.not-dark) #primary-menu > ul { border-right-color: rgba(255,255,255,0.2); }

.dark #header.transparent-header:not(.sticky-header) #header-wrap:not(.not-dark) form input,
#header.dark.transparent-header:not(.sticky-header) #header-wrap:not(.not-dark) form input { border-bottom-color: rgba(255,255,255,0.15) !important; }

.dark #header-wrap:not(.not-dark) #top-search form input::-moz-placeholder { color: rgba(255,255,255,0.6); }
.dark #header-wrap:not(.not-dark) #top-search form input:-ms-input-placeholder { color: rgba(255,255,255,0.6); }
.dark #header-wrap:not(.not-dark) #top-search form input::-webkit-input-placeholder { color: rgba(255,255,255,0.6); }

.dark #header-wrap:not(.not-dark) #primary-menu > ul > li:hover a,
.dark #header-wrap:not(.not-dark) #primary-menu > ul > li.current a,
.dark #header-wrap:not(.not-dark) #primary-menu > .container > ul > li:hover a,
.dark #header-wrap:not(.not-dark) #primary-menu > .container > ul > li.current a { color: #f4ad3d; }

.dark.overlay-menu #header-wrap:not(.not-dark) #primary-menu > ul > li:hover > a,
.dark.overlay-menu #header-wrap:not(.not-dark) #primary-menu > ul > li.current > a,
.overlay-menu #primary-menu.dark > ul > li:hover > a,
.overlay-menu #primary-menu.dark > ul > li.current > a { color: #4484CE !important; }

.dark #primary-menu:not(.not-dark) ul ul,
.dark #primary-menu:not(.not-dark) ul li .mega-menu-content,
#primary-menu.dark ul ul,
#primary-menu.dark ul li .mega-menu-content {
	background-color: #ffffff;
	border-color: #ffffff;
	border-top-color: #4484CE;
}

.dark.overlay-menu #primary-menu:not(.not-dark) ul,
.dark.overlay-menu #primary-menu:not(.not-dark) ul,
.overlay-menu #primary-menu.dark ul,
.overlay-menu #primary-menu.dark ul { background-color: rgba(0,0,0,0.9); }

.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.style-2,
#primary-menu.dark ul li .mega-menu-content.style-2 {
	border-color: transparent;
	border-top-color: #4484CE;
}

.dark #primary-menu:not(.not-dark) ul ul li,
#primary-menu.dark ul ul li { border-top-color: #3F3F3F; }

.dark #primary-menu:not(.not-dark) ul ul li:first-child,
#primary-menu.dark ul ul li:first-child { border-top: 0; }

.dark #primary-menu:not(.not-dark) ul ul a,
#primary-menu.dark ul ul a { color: #4484CE !important; }

.dark #primary-menu:not(.not-dark) ul ul li:hover > a,
#primary-menu.dark ul ul li:hover > a {
	background-color: rgba(0,0,0,0.1);
	color: #4484CE !important;
}

.dark #primary-menu:not(.not-dark) ul ul > li.sub-menu > a,
.dark #primary-menu:not(.not-dark) ul ul > li.sub-menu:hover > a,
#primary-menu.dark ul ul > li.sub-menu > a,
#primary-menu.dark ul ul > li.sub-menu:hover > a { background-image: url("https://www.wehome.fr/images/icons/submenu-dark.png"); }

.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.col-2 > ul,
.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.col-3 > ul,
.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.col-4 > ul,
.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.col-5 > ul,
#primary-menu.dark ul li .mega-menu-content.col-2 > ul,
#primary-menu.dark ul li .mega-menu-content.col-3 > ul,
#primary-menu.dark ul li .mega-menu-content.col-4 > ul,
#primary-menu.dark ul li .mega-menu-content.col-5 > ul { border-left-color: #3F3F3F; }

.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.style-2 > ul > li.mega-menu-title > a,
.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.style-2 > ul > li.mega-menu-title:hover > a,
#primary-menu.dark ul li .mega-menu-content.style-2 > ul > li.mega-menu-title > a,
#primary-menu.dark ul li .mega-menu-content.style-2 > ul > li.mega-menu-title:hover > a {
	color: #BBB !important;
	background: transparent;
}

.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.style-2 > ul > li.mega-menu-title > a:hover,
#primary-menu.dark ul li .mega-menu-content.style-2 > ul > li.mega-menu-title > a:hover { color: #DDD !important; }


.dark #primary-menu.style-2:not(.not-dark) { border-top-color: rgba(255,255,255,0.1); }

.dark #primary-menu.style-3:not(.not-dark) > ul > li:hover > a,
#primary-menu.dark.style-3 > ul > li:hover > a {
	color: #EEE;
	background-color: rgba(255,255,255,0.05);
}

.dark #primary-menu.style-3:not(.not-dark) > ul > li.current > a,
#primary-menu.dark.style-3 > ul > li.current > a { color: #EEE; }

.dark #primary-menu.style-5:not(.not-dark) > ul,
#primary-menu.dark.style-5 > ul { border-right-color: rgba(255,255,255,0.1); }

.dark #primary-menu.sub-title:not(.not-dark) ul li span,
#primary-menu.dark.sub-title ul li span { color: #999; }

.dark #primary-menu.sub-title:not(.not-dark) > ul > li:hover span,
.dark #primary-menu.sub-title:not(.not-dark) > ul > li.current span,
.dark #primary-menu.sub-title.style-2:not(.not-dark) > div > ul > li:hover span,
.dark #primary-menu.sub-title.style-2:not(.not-dark) > div > ul > li.current span,
#primary-menu.dark.sub-title > ul > li:hover span,
#primary-menu.dark.sub-title > ul > li.current span,
#primary-menu.dark.sub-title.style-2 > div > ul > li:hover span,
#primary-menu.dark.sub-title.style-2 > div > ul > li.current span { color: #EEE; }


.dark #top-cart .top-cart-content {
	background-color: #333;
	border-color: #3F3F3F;
	border-top-color: #4484CE;
}

.dark .top-cart-title { border-bottom-color: #3F3F3F; }

.dark .top-cart-item { border-top-color: #3F3F3F; }

.dark .top-cart-item-image { border-color: #444; }

.dark .top-cart-item-image:hover { border-color: #4484CE; }

.dark .top-cart-item-desc a:hover { color: #4484CE !important; }

.dark .top-cart-item-desc span.top-cart-item-price { color: #AAA; }

.dark .top-cart-item-desc span.top-cart-item-quantity { color: #888; }

.dark .top-cart-action { border-top-color: #3F3F3F; }

.dark .one-page-arrow,
.one-page-arrow.dark { color: #FFF; }


.dark.side-header #header {
	background-color: #333;
	border-right-color: #3F3F3F;
}

.dark.side-header #logo:not(.nobottomborder):after,
.dark.side-header #primary-menu:not(.nobottomborder):after { border-bottom-color: #3F3F3F; }

.dark.side-header #primary-menu:not(.not-dark) > ul > li > a,
.dark.side-header #primary-menu ul ul li:hover > a { color: #DDD !important; }

.dark.side-header.open-header #header-trigger {
	background-color: rgba(0,0,0,0.3);
	color: #EEE;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,0.1);*/
}

.dark.side-header.side-header-right #header { border-left-color: #3F3F3F; }

.dark.side-header #primary-menu ul ul a { color: #AAA !important; }

.dark .slider-caption,
.dark .slider-caption h2 {
	color: #EEE;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
}

.not-dark .slider-caption,
.not-dark .slider-caption h2 {
	color: #222;
	text-shadow: none;
}

.dark .ei-title h2,
.dark .ei-title h3,
.dark .ei-title h2 span,
.dark .ei-title h3 span {
	color: #EEE !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
}

.not-dark .ei-title h2,
.not-dark .ei-title h3,
.not-dark .ei-title h2 span,
.not-dark .ei-title h3 span {
	color: #222 !important;
	text-shadow: none;
}

.dark #page-title {
	background-color: #282828;
	border-bottom-color: #3F3F3F;
}

.dark #page-title h1 { color: rgba(255,255,255,0.9) !important; }

.dark #page-title span { color: rgba(255,255,255,0.7); }

.dark .breadcrumb a { color: #BBB; }

.dark .breadcrumb a:hover { color: #EEE; }

.dark #page-title.page-title-pattern { background-image: url('https://www.wehome.fr/images/pattern2.png'); }


.dark #portfolio-filter { border-color: rgba(255,255,255,0.08); }

.dark #portfolio-filter li a {
	color: #999;
	border-left-color: rgba(255,255,255,0.08);
}

.dark #portfolio-filter li a:hover { color: #EEE; }

.dark #portfolio-shuffle {
	color: #999;
	border-color: rgba(255,255,255,0.08);
}

.dark #portfolio-filter li.activeFilter a,
.dark #portfolio-shuffle:hover { color: #FFF; }

.dark .portfolio-desc h3 a { color: #EEE; }

.dark .portfolio-desc h3 a:hover { color: #BBB; }

.dark .portfolio-desc span { color: #888; }

.dark .portfolio-desc span a { color: #888; }

.dark .portfolio-desc span a:hover { color: #CCC; }

.dark .portfolio-notitle .portfolio-desc {
	background-color: #333;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dark .portfolio-1 .portfolio-item { border-bottom-color: rgba(255,255,255,0.08); }

.dark .portfolio-1.portfolio-fullwidth .portfolio-desc { background-color: #333; }

.dark .portfolio-overlay a {
	background-color: rgba(0,0,0,0.5);
	color: #FFF;
}

.dark .portfolio-overlay a:hover { background-color: rgba(0,0,0,0.7); }

.dark .ajax-modal-title {
	background-color: #333;
	border-bottom-color: rgba(255,255,255,0.08);
}

.dark .portfolio-meta li { color: #999; }

.dark .portfolio-meta li span { color: #BBB; }

.dark .well .line { border-color: rgba(255,255,255,0.08); }

.dark #portfolio-navigation a { color: #BBB; }

.dark #portfolio-navigation a:hover { color: #EEE; }

.dark .entry { border-bottom-color: rgba(255,255,255,0.08); }

.dark .entry-title h2 a,
.dark .ipost .entry-title h3 a,
.dark .ipost .entry-title h4 a { color: #EEE; }

.dark .entry-title h2 a:hover,
.dark .ipost .entry-title h3 a:hover,
.dark .ipost .entry-title h4 a:hover { color: #BBB; }

.dark .entry-meta li {
	border-left-color: rgba(255,255,255,0.08);
	color: #888;
}

.dark .entry-meta li a { color: #888; }

.dark .entry-meta li a:hover { color: #CCC; }

.dark .entry-link { background-color: rgba(0,0,0,0.2); }

.dark .post-masonry-full .entry { border-color: rgba(255,255,255,0.08); }

.dark .timeline-border { border-left-color: rgba(255,255,255,0.1); }

.dark .post-timeline .entry-timeline {
	border-color: rgba(255,255,255,0.1);
	background-color: rgba(255,255,255,0.08);
	color: #AAA;
}

.dark .post-timeline .entry.entry-date-section span {
	border-color: rgba(255,255,255,0.1);
	background-color: #333;
}

.dark .post-timeline .entry-timeline div.timeline-divider { border-top-color: rgba(255,255,255,0.1); }

.dark .post-timeline .entry:hover .entry-timeline,
.dark .post-timeline .entry:hover .timeline-divider {
	border-color: #4484CE;
	color: #4484CE;
}

.dark .spost,
.dark .mpost { border-top-color: rgba(255,255,255,0.1); }

.dark .spost .entry-image a i,
.dark .mpost .entry-image a i {
	color: #CCC;
	background-color: rgba(0,0,0,0.2);
}

.dark .spost .entry-title h4 a,
.dark .mpost .entry-title h4 a { color: #BBB; }

.dark .spost .entry-title h4 a:hover,
.dark .mpost .entry-title h4 a:hover { color: #999; }

.dark .spost .entry-meta li,
.dark .mpost .entry-meta li { border-left-color: #666; }

.dark .spost .entry-meta li a,
.dark .mpost .entry-meta li a,
.dark .testimonial.twitter-scroll .testi-meta span a { color: #AAA; }

.dark .spost .entry-meta li a:hover,
.dark .mpost .entry-meta li a:hover,
.dark .testimonial.twitter-scroll .testi-meta span a:hover { color: #888; }

.dark #comments { border-top-color: rgba(255,255,255,0.08); }

.dark .commentlist { border-bottom-color: rgba(255,255,255,0.08); }

.dark .comment-wrap { border-color: rgba(255,255,255,0.08); }

.dark .comment-avatar {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.1);
}

.dark .comment-content .comment-author { color: #CCC; }

.dark .comment-content .comment-author a { color: #BBB; }

.dark .comment-content .comment-author a:hover { color: #EEE; }

.dark .review-comment-ratings { color: #CCC; }

.dark .comment-reply-link:hover { color: #888; }

.dark p.wp-caption-text { background-color: rgba(0,0,0,0.2); }


.dark .product-title h3 a,
.dark .single-product .product-title h2 a { color: #EEE; }

.dark .product-title h3 a:hover,
.dark .single-product .product-title h2 a:hover { color: #BBB; }

.dark .product-price { color: #BBB; }

.dark .product-overlay a {
	color: #EEE;
	background-color: rgba(0,0,0,0.8);
	border-right-color: rgba(255,255,255,0.15);
}

.dark .product-overlay a:last-child { border-right: 0; }

.dark .product-overlay a:hover { background-color: rgba(0,0,0,0.9); }

.dark .bothsidebar .product-1 .product { border-top-color: rgba(255,255,255,0.08); }


.dark .quantity .qty {
	border-left-color: rgba(255,255,255,0.08);
	border-right-color: rgba(255,255,255,0.08);
	background-color: rgba(0,0,0,0.2);
}

.dark .quantity .plus,
.dark .quantity .minus { background-color: rgba(0,0,0,0.2); }

.dark .quantity .plus:hover,
.dark .quantity .minus:hover { background-color: rgba(0,0,0,0.4); }

.dark .product-meta { color: #888; }

.dark .cart .remove { color: #BBB; }

.dark .cart .remove:hover { color: #EEE; }

.dark .cart th { color: #DDD; }

.dark .cart td { border-color: rgba(255,255,255,0.08) !important; }

.dark .cart-product-thumbnail img { border-color: rgba(0,0,0,0.2); }

.dark .cart-product-thumbnail img:hover { border-color: #4484CE; }

.dark .cart-product-name a,
.dark .product-name a { color: #EEE; }

.dark .cart-product-name a:hover,
.dark .product-name a:hover { color: #BBB; }

.dark td.actions { background-color: rgba(0,0,0,0.2); }

.dark .events .entry,
.dark .ievent {
	background-color: rgba(0,0,0,0.2);
	border-bottom-color: rgba(0,0,0,0.1);
}

.dark .countdown-section {
	color: #DDD;
	border-left-color: rgba(255,255,255,0.2);
}

.dark .countdown-amount,
.dark .rounded-skill { color: #EEE; }

.dark .button-dark:not(.button-border),
.dark .button:hover { background-color: rgba(0,0,0,0.3); }

.dark .button-dark:hover { background-color: #4484CE; }

.dark .button-light:not(.button-border):hover { background-color: #282828; }

.dark .button.button-border:not(.button-light) {
	border-color: rgba(255,255,255,0.4);
	color: rgba(255,255,255,0.5);
}

.dark .button.button-border:not(.button-light):hover { color: #EEE; }

/*.not-dark .button.button-border:not(.button-light) {
	border-color: #444;
	color: #333;
}

.not-dark .button.button-border:not(.button-light):hover {
	background-color: #444;
	color: #FFF;
}*/

.dark .promo > span,
.dark .promo > .container > span { color: rgba(255,255,255,0.8); }

.dark .promo.promo-border { border-color: rgba(255,255,255,0.08); }

.dark .promo.promo-light { background-color: rgba(255,255,255,0.1); }

.dark .promo.promo-dark:not(.promo-flat) { background-color: rgba(0,0,0,0.3); }

.dark .feature-box h3 { color: #CCC; }

.dark .feature-box p { color: #888; }

.dark .feature-box.fbox-light.fbox-outline .fbox-icon { border-color: rgba(255,255,255,0.15); }

.dark .feature-box.fbox-light .fbox-icon i,
.dark .feature-box.fbox-light .fbox-icon img {
	border-color: rgba(255,255,255,0.1);
	background-color: rgba(255,255,255,0.1);
	color: #FFF;
}

.dark .feature-box.fbox-dark.fbox-outline .fbox-icon { border-color: rgba(255,255,255,0.15); }

.dark .feature-box.fbox-dark .fbox-icon i,
.dark .feature-box.fbox-dark .fbox-icon img { background-color: rgba(255,255,255,0.1); }

.dark .feature-box.fbox-border.fbox-light .fbox-icon,
.dark .feature-box.fbox-border.fbox-dark .fbox-icon { border-color: rgba(255,255,255,0.15); }

.dark .feature-box.fbox-border.fbox-light .fbox-icon i,
.dark .feature-box.fbox-border.fbox-light .fbox-icon img,
.dark .feature-box.fbox-border.fbox-dark .fbox-icon i,
.dark .feature-box.fbox-border.fbox-dark .fbox-icon img,
.dark .feature-box.fbox-plain.fbox-light .fbox-icon i,
.dark .feature-box.fbox-plain.fbox-light .fbox-icon img,
.dark .feature-box.fbox-plain.fbox-dark .fbox-icon i,
.dark .feature-box.fbox-plain.fbox-dark .fbox-icon img { color: #FFF; }

.dark .feature-box h3 span.subtitle { color: #AAA; }

.dark .feature-box.fbox-bg.fbox-center,
.dark .feature-box.media-box.fbox-bg .fbox-desc {
	background-color: #383838;
	border-color: rgba(255,255,255,0.1);
}

.dark .feature-box.fbox-bg.fbox-center.fbox-plain .fbox-icon,
.dark .feature-box.fbox-bg.fbox-center.fbox-border .fbox-icon,
.dark .feature-box.fbox-bg.fbox-center.fbox-outline .fbox-icon { background-color: #383838 !important; }

.dark .feature-box.fbox-bg.fbox-center.fbox-light .fbox-icon i { background-color: #444 !important; }

.dark .fbox-effect .fbox-icon i:after { box-shadow: 0 0 0 2px #494949; }

.dark .fbox-effect .fbox-icon i:hover,
.dark .fbox-effect:hover .fbox-icon i { background-color: #494949; }

.dark .fbox-effect.fbox-dark .fbox-icon i:after { box-shadow: 0 0 0 2px #4484CE; }

.dark .fbox-effect.fbox-dark .fbox-icon i:hover,
.dark .fbox-effect.fbox-dark:hover .fbox-icon i { background-color: #4484CE; }

.dark .fbox-border.fbox-effect .fbox-icon i:hover,
.dark .fbox-border.fbox-effect:hover .fbox-icon i { box-shadow: 0 0 0 1px #494949; }

.dark .fbox-border.fbox-effect .fbox-icon i:after { background-color: #494949; }

.dark .fbox-border.fbox-effect.fbox-dark .fbox-icon i:hover,
.dark .fbox-border.fbox-effect.fbox-dark:hover .fbox-icon i { box-shadow: 0 0 0 1px #4484CE; }

.dark .fbox-border.fbox-effect.fbox-dark .fbox-icon i:after { background-color: #4484CE; }

.dark .process-steps li .i-bordered { background-color: #494949; }

.dark .process-steps li:before,
.dark .process-steps li:after,
.dark .feature-box.fbox-center:not(.fbox-bg) h3:after { border-top-color: rgba(255,255,255,0.15); }

.dark .heading-block:not(.not-dark):after { border-top-color: rgba(255,255,255,0.4); }

.dark .style-msg2 { border-left: 4px solid rgba(0,0,0,0.3); }

.dark .style-msg .sb-msg,
.dark .style-msg2 .msgtitle,
.dark .style-msg2 .sb-msg { border-left-color: rgba(255,255,255,0.1); }


.dark .i-rounded,
.dark .i-circled,
.dark .i-bordered { background-color: #494949; }

.dark .i-bordered {
	border-color: #DDD;
	color: #DDD;
}

.dark .i-light {
	background-color: #F5F5F5;
	color: #444;
	text-shadow: none;
}

.dark .i-rounded:hover,
.dark .i-circled:hover {
	background-color: #4484CE;
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	box-shadow: 0 0 0 rgba(0,0,0,0.2);
}

.dark .i-bordered:hover {
	background-color: #444;
	color: #FFF;
	border-color: #444;
}

.dark .i-plain {
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.dark .i-plain:hover { color: #DDD; }

.dark .social-icon {
	color: #DDD !important;
	border-color: #DDD;
}

.dark #footer .social-icon.si-borderless,
#footer.dark .social-icon.si-borderless { color: #555 !important; }

.dark .si-dark {
	background-color: rgba(0,0,0,0.2);
	color: #DDD !important;
	border-color: transparent;
}

.dark .si-light {
	background-color: rgba(255,255,255,0.1);
	color: #EEE !important;
	border-color: transparent;
}

.dark .social-icon i:last-child { color: #FFF !important; }

.dark .social-icon:hover {
	color: #FFF !important;
	border-color: transparent;
}

.dark .si-share {
	border-top-color: rgba(255,255,255,0.1);
	border-bottom-color: rgba(255,255,255,0.1);
}


.dark .toggle .togglet,
.dark .toggle .toggleta { color: #CCC; }

.dark .toggle.toggle-bg .togglet,
.dark .toggle.toggle-bg .toggleta { background-color: rgba(0,0,0,0.2); }

.dark .toggle.toggle-border { border-color: rgba(255,255,255,0.15); }

.dark .faqs .toggle { border-bottom-color: rgba(255,255,255,0.1); }

.dark .acctitle,
.dark .acctitlec {
	color: #CCC;
	border-top-color: rgba(255,255,255,0.15);
}

.dark .accordion.accordion-bg .acctitle,
.dark .accordion.accordion-bg .acctitlec { background-color: rgba(0,0,0,0.2); }

.dark .accordion.accordion-border { border-color: rgba(255,255,255,0.1); }

.dark .accordion.accordion-border .acctitle,
.dark .accordion.accordion-border .acctitlec { border-color: rgba(255,255,255,0.15); }

.dark ul.tab-nav { border-bottom-color: #494949; }

.dark ul.tab-nav li,
.dark .tabs.tabs-alt ul.tab-nav li.ui-tabs-active a { border-color: #494949; }

.dark ul.tab-nav li:first-child { border-left-color: #494949; }

.dark ul.tab-nav li a {
	color: #DDD;
	background-color: rgba(0,0,0,0.15);
}

.dark .tabs.tabs-alt ul.tab-nav li a,
.dark ul.tab-nav li.ui-tabs-active a { background-color: #383838; }

.dark ul.tab-nav.tab-nav2 li a { background-color: rgba(0,0,0,0.2); }

.dark ul.tab-nav.tab-nav2 li.ui-state-active a { background-color: #4484CE; }

.dark .tabs-bordered .tab-container { border-color: #494949; }

.dark .side-tabs ul.tab-nav { border-right-color: #494949; }

.dark .side-tabs ul.tab-nav li { border-color: #494949; }

.dark .side-tabs ul.tab-nav li:first-child {
	border-top-color: #494949;
	border-left-color: #494949;
}

.dark .tabs-bordered.side-tabs ul.tab-nav li.ui-tabs-active a { border-right-color: #383838; }

.dark .tabs-bordered.side-tabs .tab-container { border-top-color: #494949; }

.dark .sidenav { background-color: rgba(0,0,0,0.2); }

.dark .sidenav > li > a {
	border-color: #494949;
	color: #BBB;
}

.dark .sidenav > li > a:hover { background-color: rgba(0,0,0,0.3); }

.dark .faqlist li a { color: #CCC; }

.dark .clients-grid li:before,
.dark .testimonials-grid li:before { border-left-color: rgba(255,255,255,0.15); }

.dark .clients-grid li:after,
.dark .testimonials-grid li:after { border-bottom-color: rgba(255,255,255,0.15); }

.dark .testimonial {
	background-color: rgba(0,0,0,0.2);
	border: 1px solid rgba(0,0,0,0.1);
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.dark .testimonial.twitter-scroll .testi-content p a { border-bottom: 1px dotted #AAA; }

.dark .testimonial.twitter-scroll .testi-content p a:hover { border-bottom: 1px solid #888; }

.dark .testimonial.twitter-scroll .testi-image i {
	background-color: rgba(0,0,0,0.2);
	color: #EEE;
	text-shadow: none;
}

.parallax.dark .testimonial .flex-control-nav {
	height: 8px;
	margin-top: 30px;
}

.parallax.dark .testimonial .flex-control-nav li {
	width: 8px;
	height: 8px;
	margin: 0 3px;
}

.parallax.dark .testimonial .flex-control-nav li a {
	width: 8px !important;
	height: 8px !important;
	border: 1px solid #FFF;
	background-color: transparent;
}

.parallax.dark .testimonial .flex-control-nav li:hover a,
.parallax.dark .testimonial .flex-control-nav li a.flex-active { background-color: #FFF; }

.dark .team-desc.team-desc-bg { background-color: rgba(255,255,255,0.05); }

.dark .team-content { color: #999; }

.dark .pricing-box {
	border-color: rgba(255,255,255,0.1);
	background-color: rgba(0,0,0,0.2);
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.dark .pricing-title {
	background-color: rgba(255,255,255,0.03);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
	border-bottom-color: rgba(255,255,255,0.1);
}

.dark .pricing-title h3 { color: #DDD; }

.dark .pricing-price { color: #EEE; }

.dark .pricing-price:after { border-top-color: rgba(255,255,255,0.1); }

.dark .pricing-features { border-bottom-color: rgba(255,255,255,0.1); }

.dark .pricing-box.best-price {
	background-color: transparent;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.dark .pricing-box.best-price .pricing-title { background-color: transparent; }

.dark .pricing-box.pricing-minimal .pricing-price {
	background-color: transparent;
	border-bottom-color: rgba(255,255,255,0.1);
}

.dark .pricing-box.pricing-extended { background-color: transparent; }

.dark .pricing-box.pricing-extended .pricing-action-area {
	border-left-color: rgba(255,255,255,0.15);
	background-color: rgba(0,0,0,0.2);
}

.dark .pricing-box.pricing-extended .pricing-meta { color: #999; }

.dark .counter.counter-lined + h5:before { border-color: #EEE; }

.dark .easyPieChart { color: #EEE; }

.dark .skills li { background-color: rgba(255,255,255,0.15); }

.dark .skills li .progress-percent { background-color: #4E4E4E; }

.dark .progress-percent:after,
.dark .progress-percent:before { border-top-color: #4E4E4E; }

.dark .skills li > span {
	font-weight: 600;
	color: #CCC;
}

.dark .owl-carousel.owl-loading { background-image: url('../images/preloader-dark.gif'); }

.dark .owl-theme .owl-controls .owl-nav [class*=owl-] {
	border-color: transparent;
	color: #EEE;
	background-color: rgba(0,0,0,0.5);
}

.dark label { color: #BBB; }

.dark label.label-muted { color: #777; }

.dark #contact-form-overlay,
.dark #contact-form-overlay-mini { background-color: #383838; }

.dark .title-block > span { color: #999; }

.dark .heading-block:not(.not-dark),
.dark .counter { /*text-shadow: 1px 1px 1px rgba(0,0,0,0.1);*/ }

.dark .heading-block:not(.not-dark) h1,
.dark .heading-block:not(.not-dark) h2,
.dark .heading-block:not(.not-dark) h3,
.dark .heading-block:not(.not-dark) h4,
.dark .emphasis-title:not(.not-dark) h1,
.dark .emphasis-title:not(.not-dark) h2 { color: #FFF; }

.dark .heading-block.not-dark h1,
.dark .heading-block.not-dark h2,
.dark .heading-block.not-dark h3,
.dark .heading-block.not-dark h4,
.dark .emphasis-title.not-dark h1,
.dark .emphasis-title.not-dark h2 { color: #333; }

.dark .heading-block:not(.not-dark) > span { color: #EEE; }

.dark .emphasis-title.not-dark { color: #444; }

.dark .fancy-title h1,
.dark .fancy-title h2,
.dark .fancy-title h3,
.dark .fancy-title h4,
.dark .fancy-title h5,
.dark .fancy-title h6 { background-color: #383838; }

.dark .fancy-title.title-double-border:before,
.dark .fancy-title.title-border:before,
.dark .fancy-title.title-border-color:before,
.dark .fancy-title.title-border:before { border-top-color: rgba(255,255,255,0.15); }

.dark .divider { color: rgba(255,255,255,0.15); }

.dark .divider:after,
.dark .divider.divider-center:before,
.dark .divider.divider-center.divider-short:before { border-top-color: rgba(255,255,255,0.1); }

.dark .divider.divider-rounded,
.dark .divider.divider-border { color: #999; }

.dark .divider.divider-rounded i,
.dark .divider.divider-border i { background-color: rgba(255,255,255,0.1); }

.dark .divider.divider-border i {
	background-color: transparent;
	border-color: rgba(255,255,255,0.15);
}

.dark .quote:before { color: rgba(255,255,255,0.1); }

.dark .highlight { background-color: rgba(0,0,0,0.2); }

.dark .top-advert {
	border-left-color: rgba(255,255,255,0.1);
	border-right-color: rgba(255,255,255,0.1);
}

.dark .error404 { color: rgba(255,255,255,0.15); }

.dark.error404-wrap .form-control::-webkit-input-placeholder { color: #888; }
.dark.error404-wrap .form-control::-moz-placeholder { color: #888; }
.dark.error404-wrap .form-control:-ms-input-placeholder { color: #888; }

.dark .preloader { background-color: rgba(0,0,0,0.2); }

.dark .preloader,
.dark .preloader2,
.dark .form-process { background-image: url('../images/preloader-dark.gif'); }

.dark .form-process { background-color: transparent; }


#footer.dark,
.dark #footer {
	background-color: #333;
	color: #CCC;
	border-top-color: rgba(0,0,0,0.2);
}

.dark #copyrights {
	background-color: rgba(0,0,0,0.2);
	color: rgba(255,255,255,0.25);
	/*text-shadow: 1px 1px 1px rgba(0,0,0,0.1);*/
}

.dark #copyrights i.footer-icon { color: rgba(255,255,255,0.3); }

.dark .copyright-links a {
	color: rgba(255,255,255,0.25);
	border-bottom-color: rgba(255,255,255,0.25);
}

.dark .copyright-links a:hover {
	color: rgba(255,255,255,0.35);
	border-bottom-color: rgba(255,255,255,0.35);
}


.dark .footer-widgets-wrap a { color: #CCC; }

.dark .footer-widgets-wrap a:hover { color: #999; }

.dark .sidebar-widgets-wrap .widget,
body.dark #side-panel .widget,
body #side-panel.dark .widget { border-top-color: rgba(255,255,255,0.1); }

body.dark #side-panel #side-panel-trigger-close a,
body #side-panel.dark #side-panel-trigger-close a {
	background-color: rgba(0,0,0,0.2);
	color: #FFF;
}

.dark .widget h4 { color: #DDD; }

.dark .widget p { opacity: 0.8; }

.dark .tagcloud a {
	color: #999;
	border-color: transparent;
	background-color: rgba(0,0,0,0.2);
}

.dark .tagcloud a:hover {
	border-color: transparent !important;
	background-color: #4484CE;
	color: #FFF !important;
}

.dark .widget_recent_comments li { background-image: url("https://www.wehome.fr/images/icons/widget-comment-dark.png"); }

.dark .widget_nav_menu li a,
.dark .widget_links li a,
.dark .widget_meta li a,
.dark .widget_archive li a,
.dark .widget_recent_comments li a,
.dark .widget_recent_entries li a,
.dark .widget_categories li a,
.dark .widget_pages li a,
.dark .widget_rss li a {
	color: #CCC;
	background-image: url("../images/icons/widget-link-dark.png");
}

.dark .widget_nav_menu li a:hover,
.dark .widget_links li a:hover,
.dark .widget_meta li a:hover,
.dark .widget_archive li a:hover,
.dark .widget_recent_comments li a:hover,
.dark .widget_recent_entries li a:hover,
.dark .widget_categories li a:hover,
.dark .widget_pages li a:hover,
.dark .widget_rss li a:hover { color: #AAA; }


.dark .nav-tree li a { color: #BBB; }


.dark #cookie-notification,
#cookie-notification.dark {
	background-color: rgba(0,0,0,0.85);
	color: #EEE;
}


/* Dark Scheme - Bootstrap
-----------------------------------------------------------------*/

.dark .show-grid [class^=col-] {
	background-color: rgba(255,255,255,0.05);
	border-color: rgba(255,255,255,0.1);
}

.dark mark {
	background: rgba(0,0,0,0.5);
	color: #FFF;
}

.dark fieldset { border-color: rgba(255,255,255,0.1); }

.dark .img-thumbnail {
	background-color: rgba(0,0,0,0.2);
	border-color: rgba(255,255,255,0.1);
}

.dark hr { border-top-color: rgba(255,255,255,0.1); }

.dark .page-header { border-bottom-color: rgba(255,255,255,0.1); }

.dark blockquote { border-left-color: rgba(255,255,255,0.2); }

.dark .blockquote-reverse,
.dark blockquote.pull-right { border-right-color: rgba(255,255,255,0.2); }

.dark code {
	color: #DF6F72;
	background-color: rgba(0,0,0,0.3);
}

.dark kbd { background-color: rgba(255,255,255,0.1); }

.dark pre {
	color: #FFF;
	background-color: rgba(0,0,0,0.3);
	border-color: rgba(255,255,255,0.15);
}

.dark .table > thead > tr > th,
.dark .table > tbody > tr > th,
.dark .table > tfoot > tr > th,
.dark .table > thead > tr > td,
.dark .table > tbody > tr > td,
.dark .table > tfoot > tr > td { border-top-color: rgba(255,255,255,0.1); }

.dark .table > thead > tr > th { border-bottom-color: rgba(255,255,255,0.1); }

.dark .table > tbody + tbody { border-top-color: rgba(255,255,255,0.1); }

.dark .table .table { background-color: rgba(0,0,0,0.2); }

.dark .table-bordered { border-color: rgba(255,255,255,0.1); }

.dark .table-bordered > thead > tr > th,
.dark .table-bordered > tbody > tr > th,
.dark .table-bordered > tfoot > tr > th,
.dark .table-bordered > thead > tr > td,
.dark .table-bordered > tbody > tr > td,
.dark .table-bordered > tfoot > tr > td { border-color: rgba(255,255,255,0.1); }

.dark .table-striped > tbody > tr:nth-child(odd) > td,
.dark .table-striped > tbody > tr:nth-child(odd) > th,
.table-striped > tbody > tr:nth-child(odd) { background-color: rgba(0,0,0,0.05); }

.dark .table-hover > tbody > tr:hover > td,
.dark .table-hover > tbody > tr:hover > th { background-color: rgba(0,0,0,0.1); }

.dark .table > thead > tr > td.active,
.dark .table > tbody > tr > td.active,
.dark .table > tfoot > tr > td.active,
.dark .table > thead > tr > th.active,
.dark .table > tbody > tr > th.active,
.dark .table > tfoot > tr > th.active,
.dark .table > thead > tr.active > td,
.dark .table > tbody > tr.active > td,
.dark .table > tfoot > tr.active > td,
.dark .table > thead > tr.active > th,
.dark .table > tbody > tr.active > th,
.dark .table > tfoot > tr.active > th { background-color: rgba(0,0,0,0.1); }

.dark .table-hover > tbody > tr > td.active:hover,
.dark .table-hover > tbody > tr > th.active:hover,
.dark .table-hover > tbody > tr.active:hover > td,
.dark .table-hover > tbody > tr.active:hover > th { background-color: rgba(255,255,255,0.1); }

@media (max-width: 767px) {
	.table-responsive { border-color: rgba(255,255,255,0.1); }
}

.dark legend {
	color: #DDD;
	border-bottom-color: rgba(255,255,255,0.1);
}

.dark output { color: #999; }

.dark .form-control:not(.not-dark),
.dark .sm-form-control:not(.not-dark) {
	color: #999;
	background-color: rgba(0,0,0,0.2);
	border-color: rgba(0,0,0,0.25);
}

.dark .form-control:not(.not-dark) option,
.dark .sm-form-control:not(.not-dark) option { background-color: #282828; }

.dark .form-control:not(.not-dark):active,
.dark .form-control:not(.not-dark):focus,
.dark .sm-form-control:not(.not-dark):active,
.dark .sm-form-control:not(.not-dark):focus {
	background-color: rgba(0,0,0,0.3);
	border-color: rgba(0,0,0,0.25) !important;
}

.dark .form-control:not(.not-dark)::-moz-placeholder { color: #666; }
.dark .form-control:not(.not-dark):-ms-input-placeholder { color: #666; }
.dark .form-control:not(.not-dark)::-webkit-input-placeholder { color: #666; }
.dark .sm-form-control:not(.not-dark)::-moz-placeholder { color: #666; }
.dark .sm-form-control:not(.not-dark):-ms-input-placeholder { color: #666; }
.dark .sm-form-control:not(.not-dark)::-webkit-input-placeholder { color: #666; }

.dark .form-control:not(.not-dark)[disabled],
.dark .form-control:not(.not-dark)[readonly],
.dark fieldset[disabled] .form-control:not(.not-dark),
.dark .sm-form-control:not(.not-dark)[disabled],
.dark .sm-form-control:not(.not-dark)[readonly],
.dark fieldset[disabled] .sm-form-control:not(.not-dark) { background-color: rgba(255,255,255,0.1); }

.dark .input-group .form-control.error:not(.not-dark) { color: #E42C3E; }

.dark .sm-form-control.error:not(.not-dark) { border-color: #E42C3E !important; }

.dark .form-control.error:not(.not-dark)::-moz-placeholder { color: rgba(228,44,62,0.6); }
.dark .form-control.error:not(.not-dark):-ms-input-placeholder { color: rgba(228,44,62,0.6); }
.dark .form-control.error:not(.not-dark)::-webkit-input-placeholder { color: rgba(228,44,62,0.6); }

.dark .btn:hover,
.dark .btn:focus { color: #FFF; }

.dark .btn-default {
	color: #FFF;
	background-color: rgba(0,0,0,0.2);
	border-color: rgba(255,255,255,0.15);
}

.dark .btn-default:hover,
.dark .btn-default:focus,
.dark .btn-default:active,
.dark .btn-default.active,
.dark .open .dropdown-toggle.btn-default {
	color: #FFF;
	background-color: rgba(0,0,0,0.3);
	border-color: rgba(255,255,255,0.2);
}

.dark .btn-default.disabled,
.dark .btn-default[disabled],
.dark fieldset[disabled] .btn-default,
.dark .btn-default.disabled:hover,
.dark .btn-default[disabled]:hover,
.dark fieldset[disabled] .btn-default:hover,
.dark .btn-default.disabled:focus,
.dark .btn-default[disabled]:focus,
.dark fieldset[disabled] .btn-default:focus,
.dark .btn-default.disabled:active,
.dark .btn-default[disabled]:active,
.dark fieldset[disabled] .btn-default:active,
.dark .btn-default.disabled.active,
.dark .btn-default[disabled].active,
.dark fieldset[disabled] .btn-default.active {
	color: #BBB;
	background-color: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.1);
}

.dark .btn-default .badge { background-color: rgba(255,255,255,0.1); }

.dark .btn-link:hover,
.dark .btn-link:focus { color: #EEE; }

.dark .dropdown-menu {
	background-color: #333;
	border-color: #3F3F3F;
}

.dark .dropdown-menu .divider { background-color: rgba(255,255,255,0.1); }

.dark .dropdown-menu > li > a { color: #DDD; }

.dark .dropdown-menu > li > a:hover,
.dark .dropdown-menu > li > a:focus {
	color: #EEE;
	background-color: rgba(255,255,255,0.1);
}

.dark .input-group-addon,
.dark .input-group-btn .btn-default {
	color: #999;
	background-color: rgba(0,0,0,0.35);
	border-color: rgba(0,0,0,0.25);
}

.dark .input-group-btn .btn-default { color: #FFF; }

.dark .input-group-btn .btn-default:hover { background-color: rgba(0,0,0,0.30); }

.dark .nav > li > a:hover,
.dark .nav > li > a:focus,
.dark .nav .open > a,
.dark .nav .open > a:hover,
.dark .nav .open > a:focus { background-color: rgba(0,0,0,0.2); }

.dark .nav .nav-divider { background-color: rgba(255,255,255,0.1); }

.dark .nav-tabs { border-bottom-color: rgba(255,255,255,0.15); }

.dark .nav-tabs > li > a:hover {
	border-color: rgba(255,255,255,0.2);
	border-bottom: none;
}

.dark .nav-tabs.nav-justified > li > a:hover,
.dark .nav-tabs-justified > li > a:hover { border-bottom: 1px solid rgba(255,255,255,0.2); }

.dark .nav-tabs > li.active > a,
.dark .nav-tabs > li.active > a:hover,
.dark .nav-tabs > li.active > a:focus {
	color: #DDD;
	background-color: #383838;
	border: 1px solid rgba(255,255,255,0.2);
	border-bottom-color: #383838;
}

.dark .nav-tabs.nav-justified > .active > a,
.dark .nav-tabs.nav-justified > .active > a:hover,
.dark .nav-tabs.nav-justified > .active > a:focus { border-color: rgba(255,255,255,0.15); }

@media (min-width: 768px) {
	.dark .nav-tabs.nav-justified > li > a { border-bottom-color: rgba(255,255,255,0.15); }

	.dark .nav-tabs.nav-justified > .active > a,
	.dark .nav-tabs.nav-justified > .active > a:hover,
	.dark .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #383838; }
}

.dark .nav-tabs-justified > .active > a,
.dark .nav-tabs-justified > .active > a:hover,
.dark .nav-tabs-justified > .active > a:focus { border-color: rgba(255,255,255,0.15); }

@media (min-width: 768px) {
	.dark .nav-tabs-justified > li > a { border-bottom-color: rgba(255,255,255,0.15); }

	.dark .nav-tabs-justified > .active > a,
	.dark .nav-tabs-justified > .active > a:hover,
	.dark .nav-tabs-justified > .active > a:focus { border-bottom-color: #383838; }
}

.dark .navbar-default {
	background-color: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.1);
}

.dark .navbar-default .navbar-brand { color: #EEE; }

.dark .navbar-default .navbar-brand:hover,
.dark .navbar-default .navbar-brand:focus { color: #BBB; }

.dark .navbar-default .navbar-text { color: #999; }

.dark .navbar-default .navbar-nav > li > a { color: #BBB; }

.dark .navbar-default .navbar-nav > li > a:hover,
.dark .navbar-default .navbar-nav > li > a:focus {
	color: #EEE;
	background-color: transparent;
}

.dark .navbar-default .navbar-nav > .active > a,
.dark .navbar-default .navbar-nav > .active > a:hover,
.dark .navbar-default .navbar-nav > .active > a:focus {
	color: #EEE;
	background-color: rgba(0,0,0,0.25);
}

.dark .navbar-default .navbar-nav > .disabled > a,
.dark .navbar-default .navbar-nav > .disabled > a:hover,
.dark .navbar-default .navbar-nav > .disabled > a:focus { color: #999; }

.dark .navbar-default .navbar-toggle { border-color: rgba(255,255,255,0.15); }

.dark .navbar-default .navbar-toggle:hover,
.dark .navbar-default .navbar-toggle:focus { background-color: rgba(255,255,255,0.15); }

.dark .navbar-default .navbar-toggle .icon-bar { background-color: #BBB; }

.dark .navbar-default .navbar-collapse,
.dark .navbar-default .navbar-form { border-color: rgba(255,255,255,0.15); }

.dark .navbar-default .navbar-nav > .open > a,
.dark .navbar-default .navbar-nav > .open > a:hover,
.dark .navbar-default .navbar-nav > .open > a:focus {
	background-color: rgba(0,0,0,0.25);
	color: #EEE;
}

@media (max-width: 767px) {
	.dark .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #BBB; }

	.dark .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	.dark .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #EEE; }

	.dark .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
	.dark .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
	.dark .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
		background-color: rgba(0,0,0,0.25);
		color: #EEE;
	}

	.dark .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
	.dark .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
	.dark .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #999; }
}

.dark .navbar-default .navbar-link { color: #BBB; }

.dark .navbar-default .navbar-link:hover { color: #EEE; }

.dark .pagination > li > a,
.dark .pagination > li > span,
.dark .pager li > a,
.dark .pager li > span {
	color: #BBB;
	background-color: rgba(255,255,255,0.1);
	border-color: #666;
}

.dark .pagination > li > a:hover,
.dark .pagination > li > span:hover,
.dark .pagination > li > a:focus,
.dark .pagination > li > span:focus,
.dark .pager li > a:hover,
.dark .pager li > a:focus {
	color: #EEE;
	background-color: rgba(0,0,0,0.1);
}

.dark .pagination > .disabled > span,
.dark .pagination > .disabled > span:hover,
.dark .pagination > .disabled > span:focus,
.dark .pagination > .disabled > a,
.dark .pagination > .disabled > a:hover,
.dark .pagination > .disabled > a:focus,
.dark .pager .disabled > a,
.dark .pager .disabled > a:hover,
.dark .pager .disabled > a:focus,
.dark .pager .disabled > span {
	color: #999;
	background-color: rgba(255,255,255,0.2);
	border-color: #777;
}

.dark .label-default { background-color: rgba(255,255,255,0.2); }

.dark .label-default[href]:hover,
.dark .label-default[href]:focus { background-color: rgba(0,0,0,0.2); }

.dark .badge { background-color: rgba(255,255,255,0.2); }

.btn .badge { background-color: #FFF; }

.dark .jumbotron { background-color: rgba(255,255,255,0.15); }

.dark .thumbnail {
	background-color: rgba(255,255,255,0.15);
	border-color: rgba(255,255,255,0.1);
}

.dark .thumbnail .caption { color: #EEE; }

.dark .progress { background-color: rgba(255,255,255,0.15); }

.dark .list-group-item {
	background-color: rgba(0,0,0,0.2);
	border-color: #444;
}

.dark a.list-group-item { color: #BBB; }

.dark a.list-group-item .list-group-item-heading { color: #DDD; }

.dark a.list-group-item:hover,
.dark a.list-group-item:focus { background-color: rgba(255,255,255,0.05); }

.dark a.list-group-item.active,
.dark a.list-group-item.active:hover,
.dark a.list-group-item.active:focus {
	color: #ffffff;
	background-color: #428bca;
	border-color: #428bca;
}

.dark .list-group-item-success {
	color: #3c763d;
	background-color: #dff0d8;
}

.dark a.list-group-item-success { color: #3c763d; }

.dark a.list-group-item-success:hover,
.dark a.list-group-item-success:focus {
	color: #3c763d;
	background-color: #d0e9c6;
}

.dark a.list-group-item-success.active,
.dark a.list-group-item-success.active:hover,
.dark a.list-group-item-success.active:focus {
	color: #fff;
	background-color: #3c763d;
	border-color: #3c763d;
}

.dark .list-group-item-info {
	color: #31708f;
	background-color: #d9edf7;
}

.dark a.list-group-item-info { color: #31708f; }

.dark a.list-group-item-info:hover,
.dark a.list-group-item-info:focus {
	color: #31708f;
	background-color: #c4e3f3;
}

.dark a.list-group-item-info.active,
.dark a.list-group-item-info.active:hover,
.dark a.list-group-item-info.active:focus {
	color: #fff;
	background-color: #31708f;
	border-color: #31708f;
}

.dark .list-group-item-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
}

.dark a.list-group-item-warning { color: #8a6d3b; }

.dark a.list-group-item-warning:hover,
.dark a.list-group-item-warning:focus {
	color: #8a6d3b;
	background-color: #faf2cc;
}

.dark a.list-group-item-warning.active,
.dark a.list-group-item-warning.active:hover,
.dark a.list-group-item-warning.active:focus {
	color: #fff;
	background-color: #8a6d3b;
	border-color: #8a6d3b;
}

.dark .list-group-item-danger {
	color: #a94442;
	background-color: #f2dede;
}

.dark a.list-group-item-danger { color: #a94442; }

.dark a.list-group-item-danger:hover,
.dark a.list-group-item-danger:focus {
	color: #a94442;
	background-color: #ebcccc;
}

.dark a.list-group-item-danger.active,
.dark a.list-group-item-danger.active:hover,
.dark a.list-group-item-danger.active:focus {
	color: #fff;
	background-color: #a94442;
	border-color: #a94442;
}

.dark .panel { background-color: rgba(0,0,0,0.2); }

.dark .panel-footer {
	background-color: rgba(255,255,255,0.1);
	border-top-color: rgba(255,255,255,0.1);
}

.dark .panel > .panel-body + .table,
.dark .panel > .panel-body + .table-responsive { border-top-color: rgba(255,255,255,0.1); }

.dark .panel-group .panel-heading + .panel-collapse .panel-body { border-top-color: rgba(255,255,255,0.1); }

.dark .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom-color: rgba(255,255,255,0.1); }

.dark .panel-default { border-color: rgba(255,255,255,0.15); }

.dark .panel-default > .panel-heading {
	color: #DDD;
	background-color: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.1);
}

.dark .panel-default > .panel-heading + .panel-collapse .panel-body { border-top-color: rgba(255,255,255,0.15); }

.dark .panel-default > .panel-footer + .panel-collapse .panel-body { border-bottom-color: rgba(255,255,255,0.15); }

.dark .well {
	background-color: rgba(0,0,0,0.2);
	border-color: rgba(255,255,255,0.15);
}

.dark .well blockquote { border-color: rgba(255,255,255,0.15); }

.dark .close {
	opacity: 1;
	color: rgba(0,0,0,0.15);
	text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

.dark .close:hover,
.dark .close:focus {
	color: rgba(0,0,0,0.4);
}

.dark .modal-content { border-color: #555; }

.dark .modal-header { border-bottom-color: rgba(255,255,255,0.15); }

.dark .modal-footer { border-top-color: rgba(255,255,255,0.15); }

.dark .popover {
	background-color: #282828;
	border-color: #494949;
}
.dark .popover-title {
	background-color: rgba(255,255,255,0.1);
	border-bottom-color: rgba(255,255,255,0.075);
}
.dark .popover.top > .arrow { border-top-color: #494949; }

.dark .popover.top > .arrow:after { border-top-color: #282828; }

.dark .popover.right > .arrow { border-right-color: #494949; }

.dark .popover.right > .arrow:after { border-right-color: #282828; }

.dark .popover.bottom > .arrow { border-bottom-color: #494949; }

.dark .popover.bottom > .arrow:after { border-bottom-color: #282828; }

.dark .popover.left > .arrow { border-left-color: #494949; }

.dark .popover.left > .arrow:after { border-left-color: #282828; }


@media (max-width: 991px) {

	.dark .postcontent,
	.dark .postcontent.bothsidebar,
	.dark .sidebar { border-bottom-color: rgba(255,255,255,0.1); }

	.dark #header.transparent-header,
	.dark #header.semi-transparent,
	#header.dark.transparent-header,
	#header.dark.semi-transparent {
		background-color: #333;
		border-bottom-color: rgba(255,255,255,0.1);
	}

	.dark #primary-menu:not(.not-dark) ul li,
	.dark #primary-menu:not(.not-dark) ul ul,
	.dark #primary-menu:not(.not-dark) ul li .mega-menu-content,
	.dark #primary-menu:not(.not-dark) ul ul li,
	.dark #primary-menu:not(.not-dark) ul li .mega-menu-content ul ul,
	.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.col-2 > ul,
	.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.col-3 > ul,
	.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.col-4 > ul,
	.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.col-5 > ul,
	.dark #primary-menu:not(.not-dark) ul li .mega-menu-content.style-2 li { border-top-color: rgba(255,255,255,0.1) !important; }

	.dark #primary-menu:not(.not-dark) > ul > li.sub-menu > a,
	.dark #primary-menu:not(.not-dark) > .container > ul > li.sub-menu > a { background-image: url("https://www.wehome.fr/images/icons/submenu-dark.png"); }

	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul li,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul ul,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul li .mega-menu-content,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul ul li,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul li .mega-menu-content ul ul,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul li .mega-menu-content.col-2 > ul,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul li .mega-menu-content.col-3 > ul,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul li .mega-menu-content.col-4 > ul,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul li .mega-menu-content.col-5 > ul,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul li .mega-menu-content.style-2 li { border-top-color: #EEE !important; }

	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu > ul > li:hover a,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu > ul > li.current a,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu > div > ul > li:hover a,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu > div > ul > li.current a { color: #4484CE !important; }

	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu ul ul a,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu > ul > li:hover ul a,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu > ul > li.current ul a,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu > div > ul > li:hover ul a,
	body:not(.dark) #header:not(.dark) #header-wrap:not(.dark) #primary-menu > div > ul > li.current ul a  { color: #444 !important; }

	.dark .pricing-box.pricing-extended .pricing-action-area { border-top-color: rgba(255,255,255,0.15); }

}
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */

.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
		border-top: 1px solid #ddd !important;
	}*/
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker > div {
  display: none;
}
.datepicker.days div.datepicker-days {
  display: block;
}
.datepicker.months div.datepicker-months {
  display: block;
}
.datepicker.years div.datepicker-years {
  display: block;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  color: #000000;
  background-color: #f4ad3d;
  border-color: #ffb733;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  color: #000000;
  background-color: #ffcd70;
  border-color: #f59e00;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  background-image: none;
}
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled:hover.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today:hover[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today:hover.disabled:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled:hover.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today:hover[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today:hover.disabled:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled:hover.disabled:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today:hover[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today:hover.disabled.active,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled:hover.disabled.active,
.datepicker table tr td.today[disabled].active,
.datepicker table tr td.today:hover[disabled].active,
.datepicker table tr td.today.disabled[disabled].active,
.datepicker table tr td.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today:hover.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover.active {
  background-color: #f4ad3d;
  border-color: #ffb733;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  color: #000000;
  background-color: #f7ca77;
  border-color: #f1a417;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  color: #000000;
  background-color: #f4bb51;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  background-image: none;
}
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today:hover.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled:hover.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today:hover[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today:hover.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled:hover.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today:hover[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today:hover.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled:hover.disabled:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today:hover[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today:hover.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled:hover.disabled.active,
.datepicker table tr td.range.today[disabled].active,
.datepicker table tr td.range.today:hover[disabled].active,
.datepicker table tr td.range.today.disabled[disabled].active,
.datepicker table tr td.range.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today:hover.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #999999;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #858585;
  border-color: #373737;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  background-image: none;
}
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled:hover.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected:hover[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected:hover.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled:hover.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected:hover[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected:hover.disabled:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled:hover.disabled:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected:hover[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected:hover.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled:hover.disabled.active,
.datepicker table tr td.selected[disabled].active,
.datepicker table tr td.selected:hover[disabled].active,
.datepicker table tr td.selected.disabled[disabled].active,
.datepicker table tr td.selected.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected:hover.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {
  background-color: #999999;
  border-color: #555555;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #4484CE;
  border-color: #285e8e;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  background-image: none;
}
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #4484CE;
  border-color: #285e8e;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  background-image: none;
}
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active:hover.disabled:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled:hover.disabled:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active:hover[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active:hover.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled:hover.disabled.active,
.datepicker table tr td span.active[disabled].active,
.datepicker table tr td span.active:hover[disabled].active,
.datepicker table tr td span.active.disabled[disabled].active,
.datepicker table tr td span.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active:hover.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}
.datepicker th.datepicker-switch {
  width: 145px;
}
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}
.input-group.date .input-group-addon i {
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: solid #cccccc;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}
.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  color: #333333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.428571429;
}
.datepicker.dropdown-menu th,
.datepicker.dropdown-menu td {
  padding: 4px 5px;
}
/**
	* A stylesheet for use with Bootstrap 3.x
	* @author: Dan Grossman http://www.dangrossman.info/
	* @copyright: Copyright (c) 2012-2015 Dan Grossman. All rights reserved.
	* @license: Licensed under the MIT license. See http://www.opensource.org/licenses/mit-license.php
	* @website: https://www.improvely.com/
	*/

	/* Container Appearance */


	.daterangepicker {
	  position: absolute;
	  background: #fff;
	  top: 100px;
	  left: 20px;
	  padding: 10px;
	  margin-top: 5px;
	  border-radius: 4px;
	  width:278px;
	}

	.daterangepicker.opensleft:before {
	  position: absolute;
	  top: -7px;
	  right: 9px;
	  display: inline-block;
	  border-right: 7px solid transparent;
	  border-bottom: 7px solid #ccc;
	  border-left: 7px solid transparent;
	  border-bottom-color: rgba(0, 0, 0, 0.2);
	  content: '';
	}

	.daterangepicker.opensleft:after {
	  position: absolute;
	  top: -6px;
	  right: 10px;
	  display: inline-block;
	  border-right: 6px solid transparent;
	  border-bottom: 6px solid #fff;
	  border-left: 6px solid transparent;
	  content: '';
	}

	.daterangepicker.openscenter:before {
	  position: absolute;
	  top: -7px;
	  left: 0;
	  right: 0;
	  width: 0;
	  margin-left: auto;
	  margin-right: auto;
	  display: inline-block;
	  border-right: 7px solid transparent;
	  border-bottom: 7px solid #ccc;
	  border-left: 7px solid transparent;
	  border-bottom-color: rgba(0, 0, 0, 0.2);
	  content: '';
	}

	.daterangepicker.openscenter:after {
	  position: absolute;
	  top: -6px;
	  left: 0;
	  right: 0;
	  width: 0;
	  margin-left: auto;
	  margin-right: auto;
	  display: inline-block;
	  border-right: 6px solid transparent;
	  border-bottom: 6px solid #fff;
	  border-left: 6px solid transparent;
	  content: '';
	}

	.daterangepicker.opensright:before {
	  position: absolute;
	  top: -7px;
	  left: 9px;
	  display: inline-block;
	  border-right: 7px solid transparent;
	  border-bottom: 7px solid #ccc;
	  border-left: 7px solid transparent;
	  border-bottom-color: rgba(0, 0, 0, 0.2);
	  content: '';
	}

	.daterangepicker.opensright:after {
	  position: absolute;
	  top: -6px;
	  left: 10px;
	  display: inline-block;
	  border-right: 6px solid transparent;
	  border-bottom: 6px solid #fff;
	  border-left: 6px solid transparent;
	  content: '';
	}

	.daterangepicker.dropup{
	  margin-top: -5px;
	}
	.daterangepicker.dropup:before{
	  top: initial;
	  bottom:-7px;
	  border-bottom: initial;
	  border-top: 7px solid #ccc;
	}
	.daterangepicker.dropup:after{
	  top: initial;
	  bottom:-6px;
	  border-bottom: initial;
	  border-top: 6px solid #fff;
	}

	.daterangepicker.dropdown-menu {
	  max-width: none;
	  z-index: 3000;
	}

	.daterangepicker.single .ranges, .daterangepicker.single .calendar {
	  float: none;
	}

	.daterangepicker .calendar {
	  display: none;
	  max-width: 270px;
	  margin: 4px;
	}

	.daterangepicker.show-calendar .calendar {
	  display: block;
	}

	.daterangepicker .calendar.single .calendar-table {
	  border: none;
	}

	/* Calendars */

	.daterangepicker .calendar th, .daterangepicker .calendar td {
	  white-space: nowrap;
	  text-align: center;
	  min-width: 32px;
	}

	.daterangepicker .calendar-table {
	  border: 2px solid #ddd;
	  padding: 8px;
	  border-radius: 2px;
	  background: #FFF;
	}

	.daterangepicker table {
	  width: 100%;
	  margin: 0;
	}

	.daterangepicker td, .daterangepicker th {
	  text-align: center;
	  width: 20px;
	  height: 20px;
	  border-radius: 4px;
	  white-space: nowrap;
	  cursor: pointer;
	}

	.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
	  color: #999;
	  background: #fff;
	}

	.daterangepicker td.disabled, .daterangepicker option.disabled {
	  color: #999;
	  cursor: not-allowed;
	  text-decoration: line-through;
	}

	.daterangepicker td.available:hover, .daterangepicker th.available:hover {
	  background: #eee;
	}

	.daterangepicker td.in-range {
	  background: #ebf4f8;
	  border-radius: 0;
	}

	.daterangepicker td.start-date {
	  border-radius: 4px 0 0 4px;
	}

	.daterangepicker td.end-date {
	  border-radius: 0 4px 4px 0;
	}

	.daterangepicker td.start-date.end-date {
	  border-radius: 4px;
	}

	.daterangepicker td.active, .daterangepicker td.active:hover {
	  background-color: #357ebd;
	  border-color: #3071a9;
	  color: #fff;
	}

	.daterangepicker td.week, .daterangepicker th.week {
	  font-size: 80%;
	  color: #ccc;
	}

	.daterangepicker select.monthselect, .daterangepicker select.yearselect {
	  font-size: 12px;
	  padding: 1px;
	  height: auto;
	  margin: 0;
	  cursor: default;
	}

	.daterangepicker select.monthselect {
	  margin-right: 2%;
	  width: 56%;
	}

	.daterangepicker select.yearselect {
	  width: 40%;
	}

	.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
	  width: 50px;
	  margin-bottom: 0;
	}

	.daterangepicker th.month {
	  width: auto;
	}

	.reportrange {
		border: 2px solid #CCC !important;
		padding: 8px 12px !important;
	}

	/* Text Input Above Each Calendar */

	.daterangepicker .input-mini {
	  border: 2px solid #ccc;
	  border-radius: 2px;
	  color: #555;
	  display: block;
	  height: 30px;
	  line-height: 30px;
	  vertical-align: middle;
	  margin: 0 0 12px 0;
	  padding: 0 6px 0 28px;
	  width: 100%;
	}

	.daterangepicker .input-mini.active {
	  border-color: #357ebd;
	}

	.daterangepicker .daterangepicker_input i {
	  position: absolute;
	  left: 10px;
	  top: 5px;
	}

	.daterangepicker .daterangepicker_input i.icon-time {
		top: 1px;
		left: 16px;
	}

	.daterangepicker .daterangepicker_input {
	  position: relative;
	}

	/* Time Picker */

	.daterangepicker .calendar-time {
		text-align: center;
		margin: 10px auto;
		line-height: 30px;
		position: relative;
	}

	.daterangepicker .calendar-time select.disabled {
	  color: #ccc;
	  cursor: not-allowed;
	}

	/* Predefined Ranges */

	.daterangepicker .ranges {
	  font-size: 11px;
	  float: none;
	  margin: 4px;
	  text-align: left;
	}

	.daterangepicker .ranges ul {
	  list-style: none;
	  margin: 0 auto;
	  padding: 0;
	  width: 100%;
	}

	.daterangepicker .ranges li {
	  font-size: 13px;
	  background: #f5f5f5;
	  border: 1px solid #f5f5f5;
	  color: #08c;
	  padding: 3px 12px;
	  margin-bottom: 8px;
	  border-radius: 5px;
	  cursor: pointer;
	}

	.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
	  background: #08c;
	  border: 1px solid #08c;
	  color: #fff;
	}

	/*  Larger Screen Styling */
	@media (min-width: 564px) {
		.daterangepicker{
		width: auto;
		}

		.daterangepicker .ranges ul {
		width: 160px;
		}
		.daterangepicker.single .ranges ul {
		width: 100%;
		}
		.daterangepicker .calendar.left .calendar-table {
		border-right: none;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		}

		.daterangepicker .calendar.right .calendar-table {
		border-left: none;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		}

		.daterangepicker .calendar.left {
		clear: left;
		margin-right: 0;
		}
		.daterangepicker.single .calendar.left {
		clear: none;
		}
		.daterangepicker.single .ranges,
		.daterangepicker.single .calendar{
		float:left;
		}

		.daterangepicker .calendar.right {
		margin-left: 0;
		}

		.daterangepicker .left .daterangepicker_input {
		padding-right: 12px;
		}

		.daterangepicker .calendar.left .calendar-table {
		padding-right: 12px;
		}

		.daterangepicker .ranges,
		.daterangepicker .calendar {
		float: left;
		}
		}

		@media (min-width: 730px) {
		.daterangepicker .ranges {
		width: auto;
		float: left;
		}
		.daterangepicker .calendar.left {
		clear: none;
		}
	}

@font-face {
	font-family: 'font-icons';
	src:url('fonts/font-icons.eot');
	src:url('fonts/font-icons.eot') format('embedded-opentype'),
		url('fonts/font-icons.woff') format('woff'),
		url('fonts/font-icons.ttf') format('truetype'),
		url('fonts/font-icons.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'lined-icons';
	src:url('fonts/lined-icons.eot');
	src:url('fonts/lined-icons.eot') format('embedded-opentype'),
		url('fonts/lined-icons.woff') format('woff'),
		url('fonts/lined-icons.ttf') format('truetype'),
		url('fonts/lined-icons.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Simple-Line-Icons';
	src:url('fonts/Simple-Line-Icons.eot');
	src:url('fonts/Simple-Line-Icons.eot#iefix') format('embedded-opentype'),
		url('fonts/Simple-Line-Icons.woff') format('woff'),
		url('fonts/Simple-Line-Icons.ttf') format('truetype'),
		url('fonts/Simple-Line-Icons.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"],
[class^="icon-line-"], [class*=" icon-line-"],
[class^="icon-line2-"], [class*=" icon-line2-"],
.side-header #primary-menu ul > li.sub-menu > a:after {
	display: inline-block;
	font-family: 'font-icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: inherit;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[class^="icon-line-"], [class*=" icon-line-"] { font-family: 'lined-icons'; }

[class^="icon-line2-"], [class*=" icon-line2-"] { font-family: 'Simple-Line-Icons'; }

.icon-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.icon-2x {
  font-size: 2em;
}
.icon-3x {
  font-size: 3em;
}
.icon-4x {
  font-size: 4em;
}
.icon-5x {
  font-size: 5em;
}
.icon-fw {
  width: 1.2857142857142858em;
  text-align: center;
}

.iconlist {
	padding-left: 0;
	margin-left: 1.75em;
	list-style-type: none;
}

.iconlist li { position: relative; }

.iconlist ul {
	list-style-type: none;
	margin: 5px 0 5px 25px;
}

.iconlist > li [class^="icon-"]:first-child, .iconlist > li [class*=" icon-"]:first-child {
	position: absolute;
	left: -1.75em;
	width: 1.75em;
	text-align: center;
	top: 1px;
	width: 14px;
}

.iconlist.iconlist-large { font-size: 16px; }

.iconlist.iconlist-large li { margin: 4px 0; }

.iconlist.iconlist-large > li [class^="icon-"], .iconlist.iconlist-large > li [class*=" icon-"] {
	width: 16px;
	margin-right: 5px;
}

.iconlist-color li i { color: #1ABC9C; }

.icon-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.icon.pull-left {
  margin-right: .3em;
}
.icon.pull-right {
  margin-left: .3em;
}
.icon-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.icon-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.icon-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.icon-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.icon-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.icon-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.icon-stacked {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.icon-stacked-1x,
.icon-stacked-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.icon-stacked-1x {
  line-height: inherit;
}
.icon-stacked-2x {
  font-size: 2em;
}
.icon-inverse {
  color: #ffffff;
}

.icon-type:before {
	content: "\e600";
}
.icon-box:before {
	content: "\e601";
}
.icon-archive:before {
	content: "\e602";
}
.icon-envelope:before {
	content: "\e603";
}
.icon-email:before {
	content: "\e604";
}
.icon-files:before {
	content: "\e605";
}
.icon-printer2:before {
	content: "\e606";
}
.icon-folder-add:before {
	content: "\e607";
}
.icon-folder-settings:before {
	content: "\e608";
}
.icon-folder-check:before {
	content: "\e609";
}
.icon-wifi-low:before {
	content: "\e60a";
}
.icon-wifi-mid:before {
	content: "\e60b";
}
.icon-wifi-full:before {
	content: "\e60c";
}
.icon-connection-empty:before {
	content: "\e60d";
}
.icon-battery-full:before {
	content: "\e60e";
}
.icon-settings:before {
	content: "\e60f";
}
.icon-arrow-left:before {
	content: "\e610";
}
.icon-arrow-up:before {
	content: "\e611";
}
.icon-arrow-down:before {
	content: "\e612";
}
.icon-arrow-right:before {
	content: "\e613";
}
.icon-reload:before {
	content: "\e614";
}
.icon-download:before {
	content: "\e615";
}
.icon-tag:before {
	content: "\e616";
}
.icon-trashcan:before {
	content: "\e617";
}
.icon-search:before {
	content: "\e618";
}
.icon-zoom-in:before {
	content: "\e619";
}
.icon-zoom-out:before {
	content: "\e61a";
}
.icon-chat:before {
	content: "\e61b";
}
.icon-clock:before {
	content: "\e61c";
}
.icon-printer:before {
	content: "\e61d";
}
.icon-home:before {
	content: "\e61e";
}
.icon-flag:before {
	content: "\e61f";
}
.icon-meter:before {
	content: "\e620";
}
.icon-switch:before {
	content: "\e621";
}
.icon-forbidden:before {
	content: "\e622";
}
.icon-phone-landscape:before {
	content: "\e623";
}
.icon-tablet:before {
	content: "\e624";
}
.icon-tablet-landscape:before {
	content: "\e625";
}
.icon-laptop:before {
	content: "\e626";
}
.icon-camera:before {
	content: "\e627";
}
.icon-microwave-oven:before {
	content: "\e628";
}
.icon-credit-cards:before {
	content: "\e629";
}
.icon-map-marker:before {
	content: "\e62a";
}
.icon-map:before {
	content: "\e62b";
}
.icon-support:before {
	content: "\e62c";
}
.icon-newspaper2:before {
	content: "\e62d";
}
.icon-barbell:before {
	content: "\e62e";
}
.icon-stopwatch:before {
	content: "\e62f";
}
.icon-atom:before {
	content: "\e630";
}
.icon-image:before {
	content: "\e631";
}
.icon-cube:before {
	content: "\e632";
}
.icon-bars:before {
	content: "\e633";
}
.icon-chart:before {
	content: "\e634";
}
.icon-pencil:before {
	content: "\e635";
}
.icon-measure:before {
	content: "\e636";
}
.icon-eyedropper:before {
	content: "\e637";
}
.icon-file-settings:before {
	content: "\e638";
}
.icon-file-add:before {
	content: "\e639";
}
.icon-file:before {
	content: "\e63a";
}
.icon-align-left:before {
	content: "\e63b";
}
.icon-align-right:before {
	content: "\e63c";
}
.icon-align-center:before {
	content: "\e63d";
}
.icon-align-justify:before {
	content: "\e63e";
}
.icon-file-broken:before {
	content: "\e63f";
}
.icon-browser:before {
	content: "\e640";
}
.icon-windows:before {
	content: "\e641";
}
.icon-window:before {
	content: "\e642";
}
.icon-folder:before {
	content: "\e643";
}
.icon-connection-25:before {
	content: "\e644";
}
.icon-connection-50:before {
	content: "\e645";
}
.icon-connection-75:before {
	content: "\e646";
}
.icon-connection-full:before {
	content: "\e647";
}
.icon-list:before {
	content: "\e648";
}
.icon-grid:before {
	content: "\e649";
}
.icon-stack3:before {
	content: "\e64a";
}
.icon-battery-charging:before {
	content: "\e64b";
}
.icon-battery-empty:before {
	content: "\e64c";
}
.icon-battery-25:before {
	content: "\e64d";
}
.icon-battery-50:before {
	content: "\e64e";
}
.icon-battery-75:before {
	content: "\e64f";
}
.icon-refresh:before {
	content: "\e650";
}
.icon-volume:before {
	content: "\e651";
}
.icon-volume-increase:before {
	content: "\e652";
}
.icon-volume-decrease:before {
	content: "\e653";
}
.icon-mute:before {
	content: "\e654";
}
.icon-microphone:before {
	content: "\e655";
}
.icon-microphone-off:before {
	content: "\e656";
}
.icon-book:before {
	content: "\e657";
}
.icon-checkmark:before {
	content: "\e658";
}
.icon-checkbox-checked:before {
	content: "\e659";
}
.icon-checkbox:before {
	content: "\e65a";
}
.icon-paperclip:before {
	content: "\e65b";
}
.icon-chat-1:before {
	content: "\e65c";
}
.icon-chat-2:before {
	content: "\e65d";
}
.icon-chat-3:before {
	content: "\e65e";
}
.icon-comment:before {
	content: "\e65f";
}
.icon-calendar:before {
	content: "\e660";
}
.icon-bookmark:before {
	content: "\e661";
}
.icon-email2:before {
	content: "\e662";
}
.icon-heart:before {
	content: "\e663";
}
.icon-enter:before {
	content: "\e664";
}
.icon-cloud:before {
	content: "\e665";
}
.icon-book2:before {
	content: "\e666";
}
.icon-star:before {
	content: "\e667";
}
.icon-lock:before {
	content: "\e668";
}
.icon-unlocked:before {
	content: "\e669";
}
.icon-unlocked2:before {
	content: "\e66a";
}
.icon-users:before {
	content: "\e66b";
}
.icon-user:before {
	content: "\e66c";
}
.icon-users2:before {
	content: "\e66d";
}
.icon-user2:before {
	content: "\e66e";
}
.icon-bullhorn:before {
	content: "\e66f";
}
.icon-share:before {
	content: "\e670";
}
.icon-screen:before {
	content: "\e671";
}
.icon-phone:before {
	content: "\e672";
}
.icon-phone-portrait:before {
	content: "\e673";
}
.icon-calculator:before {
	content: "\e674";
}
.icon-bag:before {
	content: "\e675";
}
.icon-diamond:before {
	content: "\e676";
}
.icon-drink:before {
	content: "\e677";
}
.icon-shorts:before {
	content: "\e678";
}
.icon-vcard:before {
	content: "\e679";
}
.icon-sun:before {
	content: "\e67a";
}
.icon-bill:before {
	content: "\e67b";
}
.icon-coffee:before {
	content: "\e67c";
}
.icon-tv2:before {
	content: "\e67d";
}
.icon-newspaper:before {
	content: "\e67e";
}
.icon-stack:before {
	content: "\e67f";
}
.icon-syringe:before {
	content: "\e680";
}
.icon-health:before {
	content: "\e681";
}
.icon-bolt:before {
	content: "\e682";
}
.icon-pill:before {
	content: "\e683";
}
.icon-bones:before {
	content: "\e684";
}
.icon-lab:before {
	content: "\e685";
}
.icon-clipboard:before {
	content: "\e686";
}
.icon-mug:before {
	content: "\e687";
}
.icon-bucket:before {
	content: "\e688";
}
.icon-select:before {
	content: "\e689";
}
.icon-graph:before {
	content: "\e68a";
}
.icon-crop:before {
	content: "\e68b";
}
.icon-heart2:before {
	content: "\e68c";
}
.icon-cloud2:before {
	content: "\e68d";
}
.icon-star2:before {
	content: "\e68e";
}
.icon-pen:before {
	content: "\e68f";
}
.icon-diamond2:before {
	content: "\e690";
}
.icon-display:before {
	content: "\e691";
}
.icon-paperplane:before {
	content: "\e692";
}
.icon-params:before {
	content: "\e693";
}
.icon-banknote:before {
	content: "\e694";
}
.icon-vynil:before {
	content: "\e695";
}
.icon-truck:before {
	content: "\e696";
}
.icon-world:before {
	content: "\e697";
}
.icon-tv:before {
	content: "\e698";
}
.icon-sound:before {
	content: "\e699";
}
.icon-video:before {
	content: "\e69a";
}
.icon-trash:before {
	content: "\e69b";
}
.icon-user3:before {
	content: "\e69c";
}
.icon-key:before {
	content: "\e69d";
}
.icon-search2:before {
	content: "\e69e";
}
.icon-settings2:before {
	content: "\e69f";
}
.icon-camera2:before {
	content: "\e6a0";
}
.icon-tag2:before {
	content: "\e6a1";
}
.icon-lock2:before {
	content: "\e6a2";
}
.icon-bulb:before {
	content: "\e6a3";
}
.icon-location:before {
	content: "\e6a4";
}
.icon-eye:before {
	content: "\e6a5";
}
.icon-bubble:before {
	content: "\e6a6";
}
.icon-stack2:before {
	content: "\e6a7";
}
.icon-cup:before {
	content: "\e6a8";
}
.icon-phone2:before {
	content: "\e6a9";
}
.icon-news:before {
	content: "\e6aa";
}
.icon-mail:before {
	content: "\e6ab";
}
.icon-like:before {
	content: "\e6ac";
}
.icon-photo:before {
	content: "\e6ad";
}
.icon-note:before {
	content: "\e6ae";
}
.icon-clock2:before {
	content: "\e6af";
}
.icon-data:before {
	content: "\e6b0";
}
.icon-music:before {
	content: "\e6b1";
}
.icon-megaphone:before {
	content: "\e6b2";
}
.icon-study:before {
	content: "\e6b3";
}
.icon-lab2:before {
	content: "\e6b4";
}
.icon-food:before {
	content: "\e6b5";
}
.icon-t-shirt:before {
	content: "\e6b6";
}
.icon-fire:before {
	content: "\e6b7";
}
.icon-clip:before {
	content: "\e6b8";
}
.icon-shop:before {
	content: "\e6b9";
}
.icon-calendar2:before {
	content: "\e6ba";
}
.icon-wallet:before {
	content: "\e6bb";
}
.icon-duckduckgo:before {
	content: "\e830";
}
.icon-lkdto:before {
	content: "\e896";
}
.icon-delicious:before {
	content: "\e832";
}
.icon-paypal:before {
	content: "\e833";
}
.icon-flattr:before {
	content: "\e834";
}
.icon-android:before {
	content: "\e835";
}
.icon-eventful:before {
	content: "\e836";
}
.icon-smashmag:before {
	content: "\e837";
}
.icon-gplus:before {
	content: "\e838";
}
.icon-wikipedia:before {
	content: "\e839";
}
.icon-lanyrd:before {
	content: "\e83a";
}
.icon-calendar-1:before {
	content: "\e83b";
}
.icon-stumbleupon:before {
	content: "\e83c";
}
.icon-bitcoin:before {
	content: "\e83f";
}
.icon-w3c:before {
	content: "\e840";
}
.icon-foursquare:before {
	content: "\e841";
}
.icon-html5:before {
	content: "\e842";
}
.icon-ie:before {
	content: "\e843";
}
.icon-call:before {
	content: "\e844";
}
.icon-grooveshark:before {
	content: "\e845";
}
.icon-ninetyninedesigns:before {
	content: "\e846";
}
.icon-forrst:before {
	content: "\e847";
}
.icon-digg:before {
	content: "\e848";
}
.icon-spotify:before {
	content: "\e849";
}
.icon-reddit:before {
	content: "\e84a";
}
.icon-guest:before {
	content: "\e84b";
}
.icon-blogger:before {
	content: "\e84e";
}
.icon-cc:before {
	content: "\e84f";
}
.icon-dribbble:before {
	content: "\e850";
}
.icon-evernote:before {
	content: "\e851";
}
.icon-flickr:before {
	content: "\e852";
}
.icon-google:before {
	content: "\e853";
}
.icon-viadeo:before {
	content: "\e854";
}
.icon-instapaper:before {
	content: "\e855";
}
.icon-weibo:before {
	content: "\e856";
}
.icon-klout:before {
	content: "\e857";
}
.icon-linkedin:before {
	content: "\e858";
}
.icon-meetup:before {
	content: "\e859";
}
.icon-vk:before {
	content: "\e85a";
}
.icon-rss:before {
	content: "\e85d";
}
.icon-skype:before {
	content: "\e85e";
}
.icon-twitter:before {
	content: "\e85f";
}
.icon-youtube:before {
	content: "\e860";
}
.icon-vimeo:before {
	content: "\e861";
}
.icon-windows2:before {
	content: "\e862";
}
.icon-aim:before {
	content: "\e831";
}
.icon-yahoo:before {
	content: "\e864";
}
.icon-chrome:before {
	content: "\e865";
}
.icon-email3:before {
	content: "\e866";
}
.icon-macstore:before {
	content: "\e867";
}
.icon-myspace:before {
	content: "\e868";
}
.icon-podcast:before {
	content: "\e869";
}
.icon-cloudapp:before {
	content: "\e86c";
}
.icon-dropbox:before {
	content: "\e86d";
}
.icon-ebay:before {
	content: "\e86e";
}
.icon-facebook:before {
	content: "\e86f";
}
.icon-github:before {
	content: "\e870";
}
.icon-github-circled:before {
	content: "\e871";
}
.icon-googleplay:before {
	content: "\e872";
}
.icon-itunes:before {
	content: "\e873";
}
.icon-plurk:before {
	content: "\e874";
}
.icon-songkick:before {
	content: "\e875";
}
.icon-lastfm:before {
	content: "\e876";
}
.icon-gmail:before {
	content: "\e877";
}
.icon-pinboard:before {
	content: "\e878";
}
.icon-soundcloud:before {
	content: "\e87b";
}
.icon-tumblr:before {
	content: "\e87c";
}
.icon-eventasaurus:before {
	content: "\e87d";
}
.icon-wordpress:before {
	content: "\e87e";
}
.icon-yelp:before {
	content: "\e87f";
}
.icon-intensedebate:before {
	content: "\e880";
}
.icon-eventbrite:before {
	content: "\e881";
}
.icon-scribd:before {
	content: "\e882";
}
.icon-posterous:before {
	content: "\e883";
}
.icon-stripe:before {
	content: "\e884";
}
.icon-opentable:before {
	content: "\e885";
}
.icon-cart:before {
	content: "\e886";
}
.icon-print:before {
	content: "\e887";
}
.icon-dwolla:before {
	content: "\e88a";
}
.icon-appnet:before {
	content: "\e88b";
}
.icon-statusnet:before {
	content: "\e88c";
}
.icon-acrobat:before {
	content: "\e88d";
}
.icon-drupal:before {
	content: "\e88e";
}
.icon-buffer:before {
	content: "\e88f";
}
.icon-pocket:before {
	content: "\e890";
}
.icon-bitbucket:before {
	content: "\e891";
}
.icon-lego:before {
	content: "\e892";
}
.icon-login:before {
	content: "\e893";
}
.icon-stackoverflow:before {
	content: "\e894";
}
.icon-hackernews:before {
	content: "\e895";
}
.icon-xing:before {
	content: "\e863";
}
.icon-instagram:before {
	content: "\e889";
}
.icon-angellist:before {
	content: "\e888";
}
.icon-quora:before {
	content: "\e87a";
}
.icon-openid:before {
	content: "\e879";
}
.icon-steam:before {
	content: "\e86b";
}
.icon-amazon:before {
	content: "\e86a";
}
.icon-disqus:before {
	content: "\e85c";
}
.icon-plancast:before {
	content: "\e85b";
}
.icon-appstore:before {
	content: "\e84d";
}
.icon-gowalla:before {
	content: "\e84c";
}
.icon-pinterest:before {
	content: "\e83e";
}
.icon-fivehundredpx:before {
	content: "\e83d";
}
.icon-glass:before {
	content: "\e6bc";
}
.icon-music2:before {
	content: "\e6bd";
}
.icon-search3:before {
	content: "\e6be";
}
.icon-envelope2:before {
	content: "\e6bf";
}
.icon-heart3:before {
	content: "\e6c0";
}
.icon-star3:before {
	content: "\e6c1";
}
.icon-star-empty:before {
	content: "\e6c2";
}
.icon-user4:before {
	content: "\e6c3";
}
.icon-film:before {
	content: "\e6c4";
}
.icon-th-large:before {
	content: "\e6c5";
}
.icon-th:before {
	content: "\e6c6";
}
.icon-th-list:before {
	content: "\e6c7";
}
.icon-ok:before {
	content: "\e6c8";
}
.icon-remove:before {
	content: "\e6c9";
}
.icon-zoom-in2:before {
	content: "\e6ca";
}
.icon-zoom-out2:before {
	content: "\e6cb";
}
.icon-off:before {
	content: "\e6cc";
}
.icon-signal:before {
	content: "\e6cd";
}
.icon-cog:before {
	content: "\e6ce";
}
.icon-trash2:before {
	content: "\e6cf";
}
.icon-home2:before {
	content: "\e6d0";
}
.icon-file2:before {
	content: "\e6d1";
}
.icon-time:before {
	content: "\e6d2";
}
.icon-road:before {
	content: "\e6d3";
}
.icon-download-alt:before {
	content: "\e6d4";
}
.icon-download2:before {
	content: "\e6d5";
}
.icon-upload:before {
	content: "\e6d6";
}
.icon-inbox:before {
	content: "\e6d7";
}
.icon-play-circle:before {
	content: "\e6d8";
}
.icon-repeat:before {
	content: "\e6d9";
}
.icon-refresh2:before {
	content: "\e6da";
}
.icon-list-alt:before {
	content: "\e6db";
}
.icon-lock3:before {
	content: "\e6dc";
}
.icon-flag2:before {
	content: "\e6dd";
}
.icon-headphones:before {
	content: "\e6de";
}
.icon-volume-off:before {
	content: "\e6df";
}
.icon-volume-down:before {
	content: "\e6e0";
}
.icon-volume-up:before {
	content: "\e6e1";
}
.icon-qrcode:before {
	content: "\e6e2";
}
.icon-barcode:before {
	content: "\e6e3";
}
.icon-tag3:before {
	content: "\e6e4";
}
.icon-tags:before {
	content: "\e6e5";
}
.icon-book3:before {
	content: "\e6e6";
}
.icon-bookmark2:before {
	content: "\e6e7";
}
.icon-print2:before {
	content: "\e6e8";
}
.icon-camera3:before {
	content: "\e6e9";
}
.icon-font:before {
	content: "\e6ea";
}
.icon-bold:before {
	content: "\e6eb";
}
.icon-italic:before {
	content: "\e6ec";
}
.icon-text-height:before {
	content: "\e6ed";
}
.icon-text-width:before {
	content: "\e6ee";
}
.icon-align-left2:before {
	content: "\e6ef";
}
.icon-align-center2:before {
	content: "\e6f0";
}
.icon-align-right2:before {
	content: "\e6f1";
}
.icon-align-justify2:before {
	content: "\e6f2";
}
.icon-list2:before {
	content: "\e6f3";
}
.icon-indent-left:before {
	content: "\e6f4";
}
.icon-indent-right:before {
	content: "\e6f5";
}
.icon-facetime-video:before {
	content: "\e6f6";
}
.icon-picture:before {
	content: "\e6f7";
}
.icon-pencil2:before {
	content: "\e6f8";
}
.icon-map-marker2:before {
	content: "\e6f9";
}
.icon-adjust:before {
	content: "\e6fa";
}
.icon-tint:before {
	content: "\e6fb";
}
.icon-edit:before {
	content: "\e6fc";
}
.icon-share2:before {
	content: "\e6fd";
}
.icon-check:before {
	content: "\e6fe";
}
.icon-move:before {
	content: "\e6ff";
}
.icon-step-backward:before {
	content: "\e700";
}
.icon-fast-backward:before {
	content: "\e701";
}
.icon-backward:before {
	content: "\e702";
}
.icon-play:before {
	content: "\e703";
}
.icon-pause:before {
	content: "\e704";
}
.icon-stop:before {
	content: "\e705";
}
.icon-forward:before {
	content: "\e706";
}
.icon-fast-forward:before {
	content: "\e707";
}
.icon-step-forward:before {
	content: "\e708";
}
.icon-eject:before {
	content: "\e709";
}
.icon-chevron-left:before {
	content: "\e70a";
}
.icon-chevron-right:before {
	content: "\e70b";
}
.icon-plus-sign:before {
	content: "\e70c";
}
.icon-minus-sign:before {
	content: "\e70d";
}
.icon-remove-sign:before {
	content: "\e70e";
}
.icon-ok-sign:before {
	content: "\e70f";
}
.icon-question-sign:before {
	content: "\e710";
}
.icon-info-sign:before {
	content: "\e711";
}
.icon-screenshot:before {
	content: "\e712";
}
.icon-remove-circle:before {
	content: "\e713";
}
.icon-ok-circle:before {
	content: "\e714";
}
.icon-ban-circle:before {
	content: "\e715";
}
.icon-arrow-left2:before {
	content: "\e716";
}
.icon-arrow-right2:before {
	content: "\e717";
}
.icon-arrow-up2:before {
	content: "\e718";
}
.icon-arrow-down2:before {
	content: "\e719";
}
.icon-share-alt:before {
	content: "\e71a";
}
.icon-resize-full:before {
	content: "\e71b";
}
.icon-resize-small:before {
	content: "\e71c";
}
.icon-plus:before {
	content: "\e71d";
}
.icon-minus:before {
	content: "\e71e";
}
.icon-asterisk:before {
	content: "\e71f";
}
.icon-exclamation-sign:before {
	content: "\e720";
}
.icon-gift:before {
	content: "\e721";
}
.icon-leaf:before {
	content: "\e722";
}
.icon-fire2:before {
	content: "\e723";
}
.icon-eye-open:before {
	content: "\e724";
}
.icon-eye-close:before {
	content: "\e725";
}
.icon-warning-sign:before {
	content: "\e726";
}
.icon-plane:before {
	content: "\e727";
}
.icon-calendar3:before {
	content: "\e728";
}
.icon-random:before {
	content: "\e729";
}
.icon-comment2:before {
	content: "\e72a";
}
.icon-magnet:before {
	content: "\e72b";
}
.icon-chevron-up:before {
	content: "\e72c";
}
.icon-chevron-down:before {
	content: "\e72d";
}
.icon-retweet:before {
	content: "\e72e";
}
.icon-shopping-cart:before {
	content: "\e72f";
}
.icon-folder-close:before {
	content: "\e730";
}
.icon-folder-open:before {
	content: "\e731";
}
.icon-resize-vertical:before {
	content: "\e732";
}
.icon-resize-horizontal:before {
	content: "\e733";
}
.icon-bar-chart:before {
	content: "\e734";
}
.icon-twitter-sign:before {
	content: "\e735";
}
.icon-facebook-sign:before {
	content: "\e736";
}
.icon-camera-retro:before {
	content: "\e737";
}
.icon-key2:before {
	content: "\e738";
}
.icon-cogs:before {
	content: "\e739";
}
.icon-comments:before {
	content: "\e73a";
}
.icon-thumbs-up:before {
	content: "\e73b";
}
.icon-thumbs-down:before {
	content: "\e73c";
}
.icon-star-half:before {
	content: "\e73d";
}
.icon-heart-empty:before {
	content: "\e73e";
}
.icon-signout:before {
	content: "\e73f";
}
.icon-linkedin-sign:before {
	content: "\e740";
}
.icon-pushpin:before {
	content: "\e741";
}
.icon-external-link:before {
	content: "\e742";
}
.icon-signin:before {
	content: "\e743";
}
.icon-trophy:before {
	content: "\e744";
}
.icon-github-sign:before {
	content: "\e745";
}
.icon-upload-alt:before {
	content: "\e746";
}
.icon-lemon:before {
	content: "\e747";
}
.icon-phone3:before {
	content: "\e748";
}
.icon-check-empty:before {
	content: "\e749";
}
.icon-bookmark-empty:before {
	content: "\e74a";
}
.icon-phone-sign:before {
	content: "\e74b";
}
.icon-twitter2:before {
	content: "\e74c";
}
.icon-facebook2:before {
	content: "\e74d";
}
.icon-github2:before {
	content: "\e74e";
}
.icon-unlock:before {
	content: "\e74f";
}
.icon-credit:before {
	content: "\e750";
}
.icon-rss2:before {
	content: "\e751";
}
.icon-hdd:before {
	content: "\e752";
}
.icon-bullhorn2:before {
	content: "\e753";
}
.icon-bell:before {
	content: "\e754";
}
.icon-certificate:before {
	content: "\e755";
}
.icon-hand-right:before {
	content: "\e756";
}
.icon-hand-left:before {
	content: "\e757";
}
.icon-hand-up:before {
	content: "\e758";
}
.icon-hand-down:before {
	content: "\e759";
}
.icon-circle-arrow-left:before {
	content: "\e75a";
}
.icon-circle-arrow-right:before {
	content: "\e75b";
}
.icon-circle-arrow-up:before {
	content: "\e75c";
}
.icon-circle-arrow-down:before {
	content: "\e75d";
}
.icon-globe:before {
	content: "\e75e";
}
.icon-wrench:before {
	content: "\e75f";
}
.icon-tasks:before {
	content: "\e760";
}
.icon-filter:before {
	content: "\e761";
}
.icon-briefcase:before {
	content: "\e762";
}
.icon-fullscreen:before {
	content: "\e763";
}
.icon-group:before {
	content: "\e764";
}
.icon-link:before {
	content: "\e765";
}
.icon-cloud3:before {
	content: "\e766";
}
.icon-beaker:before {
	content: "\e767";
}
.icon-cut:before {
	content: "\e768";
}
.icon-copy:before {
	content: "\e769";
}
.icon-paper-clip:before {
	content: "\e76a";
}
.icon-save:before {
	content: "\e76b";
}
.icon-sign-blank:before {
	content: "\e76c";
}
.icon-reorder:before {
	content: "\e76d";
}
.icon-list-ul:before {
	content: "\e76e";
}
.icon-list-ol:before {
	content: "\e76f";
}
.icon-strikethrough:before {
	content: "\e770";
}
.icon-underline:before {
	content: "\e771";
}
.icon-table:before {
	content: "\e772";
}
.icon-magic:before {
	content: "\e773";
}
.icon-truck2:before {
	content: "\e774";
}
.icon-pinterest2:before {
	content: "\e775";
}
.icon-pinterest-sign:before {
	content: "\e776";
}
.icon-google-plus-sign:before {
	content: "\e777";
}
.icon-google-plus:before {
	content: "\e778";
}
.icon-money:before {
	content: "\e779";
}
.icon-caret-down:before {
	content: "\e77a";
}
.icon-caret-up:before {
	content: "\e77b";
}
.icon-caret-left:before {
	content: "\e77c";
}
.icon-caret-right:before {
	content: "\e77d";
}
.icon-columns:before {
	content: "\e77e";
}
.icon-sort:before {
	content: "\e77f";
}
.icon-sort-down:before {
	content: "\e780";
}
.icon-sort-up:before {
	content: "\e781";
}
.icon-envelope-alt:before {
	content: "\e782";
}
.icon-linkedin2:before {
	content: "\e783";
}
.icon-undo:before {
	content: "\e784";
}
.icon-legal:before {
	content: "\e785";
}
.icon-dashboard:before {
	content: "\e786";
}
.icon-comment-alt:before {
	content: "\e787";
}
.icon-comments-alt:before {
	content: "\e788";
}
.icon-bolt2:before {
	content: "\e789";
}
.icon-sitemap:before {
	content: "\e78a";
}
.icon-umbrella:before {
	content: "\e78b";
}
.icon-paste:before {
	content: "\e78c";
}
.icon-lightbulb:before {
	content: "\e78d";
}
.icon-exchange:before {
	content: "\e78e";
}
.icon-cloud-download:before {
	content: "\e78f";
}
.icon-cloud-upload:before {
	content: "\e790";
}
.icon-user-md:before {
	content: "\e791";
}
.icon-stethoscope:before {
	content: "\e792";
}
.icon-suitcase:before {
	content: "\e793";
}
.icon-bell-alt:before {
	content: "\e794";
}
.icon-coffee2:before {
	content: "\e795";
}
.icon-food2:before {
	content: "\e796";
}
.icon-file-alt:before {
	content: "\e797";
}
.icon-building:before {
	content: "\e798";
}
.icon-hospital:before {
	content: "\e799";
}
.icon-ambulance:before {
	content: "\e79a";
}
.icon-medkit:before {
	content: "\e79b";
}
.icon-fighter-jet:before {
	content: "\e79c";
}
.icon-beer:before {
	content: "\e79d";
}
.icon-h-sign:before {
	content: "\e79e";
}
.icon-plus-sign2:before {
	content: "\e79f";
}
.icon-double-angle-left:before {
	content: "\e7a0";
}
.icon-double-angle-right:before {
	content: "\e7a1";
}
.icon-double-angle-up:before {
	content: "\e7a2";
}
.icon-double-angle-down:before {
	content: "\e7a3";
}
.icon-angle-left:before {
	content: "\e7a4";
}
.icon-angle-right:before {
	content: "\e7a5";
}
.icon-angle-up:before {
	content: "\e7a6";
}
.icon-angle-down:before {
	content: "\e7a7";
}
.icon-desktop:before {
	content: "\e7a8";
}
.icon-laptop2:before {
	content: "\e7a9";
}
.icon-tablet2:before {
	content: "\e7aa";
}
.icon-mobile:before {
	content: "\e7ab";
}
.icon-circle-blank:before {
	content: "\e7ac";
}
.icon-quote-left:before {
	content: "\e7ad";
}
.icon-quote-right:before {
	content: "\e7ae";
}
.icon-spinner:before {
	content: "\e7af";
}
.icon-circle:before {
	content: "\e7b0";
}
.icon-reply:before {
	content: "\e7b1";
}
.icon-github-alt:before {
	content: "\e7b2";
}
.icon-folder-close-alt:before {
	content: "\e7b3";
}
.icon-folder-open-alt:before {
	content: "\e7b4";
}
.icon-expand-alt:before {
	content: "\e7b5";
}
.icon-collapse-alt:before {
	content: "\e7b6";
}
.icon-smile:before {
	content: "\e7b7";
}
.icon-frown:before {
	content: "\e7b8";
}
.icon-meh:before {
	content: "\e7b9";
}
.icon-gamepad:before {
	content: "\e7ba";
}
.icon-keyboard:before {
	content: "\e7bb";
}
.icon-flag-alt:before {
	content: "\e7bc";
}
.icon-flag-checkered:before {
	content: "\e7bd";
}
.icon-terminal:before {
	content: "\e7be";
}
.icon-code:before {
	content: "\e7bf";
}
.icon-reply-all:before {
	content: "\e7c0";
}
.icon-star-half-full:before {
	content: "\e7c1";
}
.icon-location-arrow:before {
	content: "\e7c2";
}
.icon-crop2:before {
	content: "\e7c3";
}
.icon-code-fork:before {
	content: "\e7c4";
}
.icon-unlink:before {
	content: "\e7c5";
}
.icon-question:before {
	content: "\e7c6";
}
.icon-info:before {
	content: "\e7c7";
}
.icon-exclamation:before {
	content: "\e7c8";
}
.icon-superscript:before {
	content: "\e7c9";
}
.icon-subscript:before {
	content: "\e7ca";
}
.icon-eraser:before {
	content: "\e7cb";
}
.icon-puzzle:before {
	content: "\e7cc";
}
.icon-microphone2:before {
	content: "\e7cd";
}
.icon-microphone-off2:before {
	content: "\e7ce";
}
.icon-shield:before {
	content: "\e7cf";
}
.icon-calendar-empty:before {
	content: "\e7d0";
}
.icon-fire-extinguisher:before {
	content: "\e7d1";
}
.icon-rocket:before {
	content: "\e7d2";
}
.icon-maxcdn:before {
	content: "\e7d3";
}
.icon-chevron-sign-left:before {
	content: "\e7d4";
}
.icon-chevron-sign-right:before {
	content: "\e7d5";
}
.icon-chevron-sign-up:before {
	content: "\e7d6";
}
.icon-chevron-sign-down:before {
	content: "\e7d7";
}
.icon-html52:before {
	content: "\e7d8";
}
.icon-css3:before {
	content: "\e7d9";
}
.icon-anchor:before {
	content: "\e7da";
}
.icon-unlock-alt:before {
	content: "\e7db";
}
.icon-bullseye:before {
	content: "\e7dc";
}
.icon-ellipsis-horizontal:before {
	content: "\e7dd";
}
.icon-ellipsis-vertical:before {
	content: "\e7de";
}
.icon-rss-sign:before {
	content: "\e7df";
}
.icon-play-sign:before {
	content: "\e7e0";
}
.icon-ticket:before {
	content: "\e7e1";
}
.icon-minus-sign-alt:before {
	content: "\e7e2";
}
.icon-check-minus:before {
	content: "\e7e3";
}
.icon-level-up:before {
	content: "\e7e4";
}
.icon-level-down:before {
	content: "\e7e5";
}
.icon-check-sign:before {
	content: "\e7e6";
}
.icon-edit-sign:before {
	content: "\e7e7";
}
.icon-external-link-sign:before {
	content: "\e7e8";
}
.icon-share-sign:before {
	content: "\e7e9";
}
.icon-compass:before {
	content: "\e7ea";
}
.icon-collapse:before {
	content: "\e7eb";
}
.icon-collapse-top:before {
	content: "\e7ec";
}
.icon-expand:before {
	content: "\e7ed";
}
.icon-euro:before {
	content: "\e7ee";
}
.icon-gbp:before {
	content: "\e7ef";
}
.icon-dollar:before {
	content: "\e7f0";
}
.icon-rupee:before {
	content: "\e7f1";
}
.icon-yen:before {
	content: "\e7f2";
}
.icon-renminbi:before {
	content: "\e7f3";
}
.icon-won:before {
	content: "\e7f4";
}
.icon-bitcoin2:before {
	content: "\e7f5";
}
.icon-file3:before {
	content: "\e7f6";
}
.icon-file-text:before {
	content: "\e7f7";
}
.icon-sort-by-alphabet:before {
	content: "\e7f8";
}
.icon-sort-by-alphabet-alt:before {
	content: "\e7f9";
}
.icon-sort-by-attributes:before {
	content: "\e7fa";
}
.icon-sort-by-attributes-alt:before {
	content: "\e7fb";
}
.icon-sort-by-order:before {
	content: "\e7fc";
}
.icon-sort-by-order-alt:before {
	content: "\e7fd";
}
.icon-thumbs-up2:before {
	content: "\e7fe";
}
.icon-thumbs-down2:before {
	content: "\e7ff";
}
.icon-youtube-sign:before {
	content: "\e800";
}
.icon-youtube2:before {
	content: "\e801";
}
.icon-xing2:before {
	content: "\e802";
}
.icon-xing-sign:before {
	content: "\e803";
}
.icon-youtube-play:before {
	content: "\e804";
}
.icon-dropbox2:before {
	content: "\e805";
}
.icon-stackexchange:before {
	content: "\e806";
}
.icon-instagram2:before {
	content: "\e807";
}
.icon-flickr2:before {
	content: "\e808";
}
.icon-adn:before {
	content: "\e809";
}
.icon-bitbucket2:before {
	content: "\e80a";
}
.icon-bitbucket-sign:before {
	content: "\e80b";
}
.icon-tumblr2:before {
	content: "\e80c";
}
.icon-tumblr-sign:before {
	content: "\e80d";
}
.icon-long-arrow-down:before {
	content: "\e80e";
}
.icon-long-arrow-up:before {
	content: "\e80f";
}
.icon-long-arrow-left:before {
	content: "\e810";
}
.icon-long-arrow-right:before {
	content: "\e811";
}
.icon-apple:before {
	content: "\e812";
}
.icon-windows3:before {
	content: "\e813";
}
.icon-android2:before {
	content: "\e814";
}
.icon-linux:before {
	content: "\e815";
}
.icon-dribbble2:before {
	content: "\e816";
}
.icon-skype2:before {
	content: "\e817";
}
.icon-foursquare2:before {
	content: "\e818";
}
.icon-trello:before {
	content: "\e819";
}
.icon-female:before {
	content: "\e81a";
}
.icon-male:before {
	content: "\e81b";
}
.icon-gittip:before {
	content: "\e81c";
}
.icon-sun2:before {
	content: "\e81d";
}
.icon-moon:before {
	content: "\e81e";
}
.icon-archive2:before {
	content: "\e81f";
}
.icon-bug:before {
	content: "\e820";
}
.icon-renren:before {
	content: "\e821";
}
.icon-weibo2:before {
	content: "\e822";
}
.icon-vk2:before {
	content: "\e823";
}

.icon-line-eye:before {
	content: "\e000";
}
.icon-line-paper-clip:before {
	content: "\e001";
}
.icon-line-mail:before {
	content: "\e002";
}
.icon-line-toggle:before {
	content: "\e003";
}
.icon-line-layout:before {
	content: "\e004";
}
.icon-line-link:before {
	content: "\e005";
}
.icon-line-bell:before {
	content: "\e006";
}
.icon-line-lock:before {
	content: "\e007";
}
.icon-line-unlock:before {
	content: "\e008";
}
.icon-line-ribbon:before {
	content: "\e009";
}
.icon-line-image:before {
	content: "\e010";
}
.icon-line-signal:before {
	content: "\e011";
}
.icon-line-target:before {
	content: "\e012";
}
.icon-line-clipboard:before {
	content: "\e013";
}
.icon-line-clock:before {
	content: "\e014";
}
.icon-line-watch:before {
	content: "\e015";
}
.icon-line-air-play:before {
	content: "\e016";
}
.icon-line-camera:before {
	content: "\e017";
}
.icon-line-video:before {
	content: "\e018";
}
.icon-line-disc:before {
	content: "\e019";
}
.icon-line-printer:before {
	content: "\e020";
}
.icon-line-monitor:before {
	content: "\e021";
}
.icon-line-server:before {
	content: "\e022";
}
.icon-line-cog:before {
	content: "\e023";
}
.icon-line-heart:before {
	content: "\e024";
}
.icon-line-paragraph:before {
	content: "\e025";
}
.icon-line-align-justify:before {
	content: "\e026";
}
.icon-line-align-left:before {
	content: "\e027";
}
.icon-line-align-center:before {
	content: "\e028";
}
.icon-line-align-right:before {
	content: "\e029";
}
.icon-line-book:before {
	content: "\e030";
}
.icon-line-layers:before {
	content: "\e031";
}
.icon-line-stack:before {
	content: "\e032";
}
.icon-line-stack-2:before {
	content: "\e033";
}
.icon-line-paper:before {
	content: "\e034";
}
.icon-line-paper-stack:before {
	content: "\e035";
}
.icon-line-search:before {
	content: "\e036";
}
.icon-line-zoom-in:before {
	content: "\e037";
}
.icon-line-zoom-out:before {
	content: "\e038";
}
.icon-line-reply:before {
	content: "\e039";
}
.icon-line-circle-plus:before {
	content: "\e040";
}
.icon-line-circle-minus:before {
	content: "\e041";
}
.icon-line-circle-check:before {
	content: "\e042";
}
.icon-line-circle-cross:before {
	content: "\e043";
}
.icon-line-square-plus:before {
	content: "\e044";
}
.icon-line-square-minus:before {
	content: "\e045";
}
.icon-line-square-check:before {
	content: "\e046";
}
.icon-line-square-cross:before {
	content: "\e047";
}
.icon-line-microphone:before {
	content: "\e048";
}
.icon-line-record:before {
	content: "\e049";
}
.icon-line-skip-back:before {
	content: "\e050";
}
.icon-line-rewind:before {
	content: "\e051";
}
.icon-line-play:before {
	content: "\e052";
}
.icon-line-pause:before {
	content: "\e053";
}
.icon-line-stop:before {
	content: "\e054";
}
.icon-line-fast-forward:before {
	content: "\e055";
}
.icon-line-skip-forward:before {
	content: "\e056";
}
.icon-line-shuffle:before {
	content: "\e057";
}
.icon-line-repeat:before {
	content: "\e058";
}
.icon-line-folder:before {
	content: "\e059";
}
.icon-line-umbrella:before {
	content: "\e060";
}
.icon-line-moon:before {
	content: "\e061";
}
.icon-line-thermometer:before {
	content: "\e062";
}
.icon-line-drop:before {
	content: "\e063";
}
.icon-line-sun:before {
	content: "\e064";
}
.icon-line-cloud:before {
	content: "\e065";
}
.icon-line-cloud-upload:before {
	content: "\e066";
}
.icon-line-cloud-download:before {
	content: "\e067";
}
.icon-line-upload:before {
	content: "\e068";
}
.icon-line-download:before {
	content: "\e069";
}
.icon-line-location:before {
	content: "\e070";
}
.icon-line-location-2:before {
	content: "\e071";
}
.icon-line-map:before {
	content: "\e072";
}
.icon-line-battery:before {
	content: "\e073";
}
.icon-line-head:before {
	content: "\e074";
}
.icon-line-briefcase:before {
	content: "\e075";
}
.icon-line-speech-bubble:before {
	content: "\e076";
}
.icon-line-anchor:before {
	content: "\e077";
}
.icon-line-globe:before {
	content: "\e078";
}
.icon-line-box:before {
	content: "\e079";
}
.icon-line-reload:before {
	content: "\e080";
}
.icon-line-share:before {
	content: "\e081";
}
.icon-line-marquee:before {
	content: "\e082";
}
.icon-line-marquee-plus:before {
	content: "\e083";
}
.icon-line-marquee-minus:before {
	content: "\e084";
}
.icon-line-tag:before {
	content: "\e085";
}
.icon-line-power:before {
	content: "\e086";
}
.icon-line-command:before {
	content: "\e087";
}
.icon-line-alt:before {
	content: "\e088";
}
.icon-line-esc:before {
	content: "\e089";
}
.icon-line-bar-graph:before {
	content: "\e090";
}
.icon-line-bar-graph-2:before {
	content: "\e091";
}
.icon-line-pie-graph:before {
	content: "\e092";
}
.icon-line-star:before {
	content: "\e093";
}
.icon-line-arrow-left:before {
	content: "\e094";
}
.icon-line-arrow-right:before {
	content: "\e095";
}
.icon-line-arrow-up:before {
	content: "\e096";
}
.icon-line-arrow-down:before {
	content: "\e097";
}
.icon-line-volume:before {
	content: "\e098";
}
.icon-line-mute:before {
	content: "\e099";
}
.icon-line-content-right:before {
	content: "\e100";
}
.icon-line-content-left:before {
	content: "\e101";
}
.icon-line-grid:before {
	content: "\e102";
}
.icon-line-grid-2:before {
	content: "\e103";
}
.icon-line-columns:before {
	content: "\e104";
}
.icon-line-loader:before {
	content: "\e105";
}
.icon-line-bag:before {
	content: "\e106";
}
.icon-line-ban:before {
	content: "\e107";
}
.icon-line-flag:before {
	content: "\e108";
}
.icon-line-trash:before {
	content: "\e109";
}
.icon-line-expand:before {
	content: "\e110";
}
.icon-line-contract:before {
	content: "\e111";
}
.icon-line-maximize:before {
	content: "\e112";
}
.icon-line-minimize:before {
	content: "\e113";
}
.icon-line-plus:before {
	content: "\e114";
}
.icon-line-minus:before {
	content: "\e115";
}
.icon-line-check:before {
	content: "\e116";
}
.icon-line-cross:before {
	content: "\e117";
}
.icon-line-move:before {
	content: "\e118";
}
.icon-line-delete:before {
	content: "\e119";
}
.icon-line-menu:before {
	content: "\e120";
}
.icon-line-archive:before {
	content: "\e121";
}
.icon-line-inbox:before {
	content: "\e122";
}
.icon-line-outbox:before {
	content: "\e123";
}
.icon-line-file:before {
	content: "\e124";
}
.icon-line-file-add:before {
	content: "\e125";
}
.icon-line-file-subtract:before {
	content: "\e126";
}
.icon-line-help:before {
	content: "\e127";
}
.icon-line-open:before {
	content: "\e128";
}
.icon-line-ellipsis:before {
	content: "\e129";
}

.icon-line2-user-female:before {
	content: "\e000";
}
.icon-line2-user-follow:before {
	content: "\e002";
}
.icon-line2-user-following:before {
	content: "\e003";
}
.icon-line2-user-unfollow:before {
	content: "\e004";
}
.icon-line2-trophy:before {
	content: "\e006";
}
.icon-line2-screen-smartphone:before {
	content: "\e010";
}
.icon-line2-screen-desktop:before {
	content: "\e011";
}
.icon-line2-plane:before {
	content: "\e012";
}
.icon-line2-notebook:before {
	content: "\e013";
}
.icon-line2-moustache:before {
	content: "\e014";
}
.icon-line2-mouse:before {
	content: "\e015";
}
.icon-line2-magnet:before {
	content: "\e016";
}
.icon-line2-energy:before {
	content: "\e020";
}
.icon-line2-emoticon-smile:before {
	content: "\e021";
}
.icon-line2-disc:before {
	content: "\e022";
}
.icon-line2-cursor-move:before {
	content: "\e023";
}
.icon-line2-crop:before {
	content: "\e024";
}
.icon-line2-credit-card:before {
	content: "\e025";
}
.icon-line2-chemistry:before {
	content: "\e026";
}
.icon-line2-user:before {
	content: "\e005";
}
.icon-line2-speedometer:before {
	content: "\e007";
}
.icon-line2-social-youtube:before {
	content: "\e008";
}
.icon-line2-social-twitter:before {
	content: "\e009";
}
.icon-line2-social-tumblr:before {
	content: "\e00a";
}
.icon-line2-social-facebook:before {
	content: "\e00b";
}
.icon-line2-social-dropbox:before {
	content: "\e00c";
}
.icon-line2-social-dribbble:before {
	content: "\e00d";
}
.icon-line2-shield:before {
	content: "\e00e";
}
.icon-line2-screen-tablet:before {
	content: "\e00f";
}
.icon-line2-magic-wand:before {
	content: "\e017";
}
.icon-line2-hourglass:before {
	content: "\e018";
}
.icon-line2-graduation:before {
	content: "\e019";
}
.icon-line2-ghost:before {
	content: "\e01a";
}
.icon-line2-game-controller:before {
	content: "\e01b";
}
.icon-line2-fire:before {
	content: "\e01c";
}
.icon-line2-eyeglasses:before {
	content: "\e01d";
}
.icon-line2-envelope-open:before {
	content: "\e01e";
}
.icon-line2-envelope-letter:before {
	content: "\e01f";
}
.icon-line2-bell:before {
	content: "\e027";
}
.icon-line2-badge:before {
	content: "\e028";
}
.icon-line2-anchor:before {
	content: "\e029";
}
.icon-line2-wallet:before {
	content: "\e02a";
}
.icon-line2-vector:before {
	content: "\e02b";
}
.icon-line2-speech:before {
	content: "\e02c";
}
.icon-line2-puzzle:before {
	content: "\e02d";
}
.icon-line2-printer:before {
	content: "\e02e";
}
.icon-line2-present:before {
	content: "\e02f";
}
.icon-line2-playlist:before {
	content: "\e030";
}
.icon-line2-pin:before {
	content: "\e031";
}
.icon-line2-picture:before {
	content: "\e032";
}
.icon-line2-map:before {
	content: "\e033";
}
.icon-line2-layers:before {
	content: "\e034";
}
.icon-line2-handbag:before {
	content: "\e035";
}
.icon-line2-globe-alt:before {
	content: "\e036";
}
.icon-line2-globe:before {
	content: "\e037";
}
.icon-line2-frame:before {
	content: "\e038";
}
.icon-line2-folder-alt:before {
	content: "\e039";
}
.icon-line2-film:before {
	content: "\e03a";
}
.icon-line2-feed:before {
	content: "\e03b";
}
.icon-line2-earphones-alt:before {
	content: "\e03c";
}
.icon-line2-earphones:before {
	content: "\e03d";
}
.icon-line2-drop:before {
	content: "\e03e";
}
.icon-line2-drawer:before {
	content: "\e03f";
}
.icon-line2-docs:before {
	content: "\e040";
}
.icon-line2-directions:before {
	content: "\e041";
}
.icon-line2-direction:before {
	content: "\e042";
}
.icon-line2-diamond:before {
	content: "\e043";
}
.icon-line2-cup:before {
	content: "\e044";
}
.icon-line2-compass:before {
	content: "\e045";
}
.icon-line2-call-out:before {
	content: "\e046";
}
.icon-line2-call-in:before {
	content: "\e047";
}
.icon-line2-call-end:before {
	content: "\e048";
}
.icon-line2-calculator:before {
	content: "\e049";
}
.icon-line2-bubbles:before {
	content: "\e04a";
}
.icon-line2-briefcase:before {
	content: "\e04b";
}
.icon-line2-book-open:before {
	content: "\e04c";
}
.icon-line2-basket-loaded:before {
	content: "\e04d";
}
.icon-line2-basket:before {
	content: "\e04e";
}
.icon-line2-bag:before {
	content: "\e04f";
}
.icon-line2-action-undo:before {
	content: "\e050";
}
.icon-line2-action-redo:before {
	content: "\e051";
}
.icon-line2-wrench:before {
	content: "\e052";
}
.icon-line2-umbrella:before {
	content: "\e053";
}
.icon-line2-trash:before {
	content: "\e054";
}
.icon-line2-tag:before {
	content: "\e055";
}
.icon-line2-support:before {
	content: "\e056";
}
.icon-line2-size-fullscreen:before {
	content: "\e057";
}
.icon-line2-size-actual:before {
	content: "\e058";
}
.icon-line2-shuffle:before {
	content: "\e059";
}
.icon-line2-share-alt:before {
	content: "\e05a";
}
.icon-line2-share:before {
	content: "\e05b";
}
.icon-line2-rocket:before {
	content: "\e05c";
}
.icon-line2-question:before {
	content: "\e05d";
}
.icon-line2-pie-chart:before {
	content: "\e05e";
}
.icon-line2-pencil:before {
	content: "\e05f";
}
.icon-line2-note:before {
	content: "\e060";
}
.icon-line2-music-tone-alt:before {
	content: "\e061";
}
.icon-line2-music-tone:before {
	content: "\e062";
}
.icon-line2-microphone:before {
	content: "\e063";
}
.icon-line2-loop:before {
	content: "\e064";
}
.icon-line2-logout:before {
	content: "\e065";
}
.icon-line2-login:before {
	content: "\e066";
}
.icon-line2-list:before {
	content: "\e067";
}
.icon-line2-like:before {
	content: "\e068";
}
.icon-line2-home:before {
	content: "\e069";
}
.icon-line2-grid:before {
	content: "\e06a";
}
.icon-line2-graph:before {
	content: "\e06b";
}
.icon-line2-equalizer:before {
	content: "\e06c";
}
.icon-line2-dislike:before {
	content: "\e06d";
}
.icon-line2-cursor:before {
	content: "\e06e";
}
.icon-line2-control-start:before {
	content: "\e06f";
}
.icon-line2-control-rewind:before {
	content: "\e070";
}
.icon-line2-control-play:before {
	content: "\e071";
}
.icon-line2-control-pause:before {
	content: "\e072";
}
.icon-line2-control-forward:before {
	content: "\e073";
}
.icon-line2-control-end:before {
	content: "\e074";
}
.icon-line2-calendar:before {
	content: "\e075";
}
.icon-line2-bulb:before {
	content: "\e076";
}
.icon-line2-bar-chart:before {
	content: "\e077";
}
.icon-line2-arrow-up:before {
	content: "\e078";
}
.icon-line2-arrow-right:before {
	content: "\e079";
}
.icon-line2-arrow-left:before {
	content: "\e07a";
}
.icon-line2-arrow-down:before {
	content: "\e07b";
}
.icon-line2-ban:before {
	content: "\e07c";
}
.icon-line2-bubble:before {
	content: "\e07d";
}
.icon-line2-camcorder:before {
	content: "\e07e";
}
.icon-line2-camera:before {
	content: "\e07f";
}
.icon-line2-check:before {
	content: "\e080";
}
.icon-line2-clock:before {
	content: "\e081";
}
.icon-line2-close:before {
	content: "\e082";
}
.icon-line2-cloud-download:before {
	content: "\e083";
}
.icon-line2-cloud-upload:before {
	content: "\e084";
}
.icon-line2-doc:before {
	content: "\e085";
}
.icon-line2-envelope:before {
	content: "\e086";
}
.icon-line2-eye:before {
	content: "\e087";
}
.icon-line2-flag:before {
	content: "\e088";
}
.icon-line2-folder:before {
	content: "\e089";
}
.icon-line2-heart:before {
	content: "\e08a";
}
.icon-line2-info:before {
	content: "\e08b";
}
.icon-line2-key:before {
	content: "\e08c";
}
.icon-line2-link:before {
	content: "\e08d";
}
.icon-line2-lock:before {
	content: "\e08e";
}
.icon-line2-lock-open:before {
	content: "\e08f";
}
.icon-line2-magnifier:before {
	content: "\e090";
}
.icon-line2-magnifier-add:before {
	content: "\e091";
}
.icon-line2-magnifier-remove:before {
	content: "\e092";
}
.icon-line2-paper-clip:before {
	content: "\e093";
}
.icon-line2-paper-plane:before {
	content: "\e094";
}
.icon-line2-plus:before {
	content: "\e095";
}
.icon-line2-pointer:before {
	content: "\e096";
}
.icon-line2-power:before {
	content: "\e097";
}
.icon-line2-refresh:before {
	content: "\e098";
}
.icon-line2-reload:before {
	content: "\e099";
}
.icon-line2-settings:before {
	content: "\e09a";
}
.icon-line2-star:before {
	content: "\e09b";
}
.icon-line2-symbol-female:before {
	content: "\e09c";
}
.icon-line2-symbol-male:before {
	content: "\e09d";
}
.icon-line2-target:before {
	content: "\e09e";
}
.icon-line2-volume-1:before {
	content: "\e09f";
}
.icon-line2-volume-2:before {
	content: "\e0a0";
}
.icon-line2-volume-off:before {
	content: "\e0a1";
}
.icon-line2-users:before {
	content: "\e001";
}
/* Ion.RangeSlider
// css version 2.0.3
// © 2013-2014 Denis Ineshin | IonDen.com
// ===================================================================================================================*/

/* =====================================================================================================================
// RangeSlider */


.irs {
	position: relative; display: block;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
}
	.irs-line {
		position: relative; display: block;
		overflow: hidden;
		outline: none !important;
	}
		.irs-line-left, .irs-line-mid, .irs-line-right {
			position: absolute; display: block;
			top: 0;
		}
		.irs-line-left {
			left: 0; width: 11%;
		}
		.irs-line-mid {
			left: 9%; width: 82%;
		}
		.irs-line-right {
			right: 0; width: 11%;
		}

	.irs-bar {
		position: absolute; display: block;
		left: 0; width: 0;
	}
		.irs-bar-edge {
			position: absolute; display: block;
			top: 0; left: 0;
		}

	.irs-shadow {
		position: absolute; display: none;
		left: 0; width: 0;
	}

	.irs-slider {
		position: absolute; display: block;
		cursor: pointer;
		z-index: 1;
	}
		.irs-slider.single {

		}
		.irs-slider.from {

		}
		.irs-slider.to {

		}
		.irs-slider.type_last {
			z-index: 2;
		}

	.irs-min {
		position: absolute; display: block;
		left: 0;
		cursor: default;
	}
	.irs-max {
		position: absolute; display: block;
		right: 0;
		cursor: default;
	}

	.irs-from, .irs-to, .irs-single {
		position: absolute; display: block;
		top: 0; left: 0;
		cursor: default;
		white-space: nowrap;
	}

.irs-grid {
	position: absolute; display: none;
	bottom: 0; left: 0;
	width: 100%; height: 20px;
}
.irs-with-grid .irs-grid {
	display: block;
}
	.irs-grid-pol {
		position: absolute;
		top: 0; left: 0;
		width: 1px; height: 8px;
		background: #000;
	}
	.irs-grid-pol.small {
		height: 4px;
	}
	.irs-grid-text {
		position: absolute;
		bottom: 0; left: 0;
		white-space: nowrap;
		text-align: center;
		font-size: 9px; line-height: 9px;
		padding: 0 3px;
		color: #000;
	}

.irs-disable-mask {
	position: absolute; display: block;
	top: 0; left: -1%;
	width: 102%; height: 100%;
	cursor: default;
	background: rgba(0,0,0,0.0);
	z-index: 2;
}
.lt-ie9 .irs-disable-mask {
	background: #000;
	filter: alpha(opacity=0);
	cursor: not-allowed;
}

.irs-disabled {
	opacity: 0.4;
}


.irs-hidden-input {
	position: absolute !important;
	display: block !important;
	top: 0 !important;
	left: 0 !important;
	width: 0 !important;
	height: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	outline: none !important;
	z-index: -9999 !important;
	background: none !important;
	border-style: solid !important;
	border-color: transparent !important;
}


/* Ion.RangeSlider, Nice Skin
// css version 2.0.3
// © Denis Ineshin, 2014    https://github.com/IonDen
// ===================================================================================================================*/

/* =====================================================================================================================
// Skin details */

.irs-slider {
    background: url(rangeslider/sprite-skin-nice.png) repeat-x;
}

.irs-bar-edge,
.irs-line-mid,
.irs-line-left,
.irs-line-right {
	background-color: #EEE;
	border-radius: 100px;
}

.irs {
    height: 40px;
}
.irs-with-grid {
    height: 60px;
}
.irs-line {
    height: 8px; top: 25px;
}
    .irs-line-left {
        height: 8px;
        background-position: 0 -30px;
    }
    .irs-line-mid {
        height: 8px;
        background-position: 0 0;
    }
    .irs-line-right {
        height: 8px;
        background-position: 100% -30px;
    }

.irs-bar {
    height: 8px;
    top: 25px;
    background-color: #4484CE;
    border-radius: 100px
}
    .irs-bar-edge {
        top: 25px;
        height: 8px;
        width: 11px;
        background-position: 0 -90px;
    }

.irs-shadow {
    height: 8px;
    top: 25px;
    background: rgba(0,0,0,0.9);
    opacity: 0.15;
}
.lt-ie9 .irs-shadow {
    filter: alpha(opacity=15);
}

.irs-slider {
    width: 22px; height: 22px;
    top: 17px;
    background-position: 0 -120px;
}

.irs-min, .irs-max {
    color: #999;
    font-size: 11px;
    line-height: 1.333;
    text-shadow: none;
    top: -8px;
    padding: 3px;
    background: rgba(0,0,0,0.05);
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.irs-from, .irs-to, .irs-single {
    color: #4484CE;
    top: -8px;
    font-size: 11px;
    line-height: 1.333;
    text-shadow: none;
    padding: 3px;
    background: #FFF;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.irs-from:after, .irs-single:after, .irs-to:after {
    content: "";
    position: absolute;
    display: block;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #fff;
}

.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single { background: #DDD; }

.irs-grid-pol { background: #AAA; }
.irs-grid-text { color: #AAA }

.irs-disabled { }
/*!
 * ClockPicker v0.0.7 for jQuery (http://weareoutman.github.io/clockpicker/)
 * Copyright 2014 Wang Shenwei.
 * Licensed under MIT (https://github.com/weareoutman/clockpicker/blob/gh-pages/LICENSE)
 *
 * Bootstrap v3.1.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;overflow:visible;margin:0;padding:0;z-index:auto;background-color:transparent;-webkit-box-shadow:none;box-shadow:none;bottom:auto;left:auto;right:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.btn{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent}.btn.active:focus,.btn:active:focus,.btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-block{display:block;width:100%}.text-primary{color:#4484CE}.clockpicker .input-group-addon{cursor:pointer}.clockpicker-moving{cursor:move}.clockpicker-align-left.popover>.arrow{left:25px}.clockpicker-align-top.popover>.arrow{top:17px}.clockpicker-align-right.popover>.arrow{left:auto;right:25px}.clockpicker-align-bottom.popover>.arrow{top:auto;bottom:6px}.clockpicker-popover .popover-title{background-color:#fff;color:#999;font-size:24px;font-weight:700;line-height:30px;text-align:center}.clockpicker-popover .popover-title span{cursor:pointer}.clockpicker-popover .popover-content{background-color:#f8f8f8;padding:12px}.popover-content:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.clockpicker-plate{background-color:#fff;border:1px solid #ccc;border-radius:50%;width:200px;height:200px;overflow:visible;position:relative;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.clockpicker-canvas,.clockpicker-dial{width:200px;height:200px;position:absolute;left:-1px;top:-1px}.clockpicker-minutes{visibility:hidden}.clockpicker-tick{border-radius:50%;color:#666;line-height:26px;text-align:center;width:26px;height:26px;position:absolute;cursor:pointer}.clockpicker-tick.active,.clockpicker-tick:hover{background-color:#8eb5e1;background-color:rgba(68,132,206,.25)}.clockpicker-button{background-image:none;background-color:#fff;border-width:1px 0 0;border-top-left-radius:0;border-top-right-radius:0;margin:0;padding:10px 0}.clockpicker-button:hover{background-image:none;background-color:#ebebeb}.clockpicker-button:focus{outline:0!important}.clockpicker-dial{-webkit-transition:-webkit-transform 350ms,opacity 350ms;-moz-transition:-moz-transform 350ms,opacity 350ms;-ms-transition:-ms-transform 350ms,opacity 350ms;-o-transition:-o-transform 350ms,opacity 350ms;transition:transform 350ms,opacity 350ms}.clockpicker-dial-out{opacity:0}.clockpicker-hours.clockpicker-dial-out{-webkit-transform:scale(1.2,1.2);-moz-transform:scale(1.2,1.2);-ms-transform:scale(1.2,1.2);-o-transform:scale(1.2,1.2);transform:scale(1.2,1.2)}.clockpicker-minutes.clockpicker-dial-out{-webkit-transform:scale(.8,.8);-moz-transform:scale(.8,.8);-ms-transform:scale(.8,.8);-o-transform:scale(.8,.8);transform:scale(.8,.8)}.clockpicker-canvas{-webkit-transition:opacity 175ms;-moz-transition:opacity 175ms;-ms-transition:opacity 175ms;-o-transition:opacity 175ms;transition:opacity 175ms}.clockpicker-canvas-out{opacity:.25}.clockpicker-canvas-bearing,.clockpicker-canvas-fg{stroke:none;fill:#4484CE}.clockpicker-canvas-bg{stroke:none;fill:#8eb5e1}.clockpicker-canvas-bg-trans{fill:rgba(68,132,206,.25)}.clockpicker-canvas line{stroke:#4484CE;stroke-width:1;stroke-linecap:round}.clockpicker-button.am-button{margin:1px;padding:5px;border:1px solid rgba(0,0,0,.2);border-radius:4px}.clockpicker-button.pm-button{margin:1px 1px 1px 136px;padding:5px;border:1px solid rgba(0,0,0,.2);border-radius:4px}
/* Magnific Popup CSS */

.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
	filter: alpha(opacity=80); }

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden; }

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle; }

.mfp-align-top .mfp-container:before {
	display: none; }

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto; }

.mfp-ajax-cur {
	cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out; }

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
	cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none; }

.mfp-loading.mfp-figure {
	display: none; }

.mfp-hide {
	display: none !important; }

.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	background: url('../images/preloader-dark.gif') center center no-repeat;
	text-align: center;
	margin-top: -12px;
	margin-left: -12px;
	z-index: 1044;
	text-indent: -9999px;
}
	.mfp-preloader a {
		color: #CCC; }
		.mfp-preloader a:hover {
			color: #FFF; }

.mfp-s-ready .mfp-preloader {
	display: none; }

.mfp-s-error .mfp-content {
	display: none; }

button.mfp-close, button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none; }
button::-moz-focus-inner {
	padding: 0;
	border: 0; }

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	filter: alpha(opacity=65);
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace; }
	.mfp-close:hover, .mfp-close:focus {
		opacity: 1;
		filter: alpha(opacity=100); }
	.mfp-close:active {
		top: 1px; }

.mfp-close-btn-in .mfp-close {
	color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%; }

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap; }

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	filter: alpha(opacity=65);
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
	.mfp-arrow:active {
		margin-top: -54px; }
	.mfp-arrow:hover, .mfp-arrow:focus {
		opacity: 1;
		filter: alpha(opacity=100); }
	.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
		content: '';
		display: block;
		width: 0;
		height: 0;
		position: absolute;
		left: 0;
		top: 0;
		margin-top: 35px;
		margin-left: 35px;
		border: medium inset transparent; }
	.mfp-arrow:after, .mfp-arrow .mfp-a {
		border-top-width: 13px;
		border-bottom-width: 13px;
		top: 8px; }
	.mfp-arrow:before, .mfp-arrow .mfp-b {
		border-top-width: 21px;
		border-bottom-width: 21px;
		opacity: 0.7; }

.mfp-arrow-left {
	left: 0; }
	.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
		border-right: 17px solid #FFF;
		margin-left: 31px; }
	.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
		margin-left: 25px;
		border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
	right: 0; }
	.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
		border-left: 17px solid #FFF;
		margin-left: 39px; }
	.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
		border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px; }
	.mfp-iframe-holder .mfp-content {
		line-height: 0;
		width: 100%;
		max-width: 900px; }
	.mfp-iframe-holder .mfp-close {
		top: -40px; }

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%; }
	.mfp-iframe-scaler iframe {
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
		background: #000; }

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
	line-height: 0; }
	.mfp-figure:after {
		content: '';
		position: absolute;
		left: 0;
		top: 40px;
		bottom: 40px;
		display: block;
		right: 0;
		width: auto;
		height: auto;
		z-index: -1;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
		background: #444; }
	.mfp-figure small {
		color: #BDBDBD;
		display: block;
		font-size: 12px;
		line-height: 14px; }
	.mfp-figure figure {
		margin: 0; }

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto; }

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px; }

.mfp-image-holder .mfp-content {
	max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/**
			 * Remove all paddings around the image on small screen
			 */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0; }
	.mfp-img-mobile img.mfp-img {
		padding: 0; }
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0; }
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px; }
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box; }
		.mfp-img-mobile .mfp-bottom-bar:empty {
			padding: 0; }
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px; }
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0; }
 }

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75); }

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0; }

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%; }

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px; }
 }

.mfp-ie7 .mfp-img {
	padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
	width: 600px;
	left: 50%;
	margin-left: -300px;
	margin-top: 5px;
	padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
	padding: 0; }
.mfp-ie7 .mfp-content {
	padding-top: 44px; }
.mfp-ie7 .mfp-close {
	top: 0;
	right: 0;
	padding-top: 0; }



/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/**********************************************************************/
/* MetroDNA - Par Clément Oriol                                       */
/* http://www.clementoriol.com/metrodna                               */
/* twitter : @oriolclement                                            */
/* clement@clementoriol.com                                           */
/* Documentation : http://www.clementoriol.com/metrodna/documentation */
/**********************************************************************/


.metro, .tram, .transilien, .rer {
  position: relative;
  left: 0.2em;
  display: inline-block;
  width: 1.85em; /* Doit avoir la même valeur que background-size + 0.1 em, pour éviter les erreurs d'arrondi lorsque les em sont convertis en pixels */
  height: 1.85em; /* Pareil */
  background-size:95%;
  background-repeat: no-repeat;
  text-indent: -5000px;
}

.metro.symbole{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBmaWxsPSIjRkZGRkZGIiBzdHJva2U9IiMwMDAwOTkiIHN0cm9rZS13aWR0aD0iNzAiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgZD0iTTUwMCwzNWMyNTYuODEsMCw0NjUsMjA4LjE5LDQ2NSw0NjUKCWMwLDI1Ni44MS0yMDguMTksNDY1LTQ2NSw0NjVDMjQzLjE5LDk2NSwzNSw3NTYuODEsMzUsNTAwQzM1LDI0My4xOSwyNDMuMTksMzUsNTAwLDM1eiIvPgo8cGF0aCBpZD0icGF0aDI4MzciIGZpbGw9IiMwMDAwOTkiIGQ9Ik03NDguNzEsNzIzLjcxVjI4Ny41YzAtMjQuOTg3LTEzLjY5LTUxLjIzNS01NC45NTgtNTEuMjM1CgljLTMxLjIwMywwLTQzLjc1LDEzLjc0OS01Ny40NzksNDEuMjc3bC0xMzUuMDMsMjgxLjIyaC0xLjIzMWwtMTM2LjI3LTI4MS4yMmMtMTMuNzYtMjcuNTI4LTI2LjIzOS00MS4yNzctNTcuNTIxLTQxLjI3NwoJYy00MS4yMzksMC01NC45OTksMjYuMjQ4LTU0Ljk5OSw1MS4yMzV2NDM2LjIyYzAsMjMuODE1LDE4Ljc3MiwzNy41MDcsNDEuMjQ5LDM3LjUwN2MxOS45ODQsMCw0Mi40OS0xMy42ODgsNDIuNDktMzcuNTA3VjM5OC43NQoJaDEuMjcxbDEyMy43MywyNTIuNDljOC43NTYsMTcuNTEyLDIwLjAzMywyNy41MzksNDAuMDM2LDI3LjUzOWMxOS45NjYsMCwzMS4yMzItMTAuMDI3LDM5Ljk5OC0yNy41MzlsMTIzLjcyOS0yNTIuNDloMS4yNzR2MzI0Ljk2CgljMCwyMy44MTUsMjIuNDU3LDM3LjUwNyw0Mi40NzYsMzcuNTA3YzIyLjU0LDAsNDEuMjMtMTMuNjg4LDQxLjIzLTM3LjUxTDc0OC43MSw3MjMuNzF6Ii8+Cjwvc3ZnPg==);
}

.metro.ligne1{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iI0ZFQ0UwMCIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJmb250bWV0cm8iIGZpbGw9IiMyMjFFMjAiIGQ9Ik01NzcuMDI2LDc2My45ODdWMjM0LjAyMmgtOTIuMzUyYy0yMy45MzgsMTguNzE0LTgxLjAxNyw1NC4wMjYtMTQyLjU2NSw4My4yNjUKCWwtMzIuMjg3LDE1LjE0N2wzNi4wMTQsODEuMDQybDI3Ljk0Ni0xNC4zOGMxOS4zNzgtOS42MTEsNzIuNjE3LTM3LjM1Nyw5MC42OC01MS43djQxNi41OTFINTc3LjAyNiIvPgo8L3N2Zz4=);
}

.metro.ligne2{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzAwNjVBRSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoNzQ4NSIgZmlsbD0iI0ZGRkZGRiIgZD0iTTY3Ni40NCw3NDAuOTV2LTg4LjcwOUg0NTcuNzZjNi44ODgtMzAuNzEzLDYwLjEzMy03NS4wMzUsODcuMDg0LTk5Ljc1CgljNjMuODU1LTU3Ljk5NywxMjEuNjItOTkuMTg4LDEyMS42Mi0xOTAuMDFjMC0xMDguMDUtODcuNjc4LTE2MC42MS0xODAuNzYtMTYwLjYxYy03MS4zNjYsMC0xMTguNjIsMjAuOTkxLTE2OS43Miw2NS4zNzkKCWw1NS43MTcsNzMuNTg1YzEyLjY1Mi0xNC4zMzUsNDQuOTc1LTQ4LjExMiw5MS40MzQtNDguMTEyYzU3Ljc2LDAsODcuNzQyLDM2Ljc3Niw4Ny43NDIsODIuNDgyCgljMCw1MS4yMDktMzguMDIzLDg3Ljg1NC03My4zNDQsMTE4LjYzYy03MC43MDksNjEuNTktMTMxLjQ3LDExNS41Ny0xNDQuOTQsMTc3LjI5djY5Ljg2MWgzNDMuODUxIi8+Cjwvc3ZnPg==);
}

.metro.ligne3{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzlGOTcxQSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoNTAzMyIgZmlsbD0iI0ZGRkZGRiIgZD0iTTY4NS40Myw2MDUuOTJjMC03NC4xOC00NC4xMzYtMTE3LjkzLTEwMi41NjktMTI5LjE4di0xLjM0OAoJYzU2LjEzOS0yMS4wNDEsODUuMzc2LTYzLjIwMiw4NS4zNzYtMTE3Ljg5YzAtNzAuNjE0LTYxLjQwNy0xMzMuNjYtMTcwLTEzMy42NmMtNjEuNjQ2LDAtMTEyLjkxLDE3LjE5Ny0xNTguNjMsNDcuMzkzCglsMzYuNzg0LDc4LjEwNGMxNy4zMzQtMTUuMDk4LDQ5LjQ0My0zOC42MzcsOTguMzcyLTM4LjYzN2M1NS43MjUsMCw4MS4xOTgsMjkuNTYyLDgxLjE5OCw2My4zNjMKCWMwLDQwLjUzNy0zMi4yMTEsNjYuMTM1LTg0LjE4OSw2Ni4xMzVoLTU1LjczOXY4Ny44OTFoNTQuOTNjNTQuMjU3LDAsMTAwLjY5LDE5LjI1OCwxMDAuNjksODAuMjAzCgljMCw0NS4wMTQtMzguMTUxLDc3Ljk0My05OS44NzcsNzcuOTQzYy00NC45ODUsMC04MS44MzItMTcuNDc2LTEwNC41OS0zNC4zNTVsLTQwLjI5MSw4MS41OQoJYzQyLjc4OCwyNC4xMzQsODQuMDMsMzkuOTQzLDE1Mi4xOSwzOS45NDNjMTIzLjMxLDAuMDcsMjA2LjM1LTc0LjQzLDIwNi4zNS0xNjcuNDciLz4KPC9zdmc+);
}

.metro.ligne3b{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzk5RDRERSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGZpbGw9IiMyMzFGMjAiIGQ9Ik02NTAuOTgsNDI1Ljc4Yy0xOS4zMDIsMC0zMS4wODQsMTAuNTA2LTQxLjM5NiwyNS40Nzl2LTgwLjE1M2gtNDAuNTI0djIxMi4zOTloMzkuMTM3di04LjAxMgoJYzcuNjA0LDcuMjEsMjEuMjA5LDExLjc3NiwzMi42OTYsMTEuNzc2YzQ5LjAxMi0wLjAwMSw2Ny4yMDUtNDcuOTM0LDY3LjIwNS04Mi4zMDljMC0zNy4xNi0xNi43NS03OS4xOS01Ny4xMi03OS4xOUw2NTAuOTgsNDI1Ljc4egoJIE02MzQuMTcsNTU4LjU2Yy0xOC4zNDksMC0yNC41NzYtOS41ODEtMjQuNTc2LTE5Ljk1NHYtNTAuMzMyYzAtOC44NTgsMC42NjEtMTMuMjc3LDcuNjg4LTE5Ljg3CgljNC40NjEtNC4yODQsMTAuNTktNy43ODUsMTguNzEzLTcuNzg1YzI1LjQ0NSwwLjAyMSwyOS43NjYsMjkuMzQsMjkuNzY2LDQ5Ljk3NGMwLDIwLjk1LTUuNjg5LDQ3Ljk3MS0zMS41OSw0Ny45NzFMNjM0LjE3LDU1OC41NnoiCgkvPgo8cGF0aCBmaWxsPSIjMjMxRjIwIiBkPSJNNzg1LjQ5LDM4OS41NGMwLTEyLjUwNi04LjYyNy0yMS4yODctMjIuNDQzLTIxLjI4N2MtMTMuNzQ3LDAtMjIuNjg0LDguNzgxLTIyLjY4NCwyMS4yODcKCWMwLDEyLjI4OCw4LjkzNiwyMS4yMTcsMjIuNjg0LDIxLjIxN2MxMy44MTEsMCwyMi40NC04LjkzLDIyLjQ0LTIxLjIyTDc4NS40OSwzODkuNTR6Ii8+CjxyZWN0IHg9Ijc0Mi43NyIgeT0iNDMwLjIiIGZpbGw9IiMyMzFGMjAiIHdpZHRoPSI0MC41MjQiIGhlaWdodD0iMTUzLjMxIi8+CjxwYXRoIGZpbGw9IiMyMzFGMjAiIGQ9Ik05MjYuNzgsNTM3LjYxYzAtMjMuMjE3LTEzLjY2Mi0zNS44NzQtMzQuMDU5LTQzLjY2MWwtMTguNzQtNi44NzRjLTkuNjQ5LTMuNDc5LTE2LjE0NS03LjI3OS0xNi4xNDUtMTUuMTUKCWMwLTkuMTMyLDcuNzU3LTE0LjU4MiwyMS4yNzktMTQuNTgyYzkuNzMzLDAsMjIuMTA1LDMuMjk3LDMwLjg1Nyw5LjIwOWwxMi4zNTgtMjkuNjk2Yy03Ljc1Ny00LjA5Ny0yMi4wOTMtMTAuMDg3LTQxLjI1NC0xMC4wODcKCWMtMzUuOTA5LDAtNjAuNDE1LDIyLjYtNjAuNDE1LDUxLjc0OGMwLDE4LjE0Niw5LjEzMSwzMi4wNzQsMzAuODAzLDQwLjQ0MmwxOC4xMzgsNi44MzljNy45ODEsMy4xNDMsMTkuNjEsNi4yOTEsMTkuNjEsMTcuMDM3CgljMCwxMi4wMDEtMTMuMDE4LDE1LjM1NC0yMy42MjEsMTUuMzU0Yy0xMi4xNDYsMC0yNS45NzgtNC41NjYtMzUuNzctMTEuNDRsLTEyLjQzLDMwLjIzN2M4LjYyNyw1LjExMiwyNS44MTEsMTEuNjI4LDQ0Ljk3MywxMS42MjgKCWM0MC4yLDAuMDIsNjQuMzk5LTIxLjA3LDY0LjM5OS01MS4wMTFMOTI2Ljc4LDUzNy42MXoiLz4KPHBhdGggaWQ9InBhdGgyNjQyIiBmaWxsPSIjMjMxRjIwIiBkPSJNNTEyLjkyLDYwMy42MWMwLTc0LjMxMi00NC4zOTEtMTE3LjgyLTEwMi44My0xMjguOTh2LTEuNTcKCWM1Ni4yNDItMjEuMDY5LDg1LjY0NC02My4yMjksODUuNjQ0LTExNy44MjljMC03MC41NTQtNjEuNTExLTEzMy43MDEtMTY5LjYyMS0xMzMuNzAxYy02Mi4zMSwwLTExMy4zNywxNy4zMzktMTU5LDQ3LjQyNwoJbDM2LjcxNyw3Ny44ODljMTcuMzM3LTE0Ljg1LDQ5LjUyMi0zOC4xNDIsOTguNDUtMzguMTQyYzU1LjI4OSwwLDgwLjk1OCwyOS4yODMsODAuOTU4LDYyLjkzNWMwLDQwLjUyLTMyLjM4OSw2Ni4xMTMtODQuMTA3LDY2LjExMwoJaC01NS40MzZ2ODcuNzc4aDU0LjYzNmM1NC4yMDIsMCwxMDAuNTYsMTkuNDkxLDEwMC41Niw4MC4yMjljMCw0NS4xNjMtMzguMjUyLDc4LjExMy05OS43NjIsNzguMTEzCgljLTQ1LjA0MSwwLTgxLjgzNS0xNy4zMDUtMTA0LjI4LTM0LjQ1M2wtNDAuNTg4LDgxLjY5MWM0Mi43NzYsMjMuOTUsODQuMSwzOS43ODksMTUyLjI3LDM5Ljc4OQoJQzQyOS42MDEsNzcwLjkzMSw1MTIuOTIxLDY5Ni42OSw1MTIuOTIsNjAzLjYxIi8+Cjwvc3ZnPg==);
}

.metro.ligne4{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iI0JFNDE4RCIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoNzUwMiIgZmlsbD0iI0ZGRkZGRiIgZD0iTTY3Mi43OSw2NTMuMTV2LTgyLjU1NmgtNjUuMzE0di0zMzcuMTZoLTEzNS4xbC0yMDUuODIsMzIxLjJ2OTguNTAyaDIzOC44Mzl2MTEwLjIxaDEwMi4wNwoJVjY1My4xNDdoNjUuMzIgTTUwNS4zOTYsNTcwLjU4N2gtMTQ3Ljk5bDEwOC4xMjEtMTY5Ljc2YzIwLjkyNi0zMy4xMTMsMzYuMDcxLTY1LjM4NywzOC4yMjctNzQuMzE0aDEuNjQxdjI0NC4wN0w1MDUuMzk2LDU3MC41ODd6IgoJLz4KPC9zdmc+);
}

.metro.ligne5{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iI0YxOTA0MyIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoMzY3MSIgZmlsbD0iIzIzMUYyMCIgZD0iTTY3OS43MSw1OTIuNzVjMC03OS40ODYtNTguNDItMTU5LjY4LTIwMy4yNy0xNjcuMjVsLTE1LjEzMy0wLjcxMmw3LjQxOC0xMDEuMzUxaDE5MC43OAoJdi04Ny45MTNoLTI3OC41MmwtMjEuMDM2LDI3NS40OWw4Mi41NDIsMC43MTJjOTcuNjEzLDAuOTc5LDEyMi45NzksNTMuMzE3LDEyMi45NzksOTEuNjVjMCw2Mi4xNi01MS42MjcsODUuNjI5LTkyLjg2Niw4NS42MjkKCWMtNDUuMTg4LDAtNzUuMDM3LTE2LjYxNS0xMDAuNjEtMzMuOTEybC0zOC44OTcsODIuNjljNDEuMDkzLDIzLjE3Miw4OS4yNzcsMzguMzMzLDE0NS41LDM4LjMzMwoJYzEyMC43NzEtMC4wNCwyMDEuMTItODIuMDgsMjAxLjEyLTE4My4zNyIvPgo8L3N2Zz4=);
}

.metro.ligne6{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzg0QzI4RSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoNzAxOCIgZmlsbD0iIzIzMUYyMCIgZD0iTTY3Mi4xNiw1NzAuNTZjMC05OS4zMDUtNzAuNTE5LTE1Ny4wMS0xNTcuMTEtMTU3LjAxYy01NS45NDcsMC04OS44ODcsMjAuMjg3LTEwNy43OSwzNi4wNjgKCWM2LjY5OS0xMDYuNTIxLDYxLjQzOC0xNTkuODcsMTM0LjQxLTE1OS44N2MyOS43NjgsMCw1Ni45NzMsNi43MDEsNzEuMDMxLDEyLjg5MWwxNi42Ni05MC4xMTUKCWMtMjEuNzEzLTUuNDE3LTQ4LjkxNi04LjkzNC03OC44My04LjkzNGMtMTY2LjU5LDAtMjUxLjM2LDEyNS44OTEtMjUxLjM2LDMwOS44OTFjMCwxNDAuMzUsNTAuODk1LDI0MC4zMSwxOTMuNTgsMjQwLjMxCglDNjAxLjY0MSw3NTMuNzksNjcyLjE2MSw2NzYuMjMsNjcyLjE2LDU3MC41NiBNNTY2LjM1MSw1ODEuODRjMCw0NS42MjUtMjYuMjU0LDg4LjQzLTc3LjQwMSw4OC40MwoJYy01Mi41NzgsMC04MC45NTMtNDguNzcyLTgwLjk1My05OS4xMmMwLTE1LjYzOCwwLTM1Ljk1OSw2LjAwNC00NC45NjhjMTAuNDcxLTE2LjU4NiwzNi43OTctMjkuMTg0LDY5LjA1NS0yOS4xODQKCWM1MC45MiwwLDgzLjI5LDM1LjE5LDgzLjI5LDg0Ljg0TDU2Ni4zNTEsNTgxLjg0eiIvPgo8L3N2Zz4=);
}

.metro.ligne7{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iI0YyQTRCNyIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoNDk2MyIgZmlsbD0iIzIzMUYyMCIgZD0iTTY3OCwzMzcuNjd2LTg2LjI5N0gzMDcuMjl2ODguNTQ3aDI1Ny4zOGwtMTI5LjAyLDI0MC4yCgljLTQ2LjU3Niw4Ni41MjQtNjUuMzA4LDEzMS4yNC02NS4zMDgsMjAxLjM2aDEyMC44OTFjLTAuMDExLTgzLjM2LDcwLjM1LTI0MS43MywxODYuNzctNDQzLjgxMSIvPgo8L3N2Zz4=);
}

.metro.ligne7b{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzg0QzI4RSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoMjcwMyIgZmlsbD0iIzIzMUYyMCIgZD0iTTUzMS45NywzMjEuMTN2LTg2LjQ0NEgxNjEuMzJ2ODguNTQySDQxOC40NGwtMTI4Ljg2LDI0MC4yNQoJYy00Ni41NzgsODYuMjU1LTY1LjM3MiwxMzEuMzUxLTY1LjM3MiwyMDEuMTZoMTIwLjg4YzAuMDMtODMuNDYsNzAuMzYtMjQxLjY4LDE4Ni44OC00NDMuNTEiLz4KPHBhdGggZmlsbD0iIzIzMUYyMCIgZD0iTTYyNy4yNSw0OTYuODhjLTE5LjY3NywwLTMxLjMwMSwxMC41MDUtNDEuNjIxLDI1LjM2OHYtODAuMDRoLTQwLjM1NnYyMTIuNDdoMzguODkydi04LjA5NQoJYzcuNzU0LDcuMTM3LDIxLjIxMSwxMS44NTQsMzIuOTE3LDExLjg1NGM0OC44NDUsMC4wMDIsNjYuOTg3LTQ4LjA3OSw2Ni45ODctODIuNTI0YzAtMzcuMDMtMTYuNjEtNzkuMDQtNTYuODItNzkuMDRMNjI3LjI1LDQ5Ni44OAoJeiBNNjEwLjI5LDYyOS41OGMtMTguMzU4LDAtMjQuNjMzLTkuNDM4LTI0LjYzMy0yMC4wNzF2LTUwLjI1NGMwLTguOTgxLDAuODctMTMuMDg0LDcuNTIyLTE5LjgyNgoJYzQuNTktNC4yODQsMTAuODkyLTcuODIxLDE4Ljg3NS03LjgyMWMyNS41ODQsMC4wMTQsMjkuODksMjkuMzczLDI5Ljg5LDUwLjAyMWMwLDIwLjkxLTUuNzksNDcuOTUtMzEuNjYsNDcuOTVMNjEwLjI5LDYyOS41OHoiLz4KPHBhdGggZmlsbD0iIzIzMUYyMCIgZD0iTTc2MS42OCw0NjAuNDJjMC0xMi4zNTctOC43MTYtMjEuMjEzLTIyLjUyNi0yMS4yMTNjLTEzLjY3NywwLTIyLjQ0Nyw4Ljg1NC0yMi40NDcsMjEuMjEzCgljMCwxMi40MzIsOC43NzEsMjEuMzI3LDIyLjQ0NywyMS4zMjdjMTMuODEtMC4wMjEsMjIuNTI5LTguOSwyMi41MjktMjEuMzNMNzYxLjY4LDQ2MC40MnoiLz4KPHJlY3QgeD0iNzE4Ljk2IiB5PSI1MDEuMjQiIGZpbGw9IiMyMzFGMjAiIHdpZHRoPSI0MC4yMDkiIGhlaWdodD0iMTUzLjQzOSIvPgo8cGF0aCBmaWxsPSIjMjMxRjIwIiBkPSJNOTAyLjc0LDYwOC42M2MwLTIzLjI5MS0xMy4zOTEtMzUuNzk3LTM0LjA4NC00My41ODZsLTE4Ljc5NC02Ljg3Yy05LjcyNS0zLjQ3Ny0xNS45OTctNy4yMDQtMTUuOTk3LTE1LjIwMwoJYzAtOS4yMDgsNy45MDItMTQuNjE3LDIxLjI3OC0xNC42MTdjOS44NzIsMCwyMi4wOTUsMy4yOTMsMzEuMDg0LDkuMjA2bDEyLjI3NC0yOS42NTFjLTguMTE5LTQuMDI2LTIyLjA4LTEwLjAxNi00MS4zOTEtMTAuMDE2CgljLTM1LjkwNCwwLTYwLjI2NywyMi42NzMtNjAuMjY3LDUxLjc0N2MwLDE3LjkxOCw4Ljg1NCwzMi4wMzUsMzAuOCw0MC4yOTNsMTcuOTkyLDYuOTQ2YzguMTIxLDMuMjkzLDE5LjU5OCw2LjM2MiwxOS41OTgsMTYuOTk2CgljMCwxMi4wMDQtMTMuMDExLDE1LjUwMi0yMy40NjcsMTUuNTAyYy0xMi4xNCwwLTI2LjI2My00LjYzOS0zNi4wNjYtMTEuNTFsLTEyLjI3NSwzMC4xNjJjOC40NzIsNS4xNDYsMjUuODE0LDExLjY1Nyw0NS4xMSwxMS42NTcKCWM0MC4yMjktMC4wMjksNjQuMjEtMjEuMTQsNjQuMjEtNTEuMDY5TDkwMi43NCw2MDguNjN6Ii8+Cjwvc3ZnPg==);
}

.metro.ligne8{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iI0NEQUNDRiIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoNzI4MyIgZmlsbD0iIzIzMUYyMCIgZD0iTTY4OS4yMSw2MTQuOTJjMC02OS42MTctNDIuNzQyLTExMS44MS05MS41NzMtMTM0Ljg1CgljNDkuNTY4LTMwLjE3NSw3NS4yMDYtNjguNDU0LDc1LjIwNi0xMTcuOWMwLTkwLjk4Ni03Ny4zNzgtMTM2LjgzLTE3MC40Ni0xMzYuODNjLTkwLjg3NywwLTE3MC40MSw2MC45My0xNzAuNDEsMTQ4LjY2CgljMCw1NC44MDEsMjguNTQ1LDg3LjAzMSw3NC4yMzUsMTE1LjU0Yy01MS4wMjMsMjYuMjk2LTkwLjc3OSw2Ny43MTYtOTAuNzc5LDEzOC4xNWMwLDgwLjM5Nyw2Ni42OTMsMTUwLjkwOSwxODQuNTgsMTUwLjkwOQoJYzEwOC44Ni0wLjAyLDE4OS4xOS02Mi45NiwxODkuMTktMTYzLjY4IE01NzEuNDA5LDM2OC44M2MwLDMzLjEyLTMwLjAyMSw2My42ODItNTcuODEyLDc2LjU1OQoJYy0zMy43MDUtMTQuMjcyLTc3LjMwMi0zNy42Mi03Ny4zMDItODEuMDU5YzAtMzYuNjg5LDI2LjIyMS02Mi4yODYsNjcuNTI3LTYyLjI4NmM0My41MjksMC4wMSw2Ny41OCwyOS45MSw2Ny41OCw2Ni43OQoJTDU3MS40MDksMzY4LjgzeiBNNTc5LjYyOSw2MjMuMjVjMCw0Mi4wNDItMjcuNzcsNzcuMzczLTc4LjA5NSw3Ny4zNzNjLTUxLjEwMywwLTc5LjU1LTQxLjQ1OS03OS41NS04NC44OTYKCWMwLTQxLjE4OCwzNC41MzktNzUuNzA1LDY5LjA1OC04OS4zMThjNDQuOTksMjIuNTQsODguNTksNDguOCw4OC41OSw5Ni44NUw1NzkuNjI5LDYyMy4yNXoiLz4KPC9zdmc+);
}

.metro.ligne9{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iI0Q1QzkwMCIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoNTEwMSIgZmlsbD0iIzIzMUYyMCIgZD0iTTMxNC4xOSw0MDYuOThjMCw5OS4xNjIsNzAuNDQzLDE1Ni45MiwxNTYuNzQsMTU2LjkyYzU1LjgxNywwLDkwLjMxNi0yMC4yODUsMTA4LjIzLTM1LjgxNAoJYy02LjcyOSwxMDYuMzMtNjIuMTEsMTU5LjczLTEzNC41OSwxNTkuNzNjLTI5Ljc1MSwwLTU2Ljg2Ni02LjczNC03MS4zMTYtMTIuNzU3bC0xNi41MjUsOTAuMDkxCgljMjEuOTMsNS4xMDgsNDguODg4LDkuMDMsNzguOTM1LDkuMDNjMTY2Ljc0LDAsMjUxLjI5LTEyNi4xOCwyNTEuMjktMzEwLjE5OWMwLTE0MC4yNC01MC44NjgtMjQwLjA4MS0xOTMuNzcxLTI0MC4wODEKCWMtMTA4LjU1LDAuMDEtMTc4Ljk5LDc3LjM0LTE3OC45OSwxODMuMDgxIE00MTkuODQ0LDM5NS44NTFjMC00NS45MTYsMjYuMzg1LTg4LjU4Miw3Ny4wMTYtODguNTgyCgljNTIuMzkyLDAsODEuNTQ4LDQ4LjgwOCw4MS41NDgsOTguOTY0YzAsMTYuMDA0LDAsMzYuMTctNS45OTYsNDUuMDg0Yy0xMC40MzEsMTYuNi00My4zODgsMzUuNDE4LTc1LjU1MiwzNS40MTgKCWMtNTAuNzksMC03Ny4wMjEtNDEuMjgtNzcuMDIxLTkwLjg4MUw0MTkuODQ0LDM5NS44NTF6Ii8+Cjwvc3ZnPg==);
}

.metro.ligne10{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iI0U0QjMyNyIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGZpbGw9IiMyMzFGMjAiIGQ9Ik0zNzkuNzQsNzY1LjA0VjIzNS4xM2gtOTIuMzY2Yy0yNC4wNTYsMTguNzIyLTgxLjA5Nyw1NC4wNDktMTQyLjUyLDgzLjQ0M2wtMzIuMzgxLDE0LjkxOWwzNi4wNTMsODEuMTgKCWwyNy44NTktMTQuNDE5YzE5LjM3Mi05Ljc4NCw3Mi42ODgtMzcuNTksOTAuNzU2LTUxLjcwM3Y0MTYuNWgxMTIuNiIvPgo8cGF0aCBmaWxsPSIjMjMxRjIwIiBkPSJNNjQ5LjY0LDIyNC42NmMtMTU5Ljg0LDAtMTk0LjUyLDE1NC42LTE5NC41MiwyNzcuMDJjMCwxMjIuNDMxLDMxLjU5NywyNzcuMDQsMTkxLjQ2LDI3Ny4wNAoJYzE2MC4wNiwwLDE5NC40MzktMTU0LjYwOSwxOTQuNDM5LTI3Ny4wNEM4NDEuMDQsMzc5LjI3LDgwOS41OCwyMjQuNjYsNjQ5LjY0LDIyNC42Nkw2NDkuNjQsMjI0LjY2eiBNNjQ4LjEyLDY5MC4wMgoJYy03NC44OCwwLTc4LjgyLTEzNC45My03OC44Mi0xODguMzI5YzAtNTQuMTk0LDIuMjQ4LTE4Ny42NSw3OC44Mi0xODcuNjVjNzUuODQsMCw3OC4xODUsMTMyLjA3LDc4LjE4NSwxODcuNjUKCWMwLDUyLjY0OS0yLjkzLDE4OC4zMjktNzguMTgsMTg4LjMyOUg2NDguMTJ6Ii8+Cjwvc3ZnPg==);
}

.metro.ligne11{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzhDNUUyNCIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik00MzAsNzY0LjE1VjIzNC4yaC05Mi4zNzFjLTIzLjk3NSwxOC43Ny04MS4wMjEsNTQuMDIxLTE0Mi41OSw4My4yNDRsLTMyLjI3MSwxNS4xMDZsMzUuOTE1LDgxLjEwOQoJbDI3Ljc5MS0xNC4zNDZjMTkuNTI5LTkuODA2LDcyLjkxNi0zNy41MDIsOTAuODI0LTUxLjczMnY0MTYuNTdoMTEyLjcxIi8+CjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik03NTkuNiw3NjQuMTVWMjM0LjJoLTkyLjA4Yy0yMy45NTcsMTguNzctODAuODcxLDU0LjAyMS0xNDIuMjc5LDgzLjI0NGwtMzIuMjE1LDE1LjEwNmwzNS45MTQsODEuMTA5CglsMjcuNzMyLTE0LjM0NmMxOS40MTYtOS44MDYsNzIuNTkxLTM3LjUwMiw5MC41NTktNTEuNzMydjQxNi41N2gxMTIuMzgxTDc1OS42LDc2NC4xNXoiLz4KPC9zdmc+);
}

.metro.ligne12{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzAwN0U0OSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0zNzkuODgsNzUzLjI3VjIyMy4xMmgtOTIuNDc2Yy0yMy45MywxOC44NTctODEuMDYzLDU0LjIzNC0xNDIuNTgsODMuNTEybC0zMi4yMzQsMTQuODE2bDM1LjkzOCw4MS4xNzQKCWwyNy44MzYtMTQuMjYyYzE5LjUzMS05Ljc4NSw3Mi44NTItMzcuNTk3LDkwLjkxNC01MS43Nzl2NDE2LjY5aDExMi42Ii8+CjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik04MTIuNyw3NTMuMjd2LTg4LjdINTk0LjM0YzYuOTMtMzAuODYxLDU5Ljk2Mi03NS4xMTMsODcuMTA5LTk5Ljg3NQoJYzYzLjg2Ny01Ny43MjIsMTIxLjY4LTk5LjE5OSwxMjEuNjgtMTg5Ljg0YzAtMTA4LjE1LTg4LjA4Ni0xNjAuNjgxLTE4MS4wNi0xNjAuNjgxYy03MS4yODksMC0xMTguNjUsMjEuMjM0LTE2OS41Myw2NS4yMDkKCWw1NS4zNjcsNzMuNTI4YzEyLjc5Ny0xMy45ODUsNDUuMDIyLTQ3LjkzNiw5MS42MDgtNDcuOTM2YzU3LjkwNiwwLDg3Ljc4OSwzNi44ODMsODcuNzg5LDgyLjU2MQoJYzAsNTEuMTA0LTM4LjI3OSw4Ny43MTEtNzMuNDM4LDExOC42MWMtNzAuNjAzLDYxLjUyMy0xMzEuNDQsMTE1LjY0LTE0NC45MiwxNzcuMTE5djcwLjAwNGgzNDMuNzVIODEyLjd6Ii8+Cjwvc3ZnPg==);
}

.metro.ligne13{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzk5RDRERSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGZpbGw9IiMyMzFGMjAiIGQ9Ik0zODcuNSw3NjQuMTFWMjM0LjAzaC05Mi4zNjFjLTI0LjA5MiwxOC42OTUtODEuMTg5LDUzLjg3MS0xNDIuNzMsODMuMTA1bC0zMi4yOTIsMTQuOTc0bDM2LjA5Niw4MS42CglsMjcuNzc2LTE0LjI2YzE5LjQ1Ni05Ljc0NSw3Mi44MjgtMzcuNDM1LDkwLjc3Ny01MS42MTN2NDE2LjI4aDExMi43MiIvPgo8cGF0aCBmaWxsPSIjMjMxRjIwIiBkPSJNODIxLjIyLDYwNi45M2MwLTc0LjE1MS00NC4yOTctMTE3LjU2OS0xMDIuODU5LTEyOC44NTl2LTEuNDY1YzU2LjI2Ni0yMC45OTQsODUuNDI4LTYyLjg2Myw4NS40MjgtMTE3LjU3CgljMC03MS4xNDMtNjEuNDk1LTEzNC4wNC0xNjkuNTEtMTM0LjA0Yy02Mi40NDcsMC0xMTMuMzgsMTcuMjctMTU5LjE1LDQ3LjIxN2wzNi43MTEsNzcuODc3CgljMTcuMjM2LTE0LjIyMSw0OS40NS0zOC4xODYsOTguMzQ2LTM4LjE4NmM1NS41OTMsMCw4MS4wMjksMjkuOTg1LDgxLjAyOSw2My42OTRjMCw0MC4zMjQtMzIuMjEzLDY1Ljg3NS04NC4xMjEsNjUuODc1SDU1MS41OAoJdjg3LjU4aDU0LjgwMWM1NC4yMDMsMCwxMDAuNjQsMTkuNDQ5LDEwMC42NCw4MC4wOTdjMCw0NC45Mi0zOC4xOTcsNzguNjctOTkuOTMyLDc4LjY3Yy00NC43NzQsMC04MS42MDQtMTcuMjcxLTEwNC4xNy0zNC40NjQKCWwtNDAuNTk2LDgxLjYwMWM0Mi43OTQsMjMuOTI2LDg0LjA2MiwzOS42MTMsMTUyLjM3LDM5LjYxM2MxMjMuMTQ5LTAuMDExLDIwNi41Mi03NC44ODEsMjA2LjUyLTE2Ny42NUw4MjEuMjIsNjA2LjkzeiIvPgo8L3N2Zz4=);
}

.metro.ligne14{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGlkPSJjaXJjbGVtZXRybyIgZmlsbD0iIzYyMjI4MCIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+CjxwYXRoIGlkPSJwYXRoMjkwNiIgZmlsbD0iI0ZGRkZGRiIgZD0iTTM4MS45Nyw3NjUuMDVWMjM1LjI2aC05Mi40MjFjLTIzLjk1MywxOC43MTctODAuODg3LDU0LjA4Ni0xNDIuNTIsODMuMzM5bC0zMi4yOTYsMTQuNzcyCglsMzUuOTUsODEuMTg4bDI3Ljg2OS0xNC4xNTljMTkuMzc1LTkuODMsNzIuODUtMzcuNDQzLDkwLjc3Mi01MS44Mjl2NDE2LjQ2aDExMi42NCIvPgo8cGF0aCBpZD0icGF0aDI5MDgiIGZpbGw9IiNGRkZGRkYiIGQ9Ik04NDUuNTcsNjU0LjQ2di04Mi42NWgtNjUuMjMzVjIzNC43OGgtMTM1LjE3bC0yMDUuNjcsMzIxLjIzdjk4LjQ1MmgyMzguN3YxMTAuM2gxMDIuMTQKCXYtMTEwLjNoNjUuMjMgTTY3OC4xOTcsNTcxLjgxMmgtMTQ3Ljg0bDEwOC4wNi0xNjkuNTRjMjAuOTczLTMzLjE1OSwzNi4xMzMtNjUuMzksMzguMjY2LTc0LjQ3MmgxLjUxNEw2NzguMTk3LDU3MS44MTIKCUw2NzguMTk3LDU3MS44MTJ6Ii8+Cjwvc3ZnPg==);
}

.metro.ligne15{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxjaXJjbGUgZmlsbD0iI0E5MEYzMiIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTM4MS45NyA3NjUuMDV2LTUyOS43OWgtOTIuNDIxYy0yMy45NTMgMTguNzE3LTgwLjg4NyA1NC4wODYtMTQyLjUyIDgzLjMzOWwtMzIuMjk2IDE0Ljc3MiAzNS45NSA4MS4xODggMjcuODY5LTE0LjE1OWMxOS4zNzUtOS44MyA3Mi44NS0zNy40NDMgOTAuNzcyLTUxLjgyOXY0MTYuNDZoMTEyLjY0Ii8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTc4Ni4wOTEgNTg3LjEwOGMwLTc5LjUwMS01OC40MzctMTU5LjczMy0yMDMuMzIyLTE2Ny4yNzhsLTE1LjE0OC0uNzMgNy40NTItMTAxLjM3MWgxOTAuODE0di04Ny45MDhoLTI3OC41NzJsLTIxLjA2NCAyNzUuNTIxIDgyLjU3Mi43M2M5Ny42NDUuOTU1IDEyMy4wMTUgNTMuMzI1IDEyMy4wMTUgOTEuNjUzIDAgNjIuMTYzLTUxLjY0IDg1LjY0My05Mi44ODkgODUuNjQzLTQ1LjE5OSAwLTc1LjA0NS0xNi42MDgtMTAwLjY0LTMzLjkyOGwtMzguOTA4IDgyLjcyMmM0MS4wOTkgMjMuMTggODkuMzEyIDM4LjMyOCAxNDUuNTQgMzguMzI4IDEyMC43NjgtLjAxOSAyMDEuMTUtODIuMDg1IDIwMS4xNS0xODMuMzgxIi8+PC9zdmc+);
}

.metro.ligne16{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxjaXJjbGUgZmlsbD0iI0VDN0NBRSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTM4MS45NyA3NjUuMDV2LTUyOS43OWgtOTIuNDIxYy0yMy45NTMgMTguNzE3LTgwLjg4NyA1NC4wODYtMTQyLjUyIDgzLjMzOWwtMzIuMjk2IDE0Ljc3MiAzNS45NSA4MS4xODggMjcuODY5LTE0LjE1OWMxOS4zNzUtOS44MyA3Mi44NS0zNy40NDMgOTAuNzcyLTUxLjgyOXY0MTYuNDZoMTEyLjY0Ii8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTgyOS4zNzEgNTkxLjMzYzAtOTkuMzMtNzAuNTE0LTE1Ny4wMzYtMTU3LjExMS0xNTcuMDM2LTU1Ljk0NyAwLTg5Ljg5MyAyMC4yNTktMTA3LjgxMiAzNi4wNjIgNi43MjItMTA2LjUwMSA2MS40MzMtMTU5Ljg4MiAxMzQuNDM3LTE1OS44ODIgMjkuNzcxIDAgNTYuOTc2IDYuNzIyIDcxLjAxOSAxMi44ODJsMTYuNjgzLTkwLjA5OWMtMjEuNzItNS40MTEtNDguOTI1LTguOTMxLTc4Ljg0Ni04LjkzMS0xNjYuNjA0IDAtMjUxLjM4NiAxMjUuODgtMjUxLjM4NiAzMDkuODk3IDAgMTQwLjM1NCA1MC45MSAyNDAuMzM5IDE5My42MDQgMjQwLjMzOSAxMDguOTE2LS4wMTkgMTc5LjQxMS03Ny41NTQgMTc5LjQxMS0xODMuMjMxbS0xMDUuODI3IDExLjI1M2MwIDQ1LjY0OS0yNi4yNTEgODguNDMyLTc3LjM4NSA4OC40MzItNTIuNTk1IDAtODAuOTYyLTQ4Ljc3NS04MC45NjItOTkuMTA1IDAtMTUuNjUzIDAtMzUuOTg3IDUuOTkyLTQ0Ljk3NSAxMC40NjctMTYuNjA4IDM2Ljc5Mi0yOS4xOSA2OS4wNTMtMjkuMTkgNTAuOTY2IDAgODMuMzAyIDM1LjE4MiA4My4zMDIgODQuODM3eiIvPjwvc3ZnPg==);
}

.metro.ligne17{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxjaXJjbGUgZmlsbD0iI0VDN0NBRSIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTM4MS45NyA3NjUuMDV2LTUyOS43OWgtOTIuNDIxYy0yMy45NTMgMTguNzE3LTgwLjg4NyA1NC4wODYtMTQyLjUyIDgzLjMzOWwtMzIuMjk2IDE0Ljc3MiAzNS45NSA4MS4xODggMjcuODY5LTE0LjE1OWMxOS4zNzUtOS44MyA3Mi44NS0zNy40NDMgOTAuNzcyLTUxLjgyOXY0MTYuNDZoMTEyLjY0Ii8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTgyMi4xNCAzMjAuNjg3di04Ni4yOThoLTM3MC43NXY4OC41NjRoMjU3LjM3N2wtMTI5LjAwNyAyNDAuMTg5Yy00Ni41ODUgODYuNTIzLTY1LjMwOSAxMzEuMjE2LTY1LjMwOSAyMDEuMzU2aDEyMC44OTljLS4wMTktODMuMzc3IDcwLjM0NS0yNDEuNzI0IDE4Ni43ODgtNDQzLjgxIi8+PC9zdmc+);
}

.metro.ligne18{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxjaXJjbGUgZmlsbD0iIzk1YmYzMiIgY3g9IjUwMCIgY3k9IjUwMCIgcj0iNTAwIi8+PHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTM4MS45Nyw3NjUuMDVWMjM1LjI2aC05Mi40MjFjLTIzLjk1MywxOC43MTctODAuODg3LDU0LjA4Ni0xNDIuNTIsODMuMzM5bC0zMi4yOTYsMTQuNzcyCWwzNS45NSw4MS4xODhsMjcuODY5LTE0LjE1OWMxOS4zNzUtOS44Myw3Mi44NS0zNy40NDMsOTAuNzcyLTUxLjgyOXY0MTYuNDZoMTEyLjY0Ii8+PHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0ibSA4MjguOTczNTgsNjExLjcxMDMgYyAwLC02OS42MzM3NiAtNDIuNzQ2NDEsLTExMS44MzcxOCAtOTEuNTc4MDQsLTEzNC44Njc0NCA0OS41NDMxNCwtMzAuMjAxNDcgNzUuMTk0NzIsLTY4LjQ1NDE2IDc1LjE5NDcyLC0xMTcuOTAzNjggMCwtOTAuOTk3NjEgLTc3LjM4NTQxLC0xMzYuODcwODggLTE3MC40NjEzNSwtMTM2Ljg3MDg4IC05MC44ODUyNiwwIC0xNzAuNDIzOTEsNjAuOTQ1OTIgLTE3MC40MjM5MSwxNDguNzA0MzEgMCw1NC43ODU4IDI4LjU1Mzc4LDg3LjAyODE2IDc0LjIzOTgyLDExNS41NjMyMSAtNTEuMDIyMzIsMjYuMjUwNzUgLTkwLjc3MjkyLDY3LjcyMzk0IC05MC43NzI5MiwxMzguMTYyODIgMCw4MC4zODEyMiA2Ni42OTQxMywxNTAuODk1IDE4NC41OTc4MSwxNTAuODk1IDEwOC44NjAxLDAgMTg5LjIwMzg3LC02Mi45NjgwOSAxODkuMjAzODcsLTE2My42ODMzNCBNIDcxMS4xODIyNCwzNjUuNTg2MTIgYyAwLDMzLjE0MTEgLTMwLjAzMjk2LDYzLjY5ODMyIC01Ny44MTkwNiw3Ni41ODAyOSAtMzMuNzIxNTQsLTE0LjI2NzUzIC03Ny4zMTA1MSwtMzcuNTk3MzYgLTc3LjMxMDUxLC04MS4wMzY1NSAwLC0zNi43MTczNCAyNi4yMTMzLC02Mi4zMTI3NiA2Ny41MzY3LC02Mi4zMTI3NiA0My41MTQwOCwwIDY3LjU5Mjg3LDI5LjkwMTg5IDY3LjU5Mjg3LDY2Ljc2OTAyIHogbSA4LjIxOTc0LDI1NC40NTYyNiBjIDAsNDIuMDUzNjMgLTI3Ljc4NjEsNzcuMzg1NDEgLTc4LjExNTY0LDc3LjM4NTQxIC01MS4wOTcyMSwwIC03OS41Mzg2NSwtNDEuNDczMTggLTc5LjUzODY1LC04NC45MTIzNyAwLC00MS4xNzM2MSAzNC41MjY2NywtNzUuNzAwMjcgNjkuMDUzMzMsLTg5LjMxMjQ2IDQ1LjAxMTk4LDIyLjUyNDcxIDg4LjYwMDk2LDQ4Ljc5NDE5IDg4LjYwMDk2LDk2LjgzOTQyIHoiLz48L3N2Zz4=);
}

.rer.symbole{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBmaWxsPSIjRkZGRkZGIiBzdHJva2U9IiMwMDAwOTkiIHN0cm9rZS13aWR0aD0iNzAiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgZD0iTTUwMCwzNWMyNTYuODEsMCw0NjUsMjA4LjE5LDQ2NSw0NjUKCWMwLDI1Ni44MS0yMDguMTksNDY1LTQ2NSw0NjVDMjQzLjE5LDk2NSwzNSw3NTYuODEsMzUsNTAwQzM1LDI0My4xOSwyNDMuMTksMzUsNTAwLDM1eiIvPgo8cGF0aCBmaWxsPSIjMDAwMDk5IiBkPSJNNjA1LjAxLDY0MC4wMWMwLTE1LjA0NS0xMC4wMDgtMzEuMjUtMjcuNDc5LTMxLjI1SDQ4Mi41MXYtODYuMjQ0aDc4Ljc3OQoJYzE3LjQ3NSwwLDI3LjQ0My0xNS4wMSwyNy40NDMtMjguNzQ4YzAtMTQuOTczLTkuOTc0LTI4Ljc4NS0yNy40NDMtMjguNzg1aC03OC43OHYtNzguNzc0aDg3LjU5CgljMTcuNDM4LDAsMjcuNDQxLTE3LjQzNiwyNy40NDEtMzEuMjEzYzAtMTQuOTczLTEwLjAwNi0zMS4yNS0yNy40NDEtMzEuMjVINDQyLjU0Yy0xNy41MSwwLTI3LjQ5OCwxMy44MTItMjcuNDk4LDI4Ljc4NVY2NDUuMDIKCWMwLDE3LjUxMywxNy41MTIsMjYuMjQ1LDMzLjc3MSwyNi4yNDVoMTI4Ljc0OWMxNy40MzktMC4wMiwyNy40NDktMTcuNSwyNy40NDktMzEuMjdMNjA1LjAxLDY0MC4wMXoiLz4KPHBhdGggZmlsbD0iIzAwMDA5OSIgZD0iTTc5OC43OCw1MTguNzhjMzIuNDQzLTE2LjI3Nyw2MC00NS4wMjcsNjAtOTYuMjg5YzAtNjcuNTAyLTQ5Ljk5NC05OC43NTItOTguNzkzLTk4Ljc1MmgtOTMuNzE1CgljLTE3LjQ3OCwwLTI3LjU2LDEzLjgxMi0yNy41NiwyOC43ODV2MjkzLjY4YzAsMTcuNTg0LDE3LjU1LDI2LjMyLDMzLjc5MSwyNi4zMmMxOC43MDUsMCwzMy43NTItOC43MzYsMzMuNzUyLTI2LjMydi0xMTMuNzJoMjguNzExCglsNTYuMzQ3LDEyNi4zMWM0LjkyOCw5Ljk2OSwxMy42OTYsMTMuNzM4LDIzLjcwNywxMy43MzhjMjAuMDE0LDAsNDguNzYyLTE4Ljc0MiwzNy41NjEtNDEuMjkzbC01My44MS0xMTIuNDZMNzk4Ljc4LDUxOC43OHoKCSBNNzI2LjMxMSw0ODIuNDloLTIwLjA1M1YzODEuMjNoMjMuNzgzYzMxLjI1MywwLDU4Ljc3MSwxMy43NzYsNTguNzcxLDQ4Ljc2MmMwLjAxLDQyLjUzLTM4Ljc1LDUyLjUtNjIuNSw1Mi41TDcyNi4zMTEsNDgyLjQ5eiIvPgo8cGF0aCBmaWxsPSIjMDAwMDk5IiBkPSJNMzE1LjA1LDUxOC43OGMzMi41MjItMTYuMjc3LDU5Ljk0Ni00NS4wMjcsNTkuOTQ2LTk2LjI4OWMwLTY3LjUwMi00OS45OTQtOTguNzUyLTk4LjcxNy05OC43NTJoLTkzLjczNAoJYy0xNy41MSwwLTI3LjQ3OSwxMy44MTItMjcuNDc5LDI4Ljc4NXYyOTMuNjhjMCwxNy41ODQsMTcuNDczLDI2LjMyLDMzLjcxNSwyNi4zMmMxOC43OTksMCwzMy43MzItOC43MzYsMzMuNzMyLTI2LjMydi0xMTMuNzIKCUgyNTEuM2w1Ni4yNDYsMTI2LjMxYzUuMDA0LDkuOTY5LDEzLjc2LDEzLjczOCwyMy43MjksMTMuNzM4YzE5Ljk5MSwwLDQ4Ljc2Mi0xOC43NDIsMzcuNDgxLTQxLjI5M2wtNTMuNzEtMTEyLjQ2TDMxNS4wNSw1MTguNzh6CgkgTTI0Mi41NSw0ODIuNDloLTIwLjAzMVYzODEuMjNoMjMuNzY2YzMxLjI2OCwwLDU4Ljc4NSwxMy43NzYsNTguNzg1LDQ4Ljc2MmMtMC4wMSw0Mi41My0zOC44MSw1Mi41LTYyLjUzLDUyLjVMMjQyLjU1LDQ4Mi40OXoiLz4KPC9zdmc+);
}

.rer.ligneA{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0U5MDAyRCIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggaWQ9InBhdGg3NzMxIiBmaWxsPSIjRUMyMjJDIiBkPSJNMjY4LjM2LDcxNC42NmwxMTIuOS0wLjExM2wzMC4wMjctOTAuODM0aDE3Ni44NTlsMjkuNzQsOTAuODM0bDEwNC4yNSwwLjExM0w1NTIuOTA3LDIzNS42OQoJaC0xMTQuNThsLTE2OS45Nyw0NzguOTcgTTQzNi45ODcsNTQ0LjhsNDkuNTYxLTE1Mi42ODljNi42NS0yMC40MTQsMTIuMTAxLTQ1LjE0OCwxMi4xMDEtNjAuMDZsMS41NjUtMC4xNTEKCWMtMC4wNzYsMTYuMjQ1LDUuODUxLDQxLjE3MSwxMi4xMzcsNjAuNDM4bDQ5LjE0MiwxNTIuMzExbC0xMjQuNTEsMC4xNDlMNDM2Ljk4Nyw1NDQuOHoiLz4KPC9zdmc+);
}

.rer.ligneB{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzQ2OEZDQyIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggaWQ9InBhdGg3ODAyIiBmaWxsPSIjNDY4RkNDIiBkPSJNNzA1LjA4LDU4OC40YzAtNjcuNzEzLTQxLjE1LTEwNi45Ni05Mi4wMjctMTEzLjkxdi0xLjI3NQoJYzM3LjQwNC02LjgzNiw3Ni4zMTYtNDQuMTQ5LDc2LjMxNi05My41NTNjMC0xMDMuNjctOTUuMDM5LTEyMS4yOS0xNzIuODgtMTIxLjI5aC0xNzguODZ2NDc4LjM5aDE3MS4zMTEKCWM5MC42NTktMC4wMSwxOTYuMTQtMjcuODE5LDE5Ni4xNC0xNDguMzcgTTU4OS4wNTksMzkzLjg3MmMwLDU0Ljk2NS01Ni4xNDYsNTQuMjI5LTkyLjAyNiw1NC4yMjloLTUzLjE1NFYzMzguMzYyaDUxLjYwOQoJYzM0LjQzOSwwLDkzLjU2OS0xLjM5MSw5My41NjksNTUuNTFINTg5LjA1OXogTTU5OC43ODksNTg1LjYxMmMwLDYyLjM4MS00My40MDgsNzEuODgzLTkyLjc2LDcxLjg4M0g0NDMuOXYtMTMzLjQ5aDU2LjE0NQoJYzM1LjE4LDAsOTguNzUsMi4wOCw5OC43NSw2MS42MUw1OTguNzg5LDU4NS42MTJ6Ii8+Cjwvc3ZnPg==);
}

.rer.ligneC{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0Y0RDQxNiIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggaWQ9InBhdGg5MjAzIiBmaWxsPSIjRjVEMjEwIiBkPSJNNjU5LjExLDcxOC44N2wtMjcuMDEzLTgyLjUxYy0yNC4zNTQsMTQuMzMyLTU4LjkwNSwyNS45MDktOTYuODI2LDI1LjkwOQoJYy03NS44NDUsMC0xNDEuOTMtNTguNjIzLTE0Mi4wMi0xNTguNzc5Yy0wLjA3OC03Ni4yNzUsMzQuMTUtMTYzLjcyMSwxMzQuMjMtMTYzLjY4MWMzMC43NzEsMCw2NS4zNyw4Ljk0Nyw5Ni45NDIsMjYuMTEzCglsMzQuNjc4LTg4LjAxNmMtMzQuNzk1LTE1Ljc5MS03OC4yNTItMjcuODU1LTEzNy42NDktMjcuOTc3Yy0xNjEuNDgsMC0yMzguNzIsMTIyLjA2LTIzOC43MiwyNTYuMzIKCWMwLjEyMiwxNDEuNjYsOTIuMzM0LDI0Ni4wNywyMzguNzIsMjQ2LjExYzQ3LjA1LTAuMDgsMTAyLjgzLTE1LjgzLDEzNy42Ni0zMy40OCIvPgo8L3N2Zz4=);
}

.rer.ligneD{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzM5QTY0MSIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggaWQ9InBhdGg3NzQ3IiBmaWxsPSIjMzlBNjQxIiBkPSJNNzUwLjkyLDQ4Ni42M2MwLTIyNC43Ny0xOTguNTUtMjI4LjIyLTI4OS45Mi0yMjguMjJIMzIxLjQ4djQ3OC4zNUg0NTYuNAoJQzYwMi42Niw3MzYuNzYsNzUwLjkyLDY5Ni4wNCw3NTAuOTIsNDg2LjYzIE02NDIuMDUsNDkzLjQ5YzAsMTI1LjI3OS03MC41MjYsMTYwLjUyLTE2Mi41OCwxNjAuNTJoLTUxLjcyVjM0MS42Mmg0OC4xOTEKCUM1NDEuMTgxLDM0MS42Miw2NDIuMDUxLDM1OS4zNiw2NDIuMDUsNDkzLjQ5TDY0Mi4wNSw0OTMuNDl6Ii8+Cjwvc3ZnPg==);
}

.rer.ligneE{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0Q1ODJCMSIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBvbHlsaW5lIGlkPSJwb2x5bGluZTUzMDkiIGZpbGw9IiNENTgyQjEiIHBvaW50cz0iMzU5LjU2LDczNC4yNyAzNTkuNTYsMjU5LjE1IDY1My45MiwyNTkuMDQgNjUzLjkyLDM0NC41OSA0NjUuMTcsMzQ0LjU5Cgk0NjUuMTcsNDQyLjExIDY0Ny4yMiw0NDIuMTEgNjQ3LjIyLDUyNC4xNyA0NjUuMTcsNTI0LjI5IDQ2NS4xNyw2NDguODggNjYzLjYzLDY0OC42OCA2NjMuNjMsNzM0LjI3IDM1OS41Niw3MzQuMjcgIi8+Cjwvc3ZnPg==);
}

.tram.symbole{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzAwMDA5OSIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggZmlsbD0iIzAwMDA5OSIgZD0iTTY4MC40OSwyNjkuNjhIMzIxLjljMCwwLTQ0Ljg5NCwwLjYxOS00NC44OTQsNDQuMjM4YzAsMCwwLDQ0Ljg5Myw0NC4yMzgsNDQuMzA3aDEzMi4wOWwwLjU1MSwzODQuNTgKCWMwLDAsMCw0My43MjUsNDguNDM4LDQzLjcyNWMwLDAsNDUuOTk0LDEuMDY0LDQ1LjQ0Mi00NC4zNzV2LTM4My45NGwxMzEuNTQsMC41NTFjMCwwLDQzLjY4OCwwLDQzLjY4OC00NC44OTMKCWMwLjAxLDAsMC4wMS00My41OC00Mi41MS00NC4yIi8+Cjwvc3ZnPg==);
}

.tram.ligne1{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzAwNjRBRCIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNDk5IiByPSI0NjUiLz4KPHBhdGggZmlsbD0iIzAwNjRBRCIgZD0iTTQ1Ny42LDc1Mi41OFYzNTUuNTFjLTE3LjIxOSwxMy41NjItNjcuOTE3LDM5Ljk4Mi04Ni41ODMsNDkuMzk1bC0yNi40NTcsMTMuNDU1bC0zNC4yNDgtNzcuMjEKCWwzMC43NjMtMTQuMjkxYzU4LjY0Ni0yNy45NTcsMTEyLjk3LTYxLjUyNCwxMzUuODctNzkuNDQxaDg4LjA2NHY1MDUuMTZINDU3LjYwOSIvPgo8L3N2Zz4=);
}

.tram.ligne2{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0JBMzE4NyIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggZmlsbD0iI0JBMzE4NyIgZD0iTTM0MS41LDc0NS4wOHYtNjYuNDA2YzEyLjc3MS01OC43MTEsNzAuNzA2LTExMC4xNDksMTM3Ljg4LTE2OC43MgoJYzMzLjU4OS0yOS4zNTUsNjkuOTgzLTY0LjM1NCw2OS45ODMtMTEzLjA1YzAtNDMuNTQxLTI4LjQ5LTc4LjU0Mi04My40NjItNzguNTQyYy00NC40NTYsMC03NS4wODIsMzIuMTc5LTg3LjI5MSw0NS42NTUKCWwtNTIuOTIzLTY5Ljg1OWM0OC42ODgtNDIuMzQsOTMuNjQtNjIuMjA1LDE2MS42LTYyLjIwNWM4OC42MTEsMCwxNzIuMTYsNDkuNzg1LDE3Mi4xNiwxNTMuMDIKCWMwLDg2LjQ0Mi01NC45NywxMjUuNjgxLTExNS42NiwxODAuNThjLTI1LjgxMiwyMy43MTEtNzYuNjE2LDY1LjkwOS04Mi44OTcsOTUuMjY3aDIwNy45NHY4NC4yNThoLTMyNy4zMyIvPgo8L3N2Zz4=);
}

.tram.ligne3a{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0Y1OEE0OSIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggZmlsbD0iI0Y3OEM0OCIgZD0ibSAzNTMuNzM4MTksNzc0LjUyIGMgLTc0LjIwNSwwIC0xMTUuMjEsLTE4LjU3NCAtMTQ5LjM1LC0zOC45MzQgbCA0MC45MTIsLTgwLjA3IGMgMjEuNDYsMTUuNjQ0IDU3LjU3NCwzNC4xMzcgMTAxLjYsMzQuMTM3IDU5LjQyMiwwIDk3LjU0NywtMzUuMTQyIDk3LjU0NywtNzguOTgzIDAsLTU5LjUwMiAtNDUuODQsLTgwLjE1IC05OC42NDcsLTgwLjE1IGggLTUzLjYyIHYgLTg1Ljg3MyBoIDU0LjY5IGMgNTAuNjY4LDAgODEuOTIsLTI1LjI4NCA4MS45MiwtNjUuMjcxIDAsLTMzLjIxMSAtMjQuNDQzLC02My40NCAtNzkuMTMzLC02My40NCAtNDcuNzE5LDAgLTc4LjkzOCwyMi4yODcgLTk1LjYwMiwzNy4wMDUgbCAtMzcuOTk0LC03Ni4wODMgYyA0My44NjEsLTI5LjI4OSA5MS43NDMsLTQ1Ljg1NCAxNTcsLTQ1Ljg1NCAxMDUuNTIsMCAxNjQuOTgsNjIuNSAxNjQuOTgsMTMxLjcxIDAsNTMuNzMxIC0yOC4yNjksOTUuNzExIC04Mi45OSwxMTYuMTUgdiAxLjk5MiBjIDU2LjczMiwxMC43MTUgMTAwLjU2LDU0LjU1OSAxMDAuNTYsMTI2LjgwMSAwLjA4LDkwLjc2IC04MS45NywxNjYuODQgLTIwMS44NzksMTY2Ljg0IGwgMC4wMDYsMC4wMjMgeiIvPgo8cGF0aCBmaWxsPSIjRjc4QzQ4IiBkPSJtIDg1NC4xODAzOCw2MjEuMDg4MTcgLTQuMjM0ODIsLTQ4LjA2Nzk0IGMgLTMuMTM0ODcsMS4wNDQ5NSAtOC45NjQ2MiwyLjYzOTg4IC0xMi4xNTQ0OCwyLjYzOTg4IC04Ljk2NDYyLDAgLTEwLjAwOTU3LC04LjQxNDY0IC0xMC4wMDk1NywtMTguNDc5MjEgViA0MzAuNDc3MzEgYyAwLC04MS4zMDg1MyAtNjMuOTA3MjcsLTk1LjU2MzkyIC0xMDMuNTA1NTgsLTk1LjU2MzkyIC00NS4zNzMwNywwIC03OS4xOTY2Miw4LjQ0NzY0IC0xMTIuNDE1MjEsMjkuNTY2NzQgbCAyNC4yNTM5Nyw1MS4yMTM4MSBjIDEyLjE1NDQ4LC0xMC41NTk1NSAzNi45NTg0MiwtMjUuODcwOSA2OS42ODIwMiwtMjUuODcwOSAzNS40MTg0OSwwIDUxLjc1MjgsMTQuMjU1NCA1MS43NTI4LDM1LjkwMjQ3IHYgMTkuNTM1MTcgYyAwLDkuNTAzNTkgLTYuODc0NzEsMTAuMDMxNTcgLTE4LjQ3OTIyLDEwLjAzMTU3IC02Mi4zMTIzNCwwIC0xNDIuNTUzOTEsMTQuNzgzMzcgLTE0Mi41NTM5MSw5MS4zMjkxIDAsNDguMDY3OTUgMzMuODIzNTYsODUuMDI2MzcgODMuNDMxNDQsODUuMDI2MzcgMzguNTUzMzUsMCA2MC4xNjc0MywtMTQuNzk0MzcgODMuNDMxNDQsLTQyLjIzODE5IDQuMjM0ODIsMjIuMTY0MDUgMTcuNDM0MjUsMzguNTUzMzUgNDMuODMzMTMsMzguNTUzMzUgMTcuMzc5MjUsMCAzNS44NTg0NiwtNC4yMzQ4MiA0Ni45Njc5OSwtNi44NzQ3MSBtIC05Ny4xMjU4NSwtOTMuNDQxMDEgYyAwLDEzLjY5NDQyIC0zLjczOTg0LDI0LjI1Mzk3IC0xMi4xNTQ0OCwzMy4yMTg1OCAtOS41MTQ2LDEwLjA2NDU3IC0yMy4yNjQwMSwxNS4zNDQzNSAtMzkuNTk4MzEsMTUuMzQ0MzUgLTIwLjYyNDEyLDAgLTM1LjM2MzQ5LC0xNC43OTQzNyAtMzUuMzYzNDksLTM1LjM2MzQ5IDAsLTMzLjgxMjU2IDM5LjA0ODMzLC00MC4xNDgyOSA2NC44OTcyMiwtNDAuMTQ4MjkgNy45MTk2NywwIDE1LjgzOTMzLC0wLjUyNzk3IDIyLjIxOTA2LDAgdiAyNi45NDg4NSIvPgo8L3N2Zz4=);
}

.tram.ligne3b{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzAwQTk2MiIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggZmlsbD0iIzAwQTk2MiIgZD0ibSAzNTIuNzY0NzcsNzc3Ljc0OTc1IGMgLTc2LjA0NSwwIC0xMTguMDUsLTE5LjAzNyAtMTUzLjAzLC0zOS44OTEgbCA0MS45MjksLTgyLjA0OCBjIDIxLjk1NywxNi4wMiA1OC45NzgsMzQuOTgyIDEwNC4wNywzNC45ODIgNjAuODg5LDAgOTkuOTcsLTM2LjAxMiA5OS45NywtODAuOTQzIDAsLTYwLjk2OSAtNDYuOTg3LC04Mi4xMjMgLTEwMS4wOCwtODIuMTIzIGggLTU0Ljk2OCB2IC04Ny45ODggaCA1Ni4wNTUgYyA1MS44OTYsMCA4My45MzMsLTI1LjkxMyA4My45MzMsLTY2Ljg5IDAsLTM0LjAyNiAtMjUuMDMsLTY0Ljk5OCAtODEuMDg1LC02NC45OTggLTQ4Ljg4LDAgLTgwLjg2LDIyLjg0IC05Ny45MjgsMzcuOTA0IGwgLTM4LjkzMSwtNzcuOTQ1IGMgNDQuOTI3LC0zMC4wMTYgOTMuOTc1LC00Ni45OTIgMTYwLjg2LC00Ni45OTIgMTA4LjEsMCAxNjkuMDUsNjQuMDQyIDE2OS4wNSwxMzQuOTYgMCw1NS4wNDkgLTI4Ljk4Myw5OC4wNjggLTg1LjAzOCwxMTkuMDIgdiAyLjA0MjMgYyA1OC4xMTYsMTAuOTggMTAzLjA0LDU1LjkxIDEwMy4wNCwxMjkuOTIgMC4wNCw5My4wMjggLTgzLjk3LDE3MC45OSAtMjA2Ljg1LDE3MC45OSB6Ii8+CjxwYXRoIGZpbGw9IiMwMEE5NjIiIGQ9Im0gODY5LjExNzk4LDQ4Mi41MjAxNyBjIDAsLTY4LjExMiAtMzAuNjI0LC0xNDUuMiAtMTA0LjU0NCwtMTQ1LjIgLTM1LjkwNCwwIC01Ny41NTIsMTkuMDA4IC03Ni41Niw0Ni40NjQgdiAtMTQ3LjMxMiBoIC03NC40NDggdiAzOTAuNzIgaCA3MS44MDggdiAtMTQuNzg0IGMgMTQuMjU2LDEzLjIgMzkuMDcyLDIxLjY0OCA2MC4xOTIsMjEuNjQ4IDkwLjI4OCwwIDEyMy41NTIsLTg4LjE3NiAxMjMuNTUyLC0xNTEuNTM2IG0gLTc3LjYxNiwxMC41NiBjIDAsMzguNTQ0IC0xMC41Niw4OC4xNzYgLTU4LjA4LDg4LjE3NiAtMzMuNzkyLDAgLTQ1LjQwOCwtMTcuNDI0IC00NS40MDgsLTM2Ljk2IHYgLTkyLjQgYyAwLC0xNi4zNjggMS41ODQsLTI0LjI4OCAxNC4yNTYsLTM2LjQzMiA3LjkyLC03LjkyIDE5LjUzNiwtMTQuMjU2IDM0LjMyLC0xNC4yNTYgNDYuOTkyLDAgNTQuOTEyLDUzLjg1NiA1NC45MTIsOTEuODcyIi8+Cjwvc3ZnPg==);
}

.tram.ligne4{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0ZCQzUyNSIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggaWQ9InBhdGgyNzUwIiBmaWxsPSIjRkNDMzIyIiBkPSJtIDUwNC4wNjI5NCw3NjMuNTYwMjggMCwtMTA1LjYzMTY1IC0yMTQuODQzNjUsMCAwLC04OC4wODYgMjI3LjczNDMsLTMzMy4zNjU2NCA4NC41MDUzNSwwIDAsMzMzLjAwNzY0IDY1LjE2OSwwIDAsODguNDQ0IC02NS4xNjksMCAwLDEwNS42MzE2NSAtOTcuMzk2LDAgeiBtIDAsLTE5NC4wNzU2NSAwLC0xNzkuMzk0MzUgLTEyMC42NzA2NSwxNzkuMzk0MzUgMTIwLjY3MDY1LDAgeiIvPgo8L3N2Zz4=);
}

.tram.ligne5{
  background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTAwMHB4IiBoZWlnaHQ9IjEwMDBweCIgdmlld0JveD0iMCAwIDEwMDAgMTAwMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAwMCAxMDAwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzY2MkM5MSIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz48cGF0aCBmaWxsPSIjNjYyQzkxIiBkPSJNNjc5LjcxIDU5Mi43NWMwLTc5LjQ4Ni01OC40Mi0xNTkuNjgtMjAzLjI3LTE2Ny4yNWwtMTUuMTMzLTAuNzEybDcuNDE4LTEwMS4zNTFoMTkwLjc4IHYtODcuOTEzaC0yNzguNTJsLTIxLjAzNiAyNzUuNDlsODIuNTQyIDAuNzEyYzk3LjYxMyAxIDEyMyA1My4zIDEyMyA5MS42NWMwIDYyLjE2LTUxLjYyNyA4NS42MjktOTIuODY2IDg1LjYgYy00NS4xODggMC03NS4wMzctMTYuNjE1LTEwMC42MS0zMy45MTJsLTM4Ljg5NyA4Mi42OWM0MS4wOTMgMjMuMiA4OS4zIDM4LjMgMTQ1LjUgMzguMyBjMTIwLjc3MS0wLjA0IDIwMS4xMi04Mi4wOCAyMDEuMTItMTgzLjM3Ii8+PC9zdmc+);
}

.tram.ligne6{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0VENTgzOSIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggaWQ9InBhdGgyODIyIiBmaWxsPSIjRUQ1ODM5IiBkPSJtIDY3OS4zNzI2LDU4OC4zNzE3NSBjIDAsLTk1LjUyOTc1IC02Ny44MTYyNSwtMTUxLjAyODggLTE1MS4xMDA4NSwtMTUxLjAyODggLTUzLjgwNjQsMCAtODYuNDUzOSwxOS40ODQxIC0xMDMuNjg3MSwzNC42ODI0IDYuNDY0NywtMTAyLjQyNjYgNTkuMDgyNiwtMTUzLjc2NTkgMTI5LjI5Mzc1LC0xNTMuNzY1OSAyOC42MzE5NSwwIDU0Ljc5NjgsNi40NjQ3IDY4LjMwMjQsMTIuMzg5MTYgbCAxNi4wNDQ2NSwtODYuNjUyIGMgLTIwLjg4ODY1LC01LjIwNDIgLTQ3LjA1MzU1LC04LjU4OTY1IC03NS44Mjk1NSwtOC41ODk2NSAtMTYwLjIzMDYsMCAtMjQxLjc2ODUsMTIxLjA2NDM5IC0yNDEuNzY4NSwyOTguMDQxOTQgMCwxMzQuOTg0MDkgNDguOTYyMzUsMjMxLjE0NDE1IDE4Ni4xOTc0NSwyMzEuMTQ0MTUgQyA2MTEuNTc0NCw3NjQuNTc4MDUgNjc5LjM3MjYsNjkwLjAwNiA2NzkuMzcyNiw1ODguMzcxNzUgTSA1NzcuNTk0Myw1OTkuMTk0MiBjIDAsNDMuOTAyMjkgLTI1LjI0NjU1LDg1LjA0OTQ1IC03NC40MjUsODUuMDQ5NDUgLTUwLjU4MywwIC03Ny44NjQ0LC00Ni45MDk1NSAtNzcuODY0NCwtOTUuMzEzNjUgMCwtMTUuMDU0MyAwLC0zNC42MTA0IDUuNzYyNSwtNDMuMjU0IDEwLjA2NjA1LC0xNS45NzI2NSAzNS4zODQ2NSwtMjguMDczNyA2Ni40MTE2LC0yOC4wNzM3IDQ5LjAxNjM1LDAgODAuMTE1MywzMy44MzYxIDgwLjExNTMsODEuNTkxOSB6IiAvPgo8L3N2Zz4=);
}

.tram.ligne7{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Y2lyY2xlIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0I5OEI1OSIgc3Ryb2tlLXdpZHRoPSI3MCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBjeD0iNTAwIiBjeT0iNTAwIiByPSI0NjUiLz4KPHBhdGggaWQ9InBhdGgyODIyIiBmaWxsPSIjQjk4QjU5IiBkPSJtIDY4NC41MDI0OSwzMjIuMDg1MjYgdiAtODUuODkxOSBIIDMxNS40OTc1MSB2IDg4LjE0Njc1IGggMjU2LjE2NTk1IGwgLTEyOC4zOTk4LDIzOS4wNTg0NCBjIC00Ni4zNjU1LDg2LjExNTQ1IC02NS4wMDEyLDEzMC41OTg4NSAtNjUuMDAxMiwyMDAuNDA4MDkgaCAxMjAuMzMwNTUgYyAtMC4wMiwtODIuOTg0NjkgNzAuMDE0MjUsLTI0MC41ODY1OSAxODUuOTA5NDgsLTQ0MS43MjEzOCIvPgo8L3N2Zz4=);
}

.tram.ligne8{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxjaXJjbGUgZmlsbD0iI0ZGRkZGRiIgc3Ryb2tlPSIjQjFBMjQ1IiBzdHJva2Utd2lkdGg9IjcwIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIGN4PSI1MDAiIGN5PSI1MDAiIHI9IjQ2NSIvPjxwYXRoIGlkPSJwYXRoMjgyMiIgZmlsbD0iI0IxQTI0NSIgZD0ibSA2NzcuODIwOTYsNjA3LjQ5MDU5IGMgMCwtNjYuMjUwODQgLTQwLjY2OTcyLC0xMDYuNDAzOTQgLTg3LjEyOTAyLC0xMjguMzE1MjkgNDcuMTM2MiwtMjguNzM0MyA3MS41NDE2NSwtNjUuMTI4NjUgNzEuNTQxNjUsLTExMi4xNzU4NSAwLC04Ni41NzY4NCAtNzMuNjI1OTUsLTEzMC4yMjE0OSAtMTYyLjE4MDE1LC0xMzAuMjIxNDkgLTg2LjQ2OTk2LDAgLTE2Mi4xNDQ1NSw1Ny45ODUwOSAtMTYyLjE0NDU1LDE0MS40ODAwNCAwLDUyLjEyNDMgMjcuMTY2NjUsODIuODAwMiA3MC42MzMyLDEwOS45NDkwNSAtNDguNTQzNiwyNC45NzU0NSAtODYuMzYzMDYsNjQuNDMzOCAtODYuMzYzMDYsMTMxLjQ1MDY5IDAsNzYuNDc2MjEgNjMuNDU0MDYsMTQzLjU2NDMgMTc1LjYyOTgxLDE0My41NjQzIDEwMy41NzE1NSwwIDE4MC4wMTIxMywtNTkuOTA5MDUgMTgwLjAxMjEzLC0xNTUuNzMxNDUgTSA1NjUuNzUyMDgsMzczLjMyMzUgYyAwLDMxLjUzMSAtMjguNTczOSw2MC42MDM3NSAtNTUuMDEwMTUsNzIuODU5OTUgLTMyLjA4MzM0LC0xMy41NzQ0NSAtNzMuNTU0NywtMzUuNzcwOSAtNzMuNTU0NywtNzcuMDk5NzUgMCwtMzQuOTMzNiAyNC45Mzk4NSwtNTkuMjg1NTUgNjQuMjU1NjUsLTU5LjI4NTU1IDQxLjQwMDE1LDAgNjQuMzA5MiwyOC40NDkyNiA2NC4zMDkyLDYzLjUyNTM1IHogbSA3LjgyMDQsMjQyLjA5NDQ1IGMgMCw0MC4wMTA1OSAtMjYuNDM2Myw3My42MjU5NSAtNzQuMzIwNyw3My42MjU5NSAtNDguNjE0OCwwIC03NS42NzQ1NSwtMzkuNDU4MzUgLTc1LjY3NDU1LC04MC43ODcyIDAsLTM5LjE3MzQ1IDMyLjg0OTMsLTcyLjAyMjcgNjUuNjk4NiwtODQuOTczNiA0Mi44MjUyNSwyMS40MzA0NSA4NC4yOTY2NSw0Ni40MjM3IDg0LjI5NjY1LDkyLjEzNDg1IHoiLz48L3N2Zz4=);
}

.tram.ligne9{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxjaXJjbGUgZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjMUNBRkM5IiBzdHJva2Utd2lkdGg9IjcwIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIGN4PSI1MDAiIGN5PSI1MDAiIHI9IjQ2NSIvPjxwYXRoIGZpbGw9IiMxQ0FGQzkiIGQ9Ik0zMTMuMDc1IDQwNy43MzNjMCA5OS4zNzcgNzAuNjU0IDE1Ny4yNzQgMTU3LjE5OSAxNTcuMjc0IDU1Ljk4MyAwIDkwLjU3OC0yMC4zNzUgMTA4LjUzMi0zNS45MDktNi43MzUgMTA2LjU2My02Mi4yODcgMTYwLjA1LTEzNC45ODYgMTYwLjA1LTI5LjgzIDAtNTcuMDE1LTYuNzM1LTcxLjUxNy0xMi43NThsLTE2LjU2NiA5MC4yNzhjMjEuOTg4IDUuMTIyIDQ5LjAyMyA5LjA4IDc5LjE1MyA5LjA4IDE2Ny4yMzYgMCAyNTIuMDM2LTEyNi40ODcgMjUyLjAzNi0zMTAuODcgMC0xNDAuNTU4LTUxLjAxMS0yNDAuNjI5LTE5NC4zNDUtMjQwLjYyOS0xMDguODcgMC0xNzkuNTA1IDc3LjUwMi0xNzkuNTA1IDE4My40ODNtMTA1Ljk2Mi0xMS4xNDRjMC00Ni4wMjEgMjYuNDUzLTg4LjgxNSA3Ny4yMzktODguODE1IDUyLjU1IDAgODEuNzc5IDQ4Ljk0NyA4MS43NzkgOTkuMjI3IDAgMTUuOTg0IDAgMzYuMjA5LTYuMDA0IDQ1LjEzOS0xMC40NjkgMTYuNjQxLTQzLjUyNiAzNS41MzMtNzUuNzc2IDM1LjUzMy01MC45MzYgMC03Ny4yMzktNDEuNDA2LTc3LjIzOS05MS4wODV6Ii8+PC9zdmc+);
}

.tram.ligne10{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxjaXJjbGUgZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjQzREODg3IiBzdHJva2Utd2lkdGg9IjcwIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIGN4PSI1MDAiIGN5PSI1MDAiIHI9IjQ2NSIvPjxwYXRoIGZpbGw9IiNDNEQ4ODciIGQ9Ik00MDYuODg3IDc2Ny44NjN2LTUzNS4wNGgtODguMzYyYy0yMy4wMTMgMTguOTAzLTc3LjU4MSA1NC41NzItMTM2LjM0IDg0LjI0OWwtMzAuOTgyIDE1LjA2NSAzNC40OTIgODEuOTYyIDI2LjY0OC0xNC41NTVjMTguNTM2LTkuODg2IDY5LjU0LTM3Ljk1NyA4Ni44MjItNTIuMjA5djQyMC41MjdoMTA3LjcyMm00NDEuMjkzLTI2NS45MDRjMC0xMjMuNjA1LTMwLjA4Ny0yNzkuNzAzLTE4My4wODItMjc5LjcwMy0xNTIuOTI0IDAtMTg2LjA5MSAxNTYuMDk4LTE4Ni4wOTEgMjc5LjcwMyAwIDEyMy42MDQgMzAuMjMgMjc5LjcwMyAxODMuMTU0IDI3OS43MDMgMTUzLjEzOSAwIDE4Ni4wMTktMTU2LjA5OCAxODYuMDE5LTI3OS43MDN6bS0xMDkuNzY0IDBjMCA1My4xNTQtMi43OTQgMTkwLjE0Mi03NC43ODcgMTkwLjE0Mi03MS42MzYgMC03NS40MTQtMTM2LjIzMS03NS40MTQtMTkwLjE0MiAwLTU0LjcyMyAyLjE2Ny0xODkuNDYxIDc1LjQxNC0xODkuNDYxIDcyLjU0OSAwIDc0Ljc4NyAxMzMuMzM5IDc0Ljc4NyAxODkuNDYxeiIvPjwvc3ZnPg==);
}

.transilien.symbole{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzQiIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzAwMDA5OSIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4M0M5MDQuMzM4LDM1LDk2NSw5NS42NzMsOTY1LDE3MC41MDkKCXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggZmlsbD0iIzAwMDA5OSIgZD0iTTY4NS4zNSw3NDQuMzljLTI3LjMwMi00MC4zMDQtNDkuNjQ2LTc1LjU5Ni00OS42NDYtNzguNDI3YzAtMy4yNjYsNC42MS02LjY2NiwxMi42MTUtOS4zMQoJYzE2LjA1NS01LjMsMzguMzk3LTI0Ljg5Niw0Ny4yNDctNDEuNDI1YzYuODQzLTEyLjc5OSw2Ljg1My0xMi45OTMsNi44NTMtMTk1Ljg4MmMwLTE4Mi44ODctMC4wMS0xODMuMDgtNi44NTMtMTk1Ljg4CgljLTguODk4LTE2LjYzMS0zMS40MzItMzYuMzI0LTQ2Ljg1NC00MC45NDRjLTguNTQ5LTIuNTYyLTUzLjcxOS0zLjY0OS0xNTEuNjItMy42NDloLTEzOS40NWwtMTYuMDUyLDcuOTk5CgljLTE4LjE4OCw5LjA2NS0yOS43NDcsMjEuMzQ5LTM5LjE4NSw0MS42NDljLTYuMzQ2LDEzLjY1MS02LjQ5MSwxNy44OTMtNi40OTEsMTkwLjgzMnYxNzYuODU4bDguNzIyLDE3Ljc2NAoJYzEwLjAwMiwyMC4zNjUsMjguMjg4LDM3LjQ2Niw0Ni43NzUsNDMuNzM3YzguMDE5LDIuNzE3LDEyLjYyNCw2LjEyNCwxMi4zODMsOS4xNDhjLTAuMjEsMi42NDUtMjEuOTM2LDM2LjcwNy00OC4yNzQsNzUuNjg2CgljLTI2LjM0MiwzOC45NzktNDguOTQxLDcyLjYxNy01MC4yMjEsNzQuNzVjLTEuNzk1LDIuOTg1LDMuOTU0LDMuODY5LDI1LjAwMiwzLjgzOGwyNy4zMzMtMC4wMzlsMzUuNjA2LTUyLjgzCgljMjEuOTQtMzIuNTUsMzguMDE2LTUzLjQwNCw0MS44ODgtNTQuMzQ3YzMuNDU4LTAuODQsNTMuMDM4LTEuMTM2LDExMC4xOC0wLjY2MmwxMDMuODkyLDAuODY4bDM2LjA1OCw1Mi43NTNsMzYuMDU4LDUyLjc0MgoJbDI2LjgzOCwwLjkwM2MxNC43NTcsMC40ODUsMjYuODMzLDAuMDQ3LDI2LjgzMy0wLjk4MmMwLjAxLTEuMDQtMjIuMzMtMzQuODctNDkuNjQzLTc1LjE2bC0wLjAxLDAuMDFMNjg1LjM1LDc0NC4zOXogTTQxNi45LDUyOC45OAoJYy00LjY1Miw1LjUyMi0xMi40MTIsMTIuMDk2LTE3LjI0NSwxNC41OTVjLTM1LjM5NywxOC4zMDQtNzQuNDQxLTI3LjIxOC01MS45OTQtNjAuNjE4YzE1Ljk4MS0yMy43NzYsNDIuOTQ2LTI3LjE5NCw2My44LTguMDgyCgljOS41NTEsOC43NTQsMTEuMjgyLDEyLjUxLDEyLjQ5MywyNy4xMDRjMS4yNCwxNS4wMTMsMC40MzgsMTguMDkzLTcuMDYyLDI3LjAwMUw0MTYuOSw1MjguOTh6IE00OTkuMTIsNDAyLjI4CgljLTEzOS45NCwwLjAwMy0xMzguMjEsMC4yOTEtMTUxLjM3LTI1LjA1Yy02LjU5LTEyLjY4OS03LjA2MS0xNi45NTQtNi4yMDctNTYuMTg0YzEuMDAzLTQ2LjEyOCwyLjc4NC01MS4zOTUsMjIuMjg0LTY1Ljk2MgoJYzguMjYzLTYuMTczLDEyLjg4Ny02LjQyOSwxMzEuNjgtNy4yNzFjMTIyLjkzMS0wLjg3NCwxMjMuMTQtMC44NjQsMTM2Ljg1Miw2LjIwNGMyMS44NTYsMTEuMjY4LDI1LjA1MywyMC41MjUsMjUuMDUzLDcyLjUwOQoJYzAsNDAuMzgtMC41NDUsNDQuNjM1LTcuMDQsNTQuMzUzYy0zLjg3Niw1Ljc5OS0xMS45MDIsMTIuOTg0LTE3Ljg0MywxNS45NjljLTkuNzIzLDQuODgtMjIuODUzLDUuNDItMTMzLjQsNS40MzNMNDk5LjEyLDQwMi4yOHoKCSBNNTk5Ljc2LDU0My43Yy0yOC4zNTQtMTIuMzQ1LTMzLjk5Ny01MS40NDctMTAuMzAxLTcxLjM4NmMyMS4zNjUtMTcuOTc5LDUyLjE4OS0xMC44OTUsNjQuNjU3LDE0Ljg2NwoJYzEwLjUwMSwyMS42ODQsMi4yNDQsNDUuNTI1LTE5LjI5LDU1Ljc0NWMtMTMuMDMsNi4yLTIyLjE4Myw2LjQtMzUuMDcsMC43OEw1OTkuNzYsNTQzLjd6Ii8+Cjwvc3ZnPg==);
}

.transilien.ligneH{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzRfMV8iIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzlGNTY1OSIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4MwoJQzkwNC4zMzgsMzUsOTY1LDk1LjY3Myw5NjUsMTcwLjUwOXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggaWQ9InRleHQyNjI0IiBmaWxsPSIjOUY1NjU5IiBkPSJNMzEwLjUyLDI3MC4zdjQ1OS40SDQxNC44VjUzNy40OWgxNzEuMDh2MTkyLjIyaDEwMy42MVYyNzAuM0g1ODUuODh2MTc2LjU0SDQxNC44VjI3MC4zCglIMzEwLjUyeiIvPgo8L3N2Zz4=);
}

.transilien.ligneJ{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzRfMV8iIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0M4RDgyQyIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4MwoJQzkwNC4zMzgsMzUsOTY1LDk1LjY3Myw5NjUsMTcwLjUwOXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggaWQ9InRleHQyODM1IiBmaWxsPSIjQzdENTJBIiBkPSJNNTE2LjAyLDU1NC45NGMtMC4yMjksMzUuMTA3LTYuNTk0LDU5LjI4NC0xOS4wOTEsNzIuNTAxCgljLTEyLjQ5NiwxMy4yMTYtMjkuNzU4LDE5LjQ5OS01MS43OTUsMTguODIyYy0xMC4yNjktMC4wMzYtMTkuODk2LTAuNzk5LTI4Ljg4LTIuMjljLTktMS40ODgtMTcuMDk0LTMuNDYxLTI0LjI4Mi01Ljg4NAoJbC0xMS41OTIsODMuODM1YzEwLjYwNiwzLjQzNywyMi43OTIsNi4xMDUsMzYuNTQ5LDguMDE2YzEzLjc1NywxLjg5OCwyNi44MDUsMi44NjUsMzkuMTA0LDIuODk0CgljNTAuOTUyLDAuODI1LDkwLjgyOS0xMi4yMzksMTE5LjYyLTM5LjE5MmMyOC44MDktMjYuOTQzLDQzLjQ1Mi03Mi43Myw0My45NjctMTM3LjM0di0yOTAuMzZINTE2LjAxdjI4OS4wMXYtMC4wMUw1MTYuMDIsNTU0Ljk0eiIKCS8+Cjwvc3ZnPg==);
}

.transilien.ligneK{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzRfMV8iIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0MyQTcwNSIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4MwoJQzkwNC4zMzgsMzUsOTY1LDk1LjY3Myw5NjUsMTcwLjUwOXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggaWQ9InRleHQzMDc2IiBmaWxsPSIjQzNBNTAwIiBkPSJNMzExLjg4LDcyOS43SDQxNC44VjU3OS43NWwzOS41My00OC4zOTZMNTY2LjgsNzI5LjY5NGgxMjEuMzJsLTE2MC4xNy0yNjMuNzhsMTUyLTE5NS42MgoJSDU1Mi40OUw0NDguMiw0MjIuOTg0Yy01LjE0Nyw4LjE1MS0xMC4zNjYsMTYuMzg4LTE1LjY4MywyNC43MDljLTUuMzE1LDguMzI0LTEwLjUzNCwxNi44OTctMTUuNjgzLDI1LjczMmgtMi4wNDJ2LTIwMy4xMmgtMTAyLjkyCgl2NDU5LjRMMzExLjg4LDcyOS43eiIvPgo8L3N2Zz4=);
}

.transilien.ligneL{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzRfMV8iIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzc5N0NCQyIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4MwoJQzkwNC4zMzgsMzUsOTY1LDk1LjY3Myw5NjUsMTcwLjUwOXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggaWQ9InRleHQzMDc2IiBmaWxsPSIjNzk3RkJDIiBkPSJNMzU2LjUyLDcyOS43aDI4Ni45NXYtODcuMjQySDQ2MC44MXYtMzcyLjE2SDM1Ni41MnY0NTkuNFY3MjkuN3oiLz4KPC9zdmc+);
}

.transilien.ligneN{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzQiIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iIzQzQjhBQyIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4M0M5MDQuMzM4LDM1LDk2NSw5NS42NzMsOTY1LDE3MC41MDkKCXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggaWQ9InRleHQzMDc2XzFfIiBmaWxsPSIjM0NCNkFDIiBkPSJNNDA1LjI2LDcyOS43VjU5MS4zM2MwLTM3LjM1NS0wLjM0Ny03Mi41NDUtMS4wMjEtMTA1LjU2MQoJYy0wLjY4NS0zMy4wMTYtMS43MDQtNjQuNjI1LTMuMDcxLTk0LjgzbDIuMDQxLTAuNjhjMTEuNDY3LDI3LjI1MSwyNC4xNTgsNTQuODg1LDM4LjA5Myw4Mi44OTgKCWMxMy45MjUsMjguMDE5LDI3LjgxNCw1NC40NTgsNDEuNjYsNzkuMzI3bDk4LjE1LDE3Ny4yMWgxMDkuMDZ2LTQ1OS40aC05NS40MjZ2MTMzLjU5Yy0wLjA2MiwzNC42MzYsMC41NjgsNjcuNzc1LDEuODczLDk5LjQzCgljMS4zMTIsMzEuNjUxLDMuNjM5LDYyLjU4Myw2Ljk5Myw5Mi43NzRoLTIuMDUxYy0xMC4zNjUtMjYuMTk4LTIyLjAxMS01Mi44NTgtMzQuOTMzLTgwCgljLTEyLjkyMy0yNy4xMzEtMjYuMjcxLTUyLjk0OS00MC4wNDUtNzcuNDQ0bC05NS40MTctMTY4LjM1MWgtMTIxLjMzdjQ1OS40aDk1LjQzTDQwNS4yNiw3MjkuN3oiLz4KPC9zdmc+);
}

.transilien.ligneP{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzQiIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0Y2QjExQiIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4M0M5MDQuMzM4LDM1LDk2NSw5NS42NzMsOTY1LDE3MC41MDkKCXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggaWQ9InRleHQzMDc2XzFfIiBmaWxsPSIjRjdCMDE4IiBkPSJNMzM1LjA1LDczMS40SDQzNy45OFY1NjcuMTNjNC43OTcsMC42OTIsMTAuMTkyLDEuMTk4LDE2LjE4OCwxLjU0NAoJYzUuOTkxLDAuMzM4LDEyLjQwOCwwLjUwNiwxOS4yNTUsMC41MDZjMzAuODQxLDAuMDcxLDU4Ljk1OC0zLjgxNSw4NC4zNDEtMTEuNjdjMjUuNC03Ljg1NCw0Ny4wMzgtMjAuMDk0LDY0LjkzMi0zNi43MjcKCWMxMy42ODYtMTMuMDY0LDI0LjE0MS0yOC44NTQsMzEuMzQ3LTQ3LjM2NmM3LjIyNS0xOC41MTgsMTAuODU0LTM5LjA3OCwxMC45MTctNjEuNjg3Yy0wLjIxNC0yMi42NjMtNC43MzktNDMuMTExLTEzLjU1My02MS4zNDYKCWMtOC44MTMtMTguMjI5LTIwLjY2MS0zMy4yMjktMzUuNTI3LTQ0Ljk4NGMtMTUuMjY1LTEyLjI3LTM0LjQ4OS0yMS40NjktNTcuNjg4LTI3LjYwNmMtMjMuMTgzLTYuMTMzLTUwLjc1OC05LjE5OS04Mi43MjctOS4xOTkKCWMtMzEuNTc4LDAuMDUzLTU4Ljg5OSwwLjk2My04MS45NjIsMi43MjVjLTIzLjA1OCwxLjc2Mi00Mi41NDMsNC4wMzQtNTguNDQ4LDYuODE2djQ1My4yNkwzMzUuMDUsNzMxLjR6IE00MzcuOTgsMzUxLjA3CgljMy43NDQtMS4wNjUsOS4xOTgtMi4wMDEsMTYuMzU2LTIuODEzYzcuMTU4LTAuODA4LDE2LjAxNS0xLjIzMywyNi41ODEtMS4yNzdjMjYuMDQ0LDAuMTczLDQ2LjAzMSw2LjEzNyw1OS45ODIsMTcuODkzCgljMTMuOTQyLDExLjc2LDIwLjk4LDI4LjI5LDIxLjEyMyw0OS41OWMtMC4yNjcsMjMuNjk3LTguMjQ1LDQyLjA3My0yMy45MzcsNTUuMTI0Yy0xNS42OSwxMy4wNDYtMzcuNDcyLDE5LjY2Ny02NS4zNDksMTkuODQ5CgljLTcuNDU1LDAuMDE0LTE0LjAxNS0wLjE4Mi0xOS42ODItMC41OTVzLTEwLjY5My0xLjEyMy0xNS4wNzktMi4xM1YzNTEuMDdINDM3Ljk4eiIvPgo8L3N2Zz4=);
}

.transilien.ligneR{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzRfMV8iIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0VBQkJENyIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4MwoJQzkwNC4zMzgsMzUsOTY1LDk1LjY3Myw5NjUsMTcwLjUwOXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggaWQ9InRleHQzMDc2IiBmaWxsPSIjRUJCREQ3IiBkPSJNMzM1LjA1LDczMS40SDQzNy45OFY1NTAuNzhoMzEuMzUyYzIwLjgxNi0wLjIxNCwzNi45NDYsNC45NzksNDguMzk2LDE1LjU4MwoJYzExLjQzOCwxMC42MTYsMjAuMDc1LDI5Ljk0MywyNS44OTYsNTguMDI1YzYuODI2LDI4LjM1NiwxMi45MzIsNTEuNTY1LDE4LjMxOCw2OS42MDdjNS4zODcsMTguMDQzLDkuOTQ3LDMwLjUxMywxMy43MTQsMzcuNDAxCgloMTA2LjM0Yy00LjU0My05LjkxMy0xMC4xMTYtMjcuMjM4LTE2LjcwMi01MS45NjljLTYuNTg0LTI0Ljc0MS0xMy41MjUtNTAuNTg3LTIwLjc4NS03Ny41MjgKCWMtNS42MjctMjEuMjY5LTEzLjI5NS0zOS4yMzktMjMuMDA2LTUzLjkzOGMtOS43MTctMTQuNjk2LTIyLjQ5OC0yNS4zNDctMzguMzM5LTMxLjk0OXYtMi4wNTIKCWMyMC42Ny03LjMxMiwzOS4xMjktMjAuNjI2LDU1LjM4LTM5Ljk1NWMxNi4yNDItMTkuMzMsMjQuODE2LTQzLjcxOSwyNS43MjItNzMuMTg1Yy0wLjA1NC0yMS4xMzItMy42OTItMzkuNzA4LTEwLjg5Ny01NS43MjUKCWMtNy4yMTUtMTYuMDItMTcuNjYyLTI5LjQ3OS0zMS4zNTUtNDAuMzg3Yy0xNi4yNS0xMi44MzMtMzYuNTc0LTIyLjA5NS02MS0yNy43NzRjLTI0LjQyNC01LjY4MS01My42MjMtOC40NjMtODcuNTg5LTguMzQ4CgljLTI3LjgzMSwwLjA1NC01My42MTgsMC45NjMtNzcuMzY2LDIuNzI1Yy0yMy43MzksMS43NjItNDQuMDcyLDQuMDM0LTYxLDYuODE2VjczMS4zOUwzMzUuMDUsNzMxLjR6IE00MzcuOTgsMzQ5LjAyCgljMy42NTgtMC43MzUsOS4yOC0xLjQ3OCwxNi44NjQtMi4yMTRjNy41ODUtMC43MzksMTcuNjM4LTEuMTM2LDMwLjE2My0xLjE5M2MyNC4wNTgsMC4zMjksNDIuNzM5LDUuODEsNTYuMDYyLDE2LjQ0NQoJYzEzLjMyLDEwLjYzNCwyMC4wODUsMjYuNTEyLDIwLjI3Nyw0Ny42MjNjLTAuMTkyLDIwLjM1My03LjQ3MiwzNi4zOTgtMjEuODEyLDQ4LjE0MmMtMTQuMzQzLDExLjc0Mi0zNC41NjIsMTcuNzMtNjAuNjYzLDE3Ljk3OQoJSDQzNy45OHYtMTI2Ljc5VjM0OS4wMnoiLz4KPC9zdmc+);
}

.transilien.ligneU{
	background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsaWduZTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMDAwcHgiIGhlaWdodD0iMTAwMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBpZD0icmVjdDU2NzQiIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0VBMDA3NyIgc3Ryb2tlLXdpZHRoPSI3MCIgZD0iTTE3MC41MDgsMzVoNjU4Ljk4M0M5MDQuMzM4LDM1LDk2NSw5NS42NzMsOTY1LDE3MC41MDkKCXY2NTguOTgyQzk2NSw5MDQuMzMyLDkwNC4zMzMsOTY1LDgyOS40OTEsOTY1SDE3MC41MDhDOTUuNjY3LDk2NSwzNSw5MDQuMzI2LDM1LDgyOS40OTFWMTcwLjUwOQoJQzM0Ljg5NSw5NS42NjgsOTUuNTE4LDM1LDE3MC40MjUsMzVIMTcwLjUwOHoiLz4KPHBhdGggaWQ9InRleHQyNjUxIiBmaWxsPSIjRUQwNjc3IiBkPSJNMzEyLjIyLDI2Ni4yNnYyNTYuMjhjMC40MjcsNzIuODkyLDE2LjYxNCwxMjYuMzEsNDguNTY1LDE2MC4yNzEKCWMzMS45NSwzMy45NTcsNzcuMTA2LDUwLjcyOSwxMzUuNDcsNTAuMzVjNjAuNDU3LDAuMTQyLDEwNy4zNy0xNy4wMTQsMTQwLjc0LTUxLjQ1OWMzMy4zNzEtMzQuNDQ0LDUwLjMwNS04Ny4wNDcsNTAuNzg0LTE1Ny43OQoJdi0yNTcuNjVINTg0LjE3OXYyNjQuNDU5Yy0wLjEwNSw0MC40NTMtNy4zODQsNzAuNDcxLTIxLjgwNiw5MC4wNThjLTE0LjQyMywxOS41ODctMzUuMzMyLDI5LjMyMy02Mi43MDMsMjkuMjI2CgljLTI2LjczMS0wLjAzNS00Ny4yMzQtMTAuMDI5LTYxLjUyMi0yOS45OThjLTE0LjI4LTE5Ljk2LTIxLjQ5NS00OS43MTktMjEuNjM5LTg5LjI4NHYtMjY0LjQ3aC0xMDQuMjhMMzEyLjIyLDI2Ni4yNnoiLz4KPC9zdmc+);
}

/* Style-1 + Style-2 */

.checkbox-style,
.radio-style {
	opacity: 0;
	position: absolute;
}

.checkbox-style, .radio-style,
.checkbox-style-1-label, .radio-style-1-label,
.checkbox-style-2-label, .radio-style-2-label,
.checkbox-style-3-label, .radio-style-3-label {
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
	cursor: pointer;
}

.checkbox-style-1-label, .radio-style-1-label,
.checkbox-style-2-label, .radio-style-2-label,
.checkbox-style-3-label, .radio-style-3-label { position: relative; }

.checkbox-style-1-label:before, .radio-style-1-label:before,
.checkbox-style-2-label:before, .radio-style-2-label:before,
.checkbox-style-3-label:before, .radio-style-3-label:before {
	content: '';
	background: #FFF;
	border: 2px solid #DDD;
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	padding: 4px;
	margin-right: 10px;
	line-height: 1;
	text-align: center;
}

.radio-style-1-label:before,
.radio-style-2-label:before,
.radio-style-3-label:before { border-radius: 50%; }

.checkbox-style:checked + .checkbox-style-1-label:before { background: #1ABC9C; }
.radio-style:checked + .radio-style-1-label:before { background: #CCC; }

/* Checkbox-small + Radio-small */
.checkbox-style-1-label.checkbox-small:before,
.radio-style-1-label.radio-small:before,
.checkbox-style-2-label.checkbox-small:before,
.radio-style-2-label.radio-small:before,
.checkbox-style-3-label.checkbox-small:before,
.radio-style-3-label.radio-small:before {
	border: 2px solid #DDD;
	width: 16px;
	height: 16px;
	margin: 0 8px 1px 0;
}

/* Style-2 */
.checkbox-style:checked + .checkbox-style-2-label:before {
	background: #1ABC9C;
	box-shadow: inset 0px 0px 0px 4px #fff;
}

.radio-style:checked + .radio-style-2-label:before {
	background: #ccc;
	box-shadow: inset 0px 0px 0px 4px #fff;
}

.checkbox-style:checked + .checkbox-style-2-label.checkbox-small:before { box-shadow: inset 0px 0px 0px 2px #fff; }
.radio-style:checked + .radio-style-2-label.radio-small:before { box-shadow: inset 0px 0px 0px 2px #fff; }

/* style-3 */
.checkbox-style:checked + .checkbox-style-3-label:before,
.radio-style:checked + .radio-style-3-label:before {
	content: "\e116";
	font-family: 'lined-icons';
	background: #1ABC9C;
	color: #FFF;
}
.radio-style:checked + .radio-style-3-label:before {
	color: #BBB;
	background-color: transparent;
}

/* style-3 - Small */
.checkbox-style + .checkbox-style-3-label.checkbox-small:before,
.radio-style + .radio-style-3-label.radio-small:before {
	border: 1px solid #BBB;
	width: 16px;
	height: 16px;
	margin: 0 8px 1px 0;
	font-size: 7px;
	line-height: .8;
}
/* ----------------------------------------------------------------
	Responsive CSS
-----------------------------------------------------------------*/



@media (max-width: 1199px) {

	canvas {
		max-width: 100%;
		height: auto !important;
	}

	.promo h3 { font-size: 20px; }

	.promo > span,
	.promo > .container > span { font-size: 15px; }

	.promo-uppercase h3 { font-size: 19px; }

	.promo-uppercase > span,
	.promo-uppercase > .container > span { font-size: 14px; }

}


@media (min-width: 992px) and (max-width: 1199px) {

	#wrapper { width: 1000px; }

	#header.transparent-header.floating-header .container {
		width: 1030px;
		padding: 0 30px;
	}

	#header.transparent-header.floating-header.sticky-header .container {
		width: 970px;
		padding: 0 15px;
	}

	#primary-menu.sub-title ul > li > a {
		padding-left: 15px;
		padding-right: 15px;
	}

	#primary-menu ul li.mega-menu .mega-menu-content,
	.floating-header.sticky-header #primary-menu ul li.mega-menu .mega-menu-content { width: 940px; }

	.floating-header #primary-menu ul li.mega-menu .mega-menu-content { width: 1030px; }

	.ei-slider { height: 450px; }

	.postcontent { width: 690px; }
	.postcontent.bothsidebar { width: 440px; }
	.sidebar { width: 210px; }

	.sidebar .widget iframe { width: 210px !important; }

	.team.team-list .team-image { width: 200px; }

	.testi-image,
	.testi-image a,
	.testi-image img,
	.testi-image i {
		display: block;
		width: 36px;
		height: 36px;
	}

	.testi-image i {
		line-height: 36px;
		font-size: 20px;
	}

	/* ----------------------------------------------------------------
	Portfolio
	-----------------------------------------------------------------*/

	/*.portfolio-item { width: 226px; }

	.portfolio-item .portfolio-image,
	.portfolio-item .portfolio-image a,
	.portfolio-item .portfolio-image img {
		width: 226px;
		height: 170px;
	}*/

	/* Portfolio - No Margin
	-----------------------------------------------------------------*/

	.portfolio-nomargin .portfolio-item { width: 234px; }

	.portfolio-nomargin .portfolio-item .portfolio-image,
	.portfolio-nomargin .portfolio-item .portfolio-image a,
	.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 234px;
		height: 176px;
	}

	/* Portfolio - Sidebar
	-----------------------------------------------------------------*/

	.postcontent .portfolio-item { width: 163px; }

	.postcontent .portfolio-item .portfolio-image,
	.postcontent .portfolio-item .portfolio-image a,
	.postcontent .portfolio-item .portfolio-image img {
		width: 163px;
		height: 123px;
	}

	/* Portfolio - Sidebar - No Margin
	-----------------------------------------------------------------*/

	.postcontent .portfolio-nomargin .portfolio-item,
	.postcontent .portfolio-5.portfolio-nomargin .portfolio-item { width: 171px; }

	.postcontent .portfolio-nomargin .portfolio-item .portfolio-image,
	.postcontent .portfolio-nomargin .portfolio-item .portfolio-image a,
	.postcontent .portfolio-nomargin .portfolio-item .portfolio-image img,
	.postcontent .portfolio-5.portfolio-nomargin .portfolio-item .portfolio-image,
	.postcontent .portfolio-5.portfolio-nomargin .portfolio-item .portfolio-image a,
	.postcontent .portfolio-5.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 171px;
		height: 129px;
	}

	.bothsidebar .portfolio-item { width: 219px; }

	.bothsidebar .portfolio-item .portfolio-image,
	.bothsidebar .portfolio-item .portfolio-image a,
	.bothsidebar .portfolio-item .portfolio-image img {
		width: 219px;
		height: 164px;
	}

	/* Portfolio - Items - 3 Columns
	-----------------------------------------------------------------*/

	.portfolio-3 .portfolio-item { width: 303px; }

	.portfolio-3 .portfolio-item .portfolio-image,
	.portfolio-3 .portfolio-item .portfolio-image a,
	.portfolio-3 .portfolio-item .portfolio-image img {
		width: 303px;
		height: 227px;
	}

	/* Portfolio - Items - 3 Columns - No Margin
	-----------------------------------------------------------------*/

	.portfolio-3.portfolio-nomargin .portfolio-item { width: 312px; }

	.portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image,
	.portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image a,
	.portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 312px;
		height: 234px;
	}

	/* Portfolio - Sidebar - Items - 3 Columns
	-----------------------------------------------------------------*/

	.postcontent .portfolio-3 .portfolio-item { width: 219px; }

	.postcontent .portfolio-3 .portfolio-item .portfolio-image,
	.postcontent .portfolio-3 .portfolio-item .portfolio-image a,
	.postcontent .portfolio-3 .portfolio-item .portfolio-image img {
		width: 219px;
		height: 164px;
	}

	/* Portfolio - Sidebar - Items - 3 Columns - No Margin
	-----------------------------------------------------------------*/

	.postcontent .portfolio-3.portfolio-nomargin .portfolio-item { width: 229px; }

	.postcontent .portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image,
	.postcontent .portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image a,
	.postcontent .portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 229px;
		height: 172px;
	}

	/* Portfolio - Items - 2 Columns
	-----------------------------------------------------------------*/

	.portfolio-2 .portfolio-item { width: 460px; }

	.portfolio-2 .portfolio-item .portfolio-image,
	.portfolio-2 .portfolio-item .portfolio-image a,
	.portfolio-2 .portfolio-item .portfolio-image img {
		width: 460px;
		height: 343px;
	}

	/* Portfolio - Items - 2 Columns - No Margin
-----------------------------------------------------------------*/

	.portfolio-2.portfolio-nomargin .portfolio-item { width: 469px; }

	.portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image,
	.portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image a,
	.portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 469px;
		height: 352px;
	}

	/* Portfolio - Sidebar - Items - 2 Columns
	-----------------------------------------------------------------*/

	.postcontent .portfolio-2 .portfolio-item { width: 335px; }

	.postcontent .portfolio-2 .portfolio-item .portfolio-image,
	.postcontent .portfolio-2 .portfolio-item .portfolio-image a,
	.postcontent .portfolio-2 .portfolio-item .portfolio-image img {
		width: 335px;
		height: 251px;
	}

	/* Portfolio - Sidebar - Items - 2 Columns - No Margin
	-----------------------------------------------------------------*/

	.postcontent .portfolio-2.portfolio-nomargin .portfolio-item { width: 344px; }

	.postcontent .portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image,
	.postcontent .portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image a,
	.postcontent .portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 344px;
		height: 258px;
	}

	/* Portfolio - Both Sidebars - Items - 2 Columns
	-----------------------------------------------------------------*/

	.bothsidebar #portfolio.portfolio-3 { margin: 0 -20px -20px 0; }

	.bothsidebar .portfolio-2 .portfolio-item,
	.bothsidebar .portfolio-3 .portfolio-item {
		width: 210px;
		margin: 0 20px 20px 0;
	}

	.bothsidebar .portfolio-2 .portfolio-item .portfolio-image,
	.bothsidebar .portfolio-2 .portfolio-item .portfolio-image a,
	.bothsidebar .portfolio-2 .portfolio-item .portfolio-image img,
	.bothsidebar .portfolio-3 .portfolio-item .portfolio-image,
	.bothsidebar .portfolio-3 .portfolio-item .portfolio-image a,
	.bothsidebar .portfolio-3 .portfolio-item .portfolio-image img {
		width: 210px;
		height: 158px;
	}

	/* Portfolio - Both Sidebars - Items - 2 Columns - No Margin
	-----------------------------------------------------------------*/

	.bothsidebar .portfolio-2.portfolio-nomargin .portfolio-item,
	.bothsidebar .portfolio-3.portfolio-nomargin .portfolio-item { width: 219px; }

	.bothsidebar .portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image,
	.bothsidebar .portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image a,
	.bothsidebar .portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image img,
	.bothsidebar .portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image,
	.bothsidebar .portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image a,
	.bothsidebar .portfolio-3.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 219px;
		height: 164px;
	}

	/* Portfolio - Items - 5 Columns
	-----------------------------------------------------------------*/

	.portfolio-5 .portfolio-item { width: 180px; }

	.portfolio-5 .portfolio-item .portfolio-image,
	.portfolio-5 .portfolio-item .portfolio-image a,
	.portfolio-5 .portfolio-item .portfolio-image img {
		width: 180px;
		height: 135px;
	}

	/* Portfolio - Items - 5 Columns - No Margin
	-----------------------------------------------------------------*/

	.portfolio-5.portfolio-nomargin .portfolio-item { width: 187px; }

	.portfolio-5.portfolio-nomargin .portfolio-item .portfolio-image,
	.portfolio-5.portfolio-nomargin .portfolio-item .portfolio-image a,
	.portfolio-5.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 187px;
		height: 140px;
	}

	/* Portfolio - Items - 6 Columns
	-----------------------------------------------------------------*/

	.portfolio-6 .portfolio-item { width: 151px; }

	.portfolio-6 .portfolio-item .portfolio-image,
	.portfolio-6 .portfolio-item .portfolio-image a,
	.portfolio-6 .portfolio-item .portfolio-image img {
		width: 151px;
		height: 113px;
	}

	/* Portfolio - Items - 6 Columns - No Margin
	-----------------------------------------------------------------*/

	.portfolio-6.portfolio-nomargin .portfolio-item { width: 155px; }

	.portfolio-6.portfolio-nomargin .portfolio-item .portfolio-image,
	.portfolio-6.portfolio-nomargin .portfolio-item .portfolio-image a,
	.portfolio-6.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 155px;
		height: 116px;
	}

	/* Portfolio - Items - 1 Column
	-----------------------------------------------------------------*/

	.portfolio-1 .portfolio-item .portfolio-image,
	.portfolio-1 .portfolio-item .portfolio-image a,
	.portfolio-1 .portfolio-item .portfolio-image img {
		width: 560px;
		height: 311px;
	}

	.portfolio-1 .portfolio-desc { width: 340px; }

	.bothsidebar #portfolio-shuffle,
	.postcontent .portfolio-1 .iconlist { display: none; }

	.postcontent .portfolio-1 .portfolio-item .portfolio-image,
	.postcontent .portfolio-1 .portfolio-item .portfolio-image a,
	.postcontent .portfolio-1 .portfolio-item .portfolio-image img {
		width: 400px;
		height: 222px;
	}

	.postcontent .portfolio-1 .portfolio-desc {
		width: 250px;
		padding: 0;
	}

	.bothsidebar .portfolio-1 .portfolio-item { width: 100% !important; }

	.bothsidebar .portfolio-1 .portfolio-item .portfolio-image,
	.bothsidebar .portfolio-1 .portfolio-item .portfolio-desc {
		float: none;
		margin: 0 !important;
	}

	.bothsidebar .portfolio-1 .portfolio-item .portfolio-image { margin-bottom: 20px !important; }

	.bothsidebar .portfolio-1 .portfolio-item .portfolio-image,
	.bothsidebar .portfolio-1 .portfolio-item .portfolio-image a,
	.bothsidebar .portfolio-1 .portfolio-item .portfolio-image img {
		width: 100%;
		height: auto;
	}

	.bothsidebar .portfolio-1 .portfolio-desc {
		width: 100%;
		padding: 0;
	}

	.bothsidebar .entry-title h2 {
		font-size: 19px;
		font-weight: 600;
	}

	.bothsidebar .entry-meta li { margin-right: 10px; }


	/* Blog - Small
	-----------------------------------------------------------------*/

	.postcontent .small-thumbs .entry-image { width: 200px; }

	.bothsidebar .small-thumbs .entry-image { width: 120px; }

	/* Blog - Grid
	-----------------------------------------------------------------*/

	.post-grid .entry { width: 214px; }

	.post-grid .entry-image,
	.post-grid .entry-image img,
	.post-grid:not(.post-masonry) .entry-image iframe { height: 120px; }

	/* Blog - Grid - 3 Columns
	-----------------------------------------------------------------*/

	.post-grid.grid-3 .entry { width: 293px; }

	.post-grid.grid-3 .entry-image,
	.post-grid.grid-3 .entry-image img,
	.post-grid.grid-3:not(.post-masonry) .entry-image iframe { height: 164px; }


	/* Blog - Grid - 3 Columns - Sidebar
	-----------------------------------------------------------------*/

	.postcontent .post-grid.grid-3 .entry { width: 213px; }

	.postcontent .post-grid.grid-3 .entry-image,
	.postcontent .post-grid.grid-3 .entry-image img,
	.postcontent .post-grid.grid-3:not(.post-masonry) .entry-image iframe { height: 120px; }

	/* Blog - Grid - 2 Columns
	-----------------------------------------------------------------*/

	.post-grid.grid-2 .entry { width: 450px; }

	.post-grid.grid-2 .entry-image,
	.post-grid.grid-2 .entry-image img,
	.post-grid.grid-2:not(.post-masonry) .entry-image iframe { height: 253px; }

	/* Blog - Grid - 2 Columns - Sidebar
	-----------------------------------------------------------------*/

	.postcontent .post-grid.grid-2 .entry { width: 325px; }

	.postcontent .post-grid.grid-2 .entry-image,
	.postcontent .post-grid.grid-2 .entry-image img,
	.postcontent .post-grid.grid-2:not(.post-masonry) .entry-image iframe { height: 182px; }

	/* Blog - Grid - 2 Columns - Both Sidebar
	-----------------------------------------------------------------*/

	.bothsidebar .post-grid.grid-2 .entry { width: 200px; }

	.bothsidebar .post-grid.grid-2 .entry-image,
	.bothsidebar .post-grid.grid-2 .entry-image img,
	.bothsidebar .post-grid.grid-2:not(.post-masonry) .entry-image iframe { height: 113px; }


	.post-timeline .entry { width: 400px !important; }

	.post-timeline .entry.entry-date-section { width: 100% !important; }


	/* Blog - Medium Post List
	-----------------------------------------------------------------*/

	.mpost .entry-image,
	.mpost .entry-image a,
	.mpost .entry-image img,
	.mpost .entry-image i {
		width: 120px;
		height: 90px;
	}

	.mpost .entry-image a i { line-height: 90px; }

	.col_one_third .landing-wide-form .heading-block h2 { font-size: 32px; }

	.col_one_third .landing-wide-form .heading-block span { font-size: 17px; }

	.col_one_third .landing-wide-form { padding: 36px 30px; }


	.product { width: 220px; }

	.product-image { height: 293px; }

	/* Shop - 3 Columns
	-----------------------------------------------------------------*/

	.product-3 .product { width: 293px; }

	.product-3 .product-image { height: 391px; }

	/* Shop - 3 Columns - Sidebar
	-----------------------------------------------------------------*/

	.postcontent .product-3 .product { width: 213px; }

	.postcontent .product-3 .product-image { height: 284px; }

	/* Shop - 2 Columns - Sidebar
	-----------------------------------------------------------------*/

	.postcontent .product-2 .product { width: 325px; }

	.postcontent .product-2 .product-image { height: 434px; }

	/* Shop - 2 Columns - Both Sidebar
	-----------------------------------------------------------------*/

	.bothsidebar .product-2 .product { width: 200px; }

	.bothsidebar .product-2 .product-image { height: 267px; }

	/* Shop - 1 Column - Both Sidebar
	-----------------------------------------------------------------*/

	.bothsidebar .product-1 .product-image {
		width: 200px;
		height: 267px;
	}

	.product-title h3 { font-size: 18px; }

	.landing-video {
		width: 465px;
		height: 262px;
		margin: 19px 0 0 75px;
	}

	.panel .portfolio-meta li { padding-left: 22px; }

	.panel .portfolio-meta li span {
		display: block;
		margin-left: -21px;
	}

	.portfolio-single-image-full.portfolio-single-thumbs,
	.portfolio-single-image-full .swiper-container { height: 400px; }

	.bnews-slider { width: 817px; }

	.landing-form-overlay { bottom: -142px; }

}


@media (max-width: 991px) {

	#wrapper {
		width: 100%;
		margin: 0;
		box-shadow: none;
	}

	#header.full-header .container,
	.container-fullwidth {
		padding: 0 15px !important;
		margin: 0 auto;
		width: 750px !important;
	}

	.container.vertical-middle { width: 100% !important; }

	.vertical-middle + .video-wrap {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}

	.postcontent,
	.postcontent.bothsidebar,
	.sidebar {
		width: 100%;
		margin-right: 0;
		float: none !important;
		margin-bottom: 40px !important;
		padding-bottom: 40px;
		border-bottom: 1px solid #EEE;
	}

	.sidebar.col_last {
		float: none;
		margin-bottom: 0 !important;
		padding-bottom: 0;
		border-bottom: 0;
	}

	#header,
	#header-wrap,
	#header.sticky-style-2,
	#header.sticky-style-3,
	#header.sticky-style-2 #header-wrap,
	#header.sticky-style-3 #header-wrap { height: auto !important; }

	#header.sticky-style-2 #header-wrap,
	#header.sticky-style-3 #header-wrap { min-height: 60px; }

	#header.sticky-header #header-wrap { position: relative; }

	#header.transparent-header,
	#header.semi-transparent {
		background: #FFF;
		border-bottom: 1px solid #F5F5F5;
		z-index: auto;
	}

	#header.dark.transparent-header,
	#header.dark.semi-transparent {
		background-color: #fff;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}

	#header.transparent-header.floating-header { margin-top: 0; }

	#header.transparent-header.floating-header .container {
		width: 750px;
		padding: 0 15px;
		border-radius: 0;
	}

	#header.transparent-header + #slider,
	#header.transparent-header + #page-title.page-title-parallax,
	#slider + #header.transparent-header,
	#header.transparent-header.floating-header + #slider {
		top: 0;
		margin-bottom: 0;
	}

	#header.transparent-header + #page-title.page-title-parallax .container { padding-top: 0; }

	#header-trigger,
	.top-advert,
	.header-extras { display: none; }

	#logo {
		display: block;
		height: 60px;
		float: none;
		margin: 0 auto 0 !important;
		max-width: none;
		text-align: center;
		border: 0 !important;
		padding: 0 !important;
	}

	#logo a.standard-logo { display: inline-block; }

	#primary-menu {
		display: block;
		float: none;
		height: auto !important;
	}

	#primary-menu-trigger {
		opacity: 1;
		pointer-events: auto;
		top: 5px;
		margin-top: 0;
		left: 0;
		z-index: 1;
	}

	#primary-menu .container #primary-menu-trigger {
		top: 5px;
		left: 0;
	}

	#primary-menu > ul,
	#primary-menu > div > ul {
		display: none;
		float: none !important;
		border: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}

	#primary-menu > div > ul { margin-top: 60px !important; }

	body:not(.top-search-open) #primary-menu-trigger {
		opacity: 1;
		-webkit-transition: opacity .2s .2s ease, top .4s ease;
		-o-transition: opacity .2s .2s ease, top .4s ease;
		transition: opacity .2s .2s ease, top .4s ease;
	}

	body.top-search-open #primary-menu-trigger { opacity: 0; }

	body.side-push-panel #side-panel-trigger-close a {
		display: block;
		position: absolute;
		z-index: 12;
		top: 0;
		left: auto;
		right: 0;
		width: 40px;
		height: 40px;
		font-size: 18px;
		line-height: 40px;
		color: #444;
		text-align: center;
		background-color: rgba(0,0,0,0.1);
		border-radius: 0 0 0 2px;
	}

	#primary-menu ul { height: auto !important; }

	#primary-menu.style-5 > ul {
		padding-right: 0;
		margin-right: 0;
		border-right: 0;
	}

	#primary-menu ul li {
		float: none;
		margin: 0 !important;
		text-align: left !important;
		border-top: 1px solid #EEE;
	}

	#primary-menu ul li:first-child { border-top: 0; }

	#primary-menu ul li a,
	#primary-menu.style-2 > div > ul > li > a {
		height: 50px !important;
		line-height: 50px !important;
		padding: 0 5px !important;
		border: none !important;
		margin: 0 !important;
	}

	#primary-menu.style-5 > ul > li > a > div {
		padding: 0;
		line-height: 50px;
	}

	#primary-menu.sub-title > ul > li,
	#primary-menu.sub-title.style-2 > div > ul > li {
		background: none !important;
		margin-left: 0;
	}

	#primary-menu.sub-title ul li a {
		text-transform: none;
		font-size: 14px;
	}

	#primary-menu.sub-title ul li span { display: none !important; }

	#primary-menu.sub-title > ul > li:hover > a,
	#primary-menu.sub-title > ul > li.current > a,
	#primary-menu.sub-title > div > ul > li:hover > a,
	#primary-menu.sub-title > div > ul > li.current > a,
	#primary-menu.style-3 > ul > li:hover > a,
	#primary-menu.style-3 > ul > li.current > a {
		background-color: transparent !important;
		color: #444;
		text-shadow: none;
	}

	#primary-menu ul li i,
	#primary-menu.style-2 > div > ul > li i,
	#primary-menu.sub-title ul li i,
	#primary-menu.style-3 > ul > li > a i,
	#primary-menu.style-5 > ul > li > a i { line-height: 49px; }

	#primary-menu.style-5 > ul > li > a i {
		display: inline-block;
		top: 1px;
		width: 14px;
		margin: 0 6px 0 0;
		font-size: 14px !important;
	}

	#primary-menu > ul > li.sub-menu > a,
	#primary-menu > .container > ul > li.sub-menu > a {
		background-image: url("https://www.wehome.fr/images/icons/submenu.png");
		background-position: right center;
		background-repeat: no-repeat;
	}


	#primary-menu ul ul,
	#primary-menu ul li .mega-menu-content {
		position: relative;
		width: auto;
		background-color: transparent !important;
		box-shadow: none;
		border: 0;
		border-top: 1px solid #EEE;
		z-index: 1;
		top: 0 !important;
		padding-left: 15px;
	}

	#primary-menu ul li .mega-menu-content { padding-left: 0; }

	#primary-menu ul ul ul {
		top: 0 !important;
		left: 0;
	}

	#primary-menu ul ul.menu-pos-invert,
	#primary-menu ul li .mega-menu-content.menu-pos-invert {
		left: 0;
		right: 0;
	}

	#primary-menu ul ul ul.menu-pos-invert { right: 0; }

	#primary-menu ul ul li {
		float: none;
		margin: 0;
		border-top: 1px solid #EEE;
	}

	#primary-menu ul ul a {
		height: 44px !important;
		line-height: 44px !important;
		padding-left: 5px !important;
		font-size: 13px !important;
		text-transform: none;
		font-weight: 400;
	}

	#primary-menu ul ul a i { line-height: 43px; }

	#primary-menu ul ul li:hover > a {
		background-color: transparent !important;
		font-weight: 600;
		padding-left: 5px;
		color: #1ABC9C !important;
	}

	#primary-menu ul li .mega-menu-content,
	#primary-menu ul li.mega-menu-small .mega-menu-content,
	#primary-menu ul li.mega-menu .mega-menu-content,
	.floating-header.sticky-header #primary-menu ul li.mega-menu .mega-menu-content,
	.floating-header #primary-menu ul li.mega-menu .mega-menu-content {
		width: auto;
		margin: 0;
		top: 0;
	}

	.container-fullwidth #primary-menu ul li.mega-menu .mega-menu-content,
	#header.full-header #primary-menu ul li.mega-menu .mega-menu-content {
		width: auto !important;
		margin: 0 !important;
	}

	#primary-menu ul li.mega-menu .mega-menu-content.style-2 { padding: 0; }

	#primary-menu ul li .mega-menu-content ul {
		display: block;
		position: relative;
		top: 0;
		min-width: inherit;
	}

	#primary-menu ul li .mega-menu-content > ul { float: none; }

	#primary-menu ul li .mega-menu-content ul {
		display: block !important;
		opacity: 1 !important;
		top: 0;
		left: 0;
	}

	#primary-menu ul li .mega-menu-content ul ul { border-top: 1px solid #EEE; }

	#primary-menu ul li .mega-menu-content.col-2 > ul,
	#primary-menu ul li .mega-menu-content.col-3 > ul,
	#primary-menu ul li .mega-menu-content.col-4 > ul,
	#primary-menu ul li .mega-menu-content.col-5 > ul {
		width: auto;
		margin: 0;
		border-left: 0;
		border-top: 1px solid #EEE;
	}

	#primary-menu ul li .mega-menu-content > ul:first-child { border: 0; }

	#primary-menu ul li .mega-menu-content ul a {
		height: 40px;
		line-height: 40px;
	}

	#primary-menu ul li .mega-menu-content ul {
		width: 100%;
		border: 0;
		box-shadow: none;
		background-color: transparent;
	}

	#primary-menu ul li .mega-menu-content.style-2 > ul { padding: 0 0 0 15px; }

	#primary-menu ul li .mega-menu-content.style-2 > ul > li.mega-menu-title { margin: 0; }

	#primary-menu ul li .mega-menu-content.style-2 > ul > li.mega-menu-title > a {
		font-size: 13px;
		font-weight: 600;
		text-transform: none !important;
		margin: 0;
		padding: 0 0 0 5px;
		color: #444 !important;
		height: 44px !important;
		line-height: 44px !important;
	}

	#primary-menu ul li .mega-menu-content.style-2 > ul > li.mega-menu-title:hover > a {
		background-color: transparent;
		font-weight: 600;
		padding: 0 0 0 5px;
		color: #1ABC9C !important;
	}

	#primary-menu ul li .mega-menu-content.style-2 > ul > li.mega-menu-title > a:hover { color: #1ABC9C !important; }

	#primary-menu ul ul i { line-height: inherit; }

	#primary-menu ul li .mega-menu-content.style-2 li { border-top: 1px solid #EEE; }

	#primary-menu ul li .mega-menu-content.style-2 li:first-child { border-top: 0; }

	#primary-menu ul li .mega-menu-content.style-2 ul a {
		padding-left: 5px;
		height: 44px !important;
		line-height: 44px !important;
	}

	#primary-menu ul li .mega-menu-content.style-2 ul a:hover { padding-left: 5px; }

	#top-search { margin: 0 !important; }

	#top-search a,
	#top-cart,
	#side-panel-trigger {
		position: absolute;
		top: 0;
		left: auto;
		right: 15px;
		margin: 40px 0;
		-webkit-transition: margin .4s ease;
		-o-transition: margin .4s ease;
		transition: margin .4s ease;
	}

	#primary-menu > div > #top-search a,
	#primary-menu > div > #top-cart,
	#primary-menu > div > #side-panel-trigger { margin: 20px 0 !important; }


	#primary-menu ul.windows-mobile-menu li.sub-menu { position: relative; }

	#primary-menu ul.windows-mobile-menu li.sub-menu a { background-image: none !important; }

	#primary-menu ul.windows-mobile-menu li.sub-menu a.wn-submenu-trigger {
		position: absolute;
		cursor: pointer;
		width: 32px;
		top: 0;
		right: 0;
		z-index: 1;
		padding: 0 !important;
		text-align: center !important;
	}

	#primary-menu ul.windows-mobile-menu .mega-menu-content a.wn-submenu-trigger { display: none; }

	#primary-menu ul.windows-mobile-menu li.sub-menu a.wn-submenu-trigger i { margin: 0 !important; }


	#header.sticky-style-3 #top-cart .top-cart-content { top: 40px; }

	#top-search a { right: 43px; }

	#top-search form { height: 100px !important; }

	#primary-menu > div > #top-search form { height: 60px !important; }

	#top-search form input { font-size: 24px; }

	#side-panel-trigger { right: 71px; }

	#page-menu #page-menu-wrap {
		position: relative !important;
		top: 0 !important;
	}

	#page-submenu-trigger {
		opacity: 1;
		pointer-events: auto;
		color: #FFF;
	}

	#page-menu.pagemenu-active #page-submenu-trigger { background-color: rgba(0,0,0,0.2); }

	#page-menu nav {
		display: none;
		position: absolute;
		float: none;
		width: 200px;
		top: 43px;
		left: auto;
		right: 15px;
		height: auto;
		background-color: #1ABC9C;
		z-index: 11;
	}

	#page-menu.pagemenu-active nav { display: block; }

	#page-menu nav ul {
		height: auto;
		background-color: rgba(0,0,0,0.2);
	}

	#page-menu nav li { float: none; }

	#page-menu nav li a {
		height: 40px;
		line-height: 40px;
		margin: 0;
		padding: 0 15px;
		border-radius: 0;
	}

	#page-menu ul ul {
		position: relative;
		width: auto;
		top: 0;
		background-color: transparent;
	}

	#page-menu ul ul a { padding-left: 25px; }


	/* Responsive Sticky Header
	-----------------------------------------------------------------*/

	.sticky-responsive-menu #header {
		min-height: 60px;;
		-webkit-transition: min-height .4s ease;
		-o-transition: min-height .4s ease;
		transition: min-height .4s ease;
	}

	.sticky-responsive-menu #header-wrap {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	.sticky-responsive-menu #header.sticky-style-2,
	.sticky-responsive-menu #header.sticky-style-3 { min-height: 160px; }

	.sticky-responsive-menu.device-touch #header,
	.sticky-responsive-menu.device-touch #header-wrap,
	.sticky-responsive-menu.device-touch #logo,
	.sticky-responsive-menu.device-touch #logo img,
	.sticky-responsive-menu.device-touch #top-search a,
	.sticky-responsive-menu.device-touch #primary-menu-trigger,
	.sticky-responsive-menu.device-touch #top-cart,
	.sticky-responsive-menu.device-touch #side-panel-trigger {
		-webkit-transition: none !important;
		-o-transition: none !important;
		transition: none !important;
	}

	#header.responsive-sticky-header:not(.sticky-style-2):not(.sticky-style-3) { min-height: 60px; }

	.responsive-sticky-header #header-wrap {
		z-index: 199;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background-color: #FFF;
		border-bottom: 1px solid #EEE;
		-webkit-backface-visibility: hidden;
	}

	.responsive-sticky-header #logo,
	.responsive-sticky-header #logo img { height: 60px; }

	.responsive-sticky-header #primary-menu-trigger { top: 5px; }

	.responsive-sticky-header #primary-menu > ul,
	.responsive-sticky-header #primary-menu > .container > ul {
		max-height: 300px;
		overflow-y: scroll;
		margin-bottom: 20px;
	}

	.responsive-sticky-header #primary-menu > ul,
	.responsive-sticky-header #primary-menu > .container > ul { margin-bottom: 20px !important; }

	.responsive-sticky-header #top-search a,
	.responsive-sticky-header #top-cart,
	.responsive-sticky-header #side-panel-trigger { margin: 20px 0; }

	.responsive-sticky-header #top-search form { height: 60px !important; }

	.responsive-sticky-header #top-cart .top-cart-content { top: 40px; }


	.ei-slider { height: 350px; }

	.ei-title h3 { display: none; }

	/* Portfolio - Items
	-----------------------------------------------------------------*/

	#portfolio:not(.portfolio-1) { margin: 0 -12px -12px 0 !important; }

	#portfolio:not(.portfolio-1) .portfolio-item {
		width: 232px;
		margin: 0 12px 12px 0;
	}

	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image,
	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image a,
	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image img {
		width: 232px;
		height: 175px;
	}

	/* Portfolio - No Margin
	-----------------------------------------------------------------*/

	#portfolio.portfolio-nomargin .portfolio-item { width: 239px; }

	#portfolio.portfolio-nomargin .portfolio-item .portfolio-image,
	#portfolio.portfolio-nomargin .portfolio-item .portfolio-image a,
	#portfolio.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 239px;
		height: 178px;
	}

	/* Portfolio - Items - 2 Columns
	-----------------------------------------------------------------*/

	#portfolio.portfolio-2 .portfolio-item { width: 354px; }

	#portfolio.portfolio-2 .portfolio-item .portfolio-image,
	#portfolio.portfolio-2 .portfolio-item .portfolio-image a,
	#portfolio.portfolio-2 .portfolio-item .portfolio-image img {
		width: 354px;
		height: 264px;
	}

	/* Portfolio - Items - 2 Columns - No Margin
-----------------------------------------------------------------*/

	#portfolio.portfolio-2.portfolio-nomargin .portfolio-item { width: 359px; }

	#portfolio.portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image,
	#portfolio.portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image a,
	#portfolio.portfolio-2.portfolio-nomargin .portfolio-item .portfolio-image img {
		width: 359px;
		height: 269px;
	}

	/* Portfolio - Items - 1 Column
	-----------------------------------------------------------------*/

	#portfolio.portfolio-1 .portfolio-item .portfolio-image {
		float: none !important;
		margin: 0 !important;
		margin-bottom: 10px !important;
	}

	#portfolio.portfolio-1 .portfolio-item .portfolio-image,
	#portfolio.portfolio-1 .portfolio-item .portfolio-image a,
	#portfolio.portfolio-1 .portfolio-item .portfolio-image img {
		width: 100%;
		height: auto;
	}

	#portfolio.portfolio-1 .portfolio-desc { width: 100%; }

	/* Portfolio - Items - 1 Column - Full Width
	-----------------------------------------------------------------*/

	#portfolio.portfolio-1.portfolio-fullwidth { margin: 0 0 -60px 0; }

	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-item {
		margin-bottom: 60px;
		padding-bottom: 0;
		border-bottom: 0;
		overflow: hidden;
	}

	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image {
		float: none;
		margin: 0 0 20px 0 !important;
	}

	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image,
	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image a,
	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image img {
		width: 100%;
		height: auto;
	}

	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image img {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}

	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-item:hover .portfolio-image img,
	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-item.alt:hover .portfolio-image img {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}

	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-desc,
	#portfolio.portfolio-1.portfolio-fullwidth .alt .portfolio-desc {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0;
		background-color: transparent;
		left: 0;
		right: 0;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}

	#portfolio.portfolio-1.portfolio-fullwidth .portfolio-overlay a { left: 50%; }

	#portfolio.portfolio-1.portfolio-fullwidth .alt .portfolio-overlay a {
		left: auto;
		right: 50%;
	}

	.device-touch #portfolio.portfolio-parallax .portfolio-item .portfolio-desc,
	.device-touch #portfolio.portfolio-parallax .portfolio-overlay { opacity: 1; }

	#portfolio.portfolio-nomargin,
	#portfolio.portfolio-full { margin: 0 !important; }


	.shop-quick-view-ajax,
	.portfolio-ajax-modal { width: 90% !important; }


	.small-thumbs .entry-title h2,
	.ievent .entry-title h2 { font-size: 18px; }

	.entry-meta li {
		font-size: 12px;
		margin: 0 10px 10px 0;
	}


	/* Blog - Grid
	-----------------------------------------------------------------*/

	.post-grid { margin-right: -20px; }

	.post-grid .entry {
		width: 226px;
		margin-right: 20px;
	}

	.post-grid .entry-image,
	.post-grid .entry-image img,
	.post-grid:not(.post-masonry) .entry-image iframe { height: 127px; }

	/* Blog - Grid - 3 Columns
	-----------------------------------------------------------------*/

	.post-grid.grid-2,
	.post-grid.grid-3 { margin-right: -30px; }

	.post-grid.grid-2 .entry,
	.post-grid.grid-3 .entry {
		width: 345px;
		margin-right: 30px;
	}

	.post-grid.grid-3 .entry-image,
	.post-grid.grid-3 .entry-image img,
	.post-grid.grid-3:not(.post-masonry) .entry-image iframe,
	.post-grid.grid-2 .entry-image,
	.post-grid.grid-2 .entry-image img,
	.post-grid.grid-2:not(.post-masonry) .entry-image iframe { height: 193px; }


	.post-masonry-full .entry { width: 33.30% !important; }

	.post-masonry-full.grid-3 .entry { width: 50% !important; }

	.post-timeline .entry { width: 290px !important; }

	.post-timeline .entry.entry-date-section { width: 100% !important; }



	.product { width: 226px; }

	.product-image { height: 301px; }

	.product:not(.product-2):not(.product-3) .product-title h3 { font-size: 18px; }

	/* Shop - 2 Columns - Sidebar
	-----------------------------------------------------------------*/

	#shop.product-2,
	#shop.product-3 { margin: 0 -20px -20px 0; }

	#shop.product-2 .product,
	#shop.product-3 .product {
		width: 350px;
		margin: 0 20px 20px 0;
	}

	#shop.product-2 .product-image,
	#shop.product-3 .product-image { height: 467px; }

	.pricing [class^=col-md-] .pricing-box.best-price { margin-top: 0; }

	.pricing.pricing-5 .pricing-box.best-price { margin-top: 20px; }

	.device-sm .pricing.pricing-5 .pricing-title h3,
	.device-sm .pricing.pricing-5 .best-price .pricing-title h3 { font-size: 14px; }

	.device-sm .pricing.pricing-5 .pricing-title span { font-size: 12px; }

	.device-sm .pricing.pricing-5 .pricing-price { font-size: 48px; }

	.device-sm .pricing.pricing-5 .pricing-price span { font-size: 20px; }

	.device-sm .pricing.pricing-5 .pricing-price span.price-tenure { font-size: 12px; }

	.device-sm .pricing.pricing-5 .pricing-box.best-price .pricing-title { padding: 15px 0; }

	.pricing-box.pricing-extended .pricing-desc,
	.pricing-box.pricing-extended .pricing-action-area {
		position: relative;
		float: none;
		width: auto;
		padding: 25px;
	}

	.pricing-box.pricing-extended .pricing-action-area {
		height: auto;
		border-left: 0;
		border-top: 1px solid rgba(0,0,0,0.05);
		border-radius: 0 0 3px 3px;
	}

	.testimonials-grid.grid-3 li { width: 50%; }

	.section > .testimonial {
		padding: 0 40px !important;
		max-width: none;
	}

	.promo:not(.promo-full) { padding: 30px 20px !important; }

	.promo.promo-dark h3 { line-height: 1.6; }

	.promo a.button {
		position: relative !important;
		top: 0 !important;
		margin: 20px 0 0 !important;
		left: 0 !important;
		right: 0;
	}

	#contact-form-overlay-mini {
		float: none;
		width: auto;
		max-width: 380px;
		margin: 0 auto;
	}

	.button.button-full { font-size: 22px; }

	.button.button-full i { top: 3px !important; }

	.bnews-title {
		float: none;
		display: inline-block;
	}

	.bnews-slider {
		float: none;
		margin: 10px 0 0;
		width: 100%;
	}

	.wedding-head { font-size: 60px; }

	.wedding-head .first-name span,
	.wedding-head .last-name span { font-size: 40px; }

	.wedding-head .and { font-size: 144px; }

	.error404 { font-size: 180px; }

	.landing-form-overlay {
		position: absolute;
		width: 100%;
		max-width: 400px;
		right: auto;
		left: 50%;
		margin-left: -200px;
		bottom: 0;
	}

}


@media (min-width: 768px) and (max-width: 991px) {

	.swiper_wrapper:not(.full-screen):not(.canvas-slider-grid),
	.swiper_wrapper:not(.full-screen):not(.canvas-slider-grid) .swiper-slide { height: 400px !important; }

	.sidebar-widgets-wrap {
		position: relative;
		margin: 0 -38px -40px 0;
	}

	.sidebar-widgets-wrap .widget {
		display: inline-block;
		vertical-align: top;
		float: none;
		width: 340px;
		margin: 0 37px 40px 0;
		padding-top: 0;
		border-top: 0;
	}

	.landing-video {
		width: 352px;
		height: 199px;
		margin: 14px 0 0 60px;
	}

}


@media (max-width: 767px) {

	body { padding: 0 !important; }

	#wrapper { width: 100% !important; }

	.container-fullwidth {
		margin: 0 auto;
		padding: 0 15px !important;
	}

	h1 { font-size: 28px; }

	h2 { font-size: 24px; }

	h3 { font-size: 20px; }

	h4 { font-size: 16px; }

	#gotoTop,
	.one-page-arrow { display: none !important; }

	#top-bar { height: auto; }

	#top-bar .col_half {
		width: 100%;
		margin-bottom: 0 !important;
	}

	.top-links,
	.top-links > ul > li { float: none !important; }

	.top-links > ul { text-align: center; }

	.top-links > ul > li { display: inline-block; }

	.top-links > ul > li { margin-right: -4px; }

	.top-links ul ul,
	.top-links ul div.top-link-section { text-align: left; }

	.top-links ul div.top-link-section {
		left: auto;
		right: 0;
		padding: 20px 15px;
	}

	#top-social,
	#slider:not(.swiper_wrapper) .slider-caption,
	.nivo-caption,
	.flex-caption,
	.slider-caption p,
	.slider-caption .button,
	.camera_caption,
	.ei-title,
	.slider-arrow-top-sm,
	.slider-arrow-bottom-sm { display: none !important; }

	.slider-caption h2 { margin-bottom: 0 !important; }

	.flex-control-nav li { opacity: 1 !important; }

	.fslider:not(.flex-thumb-grid) .flex-control-nav.flex-control-thumbs { height: 60px; }

	.fslider:not(.flex-thumb-grid) .flex-control-nav.flex-control-thumbs li,
	.fslider:not(.flex-thumb-grid) .flex-control-nav.flex-control-thumbs li img {
		display: block;
		width: 80px !important;
		height: 60px !important;
	}

	.postcontent,
	.postcontent.bothsidebar,
	.sidebar,
	.col_full,
	.col_half,
	.col_one_third,
	.col_two_third,
	.col_three_fourth,
	.col_one_fourth,
	.col_one_fifth,
	.col_two_fifth,
	.col_three_fifth,
	.col_four_fifth,
	.col_one_sixth,
	.col_five_sixth {
		width: 100%;
		margin-right: 0;
		float: none;
		margin-bottom: 50px !important;
	}

	.sidebar.col_last { margin-bottom: 0 !important; }

	form .col_full,
	form .col_half,
	form .col_one_third,
	form .col_two_third,
	form .col_three_fourth,
	form .col_one_fourth,
	form .col_one_fifth,
	form .col_two_fifth,
	form .col_three_fifth,
	form .col_four_fifth,
	form .col_one_sixth,
	form .col_five_sixth { margin-bottom: 25px !important; }


	#page-title {
		padding: 20px 0 25px;
		text-align: center;
	}

	#page-title h1 {
		line-height: 1.5;
		font-size: 24px;
	}

	#page-title .breadcrumb {
		position: relative !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		margin: 15px 0 0 !important;
	}

	#page-title #portfolio-navigation,
	#portfolio-ajax-title #portfolio-navigation {
		position: relative;
		top: 0;
		left: 0;
		margin: 15px auto 0;
	}

	#portfolio-ajax-title { text-align: center; }


	/* Portfolio - Filter
	-----------------------------------------------------------------*/

	#portfolio-filter {
		border: none;
		border-radius: 0;
		margin-bottom: 20px;
	}

	#portfolio-filter li {
		width: 33.33%;
		margin-bottom: 20px;
	}

	#portfolio-filter li a {
		text-align: center;
		border-left: none;
		padding: 12px 18px !important;
		border-radius: 2px !important;
	}

	#portfolio-filter li a:hover { color: #1ABC9C; }

	#portfolio-filter li.activeFilter a {
		color: #FFF;
		margin: 0;
	}

	#portfolio-shuffle { display: none; }


	/* Blog
	-----------------------------------------------------------------*/

	.small-thumbs .entry-image,
	.ievent .entry-image {
		float: none !important;
		width: 100% !important;
		margin: 0 0 20px !important;
	}

	.entry-title h2,
	.post-grid .entry-title h2 {
		font-size: 18px !important;
		font-weight: 600;
	}

	.entry-meta li {
		font-size: 11px;
		margin: 0 10px 10px 0;
	}

	#posts .entry-meta li i { display: none; }

	#posts.post-grid .entry-meta li i,
	#posts .entry-meta li:last-child i { display: inline-block; }

	.post-grid { margin-right: 0 !important; }

	.post-grid .entry,
	.post-masonry-full.grid-3 .entry {
		float: none !important;
		width: 100% !important;
		margin-right: 0 !important;
		border-right: 0 !important;
	}

	.post-timeline .entry.entry-date-section { margin-left: 0; }

	.timeline-border,
	.post-timeline .entry-timeline { display: none !important; }

	.postcontent .post-timeline { padding-left: 0; }

	.post-masonry-full .entry { padding: 40px !important; }

	.post-grid .entry-image,
	.post-grid .entry-image img { height: auto !important; }

	.product-1 .product { width: 100%; }

	.product-1 .product-image {
		float: none !important;
		width: 100% !important;
		height: auto !important;
		margin: 0 0 20px !important;
	}

	.product-1 .product-title h3 { font-size: 19px; }

	.product-1 p { display: none; }


	.pricing-box.best-price { margin-top: 0; }

	.pricing.pricing-5 .pricing-box {
		float: none;
		width: 100%;
	}

	.pricing-box.pricing-extended .pricing-features li {
		width: auto;
		float: none;
	}

	table.cart .quantity { display: block; }

	table.cart .quantity .qty,
	table.cart .quantity .plus,
	table.cart .quantity .minus {
		float: none;
		width: 100%;
	}

	table.cart .quantity .qty {
		border: 0;
		border-top: 1px solid #DDD;
		border-bottom: 1px solid #DDD;
	}

	.button.button-desc {
		padding: 20px 17px;
		font-size: 15px;
		max-width: 100%;
	}

	.button.button-desc span { font-size: 11px; }

	.process-steps li {
		float: none;
		width: auto !important;
		margin-top: 20px;
	}

	.process-steps li:first-child { margin-top: 0; }

	.process-steps li h5 { margin: 10px 0 0 0; }

	.process-steps li:before,
	.process-steps li:after { display: none; }


	.testimonials-grid li {
		float: none;
		width: auto !important;
		padding-left: 0;
		padding-right: 0;
	}

	.team.team-list .team-image {
		float: none;
		width: 100%;
		margin-right: 0;
	}

	.team.team-list .team-title { margin-top: 15px; }

	.title-block {
		padding: 2px 0 3px 15px;
		border-left-width: 5px;
	}

	.title-block-right {
		padding: 2px 15px 3px 0;
		border-right-width: 5px;
	}

	.title-block h1 + span { font-size: 18px; }

	.title-block h2 + span { font-size: 17px; }

	.title-block h3 + span { font-size: 15px; }

	.title-block h4 + span { font-size: 13px; }

	.heading-block h1 { font-size: 30px; }

	.heading-block h2 { font-size: 26px; }

	.heading-block h3 { font-size: 22px; }

	.heading-block h4 { font-size: 19px; }

	.heading-block h1 + span { font-size: 20px; }

	.heading-block h2 + span { font-size: 18px; }

	.heading-block h3 + span,
	.heading-block h4 + span { font-size: 17px; }

	.heading-block ~ p:not(.lead) { font-size: 15px; }

	.emphasis-title h1,
	.emphasis-title h2 { font-size: 44px !important; }

	.wedding-head { font-size: 48px; }

	.wedding-head .first-name,
	.wedding-head .last-name,
	.wedding-head .and {
		display: block;
		margin: 0 0 15px;
		text-align: center;
	}

	.wedding-head .first-name span,
	.wedding-head .last-name span { font-size: 36px; }

	.wedding-head .and { font-size: 120px; }

	.news-carousel .overlay { display: none; }


	/* Copyrights
	-----------------------------------------------------------------*/

	#copyrights .col_half { text-align: center; }

	#copyrights .col_half:last-child { display: none; }

	#copyrights .footer-logo {
		margin-left: auto;
		margin-right: auto;
	}

}

@media (min-width: 480px) and (max-width: 767px) {

	.container,
	#header.full-header .container,
	.container-fullwidth { width: 470px !important; }

	.container.vertical-middle { width: 100% !important; }

	.full-screen:not(.force-full-screen) .container.vertical-middle { width: 470px !important; }

	#top-search form input { padding-right: 60px; }

	.swiper_wrapper:not(.force-full-screen),
	.swiper_wrapper:not(.force-full-screen):not(.canvas-slider-grid) .swiper-slide { height: 300px !important; }

	.swiper_wrapper .slider-caption h2 { font-size: 36px; }

	.ei-slider { height: 250px; }

	#header.transparent-header.floating-header .container {
		width: 470px;
		padding: 0 15px;
	}

	/* Portfolio - Items
	-----------------------------------------------------------------*/

	#portfolio:not(.portfolio-1) { margin: 0 -6px -6px 0; }

	#portfolio:not(.portfolio-1) .portfolio-item { margin: 0 6px 6px 0; }

	/* Portfolio - Items - 5 & 6 Columns
	-----------------------------------------------------------------*/

	#portfolio:not(.portfolio-1) .portfolio-item { width: 217px; }

	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image,
	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image a,
	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image img {
		width: 217px;
		height: 162px;
	}

	/* Portfolio - Items - 5 & 6 Columns - No Margin
	-----------------------------------------------------------------*/

	#portfolio.portfolio-nomargin:not(.portfolio-1) .portfolio-item { width: 219px; }

	#portfolio.portfolio-nomargin:not(.portfolio-1) .portfolio-item .portfolio-image,
	#portfolio.portfolio-nomargin:not(.portfolio-1) .portfolio-item .portfolio-image a,
	#portfolio.portfolio-nomargin:not(.portfolio-1) .portfolio-item .portfolio-image img {
		width: 219px;
		height: 164px;
	}

	/* Portfolio - Items - Descriptions
	-----------------------------------------------------------------*/

	#portfolio:not(.portfolio-1) .portfolio-desc { padding: 15px 5px 10px; }

	#portfolio:not(.portfolio-1) .portfolio-desc h3 { font-size: 16px; }

	#portfolio:not(.portfolio-1) .portfolio-desc span { font-size: 14px; }

	#portfolio.portfolio-notitle:not(.portfolio-1) .portfolio-desc {
		height: 78px;
		padding: 15px 5px;
		bottom: -79px;
	}

	#portfolio.portfolio-full.portfolio-notitle:not(.portfolio-1) .portfolio-desc,
	#portfolio.portfolio-nomargin.portfolio-notitle:not(.portfolio-1) .portfolio-desc {
		bottom: -78px;
		border-bottom: 0;
	}

	/* Portfolio - Items - Overlay
	-----------------------------------------------------------------*/

	#portfolio.portfolio-notitle:not(.portfolio-1) .portfolio-item:hover .portfolio-overlay a.left-icon,
	#portfolio.portfolio-notitle:not(.portfolio-1) .portfolio-item:hover .portfolio-overlay a.right-icon,
	.portfolio-notitle .iportfolio:hover .portfolio-overlay a.left-icon,
	.portfolio-notitle .iportfolio:hover .portfolio-overlay a.right-icon { margin-top: -55px !important; }

	#portfolio:not(.portfolio-1) .portfolio-item:hover .portfolio-overlay .portfolio-desc ~ a { margin: 20px 0 0 !important; }

	#portfolio:not(.portfolio-1) .portfolio-item:hover .portfolio-overlay .portfolio-desc ~ a.right-icon {
		margin-left: 5px !important;
		margin-right: 0 !important;
	}

	/* Portfolio - Items - 1 Column
	-----------------------------------------------------------------*/

	.portfolio-1 .portfolio-item .portfolio-image {
		float: none !important;
		margin: 0 !important;
		margin-bottom: 10px !important;
	}

	.portfolio-1 .portfolio-item .portfolio-image,
	.portfolio-1 .portfolio-item .portfolio-image a,
	.portfolio-1 .portfolio-item .portfolio-image img {
		width: 100%;
		height: auto;
	}

	.portfolio-1 .portfolio-desc { width: 100%; }

	/* Portfolio - Items - 1 Column - Full Width
	-----------------------------------------------------------------*/

	#portfolio.portfolio-1.portfolio-fullwidth { margin: 0 0 -60px 0; }

	.portfolio-1.portfolio-fullwidth .portfolio-item {
		margin-bottom: 60px;
		padding-bottom: 0;
		border-bottom: 0;
		overflow: hidden;
	}

	.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image {
		float: none;
		margin: 0 0 20px 0 !important;
	}

	.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image,
	.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image a,
	.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image img {
		width: 100%;
		height: auto;
	}

	.portfolio-1.portfolio-fullwidth .portfolio-item .portfolio-image img {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}

	.portfolio-1.portfolio-fullwidth .portfolio-item:hover .portfolio-image img,
	.portfolio-1.portfolio-fullwidth .portfolio-item.alt:hover .portfolio-image img {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}

	.portfolio-1.portfolio-fullwidth .portfolio-desc,
	.portfolio-1.portfolio-fullwidth .alt .portfolio-desc {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0;
		background-color: transparent;
		left: 0;
		right: 0;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}

	.portfolio-1.portfolio-fullwidth .portfolio-overlay a { left: 50%; }

	.portfolio-1.portfolio-fullwidth .alt .portfolio-overlay a {
		left: auto;
		right: 50%;
	}

	#portfolio.portfolio-nomargin,
	#portfolio.portfolio-full { margin: 0 !important; }

	.post-grid:not(.post-masonry) .entry-image iframe { height: 246px; }

	#shop:not(.product-1) { margin: 0 -12px -12px 0; }

	#shop:not(.product-1) .product {
		margin: 0 12px 12px 0;
		width: 214px;
	}

	#shop:not(.product-1) .product-image { height: 285px; }

	#shop:not(.product-1) .product-title h3 { font-size: 17px; }

	.clients-grid:not(.grid-3):not(.grid-2) li,
	.clients-grid.grid-4 li,
	.clients-grid.grid-6 li { width: 33.33%; }

	.button.button-full { font-size: 18px; }

	.button.button-full i {
		top: 2px !important;
		margin-left: 3px !important;
	}

	.error404,
	.error404-wrap .error404 { font-size: 160px; }

	.landing-video {
		position: relative;
		top: 12px;
		width: 333px;
		height: 187px;
		margin: 19px 0 0 53px;
	}

}

@media (max-width: 479px) {

	.container,
	#header.full-header .container,
	.container-fullwidth { width: 310px !important; }

	.container.vertical-middle { width: 100% !important; }

	.full-screen:not(.force-full-screen) .container.vertical-middle { width: 310px !important; }

	#top-cart { display: none; }

	#top-search a { right: 15px; }

	#top-search form input { padding-right: 30px; }

	#side-panel-trigger { right: 43px; }

	.swiper_wrapper:not(.force-full-screen),
	.swiper_wrapper:not(.force-full-screen):not(.canvas-slider-grid) .swiper-slide,
	.ei-slider { height: 180px !important; }

	.swiper_wrapper .slider-caption h2 { font-size: 28px; }

	#header.transparent-header.floating-header .container {
		width: 310px;
		padding: 0 15px;
	}

	#portfolio-filter li { width: 50%; }

	#portfolio:not(.portfolio-1) { margin: 0 !important; }

	#portfolio:not(.portfolio-1) .portfolio-item { width: 280px; }

	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image,
	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image a,
	#portfolio:not(.portfolio-1) .portfolio-item .portfolio-image img {
		width: 280px;
		height: 211px;
	}

	.post-grid:not(.post-masonry) .entry-image iframe { height: 157px; }

	#shop:not(.product-1) { margin: 0; }

	#shop:not(.product-1) .product {
		margin: 0 0 20px 0;
		width: 100%;
	}

	#shop:not(.product-1) .product-image { height: 373px; }

	#shop:not(.product-1) .product-title h3 { font-size: 19px; }

	.fslider:not(.flex-thumb-grid) .flex-control-nav.flex-control-thumbs { height: 45px; }

	.fslider:not(.flex-thumb-grid) .flex-control-nav.flex-control-thumbs li,
	.fslider:not(.flex-thumb-grid) .flex-control-nav.flex-control-thumbs li img {
		display: block;
		width: 60px !important;
		height: 45px !important;
	}

	.si-share span { display: none; }

	.parallax .entry-overlay-meta,
	.parallax .entry-overlay {
		left: 50% !important;
		right: 0 !important;
		margin: 0 0 0 -140px !important;
		width: 280px !important;
	}

	.parallax .entry-overlay { width: 288px !important; }

	.parallax .countdown-section {
		width: 64px;
		height: 64px;
		margin: 0 8px 0 0;
		font-size: 11px;
		padding: 0;
		padding-top: 12px;
	}

	.parallax .countdown-amount { font-size: 20px; }

	.countdown-large .countdown-section {
		display: block;
		width: auto;
		margin: 30px 0 0;
		border: 0;
	}

	.countdown-large .countdown-section:first-child { margin-top: 0; }

	.testi-image,
	.testi-image a,
	.testi-image img,
	.testi-image i {
		width: 36px;
		height: 36px;
	}

	.testi-image i {
		line-height: 36px;
		font-size: 20px;
	}

	.clients-grid:not(.grid-3):not(.grid-2) li,
	.clients-grid.grid-4 li,
	.clients-grid.grid-6 li { width: 50%; }

	.button.button-full { font-size: 16px; }

	.button.button-full i {
		top: 2px !important;
		margin-left: 3px !important;
	}

	.emphasis-title h1,
	.emphasis-title h2 { font-size: 40px !important; }

	.error404,
	.error404-wrap .error404 { font-size: 120px; }

	.landing-video {
		position: relative;
		top: 9px;
		width: 212px;
		height: 119px;
		margin: 19px 0 0 34px;
	}

	.landing-form-overlay { margin-left: -155px; }

	.button.button-desc {
		padding: 20px 17px;
		font-size: 15px;
		max-width: 100%;
	}

	.button.button-desc span { font-size: 11px; }

}


/* ----------------------------------------------------------------
	Retina CSS
-----------------------------------------------------------------*/


@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {

	#logo a.standard-logo { display: none; }
	#logo a.retina-logo { display: block; }

	.owl-carousel.owl-loading,
	.preloader,
	.preloader2,
	.form-process {
		background-image: url('../images/preloader-2x.gif');
		background-size: 24px 24px;
	}

	.dark .owl-carousel.owl-loading,
	.dark .preloader,
	.dark .preloader2,
	.dark .form-process { background-image: url('../images/preloader-dark-2x.gif'); }

	.widget_recent_comments li {
		background-image: url("https://www.wehome.fr/images/icons/widget-comment@2x.png");
		background-size: 15px 26px;
	}

	.widget_nav_menu li a,
	.widget_links li a,
	.widget_meta li a,
	.widget_archive li a,
	.widget_recent_entries li a,
	.widget_categories li a,
	.widget_pages li a,
	.widget_rss li a,
	.widget_recent_comments li a {
		background-image: url("../images/icons/widget-link-2x.png");
		background-size: 4px 20px;
	}

	.dark .widget_recent_comments li { background-image: url("https://www.wehome.fr/images/icons/widget-comment-dark@2x.png"); }

	.dark .widget_nav_menu li a,
	.dark .widget_links li a,
	.dark .widget_meta li a,
	.dark .widget_archive li a,
	.dark .widget_recent_entries li a,
	.dark .widget_categories li a,
	.dark .widget_pages li a,
	.dark .widget_rss li a,
	.dark .widget_recent_comments li a { background-image: url("../images/icons/widget-link-dark-2x.png"); }

}

@media
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 991px),
only screen and (   min--moz-device-pixel-ratio: 2) and (max-width: 991px),
only screen and (     -o-min-device-pixel-ratio: 2/1) and (max-width: 991px),
only screen and (        min-device-pixel-ratio: 2) and (max-width: 991px),
only screen and (                min-resolution: 192dpi) and (max-width: 991px),
only screen and (                min-resolution: 2dppx) and (max-width: 991px) {
	#logo a.standard-logo { display: none; }
	#logo a.retina-logo { display: inline-block; }
}
/*! Select2 Bootstrap Theme v0.1.0-beta.7 | MIT License | github.com/select2/select2-bootstrap-theme */

.select2-container--bootstrap {
  display: block;
  /*------------------------------------*\
          #COMMON STYLES
  \*------------------------------------*/
  /**
   * Search field in the Select2 dropdown.
   */
  /**
   * No outline for all search fields - in the dropdown
   * and inline in multi Select2s.
   */
  /**
   * Adjust Select2's choices hover and selected styles to match
   * Bootstrap 3's default dropdown styles.
   *
   * @see http://getbootstrap.com/components/#dropdowns
   */
  /**
   * Clear the selection.
   */
  /**
   * Address disabled Select2 styles.
   *
   * @see https://select2.github.io/examples.html#disabled
   * @see http://getbootstrap.com/css/#forms-control-disabled
   */
  /*------------------------------------*\
          #DROPDOWN
  \*------------------------------------*/
  /**
   * Dropdown border color and box-shadow.
   */
  /**
   * Limit the dropdown height.
   */
  /*------------------------------------*\
          #SINGLE SELECT2
  \*------------------------------------*/
  /*------------------------------------*\
      #MULTIPLE SELECT2
  \*------------------------------------*/
  /**
   * Address Bootstrap control sizing classes
   *
   * 1. Reset Bootstrap defaults.
   * 2. Adjust the dropdown arrow button icon position.
   *
   * @see http://getbootstrap.com/css/#forms-control-sizes
   */
  /* 1 */
  /*------------------------------------*\
      #RTL SUPPORT
  \*------------------------------------*/
}
.select2-container--bootstrap .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555555;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  outline: 0;
}
.select2-container--bootstrap .select2-selection.form-control {
  border-radius: 4px;
}
.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555555;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.select2-container--bootstrap .select2-search__field {
  outline: 0;
  /* Firefox 18- */
  /**
   * Firefox 19+
   *
   * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox
   */
}
.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder {
  color: #999;
}
.select2-container--bootstrap .select2-search__field:-moz-placeholder {
  color: #999;
}
.select2-container--bootstrap .select2-search__field::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.select2-container--bootstrap .select2-search__field:-ms-input-placeholder {
  color: #999;
}
.select2-container--bootstrap .select2-results__option {
  /**
   * Disabled results.
   *
   * @see https://select2.github.io/examples.html#disabled-results
   */
  /**
   * Hover state.
   */
  /**
   * Selected state.
   */
}
.select2-container--bootstrap .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--bootstrap .select2-results__option[aria-disabled=true] {
  color: #777777;
  cursor: not-allowed;
}
.select2-container--bootstrap .select2-results__option[aria-selected=true] {
  background-color: #f5f5f5;
  color: #262626;
}
.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: #337ab7;
  color: #fff;
}
.select2-container--bootstrap .select2-results__option .select2-results__option {
  padding: 6px 12px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -12px;
  padding-left: 24px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -24px;
  padding-left: 36px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -36px;
  padding-left: 48px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -48px;
  padding-left: 60px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -60px;
  padding-left: 72px;
}
.select2-container--bootstrap .select2-results__group {
  color: #777777;
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1.428571429;
  white-space: nowrap;
}
.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  border-color: #66afe9;
}
.select2-container--bootstrap.select2-container--open {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
  /**
   * Handle border radii of the container when the dropdown is showing.
   */
}
.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 4px 4px 4px;
}
.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-color: transparent;
}
.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-color: transparent;
}
.select2-container--bootstrap .select2-selection__clear {
  color: #999;
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--bootstrap .select2-selection__clear:hover {
  color: #333;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection {
  border-color: #ccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-search__field {
  cursor: not-allowed;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
  background-color: #eeeeee;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection__clear,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove {
  display: none;
}
.select2-container--bootstrap .select2-dropdown {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-color: #66afe9;
  overflow-x: hidden;
  margin-top: -1px;
}
.select2-container--bootstrap .select2-dropdown--above {
  margin-top: 1px;
}
.select2-container--bootstrap .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--bootstrap .select2-selection--single {
  height: 34px;
  line-height: 1.428571429;
  padding: 6px 24px 6px 12px;
  /**
   * Adjust the single Select2's dropdown arrow button appearance.
   */
}
.select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  position: absolute;
  bottom: 0;
  right: 12px;
  top: 0;
  width: 4px;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-color: #999 transparent transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  height: 0;
  left: 0;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
  color: #555555;
  padding: 0;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--bootstrap .select2-selection--multiple {
  min-height: 34px;
  padding: 0;
  height: auto;
  /**
   * Make Multi Select2's choices match Bootstrap 3's default button styles.
   */
  /**
   * Minus 2px borders.
   */
  /**
   * Clear the selection.
   */
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  line-height: 1.428571429;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  float: left;
  margin-top: 5px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  color: #555555;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin: 5px 0 0 6px;
  padding: 0 6px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  background: transparent;
  padding: 0 12px;
  height: 32px;
  line-height: 1.428571429;
  margin-top: 0;
  min-width: 5em;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 3px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 6px;
}
.select2-container--bootstrap .select2-selection--single.input-sm, .input-group-sm .select2-container--bootstrap .select2-selection--single, .form-group-sm .select2-container--bootstrap .select2-selection--single {
  border-radius: 3px;
  font-size: 12px;
  height: 30px;
  line-height: 1.5;
  padding: 5px 22px 5px 10px;
  /* 2 */
}
.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b, .input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b, .form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  margin-left: -5px;
}
.select2-container--bootstrap .select2-selection--multiple.input-sm, .input-group-sm .select2-container--bootstrap .select2-selection--multiple, .form-group-sm .select2-container--bootstrap .select2-selection--multiple {
  min-height: 30px;
  border-radius: 3px;
}
.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 12px;
  line-height: 1.5;
  margin: 4px 0 0 5px;
  padding: 0 5px;
}
.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 10px;
  font-size: 12px;
  height: 28px;
  line-height: 1.5;
}
.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 5px;
}
.select2-container--bootstrap .select2-selection--single.input-lg, .input-group-lg .select2-container--bootstrap .select2-selection--single, .form-group-lg .select2-container--bootstrap .select2-selection--single {
  border-radius: 6px;
  font-size: 18px;
  height: 46px;
  line-height: 1.3333333;
  padding: 10px 31px 10px 16px;
  /* 1 */
}
.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow, .input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow, .form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  width: 5px;
}
.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b, .input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b, .form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 5px 0 5px;
  margin-left: -5px;
  margin-left: -10px;
  margin-top: -2.5px;
}
.select2-container--bootstrap .select2-selection--multiple.input-lg, .input-group-lg .select2-container--bootstrap .select2-selection--multiple, .form-group-lg .select2-container--bootstrap .select2-selection--multiple {
  min-height: 46px;
  border-radius: 6px;
}
.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 4px;
  margin: 9px 0 0 8px;
  padding: 0 10px;
}
.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 16px;
  font-size: 18px;
  height: 44px;
  line-height: 1.3333333;
}
.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 10px;
}
.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}
.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 5px 5px 5px;
}
.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}
.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 5px 5px 5px;
}
.select2-container--bootstrap[dir="rtl"] {
  /**
   * Single Select2
   *
   * 1. Makes sure that .select2-selection__placeholder is positioned
   *    correctly.
   */
  /**
   * Multiple Select2
   */
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single {
  padding-left: 24px;
  padding-right: 12px;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  padding-left: 0;
  text-align: right;
  /* 1 */
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 12px;
  right: auto;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single .select2-selection__arrow b {
  margin-left: 0;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--bootstrap[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 0;
  margin-right: 6px;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

/*------------------------------------*\
    #ADDITIONAL GOODIES
\*------------------------------------*/
/**
 * Address Bootstrap's validation states
 *
 * If a Select2 widget parent has one of Bootstrap's validation state modifier
 * classes, adjust Select2's border colors and focus states accordingly.
 * You may apply said classes to the Select2 dropdown (body > .select2-container)
 * via JavaScript match Bootstraps' to make its styles match.
 *
 * @see http://getbootstrap.com/css/#forms-control-validation
 */
.has-warning .select2-dropdown,
.has-warning .select2-selection {
  border-color: #8a6d3b;
}
.has-warning .select2-container--focus .select2-selection,
.has-warning .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  border-color: #66512c;
}
.has-warning.select2-drop-active {
  border-color: #66512c;
}
.has-warning.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #66512c;
}

.has-error .select2-dropdown,
.has-error .select2-selection {
  border-color: #a94442;
}
.has-error .select2-container--focus .select2-selection,
.has-error .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  border-color: #843534;
}
.has-error.select2-drop-active {
  border-color: #843534;
}
.has-error.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #843534;
}

.has-success .select2-dropdown,
.has-success .select2-selection {
  border-color: #3c763d;
}
.has-success .select2-container--focus .select2-selection,
.has-success .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  border-color: #2b542c;
}
.has-success.select2-drop-active {
  border-color: #2b542c;
}
.has-success.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #2b542c;
}

/**
 * Select2 widgets in Bootstrap Input Groups
 *
 * When Select2 widgets are combined with other elements using Bootstraps
 * "Input Group" component, we don't want specific edges of the Select2
 * container to have a border-radius.
 *
 * Use .select2-bootstrap-prepend and .select2-bootstrap-append on
 * a Bootstrap 3 .input-group to let the contained Select2 widget know which
 * edges should not be rounded as they are directly followed by another element.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */
/**
 * Mimick Bootstraps .input-group .form-control styles.
 *
 * @see https://github.com/twbs/bootstrap/blob/master/less/input-groups.less
 */
.input-group .select2-container--bootstrap {
  display: table;
  table-layout: fixed;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
  /**
   * Adjust z-index like Bootstrap does to show the focus-box-shadow
   * above appended buttons in .input-group and .form-group.
   */
}
.input-group .select2-container--bootstrap.select2-container--open, .input-group .select2-container--bootstrap.select2-container--focus {
  z-index: 3;
}

.input-group.select2-bootstrap-prepend .select2-container--bootstrap .select2-selection {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group.select2-bootstrap-append .select2-container--bootstrap .select2-selection {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/**
 * Adjust alignment of Bootstrap buttons in Bootstrap Input Groups to address
 * Multi Select2's height which - depending on how many elements have been selected -
 * may grow taller than its initial size.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */
.select2-bootstrap-append .select2-container--bootstrap,
.select2-bootstrap-append .input-group-btn,
.select2-bootstrap-append .input-group-btn .btn,
.select2-bootstrap-prepend .select2-container--bootstrap,
.select2-bootstrap-prepend .input-group-btn,
.select2-bootstrap-prepend .input-group-btn .btn {
  vertical-align: top;
}

/**
 * Temporary fix for https://github.com/select2/select2-bootstrap-theme/issues/9
 *
 * Provides `!important` for certain properties of the class applied to the
 * original `<select>` element to hide it.
 *
 * @see https://github.com/select2/select2/pull/3301
 * @see https://github.com/fk/select2/commit/31830c7b32cb3d8e1b12d5b434dee40a6e753ada
 */
.form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}

/**
 * Display override for inline forms
*/
.form-inline .select2-container--bootstrap {
  display: inline-block;
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
	width: 100% !important;
	height: 34px !important;
}
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
			text-align: center;
      /*padding-left: 8px;
      padding-right: 20px;*/
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid #ccc;
  border-radius: 4px;
	border-bottom-left-radius: 0 !important;
	border-top-left-radius: 0 !important;
	height: 34px !important;
}
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #333 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #ccc; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #4484CE;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #4484CE; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #555;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #ccc;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #ccc;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #4484CE; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #4484CE; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #4484CE; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #ccc;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #4484CE; }
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.37
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */

.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #cccccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #cccccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #eeeeee;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #337ab7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #337ab7;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}



@font-face {
	font-family: 'Arca Majora';
	src: url('css/fonts/arca-heavy-webfont.eot');
	src: url('css/fonts/arca-heavy-webfont.eot#iefix') format('embedded-opentype'),
		 url('css/fonts/arca-heavy-webfont.woff') format('woff2'),
		 url('css/fonts/arca-heavy-webfont.woff') format('woff'),
		 url('css/fonts/arca-heavy-webfont.ttf') format('truetype'),
		 url('css/fonts/arca-heavy-webfont.svg') format('svg');
	font-weight: normal;
	font-style: normal;

}

/*h1,
h2,
h3,
h4 { font-family: 'Arca Majora', sans-serif; }*/



@media (min-width: 992px) {

	#top-bar { z-index: 299; }

	#top-bar.transparent-topbar { background: transparent !important; }

	#top-bar.transparent-topbar + #header.transparent-header + #slider {
		margin-bottom: -145px;
		top: -145px;
	}

}

.dark .top-links li > a { color: #4484CE; }

.dark .top-links li:hover { background-color: rgba(255,255,255,0.15); }

.dark #top-social li { border-left: 0; }

.dark #top-social li a { color: #4484CE; }

.dark #header-wrap:not(.not-dark) #primary-menu.style-4 > ul > li:hover > a,
.dark #header-wrap:not(.not-dark) #primary-menu.style-4 > ul > li.current > a { border-color: #f4ad3d; }

.tabs.travel-organiser-tabs { width: 60% !important; }

.tabs.travel-organiser-tabs { margin: 0; }

.travel-organiser-tabs ul.tab-nav { border-bottom: 4px solid #AC4147; }

.travel-organiser-tabs ul.tab-nav li {
	margin-left: 1px;
	border: 0;
	height: 48px;
	border-left: 0 !important;
}

.travel-organiser-tabs ul.tab-nav li:first-child { margin-left: 0; }

.travel-organiser-tabs ul.tab-nav li a {
	padding: 0 20px;
	color: #FFF;
	height: 48px;
	line-height: 48px;
	background-color: rgba(0,0,0,0.5);
	font-size: 15px;
	font-weight: 400;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.travel-organiser-tabs ul.tab-nav li.ui-tabs-active a {
	top: 0;
	background-color: #AC4147;
}

.travel-organiser-tabs ul.tab-nav li .label { margin-left: 5px; }

.travel-organiser-tabs ul.tab-nav li a i { margin-right: 7px; }

.travel-organiser-tabs .tab-container {
	padding: 40px;
	background-color: rgba(255,255,255,0.9);
}

#travel-slider-overlay {
	position: relative;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-overlay-open .portfolio-item .portfolio-image img {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 1.5s ease;
	-o-transition: all 1.5s ease;
	transition: all 1.5s ease;
}

body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-overlay-open .portfolio-item:hover .portfolio-image img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.portfolio-overlay-open .portfolio-overlay {
	opacity: 1;
	background-color: rgba(0,0,0,0.2);
}

body:not(.device-touch):not(.device-xs):not(.device-xxs) .portfolio-overlay {
	-webkit-transition: background-color .4s ease-in-out;
	-o-transition: background-color .4s ease-in-out;
	transition: background-color .4s ease-in-out;
}

.portfolio-overlay-open .portfolio-item:hover .portfolio-overlay { background-color: rgba(0,0,0,0.4); }

.portfolio-overlay .portfolio-desc h3 {
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 18px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
}


.footer-big-contacts {
	color: #333;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 1px;
}

.footer-big-contacts span {
	display: block;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	color: #888;
	letter-spacing: 2px;
}

.dark .footer-big-contacts { color: rgba(255,255,255,0.8); }


.device-sm .tabs.travel-organiser-tabs { width: 100% !important; }


@media (max-width: 767px) {

	#slider { height: auto !important; }

	.tabs.travel-organiser-tabs {
		position: relative !important;
		left: 0 !important;
		top: 0 !important;
		margin-top: 0 !important;
		width: 100% !important;
	}

}


@media (max-width: 767px) {

	.tabs.travel-organiser-tabs .heading-block h4 { margin-bottom: 20px; }

	.tabs.travel-organiser-tabs .heading-block .fleft,
	.tabs.travel-organiser-tabs .heading-block .fright { float: none !important; }

}


.device-xxs .tabs.travel-organiser-tabs .more-link.fright { float: none !important; }

.device-xs .tabs.travel-organiser-tabs .tab-nav i,
.device-xxs .tabs.travel-organiser-tabs .tab-nav i { margin-right: 0 !important; }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *


 */